@charset "UTF-8";

:root {
  --ink: #11142a;
  --muted: #68708a;
  --purple: #5b61ff;
  --purple-dark: #4447d8;
  --lavender: #eceeff;
  --paper: #f7f8ff;
  --line: #dfe3f1;
  --white: #fff;
  --green: #0ca77a;
  --night: #070a18;
  --night-2: #111630;
  --cobalt: #5b61ff;
  --violet: #935cff;
  --aqua: #27d8d2;
  --pink: #ff5eaa;
  --orange: #ff8b5c;
  --gradient: linear-gradient(110deg, #27d8d2 0%, #7d8cff 46%, #ff5eaa 100%);
  --gradient-button: linear-gradient(115deg, #6268ff 0%, #8d50f5 56%, #ec58b5 100%);
  --shadow: 0 24px 70px rgba(18, 22, 62, .14);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  text-rendering: optimizeLegibility;
}

main { overflow: hidden; }
h1, h2, h3, h4 { font-weight: 650; }
h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 6vw, 5.35rem);
  letter-spacing: -.065em;
  line-height: .98;
}
h2 {
  font-size: clamp(2.75rem, 4.2vw, 4rem);
  letter-spacing: -.052em;
  line-height: 1.03;
}
h1 em, h2 em {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}
.wrap, .nav-wrap {
  width: min(100%, 1320px);
  max-width: none;
  padding-right: 48px;
  padding-left: 48px;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
summary:focus-visible, textarea:focus-visible {
  outline-color: var(--aqua);
}

.header {
  height: 88px;
  border-color: rgba(255,255,255,.11);
  background: rgba(7,10,24,.86);
  color: #fff;
  backdrop-filter: blur(22px) saturate(140%);
}
.brand {
  gap: 11px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.045em;
}
.brand svg {
  width: 31px;
  height: 31px;
  color: var(--aqua);
  filter: drop-shadow(0 0 13px rgba(39,216,210,.45));
}
.brand-ai { color: #999eff; }
nav { gap: 34px; font-size: .875rem; }
nav > a:not(.nav-cta) { color: rgba(255,255,255,.72); transition: color .2s ease; }
nav > a:not(.nav-cta):hover { color: var(--aqua); }
.nav-cta {
  min-height: 44px;
  border-color: rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  padding: 9px 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(39,216,210,.6);
  background: rgba(39,216,210,.12);
}

.hero {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 82px;
}
.hero::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(50%);
  background:
    radial-gradient(circle at 8% 18%, rgba(91,97,255,.36), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(255,94,170,.23), transparent 27%),
    radial-gradient(circle at 72% 76%, rgba(39,216,210,.15), transparent 29%),
    linear-gradient(145deg, #070a18 0%, #0c1025 49%, #111330 100%);
  content: "";
}
.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0 50% 0 auto;
  width: 100vw;
  transform: translateX(50%);
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero-grid {
  grid-template-columns: minmax(0,.94fr) minmax(500px,1.06fr);
  gap: 62px;
}
.hero-copy { position: relative; z-index: 2; animation: rise-in .65s ease-out both; }
.eyebrow {
  gap: 11px;
  margin-bottom: 29px;
  color: var(--aqua);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .17em;
}
.tiny-dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(255,94,170,.12), 0 0 18px rgba(255,94,170,.75);
}
.hero-intro {
  max-width: 540px;
  margin: 31px 0 32px;
  color: rgba(234,237,255,.73);
  font-size: 1.08rem;
  line-height: 1.78;
}
.button {
  position: relative;
  min-height: 52px;
  overflow: hidden;
  border-radius: 999px;
  padding: 13px 23px;
  font-size: .875rem;
  font-weight: 700;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.button::before {
  position: absolute;
  inset: 0;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.23), transparent);
  content: "";
  transition: transform .55s ease;
}
.button:hover { transform: translateY(-2px); }
.button:hover::before { transform: translateX(110%) skewX(-18deg); }
.primary {
  background: var(--gradient-button);
  box-shadow: 0 12px 32px rgba(91,97,255,.34), inset 0 1px 0 rgba(255,255,255,.3);
}
.primary:hover {
  background: var(--gradient-button);
  box-shadow: 0 17px 42px rgba(126,79,243,.42), inset 0 1px 0 rgba(255,255,255,.35);
}
.secondary {
  border-color: #d9def0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 9px 25px rgba(24,29,70,.08);
}
.secondary:hover {
  border-color: #a9b0ff;
  background: #fff;
  box-shadow: 0 14px 32px rgba(24,29,70,.13);
}
.micro {
  margin-top: 16px;
  color: rgba(223,227,248,.6);
  font-size: .78rem;
}
.micro > span:first-child { color: var(--aqua); }

.hero-visual {
  min-height: 522px;
  border-color: rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 40%, rgba(91,97,255,.3), transparent 30%),
    radial-gradient(circle at 15% 80%, rgba(39,216,210,.14), transparent 31%),
    radial-gradient(circle at 90% 8%, rgba(255,94,170,.14), transparent 25%),
    rgba(255,255,255,.06);
  padding: 25px 24px 19px;
  box-shadow: 0 38px 100px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.11);
  animation: rise-in .8s .12s ease-out both;
  backdrop-filter: blur(18px);
}
.hero-visual::before {
  background-image: radial-gradient(rgba(201,209,255,.2) .75px, transparent .75px);
  background-size: 16px 16px;
  opacity: .55;
}
.visual-top, .visual-bottom {
  z-index: 2;
  color: rgba(221,226,255,.52);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .15em;
}
.visual-top i {
  width: 6px;
  height: 6px;
  background: var(--aqua);
  box-shadow: 0 0 12px var(--aqua);
}
.visual-ref { color: rgba(255,255,255,.32); }
.workflow { z-index: 1; height: 308px; }
.connectors { filter: drop-shadow(0 0 5px rgba(122,119,255,.45)); }
.connectors path { stroke-width: 1.5; }
.connectors stop:first-child { stop-color: var(--aqua); }
.connectors stop:last-child { stop-color: var(--violet); }
.connectors circle { fill: var(--aqua); }
.process-node {
  min-width: 184px;
  gap: 10px;
  border-color: rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(15,19,46,.82);
  color: rgba(255,255,255,.92);
  padding: 13px 14px;
  box-shadow: 0 14px 36px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.07);
  font-size: .79rem;
  line-height: 1.35;
  backdrop-filter: blur(12px);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.process-node:hover {
  border-color: rgba(39,216,210,.55);
  background: rgba(25,31,70,.92);
}
.process-node small { color: rgba(221,226,255,.48); font-size: .64rem; }
.node-icon { width: 24px; color: var(--aqua); font-size: 1.25rem; }
.node-dot {
  width: 5px;
  height: 5px;
  background: var(--pink);
  box-shadow: 0 0 10px rgba(255,94,170,.75);
}
.node-a { top: 43px; transform: rotate(-2deg); }
.node-b { top: 55px; transform: rotate(2deg); }
.node-c { top: 207px; transform: rotate(2deg); }
.node-d { top: 218px; transform: rotate(-2deg); }
.node-a:hover { transform: rotate(-2deg) translateY(-3px); }
.node-b:hover { transform: rotate(2deg) translateY(-3px); }
.node-c:hover { transform: rotate(2deg) translateY(-3px); }
.node-d:hover { transform: rotate(-2deg) translateY(-3px); }
.orchestrator-core { top: 105px; gap: 10px; animation: core-float 4s ease-in-out infinite; }
.orchestrator-core svg {
  width: 76px;
  height: 76px;
  border-radius: 23px;
  background: var(--gradient-button);
  padding: 17px;
  box-shadow: 0 0 0 8px rgba(110,98,255,.12), 0 0 0 9px rgba(164,144,255,.18),
    0 18px 46px rgba(91,97,255,.48), 0 0 35px rgba(39,216,210,.17);
}
.orchestrator-core span {
  color: rgba(239,241,255,.72);
  font-size: .69rem;
  font-weight: 700;
}
.roadmap-card {
  z-index: 2;
  margin: 0 4px 25px;
  border-color: rgba(255,255,255,.15);
  border-radius: 15px;
  background: rgba(10,14,35,.78);
  padding: 18px 19px;
  box-shadow: 0 16px 38px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(15px);
}
.roadmap-title { color: rgba(255,255,255,.92); font-size: .8rem; }
.roadmap-title > span:last-child { color: var(--aqua); }
.roadmap-title small { color: rgba(221,226,255,.48); font-size: .65rem; }
.check-icon {
  width: 31px;
  height: 31px;
  background: rgba(39,216,210,.13);
  color: var(--aqua);
  box-shadow: inset 0 0 0 1px rgba(39,216,210,.24);
}
.roadmap-phases { gap: 7px; }
.roadmap-phases span { color: rgba(221,226,255,.45); font-size: .61rem; }
.roadmap-phases i { height: 4px; background: rgba(255,255,255,.12); }
.roadmap-phases span:first-child i {
  background: linear-gradient(90deg, var(--aqua), var(--cobalt));
  box-shadow: 0 0 12px rgba(39,216,210,.35);
}
.roadmap-phases span:nth-child(2) i { background: linear-gradient(90deg, var(--cobalt), var(--violet)); }
.visual-bottom { font-size: .52rem; }

.benefits {
  z-index: 2;
  gap: 14px;
  margin-top: 70px;
  border: 0;
  padding: 0 0 52px;
}
.benefits > div {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  padding: 18px 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.benefits > div:not(:first-child) { border-left: 1px solid rgba(255,255,255,.1); padding-left: 20px; }
.benefits > div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--aqua);
  content: "";
}
.benefits > div:nth-child(2)::before { background: var(--violet); }
.benefits > div:nth-child(3)::before { background: var(--pink); }
.benefit-icon { width: 32px; color: var(--aqua); font-size: 1.55rem; }
.benefits > div:nth-child(2) .benefit-icon { color: #a888ff; }
.benefits > div:nth-child(3) .benefit-icon { color: #ff79b7; }
.benefits strong { color: rgba(255,255,255,.93); font-size: .93rem; font-weight: 700; }
.benefits p > span { color: rgba(221,226,255,.55); font-size: .78rem; }

.approach-section {
  position: relative;
  overflow: hidden;
  border-top-color: rgba(255,255,255,.1);
  border-bottom: 0;
  background:
    radial-gradient(circle at 0% 18%, rgba(39,216,210,.13), transparent 28%),
    radial-gradient(circle at 90% 42%, rgba(255,94,170,.16), transparent 27%),
    linear-gradient(135deg, #14183a 0%, #29205d 54%, #181537 100%);
  color: #fff;
  padding-top: 106px;
}
.approach-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gradient);
  content: "";
}
.approach-section::after {
  position: absolute;
  top: 120px;
  left: 50%;
  width: 720px;
  height: 720px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  box-shadow: 0 0 0 120px rgba(255,255,255,.018), 0 0 0 240px rgba(255,255,255,.012);
  content: "";
  pointer-events: none;
}
.approach-section .wrap { position: relative; z-index: 1; }
.section-heading {
  grid-template-columns: minmax(0,1fr) minmax(300px,.72fr);
  gap: 86px;
}
.section-heading > p,
.section-heading > div > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
}
.approach-section .section-heading > p { color: rgba(229,232,255,.66); }
.method-grid { gap: 15px; margin-top: 54px; }
.method-grid article {
  --card-accent: var(--aqua);
  position: relative;
  min-height: 296px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  padding: 25px 23px 23px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.method-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--card-accent);
  content: "";
}
.method-grid article:nth-child(2) { --card-accent: #8f82ff; }
.method-grid article:nth-child(3) { --card-accent: var(--pink); }
.method-grid article:nth-child(4) { --card-accent: var(--orange); }
.method-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.095);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 48%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card-accent) 12%, transparent);
  color: var(--card-accent);
  font-size: .78rem;
  font-weight: 800;
}
.method-grid h3 { margin: 22px 0 13px; color: #fff; font-size: 1.1rem; }
.method-grid p { color: rgba(226,229,250,.63); font-size: .9rem; line-height: 1.72; }
.method-grid small {
  margin-top: 25px;
  color: rgba(218,220,246,.46);
  font-size: .68rem;
  font-weight: 750;
}
.method-grid small span { color: rgba(255,255,255,.86); font-size: .76rem; font-weight: 600; }

.offers-header { align-items: end; margin-top: 103px; }
.offers-header h3 { font-size: clamp(1.7rem,2.5vw,2.25rem); letter-spacing: -.04em; }
.offers-header p { color: rgba(225,228,252,.55); font-size: .84rem; }
.offers-grid { gap: 18px; margin-top: 32px; }
.offer {
  min-height: 408px;
  border-color: rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  padding: 34px 30px 27px;
  box-shadow: 0 27px 70px rgba(0,0,0,.19);
  transition: box-shadow .25s ease, transform .25s ease;
}
.offer:hover { transform: translateY(-6px); box-shadow: 0 34px 80px rgba(0,0,0,.26); }
.offer-label { color: var(--cobalt); font-size: .72rem; font-weight: 800; }
.offer h3 { margin: 14px 0 13px; font-size: 1.65rem; }
.offer > p { min-height: 78px; color: var(--muted); font-size: .91rem; }
.offer ul { margin: 21px 0 28px; font-size: .86rem; }
.offer li { padding-left: 21px; margin-bottom: 10px; }
.offer li::before { color: var(--cobalt); font-size: .76rem; font-weight: 800; }
.text-link {
  border-color: var(--line);
  padding-top: 18px;
  color: var(--purple-dark);
  font-size: .84rem;
  font-weight: 750;
}
.text-link:hover { color: var(--pink); }
.featured {
  transform: translateY(-12px);
  border-color: rgba(255,255,255,.24);
  background:
    radial-gradient(circle at 90% 2%, rgba(255,94,170,.48), transparent 34%),
    linear-gradient(145deg, #5a57ee 0%, #713dcc 62%, #44267e 100%);
  color: #fff;
  box-shadow: 0 33px 80px rgba(39,20,104,.42);
}
.featured:hover { transform: translateY(-18px); }
.featured .offer-label, .featured .text-link { color: var(--aqua); }
.featured > p, .featured li { color: rgba(255,255,255,.76); }
.featured li::before { color: var(--aqua); }
.featured .text-link { border-color: rgba(255,255,255,.2); }
.featured .text-link:hover { color: #fff; }
.offer-badge {
  top: -13px;
  left: 27px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua), #8af0ec);
  color: #0b1630;
  padding: 6px 13px;
  box-shadow: 0 8px 24px rgba(39,216,210,.26);
  font-size: .62rem;
  font-weight: 850;
}
.founder-note {
  display: grid;
  grid-template-columns: auto minmax(230px,auto) 1fr;
  gap: 17px;
  margin-top: 45px;
  border-color: rgba(255,255,255,.13);
  padding: 31px 0 58px;
}
.founder-monogram {
  width: 48px;
  height: 48px;
  border-color: rgba(39,216,210,.38);
  background: rgba(39,216,210,.08);
  color: var(--aqua);
  box-shadow: 0 0 25px rgba(39,216,210,.12);
  font-size: .85rem;
  font-weight: 800;
}
.founder-note strong { font-size: .9rem; font-weight: 700; }
.founder-note p span { color: rgba(225,228,252,.51); font-size: .74rem; }
.founder-note blockquote {
  max-width: 490px;
  color: rgba(255,255,255,.76);
  font-size: 1rem;
  text-align: right;
}

.diagnostic-section {
  position: relative;
  z-index: 1;
  padding-top: 105px;
  padding-bottom: 82px;
}
.diagnostic-section::before {
  position: absolute;
  z-index: -2;
  inset: 0 50% 0 auto;
  width: 100vw;
  transform: translateX(50%);
  background:
    radial-gradient(circle at 92% 12%, rgba(147,92,255,.12), transparent 25%),
    radial-gradient(circle at 2% 65%, rgba(39,216,210,.1), transparent 22%),
    var(--paper);
  content: "";
}
.diagnostic-section::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(50%);
  background: linear-gradient(90deg, transparent, rgba(91,97,255,.35), transparent);
  content: "";
}
.diagnostic-section .eyebrow { color: var(--cobalt); }
.privacy-note { color: #57617d !important; font-size: .78rem !important; }
.privacy-note svg { width: 15px; height: 15px; stroke: var(--green); }
.diagnostic-shell {
  grid-template-columns: 285px minmax(0,1fr);
  min-height: 555px;
  margin-top: 43px;
  border-color: rgba(91,97,255,.15);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.diagnostic-aside {
  background:
    radial-gradient(circle at 10% 90%, rgba(39,216,210,.17), transparent 33%),
    linear-gradient(150deg, #101533 0%, #24205a 100%);
  color: #fff;
  padding: 37px 31px;
}
.aside-title {
  margin-bottom: 33px;
  color: rgba(198,205,246,.58);
  font-size: .7rem;
  font-weight: 750;
}
.diagnostic-aside ol { gap: 29px; }
.diagnostic-aside li {
  position: relative;
  gap: 14px;
  color: rgba(216,220,247,.46);
  font-size: .82rem;
}
.diagnostic-aside li:not(:last-child)::after {
  position: absolute;
  top: 37px;
  left: 16px;
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.11);
  content: "";
}
.diagnostic-aside li > span {
  width: 34px;
  height: 34px;
  border-color: rgba(255,255,255,.15);
  border-radius: 11px;
  background: rgba(255,255,255,.04);
  font-size: .69rem;
  font-weight: 750;
}
.diagnostic-aside small { color: rgba(201,206,239,.36); font-size: .67rem; }
.diagnostic-aside li.active { color: #fff; }
.diagnostic-aside li.active > span {
  border-color: transparent;
  background: var(--gradient-button);
  color: #fff;
  box-shadow: 0 9px 24px rgba(91,97,255,.35);
}
.diagnostic-aside li.done > span {
  border-color: rgba(39,216,210,.46);
  background: rgba(39,216,210,.09);
  color: var(--aqua);
}
.aside-bottom { color: var(--aqua); }
.aside-bottom p { color: rgba(219,224,250,.5); font-size: .73rem; }
.diagnostic-main { padding: 42px 48px; }
.form-heading h3 { font-size: 1.7rem; }
.stage-counter {
  border: 1px solid #dfe2f3;
  border-radius: 999px;
  background: #f5f6ff;
  color: var(--purple-dark);
  padding: 5px 10px;
  font-size: .67rem;
  font-weight: 800;
}
.form-intro { margin-bottom: 29px; font-size: .9rem; }
.field > label, .field > span, .field legend {
  color: #343950;
  font-size: .86rem;
  font-weight: 700;
}
.field input:not([type=radio]):not([type=checkbox]), .field select, .field textarea {
  min-height: 48px;
  border-color: #dce0ee;
  border-radius: 11px;
  background: #fbfcff;
  font-size: .88rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:not([type=radio]):not([type=checkbox]):focus, .field select:focus, .field textarea:focus {
  border-color: var(--cobalt);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(91,97,255,.1);
}
.choice { border-radius: 12px; background: #fafbff; color: #44495f; font-size: .83rem; }
.choice:hover {
  transform: translateY(-1px);
  border-color: #afb4ff;
  background: #fff;
  box-shadow: 0 8px 22px rgba(32,37,87,.07);
}
.choice:has(input:checked) {
  border-color: var(--cobalt);
  background: linear-gradient(120deg, rgba(91,97,255,.1), rgba(147,92,255,.08));
  color: #3438a0;
  box-shadow: 0 8px 22px rgba(91,97,255,.11);
}
.choice input { width: 16px; height: 16px; accent-color: var(--cobalt); }
.form-actions { border-color: #eceef6; }
.form-actions .button { min-height: 45px; font-size: .8rem; }
.form-actions .left-caption, .back-button { font-size: .74rem; }
.process-choice strong { font-size: .86rem; font-weight: 700; }
.process-choice small, .hours-help { font-size: .72rem; }
.process-tab {
  border-radius: 999px;
  background: #f6f7fc;
  color: #858ba0;
  font-size: .7rem;
}
.process-tab.active { background: #edefff; color: var(--purple-dark); font-weight: 700; }
.diagnostic-footnote p { max-width: 590px; color: #767d94; font-size: .72rem; }
.subtle-button { color: var(--purple-dark); font-size: .78rem; }
.subtle-button:hover { color: var(--pink); }
.faq { border-color: var(--line); }
.faq summary { color: #282d45; font-size: .93rem; font-weight: 700; }
.faq summary span { color: var(--cobalt); }
.faq p { max-width: 830px; font-size: .88rem; }

.result-intro {
  border-color: #dcdfff;
  border-radius: 13px;
  background: linear-gradient(120deg, rgba(91,97,255,.09), rgba(147,92,255,.07));
}
.result-intro > span { color: var(--pink); }
.result-card { border-color: #e0e3f0; border-radius: 13px; background: #fcfcff; }
.rank { background: #eaeaff; color: var(--purple-dark); font-weight: 800; }
.result-label, .score, .result-card summary, .timeline-item strong { color: var(--purple-dark); }
.score-bar { height: 5px; border-radius: 999px; }
.score-bar > div { border-radius: 999px; background: var(--gradient); }
.result-meta span { border: 1px solid #e3e5f1; border-radius: 999px; background: #f4f5fa; }
.timeline-item { border-color: #dcdfff; }
.toast {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: #14182f;
  box-shadow: 0 14px 45px rgba(7,10,24,.35);
}
dialog {
  border-color: #dce0ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 32px 110px rgba(9,12,31,.38);
}
dialog::backdrop { background: rgba(7,10,24,.72); backdrop-filter: blur(6px); }
.footer { border-color: var(--line); color: var(--ink); }
.footer .brand { gap: 0; }
.nav-wrap { gap: 20px; }
nav { margin-left: auto; gap: 22px; }
.language-switch { display: flex; gap: 3px; flex-shrink: 0; padding: 4px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.05); }
.language-switch :is(button,a) { min-width: 35px; min-height: 35px; padding: 5px 8px; border: 0; border-radius: 999px; background: transparent; color: #c7ccec; font-size: .75rem; font-weight: 750; }
.language-switch :is(button,a).active { color: #fff; background: var(--gradient-button); box-shadow: 0 3px 10px rgba(91,97,255,.3); }
.footer > .copyright { display: block; font-size: .8rem; text-align: center; }
html[lang="nl"] h1 { font-size: clamp(3.1rem,5.1vw,4.5rem); }
.form-heading h3 { overflow-wrap: anywhere; }
@media(max-width:1120px) { .brand { font-size: .95rem; } nav { gap: 16px; } .nav-wrap { gap: 14px; } }
@media(max-width:860px) { .language-switch { margin-left: auto; } html[lang="nl"] h1 { font-size: clamp(3.25rem,10vw,4.8rem); } .footer > .copyright { flex: 1 1 100%; order: 3; text-align: left; margin: 0; } }
@media(max-width:480px) { .nav-wrap { gap: 9px; } .brand { font-size: .72rem; gap: 6px; } .brand svg { width: 22px; height: 22px; } .language-switch { gap: 0; padding: 2px; } .language-switch :is(button,a) { min-width: 29px; min-height: 33px; padding: 4px; font-size: .7rem; } .menu-toggle { flex-shrink: 0; width: 36px; height: 38px; padding: 8px; } html[lang="nl"] h1 { font-size: clamp(2.85rem,12.5vw,3.85rem); } .form-actions { flex-wrap: wrap; } .form-actions .button { max-width: 100%; } .form-heading { flex-wrap: wrap; } }
.result-intro h4, .result-card h4, .timeline h4 { font-size: 1rem; }
.result-intro p, .result-card > p, .timeline-item p, .result-card details,
.result-card details dl, .result-caveat { font-size: .8rem; }
.result-label, .result-meta span, .timeline-item strong { font-size: .75rem; }
.dialog-content p, .dialog-content li { font-size: .9rem; }
.dialog-content h4 { font-size: 1rem; }
.brief-text { font-size: .875rem; }

@keyframes rise-in {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes core-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
}

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: minmax(0,.9fr) minmax(455px,1.1fr); gap: 35px; }
  h1 { font-size: clamp(3.45rem,6vw,4.6rem); }
  .process-node { min-width: 157px; padding: 12px 10px; font-size: .72rem; }
  .method-grid article { min-height: 315px; padding: 23px 19px; }
  .diagnostic-shell { grid-template-columns: 250px minmax(0,1fr); }
  .diagnostic-main { padding: 38px 35px; }
}

@media (max-width: 860px) {
  .wrap, .nav-wrap { padding-right: 26px; padding-left: 26px; }
  .header { height: 74px; }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(255,255,255,.07);
    padding: 12px 10px;
  }
  .menu-toggle span { width: 21px; background: #fff; }
  nav {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    top: 73px;
    border-color: rgba(255,255,255,.12);
    background: rgba(7,10,24,.98);
    padding: 25px 26px 28px;
    box-shadow: 0 18px 45px rgba(0,0,0,.3);
    font-size: .95rem;
  }
  .hero { padding-top: 61px; }
  nav.open { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 720px; }
  h1 { font-size: clamp(3.8rem,11vw,5.4rem); }
  .hero-visual { width: 100%; max-width: 650px; margin: 0 auto; }
  .benefits { margin-top: 45px; }
  .approach-section { padding-top: 75px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .method-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 38px; }
  .method-grid article { min-height: 285px; }
  .offers-header { display: block; margin-top: 70px; }
  .offers-grid { grid-template-columns: 1fr; gap: 25px; }
  .offer { min-height: 0; }
  .offer > p { min-height: 0; }
  .featured, .featured:hover { transform: none; }
  .founder-note { grid-template-columns: auto 1fr; }
  .founder-note blockquote { grid-column: 1 / -1; margin: 9px 0 0; text-align: left; }
  .diagnostic-section { padding-top: 75px; }
  .diagnostic-shell { grid-template-columns: 1fr; }
  .diagnostic-aside { padding: 20px 24px; }
  .aside-title, .aside-bottom { display: none; }
  .diagnostic-aside ol { flex-direction: row; justify-content: space-between; gap: 7px; }
  .diagnostic-aside li { flex: 1; flex-direction: column; gap: 7px; text-align: center; }
  .diagnostic-aside small { display: none; }
  .diagnostic-aside li:not(:last-child)::after {
    top: 17px;
    left: calc(50% + 23px);
    width: calc(100% - 46px);
    height: 1px;
  }
  .diagnostic-main { padding: 35px 28px; }
}

@media (max-width: 590px) {
  .wrap, .nav-wrap { padding-right: 20px; padding-left: 20px; }
  .hero { padding-top: 45px; }
  .eyebrow { margin-bottom: 23px; font-size: .66rem; letter-spacing: .13em; }
  h1 { font-size: clamp(3.25rem,15vw,4.15rem); }
  h2 { font-size: clamp(2.6rem,12vw,3.3rem); }
  .hero-intro { font-size: 1rem; }
  .hero-copy .button { width: 100%; }
  .micro { justify-content: center; font-size: .71rem; }
  .hero-visual { min-height: 464px; border-radius: 22px; padding: 20px 13px 16px; }
  .workflow { height: 277px; }
  .process-node { min-width: 139px; gap: 6px; padding: 10px 8px; font-size: .66rem; }
  .process-node small { font-size: .54rem; }
  .node-icon { width: 17px; font-size: 1rem; }
  .node-dot { display: none; }
  .node-a { top: 36px; }
  .node-b { top: 47px; }
  .node-c { top: 190px; }
  .node-d { top: 202px; }
  .orchestrator-core { top: 93px; }
  .orchestrator-core svg { width: 65px; height: 65px; border-radius: 19px; padding: 15px; }
  .orchestrator-core span { font-size: .58rem; }
  .roadmap-card { margin-bottom: 21px; padding: 15px 12px; }
  .roadmap-title { gap: 9px; font-size: .7rem; }
  .roadmap-title small { font-size: .57rem; }
  .visual-bottom { font-size: .42rem; }
  .benefits { grid-template-columns: 1fr; gap: 10px; margin-top: 35px; padding-bottom: 41px; }
  .benefits > div, .benefits > div:not(:first-child) { min-height: 75px; padding: 16px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: 0; }
  .founder-note { gap: 13px; }
  .diagnostic-shell { border-radius: 18px; }
  .diagnostic-aside { padding: 18px 13px; }
  .diagnostic-aside li { font-size: .58rem; }
  .diagnostic-aside li > span { width: 29px; height: 29px; border-radius: 9px; }
  .diagnostic-aside li:not(:last-child)::after {
    top: 14px;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
  }
  .diagnostic-main { padding: 29px 19px; }
  .form-heading { align-items: flex-start; }
  .form-heading h3 { font-size: 1.45rem; }
  .stage-counter { font-size: .58rem; }
  .fields-row, .choice-grid, .process-choices { grid-template-columns: 1fr; }
  .fields-row { gap: 0; }
  .choice-grid, .process-choices { gap: 9px; }
  .form-actions .left-caption { max-width: 95px; font-size: .66rem; }
  .diagnostic-footnote { display: block; }
  .diagnostic-footnote p { margin-bottom: 11px; }
  .download-actions { flex-direction: column; }
  .download-actions .button { width: 100%; }
  .result-card details dl { grid-template-columns: 1fr; gap: 3px; }
  .result-card dd { margin-bottom: 7px; }
  .footer { flex-wrap: wrap; }
  .footer > p { display: none; }
  .footer > div { margin-left: auto; }
  dialog { border-radius: 16px; padding: 31px 22px; }
}

@media (max-width: 380px) {
  .nav-wrap { padding-left: 12px; padding-right: 12px; }
  .brand { font-size: .66rem; gap: 4px; }
  .brand svg { width: 20px; height: 20px; }
  .language-switch :is(button,a) { min-width: 26px; }
  .process-node { min-width: 126px; font-size: .61rem; }
  .process-node small { font-size: .49rem; }
  .node-icon { display: none; }
  .roadmap-title > span:last-child { display: none; }
}

 .credibility-section { padding-top: 56px; padding-bottom: 12px; }
.credibility-story { padding: 36px 40px; border-left: 4px solid #5361ef; border-radius: 0 20px 20px 0; background: linear-gradient(110deg,#edf2ff,#f5f3ff); }
.credibility-story .eyebrow { margin: 0 0 16px; color: #4057b8; }
.credibility-story h2 { font-size: clamp(1.6rem,2.6vw,2.2rem); line-height: 1.3; margin: 0 0 20px; }
.credibility-story h2 em { color: #6240ba; }
.credibility-story > p:not(.eyebrow) { max-width: 950px; font-size: 1rem; line-height: 1.8; margin: 0; color: #44506a; }
.credibility-story > p.credibility-conviction { margin-top: 16px; font-weight: 600; color: #24345b; }
@media (max-width: 600px) { .credibility-section { padding-top: 36px; } .credibility-story { padding: 28px 24px; } }

/* Justify reading text; keep compact labels and controls naturally aligned. */
main p:not(.eyebrow):not(.micro):not(.experience-brand):not(.hours-help):not(.privacy-note):not(.result-label),
.dialog-content p,
.dialog-content li,
.offers-grid li,
.result-card dd {
  text-align: justify;
  text-align-last: start;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}
.benefits p { text-align: start; }

#hero-title { font-size: clamp(1.9rem,3.5vw,3.1rem); line-height: 1.2; letter-spacing: -.045em; overflow-wrap: normal; }
@media (max-width: 860px) { #hero-title { font-size: clamp(1.9rem,6vw,3.3rem); } }

.document-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.document-preview { display: block; width: 100%; height: 65vh; min-height: 320px; border: 1px solid #dce4f5; background: #edf2f8; border-radius: 8px; }
.document-text { margin-top: 20px; }
.document-text p { white-space: pre-line; margin: 12px 0; }
#preview-brief-pdf { margin: 16px 12px 0 0; }

.ai-assessment { margin-top: 28px; padding-top: 24px; border-top: 2px solid #dedff7; }
.ai-assessment h4 { font-size: 1.25rem; margin: 0 0 12px; }
.ai-assessment > p { font-size: 1rem; margin-bottom: 24px; color: #56617b; }
.ai-assessment textarea { width: 100%; font-size: 1rem; min-height: 100px; padding: 14px; border: 1px solid #d2d9e8; border-radius: 8px; }
.ai-result { margin-top: 24px; padding: 24px; border: 1px solid #d4def6; border-radius: 14px; background: #f3f6ff; }
.ai-result h5 { font-size: .9375rem; color: #394daa; margin: 24px 0 8px; }
.ai-result p, .ai-result li { font-size: 1rem; line-height: 1.75; }
.ai-result ul { padding-left: 20px; margin: 10px 0; }
.ai-result li { margin-bottom: 10px; text-align: justify; hyphens: auto; }
.ai-result .ai-decision { display: flex; flex-direction: column; align-items: start; gap: 8px; text-align: start; }
.ai-decision strong { font-size: .875rem; color: #57627b; }
.ai-decision span { font-size: 1.0625rem; font-weight: 700; color: #243c91; }
.ai-result > .hours-help { margin-top: 20px; font-size: .875rem; color: #56617b; }
@media (max-width: 600px) { .ai-result { padding: 20px 16px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.language-switch a { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.contact-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
