:root {
  --ink: #102331;
  --ink-soft: #415664;
  --navy: #0a2233;
  --navy-2: #0c2f45;
  --teal: #12a6a6;
  --teal-dark: #087a80;
  --aqua: #79d9d5;
  --mist: #eaf5f4;
  --paper: #f8faf9;
  --white: #ffffff;
  --line: rgba(16, 35, 49, 0.13);
  --shadow: 0 22px 60px rgba(5, 31, 46, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img, video { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.container.narrow { width: min(calc(100% - 40px), 940px); }
.section { padding: 112px 0; position: relative; overflow: hidden; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(5,31,46,.08);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(145deg, var(--aqua), var(--teal));
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(18,166,166,.25);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 19px; letter-spacing: .15em; }
.brand-copy small { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; margin-top: 5px; opacity: .7; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { text-decoration: none; font-size: 14px; font-weight: 650; opacity: .88; }
.site-nav a:hover { opacity: 1; }
.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
}
.scrolled .nav-cta { border-color: var(--line); background: var(--mist); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; }

.hero {
  min-height: 820px;
  height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.hero-video,
.hero-shade,
.hero-pattern { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; opacity: .68; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4,24,38,.92) 0%, rgba(4,24,38,.76) 49%, rgba(4,24,38,.35) 100%),
    linear-gradient(0deg, rgba(4,24,38,.64), transparent 50%);
}
.hero-pattern {
  opacity: .22;
  background-image:
    radial-gradient(circle at 72% 35%, rgba(121,217,213,.5) 0 1px, transparent 2px),
    linear-gradient(120deg, transparent 60%, rgba(121,217,213,.16));
  background-size: 36px 36px, 100% 100%;
  mask-image: linear-gradient(to left, black, transparent 80%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 70px; }
.hero-content { max-width: 860px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--aqua);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
}
.eyebrow.dark { color: var(--teal-dark); }
.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-lead { margin: 28px 0 0; max-width: 680px; font-size: clamp(19px, 2vw, 25px); color: rgba(255,255,255,.83); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--aqua); color: var(--navy); box-shadow: 0 16px 32px rgba(18,166,166,.24); }
.button-primary:hover { background: #99e6e1; }
.button-ghost { border: 1px solid rgba(255,255,255,.45); color: var(--white); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 40px; color: rgba(255,255,255,.7); font-size: 13px; }
.hero-proof span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); display: inline-block; margin-right: 10px; vertical-align: 1px; }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; z-index: 3; color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; writing-mode: vertical-rl; }
.scroll-cue::after { content: ""; width: 1px; height: 45px; background: rgba(255,255,255,.4); display: block; margin: 10px auto 0; }

.section-heading { max-width: 790px; margin-bottom: 54px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading h2,
.content-panel h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.section-heading p:last-child { color: var(--ink-soft); font-size: 18px; }
.intro { background: var(--white); }
.intro-copy { font-size: 20px; color: var(--ink-soft); max-width: 760px; }
.intro-copy p { margin: 0 0 15px; }
.statement { font-size: 25px; color: var(--ink); margin-top: 32px !important; }
.strong { font-weight: 750; color: currentColor; }
.accent-statement { margin: 34px 0; color: var(--teal-dark); font-size: 34px; line-height: 1.2; font-weight: 800; letter-spacing: -.03em; }
.accent-statement.small { font-size: 25px; }
.light-accent { color: var(--aqua); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 54px; }
.metric-grid article { padding: 27px 22px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(180deg, var(--white), #f4fbfa); }
.metric-grid span { color: var(--teal); font-size: 11px; letter-spacing: .16em; font-weight: 800; }
.metric-grid h3 { margin: 24px 0 0; font-size: 18px; line-height: 1.3; }
.feature-callout { margin-top: 50px; padding: 42px; border-radius: var(--radius); background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.feature-callout > p { color: var(--aqua); font-weight: 700; }
.feature-callout h3 { margin: 10px 0 34px; max-width: 760px; font-size: clamp(27px, 3vw, 42px); line-height: 1.18; letter-spacing: -.03em; }
.callout-footer { display: flex; flex-wrap: wrap; gap: 18px 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); font-size: 17px; }

.strategies { background: var(--mist); }
.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.strategy-card { position: relative; padding: 48px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.strategy-card-dark { background: var(--navy); color: rgba(255,255,255,.78); }
.strategy-card h3 { margin: 0 0 28px; color: var(--ink); font-size: clamp(29px, 3vw, 42px); line-height: 1.12; letter-spacing: -.035em; }
.strategy-card-dark h3 { color: var(--white); }
.strategy-card p { margin: 0 0 15px; }
.strategy-card h4 { margin: 8px 0 22px; font-size: 23px; line-height: 1.3; }
.strategy-number { position: absolute; right: 34px; top: 26px; color: rgba(16,35,49,.08); font-size: 72px; line-height: 1; font-weight: 900; }
.strategy-card-dark .strategy-number { color: rgba(255,255,255,.08); }
.question, .answer { margin-top: 30px !important; color: var(--teal-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.strategy-card-dark .answer { color: var(--aqua); }
.check-list { list-style: none; padding: 0; margin: 18px 0 28px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--mist); color: var(--teal-dark); font-size: 12px; font-weight: 900; }
.check-list.light li::before { background: rgba(121,217,213,.14); color: var(--aqua); }
.check-list.compact { gap: 8px; }

.systems-section { background: var(--white); }
.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.split-layout.reverse { grid-template-columns: 1fr 1fr; }
.visual-panel { min-height: 560px; position: relative; border-radius: 36px; background: linear-gradient(145deg, #edf9f8, #dcefee); overflow: hidden; box-shadow: inset 0 0 0 1px rgba(18,166,166,.14); }
.visual-panel::before,
.visual-panel::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(18,166,166,.25); left: 50%; top: 50%; transform: translate(-50%,-50%); }
.visual-panel::before { width: 390px; height: 390px; }
.visual-panel::after { width: 265px; height: 265px; }
.network-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 166px; height: 166px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-content: center; text-align: center; box-shadow: 0 25px 60px rgba(5,31,46,.25); z-index: 2; }
.network-core span { font-size: 28px; font-weight: 850; letter-spacing: .16em; }
.network-core small { margin-top: 6px; color: var(--aqua); }
.network-card { position: absolute; width: 175px; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 18px 35px rgba(5,31,46,.12); display: grid; z-index: 3; }
.network-card span { font-size: 12px; color: var(--ink-soft); }
.network-card b { margin-top: 6px; color: var(--teal-dark); }
.card-one { left: 6%; top: 16%; }
.card-two { right: 6%; top: 23%; }
.card-three { left: 22%; bottom: 9%; }
.content-panel p { color: var(--ink-soft); }
.content-panel .strong { color: var(--ink); }
.word-stack { display: grid; gap: 8px; margin: 25px 0; }
.word-stack span { padding: 10px 14px; border-left: 3px solid var(--teal); background: var(--mist); font-weight: 700; color: var(--ink); }

.ai-coo { background: var(--navy); color: rgba(255,255,255,.78); }
.ai-coo .section-heading h2 { color: var(--white); }
.ai-coo .section-heading p:last-child { color: rgba(255,255,255,.7); }
.coo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.coo-orbit { position: relative; width: min(100%, 470px); aspect-ratio: 1; margin: auto; border-radius: 50%; border: 1px solid rgba(121,217,213,.2); }
.coo-orbit::before,
.coo-orbit::after { content: ""; position: absolute; inset: 12%; border-radius: 50%; border: 1px solid rgba(121,217,213,.14); }
.coo-orbit::after { inset: 27%; }
.orbit-center { position: absolute; inset: 36%; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(145deg,var(--aqua),var(--teal)); color: var(--navy); font-weight: 900; letter-spacing: .14em; box-shadow: 0 0 80px rgba(121,217,213,.25); }
.coo-orbit > span { --angle: calc(var(--i) * 60deg); position: absolute; left: 50%; top: 50%; width: 126px; padding: 10px; text-align: center; font-size: 12px; border: 1px solid rgba(121,217,213,.22); border-radius: 999px; background: rgba(255,255,255,.05); transform: translate(-50%,-50%) rotate(var(--angle)) translateY(-202px) rotate(calc(var(--angle) * -1)); }
.coo-copy p { margin: 0 0 14px; }
.coo-copy .strong { color: var(--white); }

.future-section { background: var(--white); }
.future-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 24px; }
.past-card, .next-card { border-radius: var(--radius); padding: 46px; }
.past-card { background: #eef1f1; }
.past-card > p { font-size: 22px; font-weight: 750; }
.timeline { display: grid; margin-top: 40px; }
.timeline span { padding: 21px 0; border-bottom: 1px solid var(--line); color: #71818a; font-size: 22px; }
.next-card { background: var(--mist); border: 1px solid rgba(18,166,166,.18); }
.next-card h3 { margin: 0; font-size: 32px; letter-spacing: -.025em; }

.revenue-section { background: #eef5f4; }
.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.pill-list li { padding: 10px 15px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-weight: 700; }
.results-panel { background: var(--white); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.results-panel > p { margin-top: 0; font-weight: 800; }
.results-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.results-list li { display: flex; gap: 12px; align-items: center; padding: 14px; border-radius: 13px; background: var(--paper); font-weight: 700; font-size: 14px; }
.results-list span { color: var(--teal); font-size: 10px; font-weight: 900; }
.without-box { margin-top: 25px; padding: 22px; border-radius: 16px; background: var(--navy); color: var(--white); display: flex; flex-wrap: wrap; gap: 9px 17px; }
.without-box p { width: 100%; margin: 0; color: var(--aqua); font-weight: 800; }
.without-box span::before { content: "—"; margin-right: 7px; color: var(--aqua); }

.value-section { background: var(--white); }
.value-chain { display: grid; gap: 1px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.value-chain > div { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 27px 32px; background: var(--paper); }
.value-chain p { margin: 0; color: var(--ink-soft); }
.value-chain strong { color: var(--teal-dark); font-size: 20px; }
.value-conclusion { margin-top: 44px; padding: 46px; border-radius: var(--radius); background: linear-gradient(135deg,var(--navy),var(--navy-2)); color: var(--white); text-align: center; }
.value-conclusion p { margin: 0 0 10px; color: rgba(255,255,255,.72); }
.value-conclusion h3 { margin: 0; font-size: clamp(30px,3.5vw,48px); letter-spacing: -.03em; }

.report-section { background: var(--mist); }
.report-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.report-mockup { padding: 36px; border-radius: 34px; background: linear-gradient(145deg,#d8efed,#f5fbfb); box-shadow: inset 0 0 0 1px rgba(18,166,166,.16); }
.report-window { background: var(--white); border-radius: 20px; padding: 25px; box-shadow: var(--shadow); }
.report-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.report-top span { font-weight: 900; letter-spacing: .13em; }
.report-top small { color: var(--ink-soft); }
.report-score { display: grid; justify-items: start; margin: 27px 0; }
.report-score small { color: var(--ink-soft); }
.report-score strong { font-size: 52px; color: var(--teal-dark); letter-spacing: -.05em; line-height: 1; }
.report-score span { font-size: 10px; color: #8a989f; }
.report-bars { height: 130px; display: flex; align-items: end; gap: 8px; padding: 10px 0 20px; border-bottom: 1px solid var(--line); }
.report-bars i { flex: 1; border-radius: 7px 7px 2px 2px; background: linear-gradient(var(--aqua),var(--teal)); }
.report-bars i:nth-child(1){height:35%}.report-bars i:nth-child(2){height:48%}.report-bars i:nth-child(3){height:44%}.report-bars i:nth-child(4){height:65%}.report-bars i:nth-child(5){height:74%}.report-bars i:nth-child(6){height:88%}
.report-row { display: flex; justify-content: space-between; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.report-row b { color: var(--teal-dark); }

.buyer-section { background: var(--navy); color: var(--white); }
.buyer-section .section-heading p { color: rgba(255,255,255,.68); margin: 5px 0; }
.buyer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.buyer-grid article { min-height: 170px; padding: 25px; border-radius: 18px; border: 1px solid rgba(121,217,213,.17); background: rgba(255,255,255,.045); }
.buyer-grid span { color: var(--aqua); font-size: 11px; letter-spacing: .16em; font-weight: 900; }
.buyer-grid h3 { margin: 32px 0 0; font-size: 18px; line-height: 1.3; }

.five-section { background: var(--white); }
.five-layout { display: grid; grid-template-columns: .55fr 1fr; align-items: center; gap: 60px; }
.five-number { font-size: min(42vw,440px); line-height: .75; color: var(--mist); font-weight: 900; letter-spacing: -.09em; text-shadow: -1px -1px 0 rgba(18,166,166,.1); }
.five-copy h2 { margin: 0; font-size: clamp(38px,5vw,66px); letter-spacing: -.045em; line-height: 1.05; }
.large-copy { font-size: 24px; font-weight: 700; color: var(--ink); }
.simple-list { display: grid; gap: 8px; margin: 25px 0; }
.simple-list span { width: fit-content; padding: 8px 13px; background: var(--mist); border-radius: 8px; font-weight: 750; }
.five-summary { margin-top: 34px; display: grid; gap: 10px; padding-left: 20px; border-left: 4px solid var(--teal); font-size: 20px; }

.final-section { background: linear-gradient(150deg,#071c2b,#0a3148); color: rgba(255,255,255,.77); }
.final-section .section-heading h2,
.final-section .section-heading h3 { color: var(--white); }
.final-section .section-heading p { color: rgba(255,255,255,.75); }
.final-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.final-paths article { padding: 34px; border: 1px solid rgba(121,217,213,.2); border-radius: 20px; background: rgba(255,255,255,.05); }
.final-paths span { color: var(--aqua); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.final-paths p { margin-bottom: 0; font-size: 17px; }
.final-decision { margin: 60px 0; text-align: center; }
.final-decision p { margin: 0 0 15px; }
.final-decision h2 { margin: 0; color: var(--white); font-size: clamp(35px,4vw,56px); line-height: 1.1; letter-spacing: -.04em; }
.final-brand { text-align: center; padding-top: 50px; border-top: 1px solid rgba(255,255,255,.14); }
.final-brand > strong { display: block; color: var(--white); font-size: 44px; letter-spacing: .18em; }
.final-brand > span { display: block; color: var(--aqua); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; }
.final-brand p { font-size: 22px; margin: 28px 0; }
.final-brand h3 { color: var(--white); font-size: 32px; }

.site-footer { background: #061723; color: rgba(255,255,255,.65); padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-brand { color: var(--white); transform: scale(.9); transform-origin: left center; }
.site-footer p { font-size: 12px; }
.site-footer > .container > a { font-size: 12px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .nav-toggle { display: block; color: currentColor; }
  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    background: rgba(255,255,255,.98);
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(5,31,46,.14);
    transform: translateY(-140%);
    transition: transform .25s ease;
  }
  .nav-open .site-nav { transform: none; }
  .site-nav a { padding: 15px 8px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 10px; text-align: center; background: var(--mist); }
  .strategy-grid,
  .split-layout,
  .split-layout.reverse,
  .coo-grid,
  .report-layout { grid-template-columns: 1fr; }
  .split-layout { gap: 50px; }
  .visual-panel { min-height: 500px; }
  .future-grid { grid-template-columns: 1fr; }
  .buyer-grid { grid-template-columns: repeat(2,1fr); }
  .five-layout { grid-template-columns: .4fr 1fr; gap: 25px; }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  .container, .container.narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .hero { min-height: 760px; height: auto; padding: 150px 0 110px; }
  .hero h1 { font-size: clamp(39px,12vw,55px); }
  .hero-lead { font-size: 18px; }
  .hero-actions { display: grid; }
  .hero-proof { display: grid; }
  .scroll-cue { display: none; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .content-panel h2 { font-size: 36px; }
  .metric-grid { grid-template-columns: 1fr; }
  .feature-callout, .strategy-card, .past-card, .next-card, .results-panel { padding: 30px 24px; }
  .strategy-number { font-size: 54px; }
  .visual-panel { min-height: 440px; }
  .network-card { width: 150px; }
  .card-one { left: 3%; }
  .card-two { right: 3%; top: 18%; }
  .card-three { left: 13%; bottom: 7%; }
  .coo-orbit > span { transform: translate(-50%,-50%) rotate(var(--angle)) translateY(-160px) rotate(calc(var(--angle) * -1)); width: 104px; font-size: 10px; }
  .results-list { grid-template-columns: 1fr; }
  .value-chain > div { grid-template-columns: 1fr; gap: 6px; }
  .report-mockup { padding: 18px; }
  .report-top { align-items: flex-start; gap: 12px; }
  .buyer-grid { grid-template-columns: 1fr; }
  .buyer-grid article { min-height: 130px; }
  .five-layout { grid-template-columns: 1fr; }
  .five-number { display: none; }
  .final-paths { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { transform-origin: center; }
}

/* Contact page */
.contact-page { background: var(--paper); }
.contact-page .site-header { background: rgba(255,255,255,.97); color: var(--ink); box-shadow: 0 10px 30px rgba(5,31,46,.08); }
.contact-main { min-height: 80vh; }
.contact-hero {
  padding: 164px 0 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(121,217,213,.22), transparent 35%),
    linear-gradient(145deg, #071c2b, #0b3b50);
}
.contact-hero-inner { max-width: 860px; }
.contact-hero h1 { margin: 0; max-width: 760px; font-size: clamp(42px,5.5vw,70px); line-height: 1.04; letter-spacing: -.045em; }
.contact-hero p:last-child { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: 19px; }
.contact-section { padding: 90px 0 110px; }
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 42px; align-items: start; }
.contact-info { position: sticky; top: 120px; padding: 40px; border-radius: var(--radius); background: var(--navy); color: rgba(255,255,255,.76); box-shadow: var(--shadow); }
.contact-info h2 { margin: 0 0 16px; color: var(--white); font-size: 42px; line-height: 1.08; letter-spacing: -.04em; }
.contact-email-block { margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-email-block span { display: block; margin-bottom: 8px; color: var(--aqua); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-email-block a { color: var(--white); font-weight: 750; overflow-wrap: anywhere; }
.contact-card { padding: 48px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 30px; }
.form-heading h2, .form-success h2 { margin: 0; font-size: clamp(32px,4vw,48px); line-height: 1.08; letter-spacing: -.04em; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: grid; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid rgba(16,35,49,.2);
  border-radius: 13px;
  background: #fcfdfd;
  color: var(--ink);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.form-field input { min-height: 52px; padding: 0 15px; }
.form-field textarea { min-height: 190px; padding: 14px 15px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 4px rgba(18,166,166,.12); }
.form-submit { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 20px; margin-top: 4px; }
.form-submit button { border: 0; cursor: pointer; }
.form-submit p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.form-errors { margin-bottom: 26px; padding: 18px 20px; border: 1px solid rgba(176,48,48,.24); border-radius: 13px; background: #fff4f3; color: #7f2525; }
.form-errors ul { margin: 8px 0 0; padding-left: 20px; }
.form-success { outline: none; }
.success-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 50%; background: var(--mist); color: var(--teal-dark); font-size: 28px; font-weight: 900; }
.form-success p { font-size: 17px; }
.form-success .button { margin-top: 18px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

@media (max-width: 680px) {
  .contact-hero { padding: 140px 0 64px; }
  .contact-section { padding: 60px 0 80px; }
  .contact-card, .contact-info { padding: 30px 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .form-submit { align-items: flex-start; }
}
