.noscript-banner{position:relative;z-index:9999;padding:.75rem 1rem;background:#e9be59;color:#070b09;text-align:center;font:700 .85rem/1.4 system-ui,sans-serif}
:root {
  --bg: #070b09;
  --bg-soft: #0a100d;
  --surface: #0d1511;
  --surface-2: #111b16;
  --surface-3: #151f19;
  --ink: #f3efe5;
  --ink-soft: #d7d3c9;
  --muted: #9b9f98;
  --muted-2: #747a73;
  --gold: #d8ae56;
  --gold-bright: #f1cb75;
  --gold-dark: #8e6b2d;
  --green: #2d8d65;
  --red: #a5665d;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(216,174,86,.28);
  --shadow: 0 40px 100px rgba(0,0,0,.35);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1380px;
  --header-h: 76px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 9%, rgba(69,123,94,.09), transparent 28%),
    radial-gradient(circle at 88% 62%, rgba(216,174,86,.055), transparent 30%),
    var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: 112px; }
::selection { background: var(--gold); color: #11130f; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  box-shadow: 0 0 16px rgba(241,203,117,.45);
}

.section-shell { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.section { padding: 150px 0; position: relative; }
.section-index,
.eyebrow,
.kicker,
.panel-label,
.fit-label {
  margin: 0;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow > span { width: 42px; height: 1px; background: var(--gold); }
h1,h2,h3,p,blockquote { margin-top: 0; }
h1,h2,h3 { text-wrap: balance; }
h1,h2 {
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .99;
}
h1 em,h2 em { color: var(--gold-bright); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h2 { margin-bottom: 26px; font-size: clamp(3rem, 5.35vw, 5.9rem); }
h3 { letter-spacing: -.03em; line-height: 1.18; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s var(--ease), border-color .25s, background .25s, color .25s, box-shadow .25s;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible,
.menu-trigger:focus-visible,
.menu-close:focus-visible,
.leak-tabs button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(241,203,117,.6);
  outline-offset: 4px;
}
.button-gold {
  color: #10130f;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 14px 40px rgba(216,174,86,.18), inset 0 1px rgba(255,255,255,.42);
}
.button-gold:hover { box-shadow: 0 20px 54px rgba(216,174,86,.26), inset 0 1px rgba(255,255,255,.5); }
.button-ghost { color: var(--ink); background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.15); backdrop-filter: blur(12px); }
.button-ghost:hover { border-color: rgba(241,203,117,.38); background: rgba(255,255,255,.065); }
.button-large { min-height: 58px; padding-inline: 28px; font-size: 14px; }
.button-xl { min-height: 64px; padding-inline: 30px; font-size: 14px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 750;
  border-bottom: 1px solid rgba(216,174,86,.5);
  padding-bottom: 5px;
}
.text-link span { color: var(--gold); transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 36px), 1440px);
  min-height: var(--header-h);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background: rgba(7,11,9,.58);
  box-shadow: 0 20px 70px rgba(0,0,0,.2);
  backdrop-filter: blur(22px) saturate(125%);
  transition: background .3s, border-color .3s, top .3s, box-shadow .3s;
}
.site-header.is-scrolled { top: 10px; background: rgba(7,11,9,.88); border-color: rgba(216,174,86,.16); box-shadow: 0 18px 55px rgba(0,0,0,.4); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 52px; height: 52px; border-radius: 15px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 14px; letter-spacing: .22em; }
.brand-copy small { margin-top: 7px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .17em; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  touch-action: manipulation;
}
.menu-trigger:hover { background: rgba(255,255,255,.055); }
.menu-glyph { width: 20px; display: grid; gap: 5px; }
.menu-glyph i { display: block; width: 100%; height: 1px; background: currentColor; transition: transform .25s, width .25s; }
.menu-trigger[aria-expanded="true"] .menu-glyph i:first-child { transform: translateY(3px) rotate(45deg); }
.menu-trigger[aria-expanded="true"] .menu-glyph i:last-child { transform: translateY(-3px) rotate(-45deg); }

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 115;
  background: rgba(2,5,4,.72);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s, visibility 0s linear .35s;
}
.menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.site-menu {
  position: fixed;
  z-index: 120;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: min(700px, calc(100% - 24px));
  padding: 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(216,174,86,.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(216,174,86,.12), transparent 35%),
    linear-gradient(160deg, #101914, #080e0b 78%);
  box-shadow: -30px 0 100px rgba(0,0,0,.52);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateX(calc(100% + 40px));
  visibility: hidden;
  pointer-events: none;
  transition: transform .48s var(--ease), visibility .48s;
}
.site-menu.is-open { transform: none; visibility: visible; pointer-events: auto; }
.site-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.site-menu-head > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.menu-close { min-height: 44px; padding: 7px 0 7px 10px; border: 0; background: transparent; cursor: pointer; color: var(--ink-soft); font-size: 12px; touch-action: manipulation; }
.menu-close span { display: inline-grid; place-items: center; width: 30px; height: 30px; margin-left: 8px; border-radius: 50%; border: 1px solid var(--line); font-size: 20px; }
.menu-nav { align-self: center; display: grid; }
.menu-nav a {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas: "num title" "num sub";
  column-gap: 18px;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding .25s, border-color .25s;
  touch-action: manipulation;
}
.menu-nav a:hover { padding-left: 12px; border-color: var(--line-strong); }
.menu-nav a > span { grid-area: num; align-self: center; color: var(--gold); font-size: 10px; letter-spacing: .12em; }
.menu-nav strong { grid-area: title; font-size: clamp(23px, 3.2vw, 38px); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
.menu-nav small { grid-area: sub; margin-top: 6px; color: var(--muted); font-size: 12px; }
.menu-footer { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 28px; padding-top: 22px; }
.menu-footer p { max-width: 390px; margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  isolation: isolate;
  background: #090d0b;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,10,8,.98) 0%, rgba(6,10,8,.9) 26%, rgba(6,10,8,.48) 50%, rgba(6,10,8,.04) 76%),
    linear-gradient(180deg, rgba(3,6,5,.2) 0%, transparent 42%, rgba(3,6,5,.85) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-media { position: absolute; z-index: 1; inset: 0; margin: 0; }
.hero-media > picture { display: block; width: 100%; height: 100%; }
.hero-media > picture > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media-shade { display: none; }
.hero-disclosure {
  position: absolute;
  z-index: 7;
  right: 26px;
  top: calc(100svh - 36px);
  bottom: auto;
  max-width: 410px;
  margin: 0;
  transform: translateY(-100%);
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(5,9,7,.66);
  color: rgba(244,241,232,.72);
  backdrop-filter: blur(10px);
  font-size: 10px;
  line-height: 1.45;
}
.hero-disclosure a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }
.hero-grid { position: relative; z-index: 5; flex: 1; display: grid; grid-template-columns: minmax(0, 760px) 1fr; align-items: center; padding-top: 130px; padding-bottom: 145px; }
.hero-copy { max-width: 770px; }
.hero h1 { margin: 24px 0 30px; font-size: clamp(4.2rem, 7.25vw, 8rem); }
.hero h1 em { display: inline; }
.hero-lead { max-width: 690px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(17px, 1.55vw, 21px); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-micro { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; margin: 20px 0 0; color: var(--muted); font-size: 11px; letter-spacing: .03em; }
.hero-micro span { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.hero-principles {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-principles > div { display: grid; grid-template-columns: 34px 1fr; grid-template-areas: "num title" "num sub"; column-gap: 14px; padding: 24px 26px 25px 0; }
.hero-principles > div + div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.1); }
.hero-principles span { grid-area: num; color: var(--gold); font-size: 9px; letter-spacing: .1em; }
.hero-principles strong { grid-area: title; font-size: 13px; }
.hero-principles small { grid-area: sub; margin-top: 3px; color: rgba(243,239,229,.58); font-size: 10px; }

.tension { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(60px, 9vw, 150px); align-items: start; }
.tension-title { position: sticky; top: 130px; }
.tension-title h2 { margin-top: 22px; }
.tension-copy .lead { max-width: 650px; margin-bottom: 54px; color: var(--ink-soft); font-size: clamp(21px, 2vw, 28px); line-height: 1.45; letter-spacing: -.02em; }
.tension-list { border-top: 1px solid var(--line); }
.tension-list article { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.tension-list article > span { color: var(--gold); font-size: 10px; letter-spacing: .12em; }
.tension-list h3 { margin-bottom: 7px; font-size: 22px; }
.tension-list p { margin: 0; color: var(--muted); }
.tension-conclusion { margin: 28px 0 0; color: var(--gold-bright); font-family: Georgia, serif; font-size: 24px; font-style: italic; }

.leak-section { background: linear-gradient(180deg, transparent, rgba(14,23,18,.72) 12%, rgba(14,23,18,.72) 88%, transparent); }
.section-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 50px; margin-bottom: 68px; align-items: start; }
.section-heading h2 { max-width: 960px; }
.section-heading > div > p { max-width: 660px; color: var(--muted); font-size: 18px; }
.leak-explorer { overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: rgba(7,12,9,.68); box-shadow: var(--shadow); }
.leak-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.leak-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-areas: "num title" "num sub";
  column-gap: 14px;
  min-height: 116px;
  padding: 26px 30px;
  text-align: left;
  border: 0;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.012);
  color: var(--ink);
  cursor: pointer;
  transition: background .25s, color .25s;
}
.leak-tabs button:last-child { border-right: 0; }
.leak-tabs button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px; background: var(--gold-bright); transition: right .35s var(--ease); }
.leak-tabs button[aria-selected="true"] { background: rgba(216,174,86,.07); }
.leak-tabs button[aria-selected="true"]::after { right: 0; }
.leak-tabs button > span { grid-area: num; color: var(--gold); font-size: 10px; }
.leak-tabs strong { grid-area: title; font-size: 18px; }
.leak-tabs small { grid-area: sub; margin-top: 5px; color: var(--muted); font-size: 11px; }
.leak-panels article { position: relative; display: grid; grid-template-columns: 120px minmax(0,1.15fr) minmax(300px,.85fr); gap: 54px; min-height: 400px; padding: 58px; align-items: center; }
.leak-panels article[hidden] { display: none; }
.panel-mark { color: rgba(216,174,86,.12); font-family: Georgia, serif; font-size: 118px; line-height: 1; }
.panel-main h3 { max-width: 700px; margin: 16px 0 20px; font-size: clamp(30px, 3.1vw, 48px); }
.panel-main > p:last-child { max-width: 660px; color: var(--muted); font-size: 16px; }
.panel-metrics { margin: 0; border-top: 1px solid var(--line); }
.panel-metrics > div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.panel-metrics dt { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.panel-metrics dd { margin: 6px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }

.bridge-section { overflow: hidden; background: #090f0c; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bridge-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 14% 40%, rgba(216,174,86,.08), transparent 25%), linear-gradient(90deg, transparent 49.95%, rgba(255,255,255,.025) 50%, transparent 50.05%); background-size: auto, 80px 80px; }
.bridge-intro { position: relative; z-index: 1; max-width: 930px; }
.bridge-intro h2 { margin-top: 22px; }
.bridge-intro > p:last-child { max-width: 720px; color: var(--muted); font-size: 18px; }
.bridge-flow { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(7, minmax(180px,1fr)); gap: 12px; width: max-content; min-width: 100%; margin: 76px 0 0; padding: 0 0 20px; list-style: none; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--gold-dark) transparent; }
.bridge-flow li { width: 190px; min-height: 250px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); }
.bridge-flow li:first-child,.bridge-flow li:last-child { border-color: var(--line-strong); }
.bridge-flow span { display: block; color: var(--gold); font-size: 10px; letter-spacing: .14em; }
.bridge-flow strong { display: block; margin-top: 54px; font-size: 17px; }
.bridge-flow p { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.method-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 160px); align-items: start; }
.method-copy { position: sticky; top: 130px; }
.method-copy h2 { margin-top: 22px; }
.method-copy > p:not(.section-index) { max-width: 590px; margin-bottom: 30px; color: var(--muted); font-size: 17px; }
.method-steps { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.method-steps li { display: grid; grid-template-columns: 58px 1fr auto; gap: 22px; align-items: start; padding: 33px 0; border-bottom: 1px solid var(--line); }
.method-steps li > span { color: var(--gold); font-size: 10px; letter-spacing: .14em; }
.method-steps h3 { margin-bottom: 8px; font-size: 27px; }
.method-steps p { max-width: 620px; margin: 0; color: var(--muted); }
.method-steps small { align-self: center; color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-align: right; }

.start-section { background: linear-gradient(180deg, transparent, rgba(14,21,17,.8) 18%, rgba(14,21,17,.8) 82%, transparent); }
.start-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: stretch; }
.start-card { position: relative; min-height: 590px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(155deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); overflow: hidden; }
.start-card::before { content: ""; position: absolute; width: 240px; height: 240px; right: -140px; top: -150px; border-radius: 50%; background: rgba(216,174,86,.09); filter: blur(10px); }
.start-card.active { border-color: rgba(216,174,86,.45); background: linear-gradient(155deg, rgba(216,174,86,.12), rgba(255,255,255,.018) 60%); transform: translateY(-10px); }
.start-top { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.start-top > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold); font-size: 10px; }
.start-top small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.start-card h3 { position: relative; margin: 78px 0 17px; font-size: clamp(30px, 2.7vw, 43px); }
.start-card > p { min-height: 76px; color: var(--muted); }
.start-card ul { margin: 24px 0 34px; padding: 0; display: grid; gap: 13px; list-style: none; }
.start-card li { display: grid; grid-template-columns: 18px 1fr; gap: 7px; color: var(--ink-soft); font-size: 13px; }
.start-card li::before { content: "↳"; color: var(--gold); }
.start-card .button { margin-top: auto; align-self: flex-start; }

.fit-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(8,14,11,.7); }
.fit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 9vw, 140px); align-items: center; }
.fit-copy h2 { margin-top: 22px; }
.fit-copy > p:not(.section-index) { max-width: 650px; color: var(--muted); font-size: 17px; }
.sector-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.sector-chips span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: rgba(255,255,255,.025); font-size: 11px; }
.fit-cards { display: grid; gap: 14px; }
.fit-card { padding: 28px 30px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.02); }
.fit-card.positive { border-color: rgba(45,141,101,.34); }
.fit-card.negative { border-color: rgba(165,102,93,.28); }
.fit-label { display: flex; align-items: center; gap: 9px; }
.fit-card.positive .fit-label { color: #79c7a4; }
.fit-card.negative .fit-label { color: #cf8d83; }
.fit-label span { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid currentColor; border-radius: 50%; }
.fit-card ul { margin: 22px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.fit-card li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 13px; }
.fit-card li::before { content: ""; position: absolute; left: 1px; top: .72em; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .55; }

.founder-section { background: radial-gradient(circle at 10% 45%, rgba(216,174,86,.07), transparent 25%); }
.founder-grid { display: grid; grid-template-columns: 1fr .95fr; gap: clamp(65px, 9vw, 140px); align-items: center; }
.founder-visual { position: relative; margin: 0; height: min(760px, 72vw); max-height: 760px; min-height: 560px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 32px; background: #0c110e; box-shadow: var(--shadow); }
.founder-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(3,6,5,.8)); pointer-events: none; }
.founder-visual picture { display: block; width: 100%; height: 100%; }
.founder-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; }
.founder-visual figcaption { position: absolute; z-index: 2; left: 26px; bottom: 23px; color: rgba(244,241,232,.72); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.founder-copy h2 { margin-top: 22px; }
.founder-copy blockquote { margin: 32px 0; padding: 2px 0 2px 24px; border-left: 2px solid var(--gold); color: #eee3cc; font-family: Georgia, serif; font-size: clamp(22px, 2vw, 31px); font-style: italic; line-height: 1.48; }
.founder-copy > p:not(.section-index):not(.ai-note) { max-width: 660px; color: var(--muted); }
.founder-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 32px; }
.ai-note { max-width: 660px; margin: 32px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 10px; line-height: 1.5; }
.ai-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

.faq-section { background: #090e0c; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(70px, 10vw, 160px); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { margin-top: 22px; }
.faq-intro > p:last-child { max-width: 420px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; cursor: pointer; list-style: none; font-size: clamp(17px, 1.7vw, 23px); font-weight: 650; letter-spacing: -.02em; }
summary::-webkit-details-marker { display: none; }
summary span { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 20px; transition: transform .25s; }
details[open] summary span { transform: rotate(45deg); }
details > div { padding: 0 60px 28px 0; }
details p { max-width: 760px; margin: 0; color: var(--muted); }

.final-cta { position: relative; padding: 160px 0; overflow: hidden; border-top: 1px solid var(--line); background: linear-gradient(145deg, #0c1511, #070b09 62%); }
.final-glow { position: absolute; right: -10vw; top: -60%; width: 60vw; height: 60vw; border-radius: 50%; background: radial-gradient(circle, rgba(216,174,86,.14), transparent 64%); pointer-events: none; }
.final-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(70px, 10vw, 160px); align-items: end; }
.final-grid h2 { max-width: 920px; margin-top: 22px; }
.final-grid > div:first-child > p:last-child { max-width: 780px; color: var(--muted); font-size: 18px; }
.final-actions { display: grid; gap: 12px; }
.final-actions .button { width: 100%; }
.final-actions small { margin-top: 6px; color: var(--muted-2); font-size: 10px; text-align: center; }

.site-footer { border-top: 1px solid var(--line); background: #050806; }
.footer-main { display: grid; grid-template-columns: 1fr auto auto; gap: 70px; align-items: center; padding-top: 48px; padding-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 14px; }
.footer-brand > div { display: grid; line-height: 1; }
.footer-brand strong { font-size: 12px; letter-spacing: .2em; }
.footer-brand span { margin-top: 7px; color: var(--muted); font-size: 9px; }
.footer-contact,.footer-legal { display: flex; gap: 18px; color: var(--muted); font-size: 11px; }
.footer-contact { flex-direction: column; gap: 4px; }
.footer-contact a:hover,.footer-legal a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 20px; padding-bottom: 42px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 9px; letter-spacing: .05em; }
.mobile-sticky { display: none; }

.js .reveal { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .hero::before { background: linear-gradient(90deg, rgba(6,10,8,.97) 0%, rgba(6,10,8,.83) 38%, rgba(6,10,8,.2) 72%), linear-gradient(180deg, rgba(3,6,5,.12), transparent 40%, rgba(3,6,5,.9)); }
  .hero-grid { grid-template-columns: minmax(0, 700px) 1fr; }
  .leak-panels article { grid-template-columns: 90px minmax(0,1fr); }
  .panel-metrics { grid-column: 2; }
  .start-grid { grid-template-columns: 1fr; }
  .start-card { min-height: 0; }
  .start-card.active { transform: none; }
  .start-card > p { min-height: 0; }
  .fit-grid,.founder-grid,.final-grid { grid-template-columns: 1fr; }
  .founder-visual { max-width: 850px; }
  .final-actions { max-width: 560px; }
}

@media (max-width: 900px) {
  .section { padding: 110px 0; }
  .section-shell { width: min(calc(100% - 40px), var(--max)); }
  .header-cta { display: none; }
  .hero { min-height: auto; padding-top: 102px; display: flex; flex-direction: column; background: #070b09; }
  .hero::before,.hero::after { display: none; }
  .hero-grid { order: 1; display: block; padding-top: 70px; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(3.55rem, 11vw, 6.5rem); }
  .hero-copy { max-width: 760px; }
  .hero-media { order: 2; position: relative; inset: auto; width: calc(100% - 40px); aspect-ratio: 4 / 5; margin: 0 auto; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 28px; }
  .hero-media > picture > img { object-position: 50% center; }
  .hero-media-shade { display: block; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,7,6,.8)); }
  .hero-disclosure { order: 3; position: static; width: calc(100% - 40px); max-width: none; margin: 10px auto 0; transform: none; background: rgba(255,255,255,.025); }
  .hero-principles { order: 4; grid-template-columns: 1fr; margin-top: 24px; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
  .hero-principles > div { padding: 19px 20px; }
  .hero-principles > div + div { padding-left: 20px; border-left: 0; border-top: 1px solid var(--line); }
  .tension,.method-section,.faq-grid { grid-template-columns: 1fr; gap: 58px; }
  .tension-title,.method-copy,.faq-intro { position: static; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .leak-tabs { grid-template-columns: 1fr; }
  .leak-tabs button { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
  .leak-tabs button:last-child { border-bottom: 0; }
  .leak-panels article { grid-template-columns: 1fr; gap: 24px; padding: 38px 30px; }
  .panel-mark { display: none; }
  .panel-metrics { grid-column: auto; }
  .method-steps li { grid-template-columns: 46px 1fr; }
  .method-steps small { grid-column: 2; text-align: left; }
  .fit-grid { gap: 54px; }
  .founder-grid { gap: 55px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 86px 0; }
  .site-header { top: 9px; width: calc(100% - 18px); min-height: 64px; padding: 7px 8px 7px 10px; border-radius: 18px; }
  .site-header.is-scrolled { top: 7px; }
  .brand img { width: 44px; height: 44px; border-radius: 13px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { display: none; }
  .menu-trigger { min-height: 46px; padding: 0 12px; }
  .menu-trigger > span:first-child { display: none; }
  .site-menu { inset: 7px; width: auto; padding: 21px; border-radius: 24px; }
  .menu-backdrop { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .menu-nav a { grid-template-columns: 34px 1fr; padding: 14px 2px; }
  .menu-nav strong { font-size: 23px; }
  .menu-nav small { font-size: 10px; }
  .menu-footer { grid-template-columns: 1fr; gap: 16px; }
  .menu-footer p { display: none; }
  .menu-footer .button { width: 100%; }
  h2 { font-size: clamp(2.75rem, 13vw, 4.25rem); }
  .hero { padding-top: 84px; }
  .hero-grid { padding-top: 48px; padding-bottom: 38px; }
  .hero h1 { margin: 20px 0 24px; font-size: clamp(3rem, 15.5vw, 4.45rem); line-height: .98; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .button-xl { min-height: 58px; padding-inline: 20px; }
  .hero-micro { font-size: 9px; }
  .hero-media { width: calc(100% - 28px); border-radius: 23px; }
  .hero-disclosure { width: calc(100% - 28px); font-size: 8px; }
  .hero-principles { margin-top: 14px; }
  .tension-copy .lead { font-size: 20px; }
  .tension-list article { grid-template-columns: 36px 1fr; }
  .tension-list h3 { font-size: 19px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading > div > p { font-size: 15px; }
  .leak-explorer { border-radius: 24px; }
  .leak-tabs button { padding: 21px; }
  .leak-panels article { padding: 30px 21px; }
  .panel-main h3 { font-size: 28px; }
  .bridge-intro > p:last-child { font-size: 15px; }
  .bridge-flow { margin-top: 45px; }
  .bridge-flow li { width: 172px; min-height: 230px; }
  .method-steps li { grid-template-columns: 36px 1fr; gap: 14px; padding: 26px 0; }
  .method-steps h3 { font-size: 23px; }
  .method-steps p { font-size: 14px; }
  .start-card { padding: 25px; border-radius: 22px; }
  .start-card h3 { margin-top: 55px; }
  .start-card .button { align-self: stretch; }
  .sector-chips span { font-size: 10px; }
  .fit-card { padding: 23px 21px; }
  .founder-visual { min-height: 450px; height: 125vw; border-radius: 24px; }
  .founder-copy blockquote { padding-left: 18px; font-size: 21px; }
  .founder-actions { display: grid; align-items: stretch; }
  .founder-actions .button { width: 100%; }
  summary { padding: 23px 0; font-size: 17px; }
  details > div { padding-right: 0; }
  .final-cta { padding: 100px 0 118px; }
  .final-grid { gap: 42px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding-top: 36px; padding-bottom: 30px; }
  .footer-legal { grid-column: auto; flex-wrap: wrap; }
  .footer-bottom { display: grid; gap: 5px; padding-bottom: 96px; }
  .mobile-sticky { position: fixed; z-index: 90; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); display: block; opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity .25s, transform .25s; }
  .mobile-sticky.is-visible { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-sticky a { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 58px; border: 1px solid rgba(255,255,255,.2); border-radius: 17px; background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #10130f; box-shadow: 0 18px 50px rgba(0,0,0,.5); font-size: 13px; font-weight: 850; }
}

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