:root {
  color-scheme: light;
  --paper: #f5f6f3;
  --paper-2: #ecefea;
  --surface: #ffffff;
  --ink: #111418;
  --ink-2: #20252a;
  --muted: #667078;
  --line: #d9dfd9;
  --blue: #2864e8;
  --blue-deep: #1648b8;
  --blue-soft: #e9f0ff;
  --green: #16875f;
  --green-bright: #24c58a;
  --green-soft: #e7f7f0;
  --amber: #b56b00;
  --shadow-sm: 0 8px 30px rgb(17 20 24 / 7%);
  --shadow-lg: 0 34px 90px rgb(17 20 24 / 14%);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: 1180px;
  font-family: Inter, Aptos, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--paper); }

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body, button, input, select, textarea { font: inherit; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }

::selection { color: white; background: var(--blue); }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; border-radius: 8px; color: white; background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 76px;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: rgb(217 223 217 / 82%);
  background: rgb(245 246 243 / 88%);
  box-shadow: 0 8px 35px rgb(17 20 24 / 5%);
  backdrop-filter: blur(18px);
}

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 36px; height: 36px; color: var(--ink); }
.brand-name { font-size: 1.22rem; font-weight: 780; letter-spacing: -.05em; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) { position: relative; color: #444d54; font-size: .82rem; font-weight: 620; text-decoration: none; }
.site-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--ink); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.site-nav > a:not(.button):hover::after, .site-nav > a:not(.button):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-button { display: none; }

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: .86rem;
  font-weight: 730;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:disabled { opacity: .62; cursor: wait; transform: none; }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid rgb(40 100 232 / 28%); outline-offset: 3px; }
.button-primary { color: white; background: var(--ink); box-shadow: 0 12px 28px rgb(17 20 24 / 18%); }
.button-primary:hover { background: var(--blue); box-shadow: 0 14px 34px rgb(40 100 232 / 24%); }
.button-dark { color: white; background: var(--ink); }
.button-small { min-height: 42px; padding: 0 17px; border-radius: 11px; font-size: .78rem; }
.button-quiet { border-color: var(--line); background: rgb(255 255 255 / 42%); }
.button-quiet:hover { border-color: #b8c0b8; background: white; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 152px 0 36px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(17 20 24 / 2%) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgb(17 20 24 / 2%) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--paper);
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: auto -15% -50% 40%;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(40 100 232 / 9%), transparent 66%);
  content: "";
  pointer-events: none;
}

.hero-glow { position: absolute; top: -300px; left: -220px; width: 660px; height: 660px; border-radius: 50%; background: radial-gradient(circle, rgb(40 100 232 / 11%), transparent 67%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr); align-items: center; gap: 74px; }
.hero-copy { padding: 28px 0; }
.eyebrow, .section-kicker { margin: 0 0 22px; color: #4d5860; font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgb(40 100 232 / 12%); }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(3.35rem, 6vw, 5.6rem); line-height: .95; letter-spacing: -.078em; }
.hero h1 em { display: block; color: var(--blue); font-family: Georgia, "Times New Roman", serif; font-size: .82em; font-weight: 400; letter-spacing: -.06em; }
.hero-lede { max-width: 640px; margin: 32px 0 0; color: #4d565d; font-size: clamp(1.05rem, 1.5vw, 1.18rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 34px; }
.honesty-note { max-width: 600px; margin: 24px 0 0; display: flex; gap: 10px; color: #6b747b; font-size: .76rem; line-height: 1.5; }
.honesty-note span { color: var(--green); font-size: 1rem; }

.hero-visual { position: relative; min-height: 610px; padding: 76px 0 96px; display: grid; place-items: center; isolation: isolate; }
.signal-stack { position: relative; width: min(100%, 448px); }
.hero-visual::before { position: absolute; z-index: -3; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgb(40 100 232 / 16%), rgb(40 100 232 / 4%) 48%, transparent 69%); content: ""; }
.radar-orbit { position: absolute; z-index: -2; border: 1px solid rgb(40 100 232 / 14%); border-radius: 50%; }
.orbit-one { width: 510px; height: 510px; }
.orbit-two { width: 390px; height: 390px; }
.radar-orbit::before, .radar-orbit::after { position: absolute; border-radius: 50%; background: var(--blue); content: ""; }
.orbit-one::before { top: 43px; left: 78px; width: 7px; height: 7px; box-shadow: 0 0 0 7px rgb(40 100 232 / 9%); }
.orbit-one::after { right: 36px; bottom: 112px; width: 5px; height: 5px; box-shadow: 0 0 0 6px rgb(40 100 232 / 8%); }
.signal-dot { position: absolute; z-index: -1; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 8px rgb(40 100 232 / 9%); }
.dot-one { top: 112px; right: 50px; }
.dot-two { bottom: 94px; left: 32px; }

.opportunity-card { width: min(100%, 448px); padding: 22px; border: 1px solid rgb(255 255 255 / 12%); border-radius: 26px; color: white; background: linear-gradient(145deg, #171b20, #0c0f12); box-shadow: var(--shadow-lg); transform: rotate(-1.6deg); }
.card-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgb(255 255 255 / 10%); }
.mini-brand { display: flex; align-items: center; gap: 8px; color: #d8dce0; font-size: .58rem; font-weight: 800; letter-spacing: .13em; }
.mini-brand svg { width: 24px; height: 24px; }
.live-pill { padding: 6px 9px; border: 1px solid rgb(36 197 138 / 25%); border-radius: 99px; color: #9eedce; background: rgb(36 197 138 / 9%); font-size: .58rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.live-pill i { width: 5px; height: 5px; margin-right: 4px; display: inline-block; border-radius: 50%; background: var(--green-bright); }
.opportunity-heading { padding: 24px 2px 20px; }
.opportunity-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.priority-chip { padding: 5px 8px; border-radius: 7px; color: #ffd98d; background: rgb(181 107 0 / 20%); font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.time-stamp { margin-left: auto; color: #8e969e; font-size: .63rem; }
.opportunity-heading h2 { margin: 20px 0 8px; font-size: 1.72rem; letter-spacing: -.05em; }
.opportunity-heading h2 span { color: var(--green-bright); }
.opportunity-heading p { margin: 0; color: #aeb5bb; font-size: .75rem; line-height: 1.6; }
.context-list { border-block: 1px solid rgb(255 255 255 / 9%); }
.context-list > div { min-height: 48px; display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 7px; border-bottom: 1px solid rgb(255 255 255 / 7%); font-size: .69rem; }
.context-list > div:last-child { border: 0; }
.context-list strong { color: #c9ced2; font-size: .61rem; font-weight: 620; }
.check, .pending { width: 17px; height: 17px; border-radius: 50%; display: grid; place-items: center; color: #8ee9c7; background: rgb(36 197 138 / 14%); font-size: .62rem; }
.pending { color: #ffd98d; background: rgb(181 107 0 / 18%); font-size: 1rem; line-height: 0; }
.match-row { margin-top: 18px; padding: 13px; border-radius: 14px; display: grid; grid-template-columns: 37px 1fr auto; align-items: center; gap: 11px; color: var(--ink); background: #f3f5f2; }
.match-avatar { width: 37px; height: 37px; border-radius: 11px; display: grid; place-items: center; color: white; background: var(--blue); font-size: .78rem; font-weight: 800; }
.match-row div:nth-child(2) { display: grid; }
.match-row small { color: #828a8f; font-size: .48rem; font-weight: 800; letter-spacing: .11em; }
.match-row strong { margin-top: 2px; font-size: .72rem; }
.match-action { font-size: .62rem; font-weight: 720; }
.match-action b { margin-left: 5px; color: var(--blue); }
.floating-note { position: absolute; z-index: 3; min-width: 174px; padding: 11px 14px; border: 1px solid rgb(255 255 255 / 78%); border-radius: 14px; display: flex; align-items: center; gap: 10px; color: var(--ink); background: rgb(255 255 255 / 88%); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); font-size: .7rem; font-weight: 700; }
.floating-note span { display: grid; }
.floating-note { max-width: max(174px, 52%); overflow-wrap: anywhere; }
.floating-note small { color: #8a9297; font-size: .48rem; letter-spacing: .1em; }
.floating-note i { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgb(40 100 232 / 12%); }
.note-top { top: 8px; right: -15px; }
.note-bottom { top: calc(100% - 8px); left: -20px; }
.note-icon { width: 26px; height: 26px; display: grid !important; place-items: center; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-size: 1rem; }

.trust-strip { position: relative; z-index: 2; margin-top: 66px; padding: 24px 0 8px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip > div { padding: 0 28px; border-left: 1px solid var(--line); display: flex; align-items: flex-start; gap: 15px; }
.trust-strip > div:first-child { padding-left: 0; border-left: 0; }
.trust-strip > div:last-child { padding-right: 0; }
.trust-strip span { color: var(--blue); font-family: Georgia, serif; font-size: .68rem; font-style: italic; }
.trust-strip p { margin: 0; color: #4d565d; font-size: .74rem; font-weight: 650; line-height: 1.45; }

.problem-section { background: white; }
.split-intro { display: grid; grid-template-columns: 1fr .72fr; gap: 120px; align-items: end; }
.section-kicker { color: var(--blue); }
.section-kicker.light { color: #8db1ff; }
.split-intro h2, .section-heading h2, .dossier-copy h2, .fit-copy h2, .faq-intro h2, .application-copy h2, .alignment-card h2 { margin: 0; font-size: clamp(2.45rem, 4.5vw, 4.3rem); line-height: 1.02; letter-spacing: -.065em; }
.intro-body { color: #596269; font-size: 1rem; line-height: 1.75; }
.intro-body p { margin: 0 0 18px; }
.value-grid { margin-top: 68px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); display: flex; flex-direction: column; background: var(--paper); transition: transform 180ms ease, box-shadow 180ms ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-card.featured { border-color: #cbd9fa; background: var(--blue-soft); }
.value-number { width: max-content; padding: 7px 10px; border-radius: 7px; color: var(--blue); background: white; font-size: .56rem; font-weight: 850; letter-spacing: .11em; }
.value-card h3 { max-width: 290px; margin: 24px 0 13px; font-size: 1.35rem; line-height: 1.18; letter-spacing: -.035em; }
.value-card p { margin: 0; color: #626b72; font-size: .82rem; line-height: 1.65; }

.process-section { overflow: hidden; background: var(--paper); }
.section-heading { max-width: 830px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--muted); }
.process-list { position: relative; margin: 74px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; }
.process-list::before { position: absolute; top: 45px; right: 10%; left: 10%; height: 1px; background: var(--line); content: ""; }
.process-list li { position: relative; padding: 0 18px; text-align: center; }
.step-number { display: block; color: #8a9297; font-family: Georgia, serif; font-size: .65rem; font-style: italic; }
.step-icon { position: relative; z-index: 2; width: 54px; height: 54px; margin: 14px auto 24px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--blue); background: white; box-shadow: 0 0 0 9px var(--paper); font-size: 1.1rem; }
.step-icon img { width: 26px; height: 26px; }
.process-list h3 { margin: 0; font-size: .98rem; letter-spacing: -.025em; }
.process-list p { margin: 12px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.62; }

.dossier-section { color: white; background: var(--ink); }
.dossier-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: center; }
.dossier-visual { min-width: 0; display: grid; gap: 24px; }
.signal-example { margin: 0; }
.signal-example img { width: 100%; height: auto; border: 1px solid rgb(255 255 255 / 12%); border-radius: 18px; }
.signal-example figcaption { margin-top: 10px; color: #abb2b7; font-size: .7rem; text-align: center; }
.signal-carousel { --signal-arrow-space: 44px; --signal-arrow-outset: 12px; }
.signal-carousel-stage { position: relative; margin-inline: calc(-1 * var(--signal-arrow-outset)); padding-inline: var(--signal-arrow-space); }
.signal-slides { aspect-ratio: 24 / 17; }
.signal-slide[hidden] { display: none; }
.signal-slide:not([hidden]) { animation: signal-enter 450ms ease both; }
@keyframes signal-enter { from { opacity: .3; } to { opacity: 1; } }
.signal-carousel-caption { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 16px calc(var(--signal-arrow-space) - var(--signal-arrow-outset)) 0; color: #e4e7e9; font-size: .82rem; }
.signal-carousel-caption strong { font-weight: 650; }
.signal-carousel-caption > span { flex: 0 0 auto; color: #aab5c4; font-size: .7rem; font-variant-numeric: tabular-nums; }
.signal-carousel-arrow { position: absolute; z-index: 1; top: 50%; width: var(--signal-arrow-space); height: 48px; padding: 0; border: 0; border-radius: 50%; display: grid; place-items: center; color: #b9c4d4; background: transparent; transform: translateY(-50%); cursor: pointer; transition: color 180ms ease; }
.signal-carousel-arrow[data-signal-prev] { left: 0; }
.signal-carousel-arrow[data-signal-next] { right: 0; }
.signal-carousel-arrow svg { transition: transform 180ms ease; }
.signal-carousel-arrow:hover, .signal-carousel-arrow:focus-visible { color: #8db1ff; }
@media (hover: hover) {
  .signal-carousel-arrow[data-signal-prev]:hover svg { transform: translateX(-2px); }
  .signal-carousel-arrow[data-signal-next]:hover svg { transform: translateX(2px); }
}
.signal-carousel-arrow:focus-visible { outline: 2px solid #8db1ff; outline-offset: 0; }
.no-js .signal-carousel-arrow { display: none; }
@media (min-width: 1280px) {
  .signal-carousel { --signal-arrow-space: 48px; --signal-arrow-outset: 48px; }
}
.signal-zoom { width: 100%; padding: 0; border: 0; border-radius: 18px; display: block; background: transparent; cursor: zoom-in; }
.signal-zoom:focus-visible, .signal-dialog-close:focus-visible { outline: 3px solid #8db1ff; outline-offset: 4px; }
.signal-dialog { width: min(1060px, calc(100% - 32px)); max-height: calc(100svh - 32px); padding: 20px; border: 1px solid #dbe3f0; border-radius: 22px; color: var(--ink); background: var(--paper); box-shadow: var(--shadow-lg); }
.signal-dialog::backdrop { background: rgb(8 13 23 / 78%); backdrop-filter: blur(6px); }
.signal-dialog-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.signal-dialog-header h2 { margin: 0; font-size: 1rem; line-height: 1.3; letter-spacing: -.025em; }
.signal-dialog-close { min-height: 42px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 10px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 12px; color: var(--ink); background: white; font-size: .8rem; font-weight: 700; cursor: pointer; }
.signal-dialog-close span { font-size: 1.4rem; line-height: 1; }
.signal-dialog-view { max-height: calc(100svh - 180px); overflow: auto; border-radius: 15px; }
.signal-dialog-view:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; }
.signal-dialog-view img { width: 100%; height: auto; max-height: calc(100svh - 180px); object-fit: contain; }
.signal-dialog-caption { margin: 14px 0 0; color: var(--muted); font-size: .75rem; }
.signal-pan-hint { display: none; }
html.signal-zoom-open { overflow: hidden; scrollbar-gutter: stable; }
.dossier-copy > p:not(.section-kicker) { max-width: 440px; margin: 24px 0 30px; color: #abb2b7; line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--blue); font-size: .82rem; font-weight: 750; text-decoration: none; }
.text-link span { transition: transform 140ms ease; }
.text-link:hover span { transform: translateX(4px); }
.light-link { color: white; }
.deliverable-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.deliverable { padding: 18px; border: 1px solid rgb(255 255 255 / 10%); border-radius: 17px; display: flex; align-items: baseline; gap: 12px; background: rgb(255 255 255 / 4%); }
.deliverable span { color: #729cff; font-family: Georgia, serif; font-size: .65rem; font-style: italic; }
.deliverable p { margin: 0; color: #e4e7e9; font-size: .82rem; line-height: 1.45; }

.responsibility-section { background: white; }
.responsibility-section .section-heading { max-width: 760px; }
.responsibility-grid { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.responsibility-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.lynex-side { border-color: #cbd9fa; background: var(--blue-soft); }
.responsibility-title { display: flex; align-items: center; gap: 15px; padding-bottom: 27px; border-bottom: 1px solid rgb(17 20 24 / 9%); }
.card-mark, .partner-icon { width: 45px; height: 45px; flex: 0 0 auto; color: var(--blue); }
.partner-icon { border-radius: 14px; display: grid; place-items: center; color: white; background: var(--ink); font-size: .8rem; font-weight: 800; }
.responsibility-title small { color: #737d84; font-size: .55rem; font-weight: 800; letter-spacing: .13em; }
.responsibility-title h3 { margin: 2px 0 0; font-size: 1.25rem; letter-spacing: -.035em; }
.check-list { margin: 26px 0 0; padding: 0; display: grid; gap: 15px; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: #4f585f; font-size: .85rem; }
.check-list li::before { position: absolute; top: 1px; left: 0; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; color: var(--green); background: white; content: "✓"; font-size: .6rem; font-weight: 800; }
.principle { max-width: 920px; margin: 76px auto 0; text-align: center; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1.35; letter-spacing: -.035em; }

.alignment-section { padding-top: 0; background: white; }
.alignment-card { position: relative; min-height: 400px; padding: 65px; border-radius: var(--radius-lg); display: grid; grid-template-columns: .8fr 1.15fr 210px; align-items: center; gap: 70px; overflow: hidden; color: white; background: var(--green); box-shadow: 0 30px 70px rgb(22 135 95 / 19%); }
.alignment-card::before { position: absolute; top: -220px; right: -100px; width: 480px; height: 480px; border: 1px solid rgb(255 255 255 / 12%); border-radius: 50%; content: ""; }
.alignment-card h2 { font-size: clamp(2.7rem, 4vw, 4rem); }
.alignment-card .section-kicker { color: white; }
.alignment-copy { color: #dbf2e9; font-size: .9rem; line-height: 1.75; }
.alignment-copy p { margin: 0 0 18px; }
.alignment-seal { position: relative; z-index: 1; width: 200px; height: 200px; border: 1px solid rgb(255 255 255 / 35%); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.alignment-seal::before { position: absolute; inset: 10px; border: 1px dashed rgb(255 255 255 / 35%); border-radius: 50%; content: ""; }
.alignment-seal span, .alignment-seal small { position: relative; font-size: .52rem; font-weight: 800; letter-spacing: .15em; }
.alignment-seal strong { position: relative; margin: 2px 0 12px; font-family: Georgia, serif; font-size: 2.15rem; font-style: italic; font-weight: 400; letter-spacing: -.05em; }
.alignment-seal small { max-width: 115px; color: #c4eadc; letter-spacing: .05em; line-height: 1.4; }

.fit-section { background: var(--paper); }
.fit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; align-items: start; }
.fit-copy > p:last-child { margin: 22px 0 0; color: var(--muted); }
.fit-list { border-top: 1px solid var(--line); }
.fit-list > div { min-height: 78px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 18px; }
.fit-list span { color: var(--blue); font-family: Georgia, serif; font-size: .67rem; font-style: italic; }
.fit-list p { margin: 0; font-size: 1rem; font-weight: 640; letter-spacing: -.02em; }

.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.1fr; gap: 120px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro > p:not(.section-kicker) { max-width: 390px; margin: 22px 0 28px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; min-height: 78px; padding: 24px 54px 24px 0; display: flex; align-items: center; cursor: pointer; font-size: .95rem; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span, .faq-list summary span::after { position: absolute; top: 50%; right: 8px; width: 16px; height: 1px; background: var(--ink); content: ""; transition: transform 180ms ease; }
.faq-list summary span::after { top: 0; right: 0; transform: rotate(90deg); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 670px; margin: -4px 0 27px; padding-right: 50px; color: var(--muted); font-size: .84rem; line-height: 1.72; }

.application-section { color: white; background: var(--ink); }
.application-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.application-copy { position: sticky; top: 120px; }
.application-copy > p:not(.section-kicker) { max-width: 470px; margin: 26px 0 35px; color: #aeb5ba; line-height: 1.75; }
.application-points { display: grid; gap: 15px; }
.application-points > div { display: flex; align-items: flex-start; gap: 12px; }
.application-points > div > span { width: 24px; height: 24px; margin-top: 2px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; color: #9eedce; background: rgb(36 197 138 / 13%); font-size: .67rem; }
.application-points p { margin: 0; display: grid; }
.application-points strong { color: #eef0f1; font-size: .82rem; }
.application-points small { margin-top: 2px; color: #858e94; font-size: .7rem; }
.partner-form { padding: 38px; border: 1px solid rgb(255 255 255 / 10%); border-radius: var(--radius-md); background: #1a1f24; box-shadow: var(--shadow-lg); }
.form-heading { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgb(255 255 255 / 9%); display: flex; justify-content: space-between; gap: 20px; }
.form-heading span { color: #8db1ff; font-size: .59rem; font-weight: 850; letter-spacing: .13em; }
.form-heading p { margin: 0; color: #81898f; font-size: .62rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
.form-full { grid-column: 1 / -1; }
.partner-form label { display: grid; gap: 7px; }
.partner-form label > span { color: #cbd0d4; font-size: .67rem; font-weight: 680; }
.partner-form input, .partner-form select, .partner-form textarea { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid rgb(255 255 255 / 13%); border-radius: 10px; outline: none; color: white; background: rgb(255 255 255 / 5%); transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease; }
.partner-form textarea { min-height: 88px; padding: 12px 13px; resize: vertical; }
.partner-form input::placeholder, .partner-form textarea::placeholder { color: #697279; }
.partner-form input:focus, .partner-form select:focus, .partner-form textarea:focus { border-color: #729cff; background: rgb(255 255 255 / 7%); box-shadow: 0 0 0 3px rgb(114 156 255 / 12%); }
.partner-form select { color-scheme: light; }
.partner-form select option { color: #111418; background-color: #ffffff; }
.form-status { margin: 20px 0 0; padding: 13px 15px; border: 1px solid #7b4249; border-radius: 10px; color: #ffe3e6; background: #40292e; font-size: .82rem; line-height: 1.6; }
.form-status[hidden] { display: none; }
.form-status:focus { outline: 2px solid #ffc1cb; outline-offset: 3px; }
.form-status[data-state="success"] { color: #dce8ff; border-color: #47669d; background: #253651; }
.submit-button:disabled { opacity: .7; cursor: wait; }
.hidden-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.consent-row { margin-top: 22px; grid-template-columns: 18px 1fr; align-items: start; gap: 10px !important; }
.consent-row input { width: 17px; min-height: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--green-bright); }
.consent-row span { color: #8f989e !important; font-size: .64rem !important; line-height: 1.55; }
.consent-row a { color: #bacdff; }
.submit-button { width: 100%; margin-top: 25px; background: var(--blue); box-shadow: none; }
.submit-button:hover { background: #3973f2; }
.form-footnote { margin: 12px 0 0; color: #778087; text-align: center; font-size: .59rem; }

.site-footer { padding: 64px 0 28px; color: white; background: #090b0d; }
.footer-main { padding-bottom: 48px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-brand { color: white; }
.footer-brand .brand-mark { color: white; }
.footer-main > p { color: #6f787e; font-size: .6rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.footer-main nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 22px; }
.footer-main nav a { color: #b1b7bb; font-size: .7rem; text-decoration: none; }
.footer-main nav a:hover { color: white; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgb(255 255 255 / 8%); display: flex; justify-content: space-between; color: #626a70; font-size: .62rem; }

.utility-page, .legal-page { min-height: 100vh; background: var(--paper); }
.utility-header { width: min(calc(100% - 48px), 1040px); height: 94px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
.utility-main { width: min(calc(100% - 48px), 720px); min-height: calc(100vh - 94px); margin-inline: auto; padding: 9vh 0 80px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.success-symbol { width: 68px; height: 68px; margin-bottom: 32px; border-radius: 50%; display: grid; place-items: center; color: var(--green); background: var(--green-soft); font-size: 1.5rem; font-weight: 800; }
.utility-main h1, .legal-main h1 { margin: 0; font-size: clamp(2.7rem, 7vw, 5rem); line-height: 1; letter-spacing: -.07em; }
.utility-main > p:not(.section-kicker, .error-code) { max-width: 610px; margin: 28px 0 34px; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.error-code { margin: 0 0 20px; color: var(--blue); font-family: Georgia, serif; font-size: 1rem; font-style: italic; }
.legal-main { width: min(calc(100% - 48px), 800px); margin: 85px auto 120px; }
.legal-main h1 { max-width: 760px; }
.legal-updated { margin: 24px 0 70px; color: var(--muted); font-size: .74rem; }
.legal-main section { padding: 32px 0; border-top: 1px solid var(--line); }
.legal-main section h2 { margin: 0 0 12px; font-size: 1.15rem; letter-spacing: -.03em; }
.legal-main section p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.75; }

.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1); }
.js [data-reveal].visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 440px; gap: 35px; }
  .hero h1 { font-size: clamp(3rem, 6vw, 4.5rem); }
  .note-top { right: 0; }
  .note-bottom { left: 0; }
  .split-intro, .dossier-grid, .fit-grid, .faq-grid, .application-grid { gap: 65px; }
  .alignment-card { padding: 52px; grid-template-columns: .8fr 1.2fr; gap: 45px; }
  .alignment-seal { display: none; }
}

@media (max-width: 860px) {
  .section { padding: 88px 0; }
  .site-header { height: 68px; }
  .js .menu-button { width: 42px; height: 42px; padding: 0; border: 0; border-radius: 10px; display: grid; align-content: center; justify-content: center; gap: 6px; background: rgb(255 255 255 / 65%); cursor: pointer; }
  .menu-button > span:not(.sr-only) { width: 19px; height: 1.5px; background: var(--ink); transition: transform 160ms ease; }
  .menu-button[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(3.75px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .js .site-nav { position: fixed; top: 68px; right: 16px; left: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; display: grid; gap: 2px; background: rgb(255 255 255 / 97%); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease; }
  .js .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .no-js .site-header { position: static; height: auto; padding: 12px 0; }
  .no-js .header-inner { flex-wrap: wrap; }
  .no-js .site-nav { width: 100%; display: flex; flex-wrap: wrap; gap: 12px; }
  .site-nav > a:not(.button) { padding: 12px; font-size: .9rem; }
  .site-nav > a:not(.button)::after { display: none; }
  .nav-cta { margin-top: 8px; }
  .hero { min-height: auto; padding-top: 118px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(100%, 570px); min-height: 590px; margin: 0 auto; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); row-gap: 25px; }
  .trust-strip > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .split-intro, .dossier-grid, .fit-grid, .faq-grid, .application-grid { grid-template-columns: 1fr; gap: 50px; }
  .value-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 45px 25px; }
  .process-list::before { display: none; }
  .process-list li:last-child { grid-column: 1 / -1; max-width: 310px; margin: 0 auto; }
  .dossier-copy { max-width: 620px; }
  .responsibility-grid { grid-template-columns: 1fr; }
  .alignment-card { grid-template-columns: 1fr; min-height: auto; }
  .faq-intro, .application-copy { position: static; }
}

@media (max-width: 590px) {
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .section { padding: 72px 0; }
  .hero { padding-top: 102px; background-size: 60px 60px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .hero-lede { margin-top: 25px; font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .honesty-note { font-size: .7rem; }
  .hero-visual { min-height: 530px; margin-top: 5px; }
  .hero-visual::before { width: 430px; height: 430px; }
  .radar-orbit.orbit-one { width: 430px; height: 430px; }
  .radar-orbit.orbit-two { width: 325px; height: 325px; }
  .signal-stack { width: calc(100% - 14px); }
  .opportunity-card { width: 100%; padding: 17px; border-radius: 21px; transform: none; }
  .opportunity-heading h2 { font-size: 1.45rem; }
  .mini-brand { gap: 5px; font-size: .5rem; }
  .floating-note { min-width: 154px; max-width: 154px; padding: 9px 11px; font-size: .62rem; }
  .note-top { right: 0; }
  .note-bottom { left: 0; }
  .signal-dialog { width: calc(100% - 20px); max-height: calc(100svh - 20px); padding: 12px; border-radius: 17px; }
  .signal-dialog-header { gap: 10px; }
  .signal-dialog-header h2 { font-size: .9rem; }
  .signal-dialog-view img { width: 720px; max-width: none; max-height: none; }
  .signal-dialog-caption { font-size: .7rem; }
  .signal-pan-hint { display: block; margin-top: 5px; }
  .trust-strip { margin-top: 35px; grid-template-columns: 1fr 1fr; }
  .trust-strip > div { padding: 0 11px; gap: 8px; }
  .trust-strip p { font-size: .64rem; }
  .split-intro h2, .section-heading h2, .dossier-copy h2, .fit-copy h2, .faq-intro h2, .application-copy h2, .alignment-card h2 { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .split-intro { gap: 30px; }
  .value-grid { margin-top: 45px; }
  .process-list { grid-template-columns: 1fr; margin-top: 55px; }
  .process-list li:last-child { grid-column: auto; }
  .process-list li { max-width: 330px; margin-inline: auto; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .responsibility-card { padding: 25px; }
  .principle { margin-top: 55px; }
  .alignment-section { padding-top: 0; }
  .alignment-card { width: calc(100% - 22px); padding: 42px 27px; border-radius: 26px; }
  .fit-grid, .faq-grid, .application-grid { gap: 42px; }
  .partner-form { padding: 25px 19px; border-radius: 18px; }
  .form-heading { display: grid; gap: 5px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; justify-items: start; }
  .footer-main nav { justify-content: flex-start; gap: 15px 20px; }
  .footer-bottom { display: grid; gap: 6px; }
  .utility-header { width: calc(100% - 30px); }
  .utility-main { width: calc(100% - 30px); padding-top: 7vh; }
  .legal-header .text-link { font-size: .7rem; }
  .legal-main { width: calc(100% - 30px); margin-top: 60px; }
}

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