@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken-grotesk.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken-grotesk-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;

  --white: #FFFFFF;
  --canvas: #F6F5F1;
  --canvas-2: #EFEDE7;
  --ink: #101828;
  --ink-soft: #1B2436;
  --ink-line: #2A3448;
  --text: #101828;
  --text-2: #535C6B;
  --text-3: #626B79;
  --tone: #7A828F;
  --on-dark: #FFFFFF;
  --on-dark-2: #A7AFBD;
  --line: #E6E3DC;
  --line-strong: #D3CFC6;
  --accent: #2148C4;
  --accent-hover: #1A3AA3;
  --accent-tint: #ECF0FA;
  --accent-on-dark: #8EA8F4;
  --neg: #A84A36;
  --neg-tint: #F7ECE8;
  --shadow-ui: 0 1px 2px rgba(16,24,40,.04), 0 12px 28px -16px rgba(16,24,40,.18);
  --r-ui: 14px;

  --font: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --fs-body: 1.125rem;
  --fs-small: .9375rem;
  --fs-micro: .8125rem;
  --fs-lead: clamp(1.125rem, 1.02rem + .4vw, 1.3125rem);
  --fs-h3: clamp(1.25rem, 1.1rem + .5vw, 1.5rem);
  --fs-h2: clamp(2.125rem, 1.35rem + 2.7vw, 3.625rem);
  --fs-h1: clamp(2.375rem, 1.3rem + 3.3vw, 4.375rem);
  --fs-display: clamp(6rem, 3rem + 11vw, 13rem);

  --max: 1240px;
  --gutter: clamp(20px, 4.5vw, 48px);
  --section: clamp(88px, 10vw, 152px);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-btn: 10px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.bg-dark :focus-visible, .calc-out :focus-visible { outline-color: var(--accent-on-dark); }
.bg-dark .cal-box :focus-visible { outline-color: var(--accent); }

.container { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-left: max(var(--gutter), env(safe-area-inset-left, 0px)); padding-right: max(var(--gutter), env(safe-area-inset-right, 0px)); }
.section { padding-block: var(--section); }
.bg-canvas { background: var(--canvas); }
.bg-dark { background: var(--ink); color: var(--on-dark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .625rem;
  font-size: var(--fs-small); font-weight: 500; letter-spacing: 0;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }
.bg-dark .eyebrow { color: var(--on-dark-2); }
.bg-dark .eyebrow::before { background: var(--accent-on-dark); }

h1, h2, h3, h4 { margin: 0; font-weight: 600; color: inherit; text-wrap: balance; overflow-wrap: break-word; }
.h1 { font-size: var(--fs-h1); line-height: 1.04; letter-spacing: -.04em; font-weight: 540; }
.h2 { font-size: var(--fs-h2); line-height: 1.04; letter-spacing: -.038em; }
.h3 { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: -.018em; }
.tone { color: var(--tone); }
.bg-dark .tone { color: #6F7888; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--text-2); max-width: 34em; text-wrap: pretty; }
.bg-dark .lead { color: var(--on-dark-2); }
.body-2 { color: var(--text-2); max-width: 36em; text-wrap: pretty; }
.bg-dark .body-2 { color: var(--on-dark-2); }
.micro { font-size: var(--fs-micro); color: var(--text-3); line-height: 1.5; }

.section-head { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 24px; margin-bottom: clamp(48px, 6vw, 88px); }
.section-head > .h2 { grid-column: 1 / span 7; }
.section-head > .lead { grid-column: 9 / span 4; align-self: end; }
.section-head > .eyebrow { grid-column: 1 / -1; }
@media (max-width: 960px) {
  .section-head { display: block; }
  .section-head > .lead { margin-top: 1.25rem; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  min-height: 56px; padding: 0 1.625rem;
  border-radius: var(--radius-btn);
  background: var(--accent); color: #fff;
  font-size: 1rem; font-weight: 600; letter-spacing: -.005em;
  text-decoration: none; border: 0; cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { background: var(--accent-hover); }
.btn .arrow { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--dark { background: var(--ink); }
.btn--dark:hover { background: #26324A; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--canvas); }
.btn--outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn--outline:hover { background: var(--canvas); box-shadow: inset 0 0 0 1px var(--ink); }
.btn--sm { min-height: 46px; padding: 0 1.25rem; font-size: .9375rem; }
.textlink { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--accent); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.textlink:hover { color: var(--accent-hover); }
.bg-dark .textlink { color: #fff; }

.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.5) blur(14px);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: 84px; }
.wordmark { font-size: 1.5rem; font-weight: 700; letter-spacing: -.045em; text-decoration: none; color: var(--ink); line-height: 1; }
.wordmark span { color: var(--accent); }
.bg-dark .wordmark, .wordmark--light { color: #fff; }
.bg-dark .wordmark span, .wordmark--light span { color: var(--accent-on-dark); }
.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a { text-decoration: none; font-size: .96875rem; font-weight: 500; color: var(--text-2); transition: color .2s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-toggle { display: none; width: 44px; height: 44px; margin-right: -10px; border: 0; background: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; margin: 6px auto; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 980px) {
  .site-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .header-inner { height: 72px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: calc(72px + env(safe-area-inset-top, 0px)) 0 0 0;
    flex-direction: column; align-items: stretch; justify-content: space-between; gap: 2rem;
    background: #fff; padding: 1.5rem max(var(--gutter), env(safe-area-inset-right, 0px)) calc(2rem + env(safe-area-inset-bottom, 0px)) max(var(--gutter), env(safe-area-inset-left, 0px));
    border-top: 1px solid var(--line);
    overflow-y: auto; overscroll-behavior: contain;
  }
  .nav:not(.is-open) { display: none; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { font-size: 1.75rem; font-weight: 600; letter-spacing: -.03em; color: var(--ink); padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { width: 100%; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 980px) and (max-height: 520px) {
  .nav { gap: 1rem; padding-top: .5rem; }
  .nav-links a { font-size: 1.25rem; padding: .6rem 0; }
}

.media {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #E4E1D9 0%, #D6D2C8 100%);
  max-width: 100%;
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--dark { background: linear-gradient(155deg, #243049 0%, #172033 100%); }
.media-ph {
  position: absolute; left: 20px; top: 18px; right: 20px;
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 500; color: rgba(16,24,40,.5);
}
.media-ph svg { width: 16px; height: 16px; flex: none; }
.media--dark .media-ph { color: rgba(255,255,255,.45); }

.hero { padding-block: clamp(48px, 6vw, 96px) 0; overflow-x: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); gap: 40px clamp(32px, 3.5vw, 48px); align-items: center; }
@media (min-width: 1280px) {
  .hero-grid { grid-template-columns: minmax(0, 656px) minmax(0, 1fr); }
}
.hero-copy .lead { margin-top: 1.5rem; max-width: 32em; }
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: .875rem; margin-top: 2.25rem; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-cta .micro { display: flex; align-items: center; gap: .5rem; }
.hero-cta .micro svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

.hero-visual { display: block; position: relative; margin-right: calc(-1 * min(160px, max(var(--gutter), (100vw - var(--max)) / 2))); }
.hero-visual img {
  display: block; width: 100%; height: auto; aspect-ratio: 1449 / 1086; object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 94%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 94%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-composite: intersect;
}

.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(40px, 5vw, 72px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.hero-facts > div { padding: 1.5rem 1.75rem; border-left: 1px solid var(--line); }
.hero-facts > div:first-child { border-left: 0; }
.hero-facts strong { display: block; font-size: 1.0625rem; font-weight: 600; letter-spacing: -.01em; }
.hero-facts span { display: block; font-size: var(--fs-small); color: var(--text-2); margin-top: .25rem; line-height: 1.45; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 720px; }
  .hero-visual { margin-right: 0; max-width: 880px; width: 100%; justify-self: center; }
}
@media (max-width: 960px) {
  .hero-cta { align-items: stretch; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts > div { border-left: 0; border-top: 1px solid var(--line); padding: 1.125rem 1.25rem; }
  .hero-facts > div:first-child { border-top: 0; }
}
@media (max-width: 599px) {
  .hero-visual { margin-inline: calc(-1 * var(--gutter)); width: auto; max-width: none; }
  .hero-visual img {
    aspect-ratio: 1099 / 1026;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 96%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 96%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }
}

.calc { display: grid; grid-template-columns: 1.1fr .9fr; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.calc-in { padding: clamp(28px, 4vw, 56px); background: #fff; display: grid; gap: 2.5rem; }
.calc-out { padding: clamp(28px, 4vw, 56px); background: var(--ink); color: #fff; display: flex; flex-direction: column; }
.field-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1.125rem; }
.field-top label, .field-top .field-label { font-weight: 600; letter-spacing: -.01em; }
.field-top output { font-size: 1.375rem; font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.field-hint { margin-top: .75rem; font-size: var(--fs-micro); color: var(--text-3); }
.range { -webkit-appearance: none; appearance: none; width: 100%; margin: 0; height: 28px; background: transparent; cursor: pointer; --p: 50%; }
.range::-webkit-slider-runnable-track { height: 3px; border-radius: 3px; background: linear-gradient(to right, var(--ink) var(--p), var(--line) var(--p)); }
.range::-moz-range-track { height: 3px; border-radius: 3px; background: var(--line); }
.range::-moz-range-progress { height: 3px; border-radius: 3px; background: var(--ink); }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; margin-top: -9.5px; border-radius: 50%; background: #fff; border: 1.5px solid var(--ink); box-shadow: 0 2px 6px rgba(16,24,40,.18); transition: transform .2s var(--ease); }
.range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 1.5px solid var(--ink); box-shadow: 0 2px 6px rgba(16,24,40,.18); }
.range:hover::-webkit-slider-thumb { transform: scale(1.08); }
.range-scale { display: flex; justify-content: space-between; font-size: var(--fs-micro); color: var(--text-3); margin-top: .25rem; font-variant-numeric: tabular-nums; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-strong); border-radius: var(--radius-btn); overflow: hidden; }
.seg button { border: 0; border-left: 1px solid var(--line-strong); background: #fff; padding: .9rem .75rem; cursor: pointer; text-align: left; line-height: 1.3; transition: background-color .2s var(--ease), color .2s var(--ease); }
.seg button:first-child { border-left: 0; }
.seg button b { display: block; font-weight: 600; font-variant-numeric: tabular-nums; }
.seg button span { font-size: var(--fs-micro); color: var(--text-3); }
.seg button:hover { background: var(--canvas); }
.seg button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.seg button[aria-pressed="true"] span { color: var(--on-dark-2); }
.calc-label { font-size: var(--fs-small); color: var(--on-dark-2); }
.calc-total { font-size: clamp(3rem, 2rem + 3.6vw, 4.75rem); font-weight: 600; line-height: 1; letter-spacing: -.05em; margin: 1rem 0 .75rem; font-variant-numeric: tabular-nums; }
.calc-sub { font-size: var(--fs-small); color: var(--on-dark-2); }
.calc-rows { margin: 2.25rem 0 0; border-top: 1px solid var(--ink-line); }
.calc-rows div { display: flex; justify-content: space-between; gap: 1rem; padding-block: .95rem; border-bottom: 1px solid var(--ink-line); }
.calc-rows dt { color: var(--on-dark-2); }
.calc-rows dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; }
.calc-out .btn { margin-top: 2.25rem; align-self: flex-start; }
.calc-formula { margin-top: 1.5rem; font-size: var(--fs-micro); color: #7C8596; line-height: 1.55; }
@media (max-width: 960px) {
  .calc { grid-template-columns: 1fr; }
  .calc-out .btn { width: 100%; }
}
@media (max-width: 480px) {
  .seg { grid-template-columns: 1fr; }
  .seg button { border-left: 0; border-top: 1px solid var(--line-strong); display: flex; justify-content: space-between; align-items: baseline; }
  .seg button:first-child { border-top: 0; }
}

.industries { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ind { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate; color: #fff;
  background: var(--ink-soft); }
.ind picture { position: absolute; inset: 0; z-index: -1; display: block; }
.ind-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: saturate(.9) contrast(1.02); transition: transform 1.2s var(--ease); }
.ind:hover .ind-img { transform: scale(1.035); }
.ind::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(16,24,40,0) 38%, rgba(16,24,40,.55) 68%, rgba(16,24,40,.9) 100%); pointer-events: none; }
.ind-body { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; padding: 22px; }
.ind-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.ind-ico svg { width: 20px; height: 20px; }
.ind-title { margin-top: 14px; font-size: clamp(1.25rem, 1.1rem + .45vw, 1.5rem); font-weight: 600; letter-spacing: -.022em; line-height: 1.15; overflow-wrap: anywhere; }
.ind-roles { margin-top: 6px; min-height: calc(2 * 1.45em); font-size: .875rem; line-height: 1.45; color: rgba(255,255,255,.78); }
.industries-foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem 2rem; margin-top: clamp(48px, 5vw, 72px); padding-top: 2rem; border-top: 1px solid var(--line-strong); }
.industries-foot p { color: var(--text-2); }
@media (max-width: 1100px) { .ind-body { padding: 18px; } }
@media (max-width: 1100px) { .industries { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 901px) and (max-width: 1100px) { .ind { aspect-ratio: 4 / 3.4; } }
@media (max-width: 560px) {
  .industries { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); scrollbar-width: none; }
  .industries::-webkit-scrollbar { display: none; }
  .ind { flex: 0 0 76%; scroll-snap-align: start; }
}

.founder { display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px 24px; align-items: center; }
.founder-media { grid-column: 1 / span 5; }
.founder-media .media { aspect-ratio: 4 / 5; }
.founder-photo { aspect-ratio: 4 / 5; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.founder-caption { display: flex; justify-content: flex-start; align-items: center; gap: 1rem; margin-top: 1rem; font-size: var(--fs-small); }
.name-img { display: block; flex: none; height: 1.303em; width: auto; aspect-ratio: 8730 / 1303; -webkit-user-drag: none; user-select: none; pointer-events: none; }
.founder-caption span { color: var(--text-3); }
.founder-text { grid-column: 7 / span 6; }
.founder-card { grid-column: 7 / span 6; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 56px); }
.founder-card .h2 { font-size: clamp(2rem, 1.35rem + 2vw, 3rem); }
.founder-intro { margin-top: 1.5rem; font-size: var(--fs-lead); line-height: 1.5; font-weight: 500; letter-spacing: -.01em; color: var(--ink); max-width: 30em; }
.founder-card .body-2 { margin-top: 1rem; }
.founder-points { list-style: none; margin: 2rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .25rem; }
.founder-points li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; padding: .4rem 0; font-size: 1rem; font-weight: 500; line-height: 1.45; color: var(--ink); }
.founder-points svg { width: 18px; height: 18px; margin-top: 2px; color: var(--accent); }
.founder-text .body-2 + .body-2 { margin-top: 1.25rem; }
.founder-text .h2 { margin-bottom: 2rem; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line-strong); }
.principles strong { display: block; font-weight: 600; letter-spacing: -.01em; }
.principles span { display: block; margin-top: .375rem; font-size: var(--fs-small); color: var(--text-2); line-height: 1.5; }
@media (max-width: 960px) {
  .founder { display: block; }
  .founder-media { margin-bottom: 2rem; max-width: 440px; }
  .founder-media .media, .founder-photo { aspect-ratio: 4 / 5; }
}
@media (max-width: 560px) { .principles { grid-template-columns: 1fr; gap: 1.25rem; } }

.faq-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px 24px; }
.faq-intro { grid-column: 1 / span 4; align-self: start; position: sticky; top: 132px; }
.faq-intro .lead { margin-top: 1.25rem; }
.faq-intro .btn { margin-top: 2rem; }
.faq { grid-column: 6 / span 7; border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr 24px; gap: 1.5rem; align-items: center; padding-block: 1.625rem; font-size: clamp(1.125rem, 1.05rem + .3vw, 1.3125rem); font-weight: 600; letter-spacing: -.018em; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq .pm { position: relative; width: 24px; height: 24px; }
.faq .pm::before, .faq .pm::after { content: ""; position: absolute; left: 4px; right: 4px; top: 50%; height: 1.5px; background: currentColor; transition: transform .35s var(--ease); }
.faq .pm::after { transform: rotate(90deg); }
.faq details[open] .pm::after { transform: rotate(0deg); }
.faq details p { padding: 0 3rem 1.75rem 0; color: var(--text-2); max-width: 40em; }
@media (max-width: 960px) {
  .faq-grid { display: block; }
  .faq-intro { position: static; margin-bottom: 2.5rem; }
  .faq details p { padding-right: 0; }
}

.booking { display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px 24px; align-items: start; }
.booking-info { grid-column: 1 / span 5; }
.booking-info .lead { margin-top: 1.5rem; }
.agenda { list-style: none; margin: 2.5rem 0 0; padding: 0; border-top: 1px solid var(--ink-line); }
.agenda li { display: grid; grid-template-columns: 36px 1fr; gap: 8px; padding-block: 1.125rem; border-bottom: 1px solid var(--ink-line); color: var(--on-dark-2); }
.agenda li b { color: #fff; font-weight: 600; display: block; }
.agenda .n { color: var(--accent-on-dark); font-size: var(--fs-small); font-weight: 600; padding-top: .1rem; font-variant-numeric: tabular-nums; }
.host { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.host-photo { display: block; width: 64px; height: 64px; border-radius: 12px; overflow: hidden; flex: none; background: var(--ink-soft); }
.host-photo img { width: 100%; height: 100%; object-fit: cover; }
.host .name-img { font-size: 1.125rem; margin-bottom: 2px; }
.host span { font-size: var(--fs-small); color: var(--on-dark-2); }
.cal-box { grid-column: 7 / span 6; background: #fff; color: var(--ink); border-radius: var(--radius-lg); min-height: 600px; display: flex; flex-direction: column; overflow: hidden; }
.cal-consent { margin: auto; padding: clamp(28px, 4vw, 56px); max-width: 480px; }
.cal-consent .h3 { font-size: clamp(1.5rem, 1.25rem + .8vw, 1.875rem); letter-spacing: -.03em; }
.cal-consent p { margin-top: 1rem; color: var(--text-2); font-size: var(--fs-small); }
.cal-consent a { color: var(--accent); }
.cal-consent .btn { margin-top: 1.75rem; }
.cal-consent .alt { margin-top: 1.25rem; }
.cal-consent[hidden], .cal-stage[hidden], .cal-error[hidden] { display: none; }
.cal-error { margin: auto; padding: clamp(28px, 4vw, 56px); max-width: 480px; }
.cal-error .h3 { font-size: clamp(1.5rem, 1.25rem + .8vw, 1.875rem); letter-spacing: -.03em; }
.cal-error p { margin-top: 1rem; color: var(--text-2); font-size: var(--fs-small); }
.cal-error a { color: var(--accent); }
.cal-error .btn { margin-top: 1.75rem; }
.cal-error .alt { margin-top: 1.25rem; }
.cal-box[data-state="loading"], .cal-box[data-state="live"] { min-height: 0; }
.cal-stage { display: flex; flex-direction: column; padding: clamp(20px, 3vw, 32px) clamp(10px, 2vw, 24px) clamp(14px, 2vw, 20px); }
.cal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 0 clamp(10px, 1.6vw, 16px) 1.25rem; }
.cal-sub { margin-top: .25rem; font-size: var(--fs-small); color: var(--text-2); line-height: 1.45; }
.cal-head .h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); letter-spacing: -.024em; }
.cal-chip { display: inline-flex; align-items: center; gap: 6px; flex: none; padding: 5px 11px; border-radius: 999px; background: var(--accent-tint); color: var(--accent); font-size: var(--fs-micro); font-weight: 600; white-space: nowrap; }
.cal-chip svg { width: 14px; height: 14px; }
.cal-frame { position: relative; min-height: 420px; border-top: 1px solid var(--line); }
.cal-mount iframe { display: block; width: 100%; border: 0; opacity: 0; transition: opacity .4s var(--ease); }
.cal-frame.is-ready .cal-mount iframe { opacity: 1; }
.cal-mount .calendly-spinner { display: none; }
.cal-skeleton { position: absolute; inset: 0; padding: 32px clamp(16px, 5vw, 56px); pointer-events: none; animation: cal-pulse 1.6s ease-in-out infinite; }
.cal-skeleton::before { content: ""; display: block; width: 45%; max-width: 220px; height: 16px; margin: 0 auto 28px; border-radius: 8px; background: var(--canvas-2); }
.cal-skeleton::after { content: ""; display: block; max-width: 420px; height: 336px; margin: 0 auto; background: radial-gradient(circle at center, var(--canvas-2) 0 17px, transparent 18px) 0 0 / calc(100% / 7) 56px; }
.cal-frame.is-ready .cal-skeleton { display: none; }
@keyframes cal-pulse { 50% { opacity: .55; } }
.cal-foot { padding: .875rem clamp(10px, 1.6vw, 16px) 0; font-size: var(--fs-micro); color: var(--text-3); }
.cal-foot a { color: var(--accent); }
@media (max-width: 960px) {
  .booking { display: block; }
  .cal-box { margin-top: 3rem; min-height: 0; }
  .cal-consent .btn, .cal-error .btn { width: 100%; }
}

.section-sm { padding-block: clamp(72px, 8vw, 120px); }
.section--flush-top { padding-top: 0; }
.h2--sm { font-size: clamp(1.875rem, 1.3rem + 2vw, 2.875rem); }

.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px 24px; align-items: center; }
.split-head { grid-column: 1 / span 5; }
.split-panel { grid-column: 7 / span 6; display: grid; grid-template-columns: 1.5fr 1fr; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.split-we { background: var(--canvas); padding: 28px 32px; }
.split-you { background: var(--ink); color: #fff; padding: 28px 28px; display: flex; flex-direction: column; }
.split-label { font-size: var(--fs-micro); font-weight: 600; color: var(--text-3); margin-bottom: .75rem; }
.split-you .split-label { color: var(--on-dark-2); }
.split ul { list-style: none; margin: 0; padding: 0; }
.split li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line-strong); font-weight: 500; font-size: 1rem; letter-spacing: -.005em; }
.split li:first-child { border-top: 0; }
.split li svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.split-you li { border-top-color: var(--ink-line); font-size: 1.125rem; font-weight: 600; }
.split-you li svg { color: var(--accent-on-dark); }
.split-note { margin-top: auto; padding-top: 1.5rem; font-size: var(--fs-small); color: var(--on-dark-2); line-height: 1.5; }
@media (max-width: 1100px) {
  .split { display: block; }
  .split-panel { margin-top: 2.5rem; }
}
@media (max-width: 600px) {
  .split-panel { grid-template-columns: 1fr; }
  .split-we, .split-you { padding: 22px 20px; }
}

.ui-card { width: 100%; max-width: 310px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-ui); padding: 14px 14px 10px; font-size: .8125rem; line-height: 1.35; }
.ui-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-bottom: 10px; margin-bottom: 4px; border-bottom: 1px solid var(--line); font-weight: 600; white-space: nowrap; }
.ui-head > span:first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.ui-meta { color: var(--text-3); font-weight: 500; }
.ui-meta--paid { display: inline-flex; align-items: center; gap: 4px; color: var(--text-2); }
.ui-meta svg { width: 13px; height: 13px; }
.ui-row { display: grid; grid-template-columns: 24px 1fr auto; gap: 10px; align-items: center; padding: 8px 0; }
.ui-av { width: 24px; height: 24px; border-radius: 50%; background: var(--canvas-2); }
.ui-lines { display: grid; gap: 5px; }
.ui-lines i { display: block; height: 5px; border-radius: 3px; background: #E9E6DF; width: 82%; }
.ui-lines i + i { width: 52%; background: #F1EFEA; }
.tag { font-style: normal; font-size: .6875rem; font-weight: 600; padding: 3px 8px; border-radius: 6px; white-space: nowrap; }
.tag--neg { color: var(--neg); background: var(--neg-tint); }
.metric { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); color: var(--text-2); }
.ui-head + .metric { border-top: 0; }
.spark { width: 90px; height: 24px; flex: none; }
.spark path { fill: none; stroke: var(--text-3); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.metric--neg span { color: var(--ink); font-weight: 600; }
.metric--neg b { font-size: 1.375rem; font-weight: 600; color: var(--neg); line-height: 1; font-variant-numeric: tabular-nums; }
.hist { list-style: none; margin: 0; padding: 2px 0 0; }
.hist li { display: grid; grid-template-columns: 40px 1fr 16px; gap: 8px; align-items: center; padding: 7px 0; color: var(--text-2); }
.hist-m { color: var(--text-3); font-variant-numeric: tabular-nums; }
.hist li svg { width: 15px; height: 15px; }
.hist .is-ok { color: var(--ink); font-weight: 600; }
.hist .is-neg { color: var(--neg); font-weight: 600; }
.hist .is-loop { color: var(--ink); font-weight: 600; border-top: 1px dashed var(--line-strong); margin-top: 3px; }
.hist .is-loop svg { color: var(--text-2); }

.pains { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pain { min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 12px 12px 32px; display: flex; flex-direction: column; }
.pv { position: relative; height: 236px; border-radius: 14px; background: var(--canvas); display: grid; grid-template-columns: minmax(0, 1fr); place-items: center; padding: 24px 20px; overflow: hidden; }
.pv::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 48px; background: linear-gradient(rgba(246,245,241,0), var(--canvas)); pointer-events: none; }
.pain-label { margin: 28px 18px 0; font-size: var(--fs-micro); font-weight: 600; color: var(--text-3); }
.pain .h3 { margin: .5rem 18px 0; font-size: clamp(1.25rem, 1.1rem + .5vw, 1.5rem); letter-spacing: -.024em; line-height: 1.2; }
.pain > p:last-child { margin: .875rem 18px 0; color: var(--text-2); font-size: 1rem; line-height: 1.6; }
.bridge { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.25rem 2rem; margin-top: clamp(56px, 6vw, 88px); padding-top: 2rem; border-top: 1px solid var(--line-strong); }
.bridge p { font-size: clamp(1.625rem, 1.2rem + 1.4vw, 2.5rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.1; max-width: 20em; text-wrap: balance; }
@media (max-width: 1100px) {
  .pains { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .pv { height: 220px; }
}
@media (min-width: 640px) and (max-width: 1100px) {
  .pain { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto 1fr; gap: 0 8px; padding: 12px; }
  .pv { grid-row: 1 / span 3; height: 100%; min-height: 240px; }
  .pain-label { margin: 16px 12px 0; }
  .pain .h3 { margin: .5rem 12px 0; }
  .pain > p:last-child { margin: .75rem 12px 12px; }
}

.why { display: grid; grid-template-columns: repeat(12, 1fr); gap: 56px 24px; align-items: center; }
.why-text { grid-column: 1 / span 6; }
.why-text .h2 { font-size: clamp(2.25rem, 1.3rem + 3.2vw, 4.125rem); }
.why-text .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--ink-line); }
.why-text .cols p { color: var(--on-dark-2); font-size: 1.0625rem; }
.reach { grid-column: 8 / span 5; background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 20px; padding: clamp(20px, 2.5vw, 32px); }
.reach-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 24px; }
.reach-title { font-weight: 600; font-size: 1rem; }
.reach-toggle { display: inline-grid; grid-template-columns: 1fr 1fr; background: var(--ink); border: 1px solid var(--ink-line); border-radius: 10px; padding: 3px; }
.reach-toggle button { border: 0; background: transparent; color: var(--on-dark-2); font-size: .875rem; font-weight: 600; padding: 7px 12px; border-radius: 7px; cursor: pointer; transition: background-color .3s var(--ease), color .3s var(--ease); }
.reach-toggle button:hover { color: #fff; }
.reach-toggle button[aria-pressed="true"] { background: #fff; color: var(--ink); }
.reach-grid { display: grid; grid-template-columns: repeat(14, 1fr); gap: clamp(7px, 1vw, 11px); }
.d { display: block; aspect-ratio: 1; border-radius: 50%; box-shadow: inset 0 0 0 1.5px #34405A; transition: background-color .6s var(--ease), box-shadow .6s var(--ease); }
.d--a { background: #fff; box-shadow: none; }
.reach-grid.is-talentlauf .d--o { background: var(--accent-on-dark); box-shadow: none; }
.reach-legend { list-style: none; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--ink-line); display: grid; gap: 9px; font-size: .9rem; color: var(--on-dark-2); }
.reach-legend li { display: flex; align-items: center; gap: 10px; transition: opacity .4s var(--ease); }
.lg { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.lg--active { background: #fff; }
.lg--open { background: var(--accent-on-dark); }
.lg--none { box-shadow: inset 0 0 0 1.5px #4A5670; }
.reach[data-mode="portal"] .reach-legend li:nth-child(2) { opacity: .45; }
.reach-cap { margin-top: 12px; font-size: .75rem; color: var(--on-dark-2); }
@media (max-width: 1024px) {
  .why { display: block; }
  .reach { margin-top: 3rem; max-width: 620px; }
}
@media (max-width: 600px) {
  .why-text .cols { grid-template-columns: 1fr; }
}

.std-head { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px 24px; align-items: end; margin-bottom: clamp(48px, 5vw, 72px); }
.std-head > div { grid-column: 1 / span 7; }
.std-head .lead { margin-top: 1.5rem; }
.std-points { grid-column: 9 / span 4; list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.std-points li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; font-size: 1rem; line-height: 1.55; color: var(--text-2); }
.std-points b { color: var(--ink); font-weight: 600; }
.std-points svg { width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }
@media (max-width: 1024px) {
  .std-head { display: block; }
  .std-points { margin-top: 2.5rem; max-width: 640px; }
}

.composer { border-radius: 24px; background: var(--canvas); border: 1px solid var(--line); padding: clamp(14px, 2.4vw, 32px); }
.composer-bar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 6px 16px; padding: 4px 6px 20px; }
.composer-bar p { font-size: var(--fs-small); color: var(--text-2); }
.composer-bar b { color: var(--ink); font-weight: 600; }
.composer-bar .composer-note { font-size: var(--fs-micro); color: var(--text-3); }
.composer-body { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 16px; }
.jobs, .strategy { min-width: 0; }
.composer-label { display: block; font-size: var(--fs-micro); font-weight: 600; color: var(--text-3); margin-bottom: .75rem; }
.jobs { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.jobs-list { display: grid; gap: 10px; }
.job { display: grid; gap: 4px; text-align: left; width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 15px 16px; cursor: pointer; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease); }
.job:hover { border-color: var(--line-strong); background: #FCFBF9; }
.job[aria-selected="true"] { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); background: #fff; }
.job-title { font-weight: 600; font-size: 1rem; letter-spacing: -.012em; }
.job-meta { font-size: .8125rem; color: var(--text-2); line-height: 1.4; }
.strategy { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: var(--shadow-ui); }
.strategy-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.strategy-count { font-size: var(--fs-micro); color: var(--text-3); white-space: nowrap; }
.strategy-count b { color: var(--accent); font-weight: 600; }
.mods { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.mod { display: grid; grid-template-columns: 40px 1fr 28px; gap: 14px; align-items: center; padding: 11px 14px 11px 11px; border-radius: 12px; border: 1px solid var(--line); background: #FBFAF8; transition: background-color .45s var(--ease), border-color .45s var(--ease), opacity .45s var(--ease); }
.mod:not(.is-on) .mod-ico, .mod:not(.is-on) .mod-state { opacity: .6; }
.mod:not(.is-on) .mod-txt b { color: var(--text-2); }
.mod:not(.is-on) .mod-txt span { color: var(--text-3); }
.mod.is-on { background: #fff; border-color: #D5DDF2; }
.mod-ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--canvas); color: var(--text-3); transition: background-color .45s var(--ease), color .45s var(--ease), opacity .45s var(--ease); }
.mod-ico svg { width: 20px; height: 20px; }
.mod.is-on .mod-ico { background: var(--accent-tint); color: var(--accent); }
.mod-txt b { display: block; font-size: .96875rem; font-weight: 600; letter-spacing: -.01em; overflow-wrap: anywhere; transition: color .45s var(--ease); }
.mod-txt span { display: block; font-size: .8125rem; color: var(--text-2); line-height: 1.4; transition: color .45s var(--ease); }
.mod-state { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--text-3); transition: background-color .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease), opacity .45s var(--ease); }
.mod-state svg { width: 15px; height: 15px; }
.mod.is-on .mod-state { background: var(--accent); border-color: var(--accent); color: #fff; }
.strategy-msg { margin-top: 12px; padding: 16px 18px; border-radius: 12px; background: var(--ink); color: #fff; }
.strategy-msg .composer-label { color: var(--on-dark-2); margin-bottom: .25rem; }
.strategy-msg p { font-size: clamp(1.0625rem, 1rem + .3vw, 1.25rem); font-weight: 600; letter-spacing: -.018em; line-height: 1.3; transition: opacity .3s var(--ease); }
@media (max-width: 900px) {
  .composer-body { grid-template-columns: minmax(0, 1fr); }
  .jobs { padding: 16px; }
  .jobs-list { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; margin-inline: -16px; padding: 3px 16px 6px; scroll-padding-inline: 16px; scrollbar-width: none; }
  .jobs-list::-webkit-scrollbar { display: none; }
  .job { flex: 0 0 min(78%, 300px); scroll-snap-align: start; }
  .strategy { padding: 16px; }
  .mod { grid-template-columns: 36px 1fr 26px; gap: 12px; padding: 10px; }
  .mod-ico { width: 36px; height: 36px; }
  .mods { grid-template-columns: minmax(0, 1fr); }
  .mod-txt { min-width: 0; }
  .mod-state { width: 26px; height: 26px; }
}

.funnel { max-width: 1040px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.fn-row { width: var(--w); display: flex; gap: 12px; }
.fn-band { flex: 1; min-width: 0; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px 18px 18px; box-shadow: var(--shadow-ui); }
.fn-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent); }
.fn-ico svg { width: 22px; height: 22px; }
.fn-stage { display: block; font-size: .75rem; font-weight: 600; color: var(--accent); margin-bottom: 1px; }
.fn-txt b { display: block; font-size: 1.0625rem; font-weight: 600; letter-spacing: -.015em; line-height: 1.3; overflow-wrap: anywhere; }
.fn-txt > span:last-child { display: block; margin-top: 2px; font-size: .9rem; color: var(--text-2); line-height: 1.45; }
.fn-band--result { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 18px 40px -20px rgba(33,72,196,.6); }
.fn-band--result .fn-ico { background: rgba(255,255,255,.14); color: #fff; }
.fn-band--result .fn-stage { color: #C7D4FA; }
.fn-band--result .fn-txt > span:last-child { color: #DCE4FB; }
.fn-flow { display: flex; justify-content: center; gap: 10px; padding: 15px 0; }
.fn-flow i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); }
.fn-flow--final i { background: var(--accent); }
.funnel.anim-ready > * { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.funnel.anim-ready:not(.is-in) > * { opacity: 0; transform: translateY(14px); }
.funnel.anim-ready > :nth-child(2) { transition-delay: .08s; } .funnel.anim-ready > :nth-child(3) { transition-delay: .16s; }
.funnel.anim-ready > :nth-child(4) { transition-delay: .24s; } .funnel.anim-ready > :nth-child(5) { transition-delay: .32s; }
.funnel.anim-ready > :nth-child(6) { transition-delay: .40s; } .funnel.anim-ready > :nth-child(7) { transition-delay: .48s; }
.funnel.anim-ready > :nth-child(8) { transition-delay: .56s; } .funnel.anim-ready > :nth-child(9) { transition-delay: .64s; }
@media (max-width: 760px) {
  .fn-row { width: calc(64% + var(--w) * .36); flex-direction: column; gap: 8px; }
  .fn-band { grid-template-columns: 38px 1fr; gap: 12px; padding: 14px 16px 14px 14px; }
  .fn-ico { width: 38px; height: 38px; }
  .fn-flow { padding: 11px 0; gap: 8px; }
}

.quali { display: grid; grid-template-columns: repeat(12, 1fr); gap: 56px 24px; align-items: center; }
.quali-text { grid-column: 1 / span 5; }
.quali-text .lead { margin-top: 1.5rem; }
.qsteps { list-style: none; margin: 2.25rem 0 0; padding: 0; position: relative; }
.qsteps::before { content: ""; position: absolute; left: 13.5px; top: 22px; bottom: 22px; width: 1px; background: var(--line-strong); }
.qsteps li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 11px 0; color: var(--text-2); font-size: .96875rem; line-height: 1.45; }
.qsteps b { display: block; color: var(--ink); font-weight: 600; font-size: 1.03125rem; letter-spacing: -.01em; }
.qs-dot { position: relative; z-index: 1; width: 12px; height: 12px; margin: 6px 0 0 8px; border-radius: 50%; background: var(--accent); border: 1.5px solid var(--accent); box-shadow: 0 0 0 4px #fff; transition: background-color .4s var(--ease), border-color .4s var(--ease); }
.qsteps.anim-ready li:not(.is-done) .qs-dot { background: #fff; border-color: var(--line-strong); }
.qsteps.anim-ready li { transition: color .4s var(--ease); }

.phone-stage { grid-column: 7 / span 6; position: relative; height: clamp(700px, 50vw, 720px); border-radius: 28px; background: var(--canvas); overflow: hidden; }
.phone { position: absolute; aspect-ratio: 290 / 600; border-radius: 46px; background: #0E1422; padding: 9px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 44px 80px -34px rgba(16,24,40,.5), 0 14px 28px -14px rgba(16,24,40,.28); }
.phone::before { content: ""; position: absolute; z-index: 3; top: 20px; left: 50%; transform: translateX(-50%); width: 84px; height: 24px; border-radius: 14px; background: #0E1422; }
.phone--front { width: 290px; left: calc(50% - 26px); top: 50px; z-index: 2; }
.phone--back { width: 262px; left: calc(50% - 262px); top: 112px; z-index: 1; }
.phone--back .phone-screen { filter: saturate(.85); }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 38px; background: #fff; overflow: hidden; color: var(--ink); }
.ps-status { display: flex; justify-content: space-between; align-items: center; padding: 17px 26px 0; font-size: 12px; font-weight: 600; }
.ps-icons { display: inline-flex; gap: 4px; align-items: center; }
.ps-icons i { display: block; width: 14px; height: 8px; border-radius: 2px; background: var(--ink); }
.ps-icons i:nth-child(1) { width: 11px; } .ps-icons i:nth-child(2) { width: 10px; opacity: .8; } .ps-icons i:nth-child(3) { width: 20px; border-radius: 3px; }
.ps-app { display: flex; flex-direction: column; gap: 12px; height: calc(100% - 34px); padding: 22px 18px 18px; }
.ps-top { display: flex; justify-content: space-between; align-items: center; }
.ps-logo { font-size: 15px; font-weight: 700; letter-spacing: -.045em; }
.ps-logo span { color: var(--accent); }
.ps-tag { font-size: 10.5px; font-weight: 600; color: var(--text-3); border: 1px solid var(--line); border-radius: 6px; padding: 2px 6px; }
.ps-status-pill { display: inline-grid; align-self: flex-start; }
.st { grid-area: 1 / 1; display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 10px; border-radius: 8px; font-size: 12px; font-weight: 600; white-space: nowrap; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.st svg { width: 13px; height: 13px; }
.st--new { background: var(--canvas); color: var(--text-2); opacity: 0; transform: translateY(-4px); }
.st--ok { background: var(--accent-tint); color: var(--accent); }
[data-state="new"] .st--new { opacity: 1; transform: none; }
[data-state="new"] .st--ok { opacity: 0; transform: translateY(4px); }
.ps-person { display: flex; gap: 12px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 14px; }
.ps-av { width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent); font-size: 13px; font-weight: 700; }
.ps-person b { display: block; font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.ps-person span span { display: block; font-size: 12.5px; color: var(--text-2); }
.ps-checks { list-style: none; margin: 0; padding: 0 2px; display: grid; gap: 8px; }
.ps-checks li { display: flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 500; transition: opacity .4s var(--ease); }
.ps-checks svg { width: 16px; height: 16px; color: var(--accent); flex: none; transition: color .4s var(--ease); }
[data-state="new"] .ps-checks li { opacity: .35; }
[data-state="new"] .ps-checks svg { color: var(--text-3); }
.ps-checks li:nth-child(2) { transition-delay: .1s; } .ps-checks li:nth-child(3) { transition-delay: .2s; }
.ps-checks li:nth-child(4) { transition-delay: .3s; } .ps-checks li:nth-child(5) { transition-delay: .4s; }
.ps-note { background: var(--canvas); border-radius: 12px; padding: 10px 12px; transition: opacity .5s var(--ease) .5s, transform .5s var(--ease) .5s; }
.ps-note span { display: block; font-size: 10.5px; font-weight: 600; color: var(--text-3); }
.ps-note p { margin-top: 2px; font-size: 12.5px; line-height: 1.45; }
[data-state="new"] .ps-note { opacity: 0; transform: translateY(6px); transition-delay: 0s; }
.ps-btn { margin-top: auto; display: block; text-align: center; padding: 12px; border-radius: 12px; background: var(--accent); color: #fff; font-size: 13.5px; font-weight: 600; }
.ps-brand { font-size: 12px; font-weight: 600; color: var(--text-2); }
.ps-progress { height: 4px; border-radius: 2px; background: var(--canvas-2); overflow: hidden; }
.ps-progress span { display: block; height: 100%; background: var(--ink); }
.ps-step { font-size: 11px; color: var(--text-3); margin-top: -4px; }
.ps-q { font-size: 17px; font-weight: 600; letter-spacing: -.022em; line-height: 1.25; margin: 2px 0 4px; }
.ps-opt { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 12px; font-size: 14px; font-weight: 500; }
.ps-opt svg { width: 16px; height: 16px; }
.ps-opt.is-sel { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.ps-opt--ghost { opacity: .5; }
.ps-foot { margin-top: auto; display: flex; gap: 6px; align-items: center; justify-content: center; font-size: 11.5px; color: var(--text-3); }
.ps-foot svg { width: 13px; height: 13px; }
.call-chip { position: absolute; z-index: 3; left: calc(50% - 131px); top: 58px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-ui); font-size: 13px; font-weight: 600; white-space: nowrap; }
.call-chip svg { width: 16px; height: 16px; color: var(--accent); }
.phone-cap { position: absolute; left: 24px; bottom: 18px; font-size: .75rem; color: var(--text-3); }
@media (max-width: 1200px) {
  .quali { display: block; }
  .phone-stage { margin-top: 3rem; height: 700px; }
}
@media (max-width: 600px) {
  .phone-stage { height: 640px; border-radius: 20px; }
  .phone--back, .call-chip { display: none; }
  .phone--front { width: 272px; left: 50%; transform: translateX(-50%); top: 48px; }
  .phone-cap { top: 16px; bottom: auto; left: 18px; right: 18px; }
}

.transform { display: grid; gap: 32px; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(20px, 3.5vw, 48px); }
.lane-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: var(--fs-small); font-weight: 600; }
.lane-label svg { width: 16px; height: 16px; }
.lane--old .lane-label { color: var(--neg); }
.lane--new .lane-label { color: var(--accent); }
.lane-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ls { position: relative; min-height: 80px; padding: 14px; border-radius: 12px; border: 1px solid var(--line); background: var(--canvas); color: var(--text-2); font-size: .9375rem; font-weight: 500; line-height: 1.35; }
.ls:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -15px; width: 16px; height: 1px; background: var(--line-strong); }
.ls em { display: block; margin-top: 6px; font-style: normal; font-size: .75rem; font-weight: 600; }
.lane--old .ls em { color: var(--neg); }
.lane--old .ls--neg { color: var(--neg); background: var(--neg-tint); border-color: #EFDAD4; }
.lane--new .ls { background: #fff; color: var(--ink); border-color: #D5DDF2; }
.lane--new .ls:not(:last-child)::after { background: var(--accent); }
.lane--new .ls em { color: var(--accent); }
.lane--new .ls--done { display: flex; align-items: center; gap: 8px; background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }
.ls--done svg { width: 20px; height: 20px; flex: none; }
.lane-loop { display: block; width: 100%; height: 34px; margin-top: 6px; overflow: visible; }
.lane-loop path { fill: none; stroke: var(--neg); stroke-width: 1.4; stroke-dasharray: 5 6; vector-effect: non-scaling-stroke; opacity: .75; }
.lane-loop .lane-loop-head { stroke-dasharray: none; stroke-linecap: round; stroke-linejoin: round; }
.transform.anim-ready .lane--new .ls { transition: opacity .6s var(--ease), transform .6s var(--ease); }
.transform.anim-ready:not(.is-in) .lane--new .ls { opacity: 0; transform: translateX(-10px); }
.transform.anim-ready .lane--new .ls:nth-child(2) { transition-delay: .12s; } .transform.anim-ready .lane--new .ls:nth-child(3) { transition-delay: .24s; }
.transform.anim-ready .lane--new .ls:nth-child(4) { transition-delay: .36s; } .transform.anim-ready .lane--new .ls:nth-child(5) { transition-delay: .48s; }
.transform.anim-ready .lane--new .ls:nth-child(6) { transition-delay: .6s; }
@media (max-width: 1100px) {
  .transform { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lane-steps { grid-template-columns: 1fr; gap: 12px; }
  .ls { min-height: 0; }
  .ls:not(:last-child)::after { top: auto; right: auto; bottom: -13px; left: 24px; width: 1px; height: 14px; }
  .lane-loop { display: none; }
  .lane--old .ls:last-child::before { content: "↺"; float: right; font-size: 1rem; line-height: 1; }
}
@media (max-width: 640px) {
  .transform { grid-template-columns: 1fr; gap: 36px; padding: 18px; }
}

.journey { position: relative; }
.journey-line { position: absolute; left: 0; right: 0; top: 49px; height: 1px; background: var(--line-strong); }
.journey-line span { display: block; width: 100%; height: 100%; background: var(--ink); transform-origin: left center; }
.journey.anim-ready .journey-line span { transition: transform 1.8s var(--ease) .2s; }
.journey.anim-ready:not(.is-in) .journey-line span { transform: scaleX(0); }
.journey-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; }
.jstep { position: relative; display: flex; flex-direction: column; }
.jstep-when { align-self: flex-start; }
.jstep::before { content: ""; position: absolute; left: 0; top: 45px; width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.jstep-when { display: inline-block; font-size: var(--fs-micro); font-weight: 600; color: var(--accent); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; }
.jstep-num { display: block; margin-top: 44px; font-size: clamp(3rem, 2.2rem + 2.4vw, 4.5rem); font-weight: 500; letter-spacing: -.06em; line-height: 1; font-variant-numeric: tabular-nums; }
.jstep .h3 { margin-top: 1.25rem; }
.jstep p { margin-top: .6rem; color: var(--text-2); font-size: 1rem; line-height: 1.55; }
.jstep p:not(.jstep-you) { margin-bottom: 1.25rem; }
.jstep--result p:not(.jstep-you) { margin-bottom: 0; }
.jstep .jstep-you { margin-top: auto; padding-top: .875rem; border-top: 1px solid var(--line); color: var(--ink); font-size: .9375rem; font-weight: 500; }
.jstep-you span { display: block; font-size: .75rem; font-weight: 600; color: var(--text-3); margin-bottom: 2px; }
.jstep--result { background: var(--accent-tint); border-radius: 18px; padding: 16px 20px 24px; margin-top: -16px; }
.jstep--result::before { left: 20px; top: 61px; background: var(--accent); box-shadow: 0 0 0 4px #fff; }
.jstep-mark { align-self: flex-start; display: grid; place-items: center; width: 60px; height: 60px; margin-top: 40px; border-radius: 50%; background: var(--accent); color: #fff; }
.jstep-mark svg { width: 28px; height: 28px; }
.jstep--result .h3 { color: var(--accent); }
.steps-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: clamp(56px, 6vw, 88px); padding-top: 2rem; border-top: 1px solid var(--line-strong); }
.steps-foot p { font-size: 1.125rem; color: var(--text-2); max-width: 36em; }
.steps-foot strong { color: var(--ink); font-weight: 600; }
@media (max-width: 1100px) and (min-width: 961px) {
  .journey-steps { gap: 16px; }
  .jstep--result { padding-inline: 16px; }
}
@media (max-width: 960px) {
  .journey { padding-left: 32px; }
  .journey-line { left: 4px; right: auto; top: 8px; bottom: 40px; width: 1px; height: auto; }
  .journey-line span { transform-origin: center top; }
  .journey.anim-ready:not(.is-in) .journey-line span { transform: scaleY(0); }
  .journey-steps { grid-template-columns: 1fr; gap: 40px; }
  .jstep::before { left: -32px; top: 8px; }
  .jstep-num { margin-top: 1rem; font-size: 2.75rem; }
  .jstep--result { margin-top: 0; padding: 20px; }
  .jstep--result::before { left: -32px; top: 28px; }
  .jstep-mark { margin-top: 1rem; width: 52px; height: 52px; }
}

.site-footer { background: var(--canvas); color: var(--text-2); padding-block: clamp(88px, 9vw, 144px) 2rem; }
.closing { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px 24px; align-items: end; padding-bottom: clamp(64px, 7vw, 112px); margin-bottom: clamp(48px, 5vw, 72px); border-bottom: 1px solid var(--line-strong); }
.closing-title { grid-column: 1 / span 8; font-size: clamp(2.5rem, 1.3rem + 4.4vw, 5.25rem); font-weight: 600; line-height: 1; letter-spacing: -.05em; color: var(--ink); }
.closing-side { grid-column: 10 / span 3; }
.closing-side p { font-size: 1.0625rem; color: var(--text-2); margin-bottom: 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px 24px; padding-bottom: clamp(48px, 5vw, 72px); }
.footer-brand { grid-column: 1 / span 5; }
.footer-brand p { margin-top: 1.25rem; max-width: 26em; font-size: 1rem; }
.footer-col { grid-column: span 2; }
.footer-brand + .footer-col { grid-column: 7 / span 2; }
.footer-col h4 { font-size: var(--fs-small); font-weight: 600; color: var(--ink); margin-bottom: 1.125rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; font-size: 1rem; }
.footer-col a { text-decoration: none; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.75rem; border-top: 1px solid var(--line-strong); font-size: var(--fs-micro); color: var(--text-3); }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--ink); }
@media (max-width: 1120px) {
  .closing { display: block; }
  .closing-side { margin-top: 2rem; max-width: 460px; }
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand, .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
  .footer-col, .footer-brand + .footer-col { grid-column: span 1; }
}
@media (max-width: 600px) {
  .closing-side .btn { width: 100%; }
}

.legal { padding-block: clamp(56px, 7vw, 112px) clamp(80px, 9vw, 136px); }
.legal-inner { max-width: 760px; }
.legal .h1 { font-size: clamp(2.25rem, 1.6rem + 2.4vw, 3.5rem); letter-spacing: -.04em; line-height: 1.05; }
.legal-meta { margin-top: 1rem; color: var(--text-3); font-size: var(--fs-small); }
.legal-body { margin-top: clamp(40px, 5vw, 64px); font-size: 1.0625rem; line-height: 1.7; color: #2E3645; overflow-wrap: break-word; }
.legal-body p + p, .legal-body address + p, .legal-body p + address { margin-top: .9rem; }
.legal-body h2 { font-size: 1.1875rem; font-weight: 600; letter-spacing: -.012em; color: var(--ink); margin: 2.75rem 0 .75rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.0625rem; font-weight: 600; color: var(--ink); margin: 1.75rem 0 .5rem; }
.legal-body ul { margin: .75rem 0 0; padding-left: 1.2rem; }
.legal-body li + li { margin-top: .35rem; }
.legal-body a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--accent-hover); }
.legal-body strong { font-weight: 600; color: var(--ink); }
.legal-body address { font-style: normal; }
.legal-brand { font-weight: 500; color: var(--ink); margin-bottom: 2rem; }
.nb { white-space: nowrap; }
.legal-glyph { display: inline; height: auto; max-width: 100%; vertical-align: -.303em; fill: currentColor; overflow: visible; -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }
.legal-body a.legal-glyph-link { text-decoration: none; }

.js .reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-pre { opacity: .001; transform: translateY(22px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal.is-pre { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (max-width: 960px), (pointer: coarse) {
  .wordmark { display: inline-flex; align-items: center; min-height: 44px; }
  .footer-col ul { gap: 0; }
  .footer-bottom { align-items: center; }
  .footer-col a, .footer-bottom a { display: inline-flex; align-items: center; min-height: 44px; }
  .reach-toggle button { padding: 12px 12px; }
  .textlink, .legal-body a.legal-glyph-link { position: relative; }
  .textlink::before, .legal-body a.legal-glyph-link::before { content: ""; position: absolute; inset: -8px -6px; }
  .range { height: 44px; }
  .range::-webkit-slider-thumb { width: 28px; height: 28px; margin-top: -12.5px; }
  .range::-moz-range-thumb { width: 28px; height: 28px; }
}
@media (max-height: 520px) and (orientation: landscape) {
  html { scroll-padding-top: 0; }
  .site-header { position: static; }
  .faq-intro { position: static; }
}
@media (prefers-reduced-motion: reduce) {
  .cal-skeleton { animation: none; }
}
