
:root {
  color-scheme: light;
  --ink-950: #050a13;
  --ink-900: #07111f;
  --ink-850: #0b1728;
  --ink-800: #102039;
  --ink-700: #243753;
  --ink-600: #50627a;
  --ink-500: #718096;
  --paper: #ffffff;
  --paper-soft: #f5f7fb;
  --paper-blue: #eef4ff;
  --line: #dbe3ef;
  --line-dark: rgba(255,255,255,.13);
  --blue: #2f66ff;
  --blue-dark: #184acb;
  --blue-light: #80a7ff;
  --cyan: #62d7ff;
  --violet: #7f70ff;
  --green: #5de2a0;
  --shadow-sm: 0 10px 30px rgba(7,17,31,.08);
  --shadow-md: 0 24px 70px rgba(7,17,31,.13);
  --shadow-lg: 0 40px 110px rgba(3,10,22,.24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink-900);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -.005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--blue-dark); text-underline-offset: .18em; }
a:hover { text-decoration-thickness: .12em; }
p { margin: 0 0 1rem; }
ul, ol { margin-top: 0; }
h1, h2, h3 {
  margin: 0;
  color: inherit;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 7vw, 6.25rem); }
h2 { font-size: clamp(2.15rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: -.025em; }

:focus-visible {
  outline: 3px solid #78a9ff;
  outline-offset: 4px;
  border-radius: 6px;
}

::selection { background: #c9d9ff; color: #07111f; }

[hidden] { display: none !important; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  transform: translateY(-180%);
  padding: .85rem 1rem;
  color: white;
  background: var(--ink-950);
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-light { color: #8eb4ff; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(219,227,239,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: #fff; }
}
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 245px;
  flex: 0 0 auto;
  text-decoration: none;
}
.brand img { display: block; width: 100%; height: auto; }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink-900);
  font-weight: 720;
  text-decoration: none;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] { color: var(--blue-dark); }
.primary-nav .nav-cta a {
  min-height: 48px;
  padding-inline: 1.15rem;
  color: white;
  background: var(--ink-900);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(7,17,31,.14);
}
.primary-nav .nav-cta a:hover { color: white; background: var(--blue-dark); }
.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink-900);
  font-weight: 760;
}
.menu-icon { width: 18px; display: grid; gap: 4px; }
.menu-icon span { display: block; height: 2px; background: currentColor; border-radius: 2px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); text-decoration: none; }
.button-primary {
  color: white;
  background: linear-gradient(135deg, #4978ff, #2859ed);
  box-shadow: 0 18px 42px rgba(47,102,255,.32);
}
.button-primary:hover { background: linear-gradient(135deg, #5c87ff, #194bd8); }
.button-ghost { color: white; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.22); }
.button-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); }
.button-light { color: var(--ink-900); background: white; box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.button-light:hover { background: #edf3ff; }
.button-dark { color: white; background: var(--ink-900); box-shadow: 0 14px 34px rgba(7,17,31,.18); }
.button-dark:hover { background: var(--blue-dark); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.text-link-light { color: #a9c5ff; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--ink-950);
}
.hero-home { min-height: 760px; display: grid; align-items: center; }
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(5px); opacity: .7; }
.hero-orb-one {
  width: 520px; height: 520px; right: -160px; top: -120px;
  background: radial-gradient(circle, rgba(55,111,255,.7), rgba(55,111,255,0) 68%);
}
.hero-orb-two {
  width: 460px; height: 460px; left: 28%; bottom: -300px;
  background: radial-gradient(circle, rgba(98,215,255,.25), rgba(98,215,255,0) 70%);
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(390px,.9fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  padding-block: 7.5rem;
}
.hero-copy h1 { max-width: 790px; font-size: clamp(3.6rem, 7vw, 6.55rem); }
.hero-lead {
  max-width: 710px;
  margin: 1.7rem 0 0;
  color: #c0cad9;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.6;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 0;
  margin: 2rem 0 0;
  color: #aeb9ca;
  list-style: none;
  font-size: .95rem;
}
.trust-row span { color: var(--green); font-weight: 900; }

.hero-panel {
  position: relative;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(126,170,255,.45), transparent 34%, transparent 70%, rgba(98,215,255,.18));
  filter: blur(1px);
}
.hero-panel-top {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1.1rem;
  align-items: center;
  padding: .35rem .35rem 1.5rem;
}
.hero-app-icon {
  width: 92px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(0,0,0,.38);
}
.hero-panel h2 { margin-top: .6rem; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.status-dot { color: #b9c6d9; font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.status-dot span { display: inline-block; width: 8px; height: 8px; margin-right: .35rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(93,226,160,.12); }

.launch-path { padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.launch-path li {
  display: grid;
  grid-template-columns: 46px 92px 1fr;
  gap: .55rem;
  align-items: baseline;
  padding: 1rem .35rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.launch-path span { color: #72839b; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .8rem; }
.launch-path strong { font-size: 1rem; }
.launch-path small { color: #aeb9ca; font-size: .92rem; }

.proof-strip { border-bottom: 1px solid var(--line); background: white; }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-grid div { padding: 1.35rem 1.3rem; border-right: 1px solid var(--line); }
.proof-grid div:first-child { border-left: 1px solid var(--line); }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { color: var(--ink-900); font-size: .95rem; }
.proof-grid span { margin-top: .25rem; color: var(--ink-600); font-size: .82rem; }

.section { padding-block: clamp(5rem, 9vw, 8rem); }
.section-light { background: var(--paper); }
.section-heading { margin-bottom: clamp(2.2rem, 5vw, 4rem); }
.split-heading {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(300px,.65fr);
  gap: 3rem;
  align-items: end;
}
.split-heading h2 { max-width: 760px; }
.split-heading > p { color: var(--ink-600); font-size: 1.08rem; }
.centered-heading { max-width: 780px; margin-inline: auto; text-align: center; }
.centered-heading > p:last-child { margin-top: 1rem; color: var(--ink-600); font-size: 1.08rem; }

.bento-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 1.2rem;
}
.bento-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-soft);
  box-shadow: var(--shadow-sm);
}
.bento-large { grid-row: span 2; min-height: 680px; padding-right: 37%; }
.bento-dark { color: white; border-color: transparent; background: linear-gradient(145deg, #091424, #142a4b); }
.bento-accent { background: linear-gradient(145deg, #eef4ff, #f8f2ff); border-color: #cedbfa; }
.card-number { display: block; margin-bottom: 3.2rem; color: #8b99ad; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .8rem; }
.bento-card h3 { margin-bottom: .9rem; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.bento-card p { max-width: 620px; color: var(--ink-600); font-size: 1.02rem; }
.bento-dark p { color: #b7c2d3; }
.code-window {
  position: absolute;
  right: -55px;
  bottom: 55px;
  width: 42%;
  min-width: 230px;
  height: 390px;
  transform: rotate(-4deg);
  border: 1px solid #c8d2e2;
  border-radius: 18px;
  background: #0a1425;
  box-shadow: 0 35px 75px rgba(7,17,31,.24);
}
.window-bar { display: flex; gap: 6px; padding: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #53637a; }
.code-lines { padding: 28px 22px; display: grid; gap: 18px; }
.code-lines span { height: 8px; border-radius: 8px; background: linear-gradient(90deg, #3f73ff, #7fe4ff); opacity: .9; }
.code-lines span:nth-child(2) { width: 68%; background: #32445e; }
.code-lines span:nth-child(3) { width: 85%; }
.code-lines span:nth-child(4) { width: 52%; background: #32445e; }

.final-mile { color: white; background: linear-gradient(135deg, #07111f 0%, #0d213d 63%, #0b2b4a 100%); }
.final-mile-layout { display: grid; grid-template-columns: 1fr .9fr; gap: 5rem; align-items: center; }
.final-mile-copy p:not(.eyebrow) { max-width: 700px; margin: 1.4rem 0 2rem; color: #b8c5d7; font-size: 1.12rem; }
.verification-stack { display: grid; gap: .8rem; }
.verification-stack div {
  display: grid;
  grid-template-columns: 105px 1fr 28px;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}
.verification-stack span { color: #89a0bd; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.verification-stack i { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: #07111f; background: var(--green); font-style: normal; font-weight: 900; }

.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #f8faff);
  box-shadow: var(--shadow-sm);
}
.product-icon-link {
  display: block;
  width: 106px;
  height: 106px;
  margin-bottom: 1.5rem;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(7,17,31,.16);
}
.product-icon-link img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-body { display: flex; flex: 1; flex-direction: column; }
.product-kicker { margin-bottom: .55rem; color: var(--blue-dark); font-size: .76rem; font-weight: 830; letter-spacing: .1em; text-transform: uppercase; }
.product-body h3 { margin-bottom: .8rem; font-size: 1.55rem; }
.product-body p { color: var(--ink-600); }
.product-url { margin-top: auto; padding-top: 1.5rem; font-weight: 800; overflow-wrap: anywhere; }
.center-link { margin-top: 2rem; text-align: center; }

.process-preview { background: var(--paper-soft); }
.process-rail { display: grid; grid-template-columns: repeat(6,1fr); padding: 0; margin: 0; list-style: none; counter-reset: none; }
.process-rail li {
  position: relative;
  min-height: 230px;
  padding: 1.25rem;
  border-top: 1px solid #bfcadb;
  border-right: 1px solid #d5dde8;
}
.process-rail li:last-child { border-right: 0; }
.process-rail li::before {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  top: -5px; left: 1.25rem;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.process-rail span { display: block; margin: .8rem 0 2rem; color: #8493a8; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; }
.process-rail h3 { margin-bottom: .65rem; font-size: 1.18rem; }
.process-rail p { color: var(--ink-600); font-size: .92rem; }

.tools-section { color: white; background: var(--ink-950); }
.tools-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: start; }
.tools-layout > div:first-child > p:last-child { margin-top: 1.5rem; color: #b5c1d2; font-size: 1.08rem; }
.tool-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tool-groups section {
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}
.tool-groups h3 { margin-bottom: .65rem; color: #9db9ff; font-size: 1.1rem; }
.tool-groups p { margin: 0; color: #aebbcf; font-size: .94rem; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 5rem; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p:last-child { margin-top: 1.2rem; color: var(--ink-600); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  cursor: pointer;
  color: var(--ink-900);
  font-weight: 780;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .4rem; top: 1.15rem; color: var(--blue-dark); font-size: 1.6rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; padding: 0 2.5rem 1.4rem 0; color: var(--ink-600); }

.cta-section { padding: 0 0 clamp(4rem,8vw,7rem); background: white; }
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  overflow: hidden;
  padding: clamp(2rem,5vw,4rem);
  color: white;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(79,122,255,.55), transparent 37%),
    linear-gradient(135deg, #07111f, #112b50);
  box-shadow: var(--shadow-lg);
}
.cta-card h2 { max-width: 700px; }
.cta-card p:not(.eyebrow) { margin-top: 1rem; color: #b9c5d6; }
.cta-actions { display: flex; flex-direction: column; gap: .8rem; min-width: 220px; }

.site-footer { padding-top: 4rem; color: #b6c2d3; background: #040911; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 4rem; }
.footer-logo-row { display: flex; gap: .9rem; align-items: center; }
.footer-logo-row img { width: 56px; height: 56px; object-fit: cover; border-radius: 14px; }
.footer-logo-row h2 { color: white; font-size: 1.35rem; }
.footer-logo-row p { margin: .15rem 0 0; font-size: .88rem; }
.footer-summary { max-width: 460px; margin-top: 1.2rem; }
.footer-email { color: #9ebaff; font-weight: 760; }
.site-footer h3 { margin-bottom: 1rem; color: white; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin: .55rem 0; }
.footer-links a { color: #b6c2d3; text-decoration: none; }
.footer-links a:hover { color: white; text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #7f8da2;
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }

.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #07111f, #0f284a);
}
.page-orb {
  position: absolute;
  width: 650px; height: 650px;
  right: -220px; top: -330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65,113,255,.65), transparent 68%);
}
.page-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .55fr;
  gap: 5rem;
  align-items: end;
  padding-block: clamp(5.5rem,10vw,9rem);
}
.page-hero h1 { max-width: 900px; font-size: clamp(3rem,6vw,5.6rem); }
.page-hero-layout > div:first-child > p:last-child { max-width: 750px; margin-top: 1.5rem; color: #bdc8d8; font-size: 1.15rem; }
.page-hero-card {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}
.page-hero-card strong { display: block; margin-bottom: .65rem; font-size: 1.12rem; }
.page-hero-card p { color: #b9c5d6; }
.compact-page-hero .page-hero-layout { grid-template-columns: 1fr; }
.compact-page-hero h1 { max-width: 840px; }

.service-sections { padding-top: 1rem; }
.service-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding-block: clamp(4.5rem,8vw,7rem);
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 0; }
.service-index { padding-top: .45rem; color: #8c9aaf; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.service-block h2 { max-width: 840px; }
.service-lead { max-width: 760px; margin: 1.2rem 0 2.3rem; color: var(--ink-600); font-size: 1.08rem; }
.service-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.check-list { padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding: .55rem 0 .55rem 1.75rem; color: var(--ink-700); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

.process-detail { padding: 0; margin: 0; list-style: none; }
.process-detail > li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2.5rem;
  padding-block: clamp(4rem,7vw,6rem);
  border-bottom: 1px solid var(--line);
}
.process-detail > li:last-child { border-bottom: 0; }
.process-marker {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  color: white;
  border-radius: 18px;
  background: var(--ink-900);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.process-detail h2 { max-width: 820px; }
.process-detail li > div:last-child > p:not(.eyebrow) { max-width: 830px; margin-top: 1.25rem; color: var(--ink-600); font-size: 1.08rem; }
.deliverable { padding: 1rem 1.1rem; border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; background: var(--paper-blue); }

.light-heading h2 { color: white; }
.light-heading > p { color: #b5c1d2; }
.workflow-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.workflow-grid article {
  min-height: 235px;
  padding: 1.3rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}
.workflow-label { display: block; margin-bottom: 2.2rem; color: #7d90aa; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.workflow-grid h3 { margin-bottom: .7rem; color: white; font-size: 1.2rem; }
.workflow-grid p { color: #aebbd0; font-size: .92rem; }

.release-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.release-grid article { padding: 1.4rem; border: 1px solid var(--line); border-radius: 16px; background: var(--paper-soft); }
.release-grid strong { font-size: 1.1rem; }
.release-grid p { margin: .6rem 0 0; color: var(--ink-600); }

.product-showcase { display: grid; gap: 1.5rem; }
.showcase-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}
.showcase-card.reverse { grid-template-columns: 1.2fr .8fr; }
.showcase-card.reverse .showcase-art { order: 2; }
.showcase-art { display: grid; place-items: center; min-height: 420px; padding: 3rem; }
.showcase-art img { width: min(78%, 330px); border-radius: 28%; box-shadow: 0 30px 70px rgba(7,17,31,.2); }
.ber-art { background: radial-gradient(circle at 20% 10%, #84cd5f, #0c4b2a 65%); }
.skins-art { background: linear-gradient(145deg, #f7fbff, #b8d9ff); }
.birdie-art { background: linear-gradient(145deg, #edf5ff, #c7dcff); }
.future-art { background: linear-gradient(145deg, #0c1728, #1a3763); }
.showcase-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem,5vw,4.5rem); }
.showcase-copy h2 { margin-bottom: 1.2rem; }
.showcase-copy > p:not(.eyebrow) { max-width: 680px; color: var(--ink-600); font-size: 1.08rem; }
.mini-features { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 1.3rem 0 1.8rem; list-style: none; }
.mini-features li { padding: .48rem .75rem; border: 1px solid var(--line); border-radius: 999px; background: var(--paper-soft); color: var(--ink-700); font-size: .82rem; font-weight: 750; }

.contact-card span { display: block; color: #8da0b9; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-card a { display: block; margin: .4rem 0; color: white; font-size: clamp(1.25rem,2vw,1.7rem); font-weight: 800; overflow-wrap: anywhere; }

.inquiry-layout { display: grid; grid-template-columns: 1.25fr .55fr; gap: 4rem; align-items: start; }
.project-form { padding: clamp(1.5rem,4vw,3rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-md); }
.form-heading { margin-bottom: 2rem; }
.form-heading h2 { font-size: clamp(2rem,4vw,3.3rem); }
.form-heading > p:last-child { max-width: 720px; margin-top: 1rem; color: var(--ink-600); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.4rem; }
.field-full { grid-column: 1/-1; }
.field label { display: block; margin-bottom: .4rem; color: var(--ink-900); font-weight: 760; }
.field label span { color: var(--ink-500); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: .78rem .85rem;
  color: var(--ink-900);
  border: 1px solid #aebacc;
  border-radius: 10px;
  background: white;
}
.field textarea { min-height: 180px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,102,255,.12); outline: 0; }
.field small { display: block; margin-top: .45rem; color: var(--ink-600); }
.form-note { margin-top: 1rem; color: var(--ink-600); font-size: .86rem; }
.form-status { margin-top: 1rem; padding: 1rem; border: 1px solid #8bd7af; border-radius: 10px; background: #eaf8f1; color: #075a34; }
.inquiry-sidebar { display: grid; gap: 1rem; position: sticky; top: 120px; }
.inquiry-sidebar section { padding: 1.3rem; border: 1px solid var(--line); border-radius: 16px; background: var(--paper-soft); }
.sidebar-number { display: block; margin-bottom: 1.4rem; color: var(--blue-dark); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; }
.inquiry-sidebar h3 { margin-bottom: .55rem; font-size: 1.15rem; }
.inquiry-sidebar p { margin: 0; color: var(--ink-600); font-size: .92rem; }

.readable-content { max-width: 850px; }
.readable-content h2 { margin-top: 2.4rem; font-size: clamp(1.5rem,3vw,2rem); letter-spacing: -.025em; }
.readable-content p, .readable-content li { color: var(--ink-600); }
.readable-content li { margin: .55rem 0; }
.effective-date { color: var(--ink-500); font-size: .9rem; }
.support-highlight { margin-bottom: 2.5rem; padding: 1.5rem; border: 1px solid #bdd0fb; border-radius: 16px; background: var(--paper-blue); }
.support-highlight p { margin: 0; color: var(--ink-600); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.support-highlight a { display: block; margin-top: .4rem; font-size: clamp(1.35rem,3vw,2.1rem); font-weight: 800; overflow-wrap: anywhere; }

.not-found { min-height: 75vh; display: grid; place-items: center; color: white; background: var(--ink-950); }
.not-found-inner { max-width: 740px; padding-block: 6rem; text-align: center; }
.not-found img { width: 120px; border-radius: 28px; margin-bottom: 1.5rem; }
.not-found h1 { margin-bottom: 1rem; }
.not-found p:not(.eyebrow) { margin-bottom: 2rem; color: #b8c4d5; }

@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-panel { max-width: 720px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: 1/-1; grid-row: auto; min-height: 520px; padding-right: 38%; }
  .final-mile-layout, .tools-layout { grid-template-columns: 1fr; gap: 3rem; }
  .process-rail { grid-template-columns: repeat(3,1fr); row-gap: 2rem; }
  .workflow-grid { grid-template-columns: repeat(2,1fr); }
  .showcase-card, .showcase-card.reverse { grid-template-columns: .9fr 1.1fr; }
  .page-hero-layout { grid-template-columns: 1fr; gap: 2.2rem; }
  .page-hero-card { max-width: 600px; }
}

@media (max-width: 860px) {
  .header-inner { min-height: 72px; }
  .brand { width: 215px; }
  .menu-button { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: calc(100% + .65rem);
    left: 1.25rem;
    right: 1.25rem;
    display: none;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { display: grid; gap: .2rem; }
  .primary-nav a { width: 100%; padding-inline: .75rem; border-radius: 10px; }
  .primary-nav a:hover { background: var(--paper-blue); }
  .primary-nav .nav-cta a { justify-content: center; margin-top: .35rem; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid div:nth-child(3) { border-left: 1px solid var(--line); }
  .split-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .faq-layout, .inquiry-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-intro, .inquiry-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .showcase-card, .showcase-card.reverse { grid-template-columns: 1fr; }
  .showcase-card.reverse .showcase-art { order: 0; }
  .showcase-art { min-height: 320px; }
  .service-block, .process-detail > li { grid-template-columns: 70px 1fr; gap: 1.2rem; }
  .service-columns { gap: 1rem; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 1.4rem), var(--shell)); }
  .brand { width: 185px; }
  .menu-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .hero-home { min-height: auto; }
  .hero-layout { padding-block: 5.2rem; gap: 3rem; }
  .hero-copy h1 { font-size: clamp(3rem,15vw,4.7rem); }
  .hero-actions, .cta-actions { width: 100%; }
  .hero-actions .button, .cta-actions .button { width: 100%; }
  .trust-row { display: grid; gap: .6rem; }
  .hero-panel { padding: 1rem; border-radius: 24px; }
  .hero-panel-top { grid-template-columns: 70px 1fr; }
  .hero-app-icon { width: 70px; border-radius: 18px; }
  .launch-path li { grid-template-columns: 38px 72px 1fr; gap: .35rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div { border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-column: auto; min-height: 570px; padding-right: 1.5rem; padding-bottom: 280px; }
  .code-window { width: 70%; height: 240px; right: -15px; bottom: 25px; }
  .verification-stack div { grid-template-columns: 80px 1fr 26px; }
  .process-rail { grid-template-columns: 1fr; }
  .process-rail li { min-height: auto; border-right: 0; }
  .tool-groups, .workflow-grid, .release-grid, .form-grid, .service-columns { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .faq-list summary { padding-right: 2.6rem; }
  .cta-card { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; gap: .5rem; }
  .service-block, .process-detail > li { grid-template-columns: 1fr; }
  .service-index { margin-bottom: -.7rem; }
  .process-marker { width: 48px; height: 48px; border-radius: 14px; }
  .showcase-art { min-height: 280px; }
  .showcase-art img { width: min(72%,240px); }
  .page-hero-layout { padding-block: 5rem; }
  .page-hero h1 { font-size: clamp(2.75rem,13vw,4.3rem); }
}

@media (max-width: 360px) {
  .brand { width: 168px; }
  .hero-copy h1 { font-size: 2.8rem; }
  .launch-path li { grid-template-columns: 32px 1fr; }
  .launch-path small { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .button:hover { transform: none; }
}

@media (forced-colors: active) {
  .button, .hero-panel, .bento-card, .product-card, .showcase-card, .project-form, .page-hero-card { border: 2px solid ButtonText; }
  .hero-grid-bg, .hero-orb, .hero-orb-one, .hero-orb-two, .page-orb { display: none; }
}

@media print {
  .site-header, .site-footer, .hero-actions, .cta-section, .menu-button { display: none !important; }
  body { color: black; background: white; }
  .hero, .page-hero, .tools-section, .final-mile { color: black; background: white; }
  .section { padding-block: 1rem; }
  .bento-card, .product-card, .showcase-card, .project-form { box-shadow: none; border: 1px solid black; }
}
