:root {
  --bg-top: #f7fbff;
  --bg-bottom: #e9f2ff;
  --ink: #0b1426;
  --slate: #41516f;
  --muted: #6f7f9f;
  --line: rgba(81, 112, 186, 0.22);
  --white: #ffffff;
  --blue-900: #071b49;
  --blue-800: #0f3188;
  --blue-700: #1559f7;
  --blue-600: #2f73ff;
  --blue-500: #5b96ff;
  --blue-300: #b6d0ff;
  --shadow-lg: 0 24px 80px rgba(11, 37, 104, 0.16);
  --shadow-md: 0 18px 44px rgba(17, 87, 255, 0.12);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --font-heading: "Sora", "Aptos", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Aptos", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 14% 6%, rgba(21, 89, 247, 0.14), transparent 18%),
    radial-gradient(circle at 88% 24%, rgba(47, 115, 255, 0.14), transparent 22%),
    linear-gradient(180deg, var(--bg-top) 0%, #eef5ff 44%, var(--bg-bottom) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 89, 247, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 89, 247, 0.012) 1px, transparent 1px);
  background-size: 160px 160px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.03));
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.brand-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: -0.05em;
}

.brand-text span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  gap: 22px;
  color: var(--slate);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-700), transparent 90%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(21, 89, 247, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font: 700 0.9rem/1 var(--font-body);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(21, 89, 247, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.2);
}

main {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.page-main {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(136deg, rgba(8, 23, 62, 0.99) 0%, rgba(16, 47, 123, 0.98) 44%, rgba(69, 128, 255, 0.84) 100%);
  box-shadow: var(--shadow-lg);
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb,
.hero-wave,
.hero-grid {
  position: absolute;
}

[data-float],
[data-wave] {
  translate: 0 calc(var(--scroll-offset, 0px) * -1);
  will-change: transform, translate;
}

.hero-orb {
  border-radius: 50%;
  filter: blur(12px);
}

.hero-orb-a {
  width: 280px;
  height: 280px;
  top: 9%;
  right: 12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 62%);
}

.hero-orb-b {
  width: 420px;
  height: 420px;
  bottom: -14%;
  left: -6%;
  background: radial-gradient(circle, rgba(91, 150, 255, 0.26), transparent 64%);
}

.hero-orb-c {
  width: 320px;
  height: 320px;
  bottom: 12%;
  right: -6%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 62%);
}

.hero-grid {
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.06));
}

.hero-wave {
  left: -12%;
  right: -12%;
  border-radius: 48% 52% 0 0;
  background: rgba(255, 255, 255, 0.06);
}

.hero-wave-back {
  bottom: -18%;
  height: 46%;
  transform: rotate(-4deg);
}

.hero-wave-front {
  bottom: -10%;
  height: 34%;
  background: rgba(255, 255, 255, 0.09);
  transform: rotate(5deg);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  min-height: 760px;
  padding: 38px;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  color: var(--white);
  padding: 8px 6px 24px;
}

.hero-copy .eyebrow,
.hero-note {
  color: rgba(255, 255, 255, 0.7);
}

.hero-copy h1 {
  margin: 0;
  max-width: 10.5ch;
  font: 700 clamp(3.5rem, 5vw, 5.8rem) / 0.92 var(--font-heading);
  letter-spacing: -0.07em;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.74;
}

.hero-copy .lead {
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-rail {
  display: grid;
  align-content: center;
  gap: 16px;
}

.metric-card {
  padding: 18px 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.metric-card-primary {
  background: rgba(255, 255, 255, 0.14);
}

.metric-label {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 2rem;
}

.metric-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.64;
}

.services-wave,
.process-arc,
.editorial-break,
.cta-wave {
  position: relative;
}

.services-intro h2,
.process-copy h2,
.cta-copy h2 {
  margin: 0 0 12px;
  font: 700 clamp(2.2rem, 3vw, 3.3rem) / 1.02 var(--font-heading);
  letter-spacing: -0.055em;
}

.section-copy,
.editorial-card p,
.cta-copy p {
  margin: 0;
  color: var(--slate);
  line-height: 1.72;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(21, 89, 247, 0.08);
  color: var(--blue-700);
  font-weight: 700;
}

.service-ribbon-copy h3,
.process-step h3,
.editorial-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
}

.service-ribbon-copy p,
.process-step p {
  margin: 0;
  color: var(--slate);
  line-height: 1.68;
}

.services-wave {
  width: min(1120px, calc(100% - 40px));
  margin: 72px auto 0;
}

.services-intro {
  margin-bottom: 18px;
}

.services-flow {
  display: grid;
  gap: 16px;
}

.service-ribbon {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.service-ribbon-mark {
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.service-ribbon-copy {
  padding: 24px;
}

.service-ribbon-dark {
  background: linear-gradient(135deg, rgba(12, 38, 100, 0.98), rgba(22, 73, 185, 0.94));
}

.service-ribbon-dark .service-ribbon-mark {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

.service-ribbon-dark .service-ribbon-copy h3,
.service-ribbon-dark .service-ribbon-copy p {
  color: var(--white);
}

.service-ribbon-dark .service-ribbon-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.service-ribbon-light {
  background: rgba(255, 255, 255, 0.9);
}

.service-ribbon-light .service-ribbon-mark {
  color: var(--blue-700);
  background: linear-gradient(180deg, rgba(21, 89, 247, 0.08), rgba(91, 150, 255, 0.14));
}

.process-arc {
  width: min(1120px, calc(100% - 40px));
  margin: 62px auto 0;
}

.process-copy {
  margin-bottom: 18px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.process-step-rise {
  transform: translateY(20px);
}

.process-step-drop {
  transform: translateY(-10px);
}

.editorial-break {
  width: min(1120px, calc(100% - 40px));
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.editorial-card {
  padding: 28px;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.editorial-card h2 {
  margin: 0 0 12px;
  font: 700 clamp(2rem, 2.8vw, 3rem) / 1.03 var(--font-heading);
  letter-spacing: -0.05em;
}

.editorial-card-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 255, 0.92));
}

.editorial-card-secondary {
  background: linear-gradient(135deg, rgba(12, 36, 94, 0.98), rgba(36, 92, 216, 0.9));
}

.editorial-card-secondary .eyebrow,
.editorial-card-secondary h3,
.editorial-card-secondary p {
  color: var(--white);
}

.editorial-card-secondary p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-wave {
  width: min(1120px, calc(100% - 40px));
  margin: 66px auto 0;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(12, 39, 101, 0.98), rgba(45, 102, 230, 0.92));
  color: var(--white);
  box-shadow: 0 26px 84px rgba(14, 48, 124, 0.24);
}

.cta-wave .eyebrow,
.cta-wave p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-wave .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 26px 28px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.site-footer img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--slate);
  line-height: 1.68;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
  justify-content: flex-end;
  color: var(--slate);
  font-weight: 700;
}

.footer-contact {
  margin-top: 10px !important;
}

.page-hero-wave {
  position: relative;
  overflow: hidden;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(10, 26, 64, 0.98), rgba(20, 58, 143, 0.94) 56%, rgba(79, 136, 255, 0.72));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.page-hero-wave::before,
.page-hero-wave::after {
  content: "";
  position: absolute;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.page-hero-wave::before {
  inset: auto 36% -34% -8%;
  height: 66%;
  transform: rotate(7deg);
}

.page-hero-wave::after {
  inset: auto -8% -38% 44%;
  height: 78%;
  transform: rotate(-6deg);
}

.page-hero-wave > * {
  position: relative;
  z-index: 1;
}

.page-hero-wave .eyebrow,
.page-hero-wave .lead,
.page-hero-wave p {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero-wave h1 {
  margin: 0 0 12px;
  max-width: 14ch;
  font: 700 clamp(2.6rem, 4vw, 4.6rem) / 0.96 var(--font-heading);
  letter-spacing: -0.06em;
}

.section-shell,
.blog-layout-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.workflow-section {
  margin-top: 18px;
  scroll-margin-top: 120px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: start;
}

.workflow-copy,
.workflow-card {
  min-height: 100%;
}

.section-band {
  padding: 20px;
  border-radius: 40px;
  border: 1px solid rgba(81, 112, 186, 0.14);
  box-shadow: var(--shadow-md);
}

.section-band-services {
  background:
    linear-gradient(180deg, rgba(233, 242, 255, 0.82), rgba(246, 250, 255, 0.92));
}

.section-band-process {
  background:
    linear-gradient(180deg, rgba(241, 247, 255, 0.96), rgba(228, 239, 255, 0.88));
}

.section-band-editorial {
  background:
    linear-gradient(135deg, rgba(9, 28, 78, 0.98), rgba(29, 77, 186, 0.88) 58%, rgba(93, 146, 255, 0.62));
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
}

.editorial-panel,
.glass-panel,
.service-block,
.process-block,
.blog-card,
.blog-post-card,
.sidebar-card,
.contact-block {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.editorial-panel h2,
.glass-panel h2,
.contact-block h2,
.blog-card h3,
.blog-post-card h2,
.sidebar-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
}

.glass-panel p,
.editorial-panel p,
.service-block p,
.process-block p,
.contact-block p,
.blog-card p,
.blog-post-card p,
.sidebar-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.7;
}

.service-stack,
.process-stack,
.contact-grid,
.blog-grid,
.blog-post-grid {
  display: grid;
  gap: 20px;
}

.service-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
}

.service-block {
  position: relative;
  overflow: hidden;
  padding-left: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.92));
}

.service-block::before {
  content: attr(data-mark);
  position: absolute;
  left: 28px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(21, 89, 247, 0.14), rgba(91, 150, 255, 0.22));
  color: var(--blue-700);
  font-family: var(--font-heading);
  font-weight: 700;
}

.service-block h2,
.process-block h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
}

.service-meta,
.service-problem,
.service-outcome,
.service-list,
.contact-mini-list,
.blog-meta-line,
.blog-post-section h3,
.blog-item-meta {
  color: var(--slate);
}

.service-list,
.contact-mini-list,
.blog-sidebar-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--slate);
  line-height: 1.7;
}

.process-stack {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
}

.process-block:nth-child(2),
.process-block:nth-child(4) {
  transform: translateY(22px);
}

.process-block:nth-child(3) {
  transform: translateY(-8px);
}

.process-block span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(21, 89, 247, 0.08);
  color: var(--blue-700);
  font-weight: 700;
}

.process-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 255, 0.92));
}

.section-band-editorial .editorial-panel,
.section-band-editorial .glass-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(10px);
}

.section-band-editorial .section-label,
.section-band-editorial p,
.section-band-editorial li {
  color: rgba(255, 255, 255, 0.8);
}

.section-band-editorial h2 {
  color: var(--white);
}

.section-band-editorial .blog-sidebar-list {
  color: rgba(255, 255, 255, 0.82);
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-block-primary {
  background: linear-gradient(135deg, rgba(10, 26, 64, 0.98), rgba(26, 77, 193, 0.92));
  color: var(--white);
}

.contact-block-primary .eyebrow,
.contact-block-primary p,
.contact-block-primary li,
.contact-block-primary h2 {
  color: rgba(255, 255, 255, 0.86);
}

.contact-block-primary h2 {
  color: var(--white);
}

.slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.slot-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  font-weight: 700;
}

.blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-card-date,
.blog-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--muted);
}

.blog-card {
  min-height: 100%;
}

.blog-post-grid {
  grid-template-columns: 1.18fr 0.82fr;
  align-items: start;
}

.blog-post-items {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.blog-item-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(81, 112, 186, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 248, 255, 0.86));
}

.blog-item-index {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-family: var(--font-heading);
  font-weight: 700;
}

.blog-post-section {
  margin-top: 14px;
}

.blog-post-section h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
}

.blog-source-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue-700);
  font-weight: 700;
}

.contact-inline-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.workflow-card {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.workflow-card-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(21, 89, 247, 0.08);
}

.workflow-card-track-progress {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  transition: width 220ms ease;
}

.workflow-card-body-shell {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  gap: 14px;
  align-items: stretch;
}

.workflow-card-side {
  border: 1px solid rgba(81, 112, 186, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.9), rgba(236, 244, 255, 0.8));
  cursor: pointer;
  position: relative;
}

.workflow-card-side::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--blue-700);
  border-right: 2px solid var(--blue-700);
}

.workflow-card-side-back::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.workflow-card-side-next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.workflow-card-side:hover,
.workflow-card-side:focus-visible {
  border-color: rgba(21, 89, 247, 0.28);
  box-shadow: 0 14px 28px rgba(17, 87, 255, 0.1);
  outline: none;
}

.workflow-card-body {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(81, 112, 186, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 255, 0.88));
  text-align: left;
  cursor: pointer;
}

.workflow-card-body:hover,
.workflow-card-body:focus-visible {
  border-color: rgba(21, 89, 247, 0.28);
  box-shadow: 0 18px 42px rgba(17, 87, 255, 0.12);
  outline: none;
}

.workflow-card-step-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(21, 89, 247, 0.08);
  color: var(--blue-700);
  font-weight: 700;
}

.workflow-card-body h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  letter-spacing: -0.04em;
}

.workflow-card-body p {
  margin: 0;
  color: var(--slate);
  line-height: 1.74;
}

.workflow-card-visual {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.workflow-visual-node {
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(21, 89, 247, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.workflow-visual-node.is-active {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
}

.workflow-visual-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(21, 89, 247, 0.14), rgba(21, 89, 247, 0.42));
}

.workflow-card-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.workflow-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(21, 89, 247, 0.18);
}

.workflow-dot.is-active {
  background: var(--blue-700);
}

.contact-form-card {
  width: min(920px, 100%);
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(81, 112, 186, 0.2);
  border-radius: 18px;
  background: rgba(247, 251, 255, 0.9);
  color: var(--ink);
  font: 500 1rem/1.5 var(--font-body);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: 2px solid rgba(21, 89, 247, 0.2);
  border-color: rgba(21, 89, 247, 0.42);
}

.contact-form-status {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-helper,
.contact-privacy-note {
  margin: 0 0 16px;
  color: var(--slate);
  line-height: 1.7;
}

.contact-privacy-note {
  padding: 14px 16px;
  border: 1px solid rgba(81, 112, 186, 0.16);
  border-radius: 20px;
  background: rgba(240, 246, 255, 0.82);
  font-size: 0.96rem;
}

.contact-privacy-note a {
  color: var(--blue-700);
  font-weight: 700;
}

.sidebar-card {
  position: sticky;
  top: 96px;
}

body.js-enhanced [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 720ms ease,
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.js-enhanced [data-reveal="fade-left"] {
  transform: translate3d(36px, 0, 0);
}

body.js-enhanced [data-reveal="fade-right"] {
  transform: translate3d(-36px, 0, 0);
}

body.js-enhanced [data-reveal="fade-down"] {
  transform: translate3d(0, -20px, 0);
}

body.js-enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.has-motion [data-float] {
  animation: float 9s ease-in-out infinite;
}

body.has-motion .hero-orb-b {
  animation-delay: 1.2s;
}

body.has-motion .hero-orb-c {
  animation-delay: 2.4s;
}

body.has-motion [data-wave] {
  animation: wave-drift 16s ease-in-out infinite alternate;
}

body.has-motion .hero-wave-front {
  animation-duration: 13s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes wave-drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  100% {
    transform: translate3d(0, 10px, 0) rotate(3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header,
  .hero-layout,
  .editorial-break,
  .cta-wave,
  .process-track,
  .workflow-grid,
  .editorial-grid,
  .contact-grid,
  .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
  }

  .direction-d-shell .page-main {
    gap: 18px;
    margin-top: 28px;
  }

  .direction-d-shell .page-hero-wave {
    padding-top: 42px;
  }

  .brand-lockup {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text span {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .site-header.is-nav-open {
    flex-wrap: wrap;
  }

  .site-header.is-nav-open .site-nav {
    display: grid;
    width: 100%;
    gap: 14px;
    padding-top: 10px;
  }

  .site-nav a {
    width: fit-content;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding: 26px;
  }

  .workflow-section {
    margin-top: 10px;
  }

  .section-band {
    padding: 14px;
    border-radius: 30px;
  }

  .process-step-rise,
  .process-step-drop {
    transform: none;
  }

  .service-ribbon {
    grid-template-columns: 1fr;
  }

  .service-ribbon-mark {
    padding: 16px;
  }

  .service-stack,
  .blog-grid,
  .process-stack,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .process-block:nth-child(n) {
    transform: none;
  }

  .sidebar-card {
    position: static;
  }

  .workflow-card {
    padding: 24px;
  }

  .workflow-card-body-shell {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "body body"
      "back next";
    gap: 12px;
  }

  .workflow-card-body {
    grid-area: body;
  }

  .workflow-card-side-back {
    grid-area: back;
    min-height: 56px;
  }

  .workflow-card-side-next {
    grid-area: next;
    min-height: 56px;
  }

  .workflow-card-visual {
    grid-template-columns: 1fr;
  }

  .workflow-visual-line {
    width: 2px;
    height: 18px;
    justify-self: center;
  }

}
