@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --slate-950: #101c24;
  --slate-900: #162630;
  --slate-850: #1d313d;
  --slate-800: #243a47;
  --slate-700: #33505f;
  --cream-100: #f7f1e6;
  --cream-200: #ece3d2;
  --cream-300: #d8cdb9;
  --orange-500: #d97a59;
  --orange-400: #e59b77;
  --sage-400: #9eb49a;
  --ink-900: #112028;
  --ink-700: #304650;
  --text-main: rgba(247, 241, 230, 0.92);
  --text-muted: rgba(247, 241, 230, 0.66);
  --text-dim: rgba(247, 241, 230, 0.48);
  --line-soft: rgba(247, 241, 230, 0.12);
  --line-strong: rgba(217, 122, 89, 0.34);
  --panel-dark: rgba(16, 28, 36, 0.62);
  --panel-mid: rgba(31, 49, 60, 0.72);
  --panel-cream: rgba(247, 241, 230, 0.9);
  --shadow-sm: 0 12px 30px rgba(8, 14, 18, 0.18);
  --shadow-md: 0 28px 80px rgba(8, 14, 18, 0.28);
  --shadow-lg: 0 42px 120px rgba(8, 14, 18, 0.38);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --max-width: 1180px;
  --transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-main);
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 122, 89, 0.22), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(158, 180, 154, 0.12), transparent 25%),
    radial-gradient(circle at 50% 72%, rgba(217, 122, 89, 0.1), transparent 30%),
    linear-gradient(180deg, #14222b 0%, #101c24 34%, #13232d 68%, #0f1a21 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 241, 230, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 241, 230, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
  opacity: 0.25;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.page {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 0 20px rgba(229, 155, 119, 0.6);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  margin: 0 -1.4rem;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(16, 28, 36, 0.76);
  backdrop-filter: blur(18px);
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand-name {
  color: var(--cream-100);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-name span {
  color: var(--orange-500);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  padding: 0.58rem 0.95rem;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.site-nav a:hover {
  color: var(--cream-100);
  background: rgba(247, 241, 230, 0.06);
}

.nav-cta {
  margin-left: 0.4rem;
  color: var(--cream-100) !important;
  background: linear-gradient(135deg, var(--orange-500), #c96745) !important;
  box-shadow: 0 14px 28px rgba(217, 122, 89, 0.25);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--cream-100);
}

.hero,
.editorial-band,
.screens-stage,
.pilot-stage,
.lane-stage,
.trust-stage,
.contact-stage,
.footer {
  padding-top: 5rem;
}

.hero {
  padding-top: 4.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2.4rem;
  align-items: start;
}

.hero-copy {
  padding-top: 1.4rem;
}

.hero-eyebrow,
.pill,
.sheet-kicker,
.editorial-label,
.brief-kicker,
.rail-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.82rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(217, 122, 89, 0.18);
  background: rgba(217, 122, 89, 0.08);
  color: var(--orange-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.editorial-lead h3,
.hero-sheet h2,
.pilot-brief h3,
.contact-copy h2,
.contact-rail h3 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 11ch;
  margin-top: 1.2rem;
  font-size: clamp(3.2rem, 6.3vw, 5.4rem);
  color: var(--cream-100);
}

.hero-subtitle {
  max-width: 58ch;
  margin-top: 1.4rem;
  color: var(--text-muted);
  font-size: 1.07rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--cream-100);
  background: linear-gradient(135deg, var(--orange-500), #c96543);
  box-shadow: 0 16px 34px rgba(217, 122, 89, 0.28);
}

.btn-secondary {
  color: var(--cream-100);
  background: rgba(247, 241, 230, 0.05);
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

.hero-markers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 2.2rem;
}

.marker-card {
  min-height: 100%;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.05), rgba(247, 241, 230, 0.02));
  box-shadow: inset 0 0 0 1px rgba(247, 241, 230, 0.06);
}

.marker-kicker,
.rail-kicker,
.lane-tag {
  display: inline-block;
  color: var(--cream-300);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marker-card p {
  margin-top: 0.5rem;
  color: var(--text-main);
  font-size: 0.93rem;
  line-height: 1.6;
}

.hero-sheet {
  position: relative;
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(247, 241, 230, 0.08), rgba(247, 241, 230, 0.03)),
    linear-gradient(180deg, rgba(16, 28, 36, 0.88), rgba(29, 49, 61, 0.88));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-sheet::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--orange-500), rgba(217, 122, 89, 0));
}

.hero-sheet::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 122, 89, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-sheet h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--cream-100);
}

.sheet-intro,
.sheet-note,
.section-heading p,
.screens-copy p,
.contact-copy p,
.contact-rail p {
  color: var(--text-muted);
}

.sheet-intro {
  margin-top: 0.95rem;
  font-size: 0.99rem;
  line-height: 1.75;
}

.sheet-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.sheet-item {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(247, 241, 230, 0.05);
  box-shadow: inset 0 0 0 1px rgba(247, 241, 230, 0.08);
}

.sheet-item span,
.trust-fact span {
  display: block;
  color: var(--cream-300);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sheet-item strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--cream-100);
}

.sheet-note {
  max-width: 34ch;
  margin-top: 1.1rem;
  font-size: 0.92rem;
}

.proof-stage {
  padding-top: 5.3rem;
}

.proof-shell {
  padding: 2.4rem;
  border-radius: var(--radius-xl);
  color: var(--ink-900);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(217, 122, 89, 0.16), transparent 26%),
    linear-gradient(180deg, var(--cream-100), #ede3d3);
  box-shadow: var(--shadow-md);
}

.proof-heading {
  max-width: 58rem;
}

.section-heading {
  max-width: 54rem;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--cream-100);
}

.proof-heading h2,
.proof-heading p,
.proof-note h3,
.proof-note p,
.proof-visual figcaption {
  color: var(--ink-900);
}

.section-heading p {
  max-width: 58ch;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.proof-heading p,
.proof-visual figcaption {
  color: var(--ink-700);
}

.proof-board {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
  align-items: start;
}

.proof-notes {
  display: grid;
  gap: 1rem;
}

.proof-note {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(17, 32, 40, 0.06);
  box-shadow: inset 0 0 0 1px rgba(17, 32, 40, 0.08);
}

.note-index {
  display: inline-block;
  color: var(--orange-500);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.proof-note h3 {
  margin-top: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.proof-note p {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.proof-visual {
  padding: 1rem;
  border-radius: calc(var(--radius-xl) - 6px);
  background: rgba(17, 32, 40, 0.08);
  box-shadow: inset 0 0 0 1px rgba(17, 32, 40, 0.08);
}

.proof-visual img {
  border-radius: var(--radius-md);
}

.proof-visual figcaption {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  margin-top: 2.3rem;
}

.editorial-lead {
  align-self: start;
  padding: 1.5rem 1.45rem 1.7rem;
  border-left: 2px solid rgba(217, 122, 89, 0.35);
}

.editorial-lead h3 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream-100);
}

.editorial-rail {
  display: grid;
  gap: 1rem;
}

.rail-item {
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.05), rgba(247, 241, 230, 0.02));
  box-shadow: inset 0 0 0 1px rgba(247, 241, 230, 0.08);
}

.rail-item h3 {
  margin-top: 0.55rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--cream-100);
}

.rail-item p {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

.screens-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
  gap: 2rem;
  align-items: start;
}

.screens-copy {
  padding-right: 1rem;
}

.screens-copy h2 {
  margin-top: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--cream-100);
}

.screens-copy p {
  max-width: 48ch;
  margin-top: 1rem;
}

.screens-stack {
  display: grid;
  gap: 1rem;
}

.screen-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--panel-dark);
  box-shadow: var(--shadow-md);
}

.screen-card img {
  border-radius: var(--radius-md);
}

.screen-card--offset {
  margin-left: 2.2rem;
  background: rgba(22, 38, 48, 0.84);
}

.screen-copy-block {
  margin-top: 0.85rem;
}

.screen-copy-block strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--cream-100);
}

.screen-copy-block p {
  margin-top: 0.4rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.pilot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  margin-top: 2.3rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding-left: 1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0.2rem;
  bottom: 0.2rem;
  left: 0.24rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(217, 122, 89, 0.55), rgba(247, 241, 230, 0.08));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--cream-100);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange-500), #c96543);
  box-shadow: 0 18px 36px rgba(217, 122, 89, 0.18);
}

.timeline-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  line-height: 1.16;
  letter-spacing: -0.04em;
  color: var(--cream-100);
}

.timeline-step p,
.brief-list li,
.trust-fact p,
.lane-card p,
.contact-direct,
.footer-brand p,
.footer-bottom p {
  color: var(--text-muted);
}

.timeline-step p {
  margin-top: 0.55rem;
  font-size: 0.97rem;
  line-height: 1.75;
}

.pilot-brief,
.contact-rail {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(217, 122, 89, 0.09), rgba(247, 241, 230, 0.03));
  box-shadow: inset 0 0 0 1px rgba(217, 122, 89, 0.18);
}

.pilot-brief h3,
.contact-rail h3 {
  margin-top: 0.9rem;
  font-size: 1.95rem;
  color: var(--cream-100);
}

.pilot-brief p,
.contact-rail p {
  margin-top: 0.85rem;
  font-size: 0.97rem;
  line-height: 1.75;
}

.brief-list {
  margin: 1rem 0 1.3rem;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.65rem;
}

.brief-list li {
  font-size: 0.94rem;
  line-height: 1.65;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.lane-card {
  padding: 1.25rem 1.2rem;
  border-top: 1px solid rgba(217, 122, 89, 0.35);
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.04), rgba(247, 241, 230, 0));
}

.lane-card h3 {
  margin-top: 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--cream-100);
}

.lane-card p {
  margin-top: 0.65rem;
  font-size: 0.96rem;
  line-height: 1.7;
}

.trust-dossier {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.trust-summary {
  padding: 1.55rem 1.45rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.05), rgba(247, 241, 230, 0.02));
  box-shadow: inset 0 0 0 1px rgba(247, 241, 230, 0.08);
}

.trust-summary h3 {
  margin-top: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--cream-100);
}

.trust-facts {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.3rem;
}

.trust-fact {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line-soft);
}

.trust-fact p {
  margin-top: 0.45rem;
  font-size: 0.97rem;
  line-height: 1.75;
}

.trust-links {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.trust-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(247, 241, 230, 0.04);
  box-shadow: inset 0 0 0 1px rgba(247, 241, 230, 0.08);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.trust-item:hover,
.diligence-link:hover {
  transform: translateX(4px);
}

.trust-item:hover {
  background: rgba(217, 122, 89, 0.08);
  box-shadow: inset 0 0 0 1px rgba(217, 122, 89, 0.22);
}

.trust-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: var(--cream-100);
}

.trust-item p {
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.trust-item-action {
  color: var(--orange-400);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 340px;
  gap: 1.4rem;
  align-items: start;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(247, 241, 230, 0.05), rgba(247, 241, 230, 0.02)),
    linear-gradient(135deg, rgba(20, 34, 43, 0.92), rgba(16, 28, 36, 0.92));
  box-shadow: var(--shadow-md);
}

.contact-copy {
  max-width: 38rem;
}

.contact-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--cream-100);
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.4rem;
}

.honeypot-field {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0.92rem 1rem;
  color: var(--cream-100);
  background: rgba(247, 241, 230, 0.06);
  box-shadow: inset 0 0 0 1px rgba(247, 241, 230, 0.08);
  outline: none;
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(247, 241, 230, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(217, 122, 89, 0.55),
    0 0 0 3px rgba(217, 122, 89, 0.14);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-direct {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.contact-direct a {
  color: var(--orange-400);
}

.diligence-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.diligence-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(247, 241, 230, 0.04);
  box-shadow: inset 0 0 0 1px rgba(247, 241, 230, 0.08);
  color: var(--text-main);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.diligence-link:hover {
  background: rgba(217, 122, 89, 0.08);
  box-shadow: inset 0 0 0 1px rgba(217, 122, 89, 0.22);
}

.arrow {
  color: var(--orange-400);
  font-weight: 700;
}

.footer {
  margin-top: 4rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--line-soft);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand p {
  max-width: 32ch;
  margin-top: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-columns {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: var(--text-dim);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover,
.footer-bottom-links a:hover {
  color: var(--orange-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line-soft);
}

.footer-bottom p,
.footer-bottom-links a {
  font-size: 0.83rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-dim);
  transition: color var(--transition-fast);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible > *:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children.visible > *:nth-child(2) {
  transition-delay: 0.08s;
}

.stagger-children.visible > *:nth-child(3) {
  transition-delay: 0.16s;
}

.stagger-children.visible > *:nth-child(4) {
  transition-delay: 0.24s;
}

.stagger-children.visible > *:nth-child(5) {
  transition-delay: 0.32s;
}

.stagger-children.visible > *:nth-child(6) {
  transition-delay: 0.4s;
}

@media (max-width: 1100px) {
  .hero-grid,
  .editorial-grid,
  .screens-layout,
  .pilot-grid,
  .trust-dossier,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .screens-copy {
    padding-right: 0;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .screen-card--offset {
    margin-left: 0;
  }

  .pilot-brief,
  .contact-rail {
    max-width: 42rem;
  }
}

@media (max-width: 860px) {
  .page {
    width: calc(100% - 1.6rem);
  }

  .site-header {
    margin: 0 -0.8rem;
    padding: 0.85rem 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 1rem;
    background: rgba(16, 28, 36, 0.96);
    border-bottom: 1px solid var(--line-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero,
  .editorial-band,
  .screens-stage,
  .pilot-stage,
  .lane-stage,
  .trust-stage,
  .contact-stage,
  .footer {
    padding-top: 4rem;
  }

  .hero-markers,
  .lane-grid {
    grid-template-columns: 1fr;
  }

  .proof-shell,
  .contact-shell {
    padding: 1.4rem;
  }

  .proof-board {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .timeline-number {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .section-heading h2,
  .screens-copy h2,
  .trust-summary h3,
  .contact-copy h2 {
    font-size: 2.3rem;
  }

  .hero-actions,
  .form-row,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .footer-columns {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .page {
    width: calc(100% - 1rem);
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .section-heading h2,
  .screens-copy h2,
  .contact-copy h2,
  .trust-summary h3,
  .pilot-brief h3,
  .contact-rail h3 {
    font-size: 2rem;
  }

  .hero-subtitle,
  .section-heading p,
  .timeline-step p,
  .rail-item p,
  .trust-fact p {
    font-size: 0.94rem;
  }

  .hero-sheet,
  .pilot-brief,
  .contact-rail {
    padding: 1.2rem 1rem;
  }
}
