/* ─────────────────────────────────────────────────
   FOURSIGHT — refined editorial minimal
   Palette extracted from logo.
   ─────────────────────────────────────────────── */

:root {
  /* Brand */
  --bg-dark:    #00103E;
  --bg-dark-2:  #001A5C;
  --bg-darker:  #000A28;
  --ink:        #0A1A4A;
  --ink-soft:   #475266;
  --ink-faint:  #8794AB;
  --paper:      #FFFFFF;
  --paper-soft: #F2F5FB;
  --paper-warm: #FAFBFD;

  --blue:       #1E90FF;
  --blue-deep:  #0046C8;
  --blue-glow:  #4DA8FF;
  --gold:       #F4B740;
  --gold-soft:  #FFD382;

  --line-dark:  #1F2A55;
  --line-lite:  #E0E7F2;
  --muted-dark: #9CA8C0;

  /* Type */
  --display: 'Instrument Serif', 'Times New Roman', serif;
  --body:    'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur: 600ms;
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select, button { font-family: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--blue); color: var(--paper); }

/* ── UTILITIES ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow {
  max-width: var(--container-narrow);
}
.italic { font-family: var(--display); font-style: italic; font-weight: 400; }
.accent { color: var(--blue); }
.accent-warm { color: var(--gold); }
.muted { color: var(--ink-faint); }
.muted-light { color: var(--muted-dark); }

/* ── REVEAL ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal var(--dur) var(--ease-out) forwards;
}
.reveal.d1 { animation-delay: 0.05s; }
.reveal.d2 { animation-delay: 0.18s; }
.reveal.d3 { animation-delay: 0.34s; }
.reveal.d4 { animation-delay: 0.5s; }
.reveal.d5 { animation-delay: 0.66s; }

/* reveal-on-scroll only hides content when JS confirms it can show it back */
html.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
html.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ── NAV ───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(0, 16, 62, 0.65);
  border-bottom: 1px solid rgba(31, 42, 85, 0.6);
  transition: background 300ms ease;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--paper);
}
.nav-logo { width: 32px; height: 32px; transition: transform 600ms var(--ease-out); }
.nav-brand:hover .nav-logo { transform: rotate(45deg); }
.nav-wordmark {
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.875rem;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  color: var(--muted-dark);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 200ms ease;
}
.nav-links a:hover { color: var(--paper); }
.nav-cta {
  color: var(--paper) !important;
  background: rgba(30, 144, 255, 0.12);
  border: 1px solid rgba(30, 144, 255, 0.4);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background 200ms ease, border-color 200ms ease;
}
.nav-cta:hover {
  background: rgba(30, 144, 255, 0.22);
  border-color: rgba(30, 144, 255, 0.7);
}
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--paper);
  transition: transform 300ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* ── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--bg-dark);
  color: var(--paper);
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  width: 80vmax; height: 80vmax;
  top: -30vmax; right: -30vmax;
  background: radial-gradient(closest-side, rgba(30, 144, 255, 0.22), transparent 70%);
  filter: blur(40px);
  animation: glow-drift 22s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-8vmax, 6vmax) scale(1.15); }
}
.hero-logo-watermark {
  position: absolute;
  width: 55vmin; max-width: 720px;
  right: -5vmin; bottom: -10vmin;
  opacity: 0.18;
  filter: drop-shadow(0 0 60px rgba(30, 144, 255, 0.4));
  pointer-events: none;
  animation: float 14s ease-in-out infinite alternate;
}
@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-22px); }
}

.hero-inner {
  position: relative; z-index: 2;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 7.25rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 14ch;
}
.hero-headline span { display: block; }
.hero-headline .italic { color: var(--blue-glow); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--muted-dark);
  max-width: 56ch;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex; flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 4rem;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 200ms var(--ease-out), background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 6px 24px rgba(30, 144, 255, 0.35);
}
.btn-primary:hover {
  background: var(--blue-glow);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(30, 144, 255, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

/* Hero trust strip */
.hero-trust {
  display: flex; align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; flex-direction: column;
  gap: 0.15rem;
}
.hero-trust-num {
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--paper);
  line-height: 1;
}
.hero-trust-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex; justify-content: center;
  padding-top: 6px;
  z-index: 2;
}
.hero-scroll span {
  width: 2px; height: 6px;
  background: var(--blue-glow);
  border-radius: 1px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.2; }
}

/* ── SECTIONS ──────────────────────────────────── */
.section {
  padding: clamp(5rem, 11vw, 9rem) 0;
}
.section-head {
  margin-bottom: 4rem;
  max-width: 60ch;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.25rem;
}
.section-tag em {
  font-style: normal;
  color: var(--blue);
  font-weight: 600;
}
.section-tag.light {
  color: var(--muted-dark);
}
.section-tag.light em {
  color: var(--blue-glow);
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section-title.light { color: var(--paper); }

/* ── DIAGNOSIS ─────────────────────────────────── */
.diagnosis { background: var(--paper); }
.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.friction-card {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  background: var(--paper-soft);
  border: 1px solid var(--line-lite);
  border-radius: 4px;
  overflow: hidden;
}
.friction-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 500ms var(--ease-out);
}
.friction-card:hover::before { width: 100%; }
.friction-num {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  font-family: var(--display);
  font-size: 3.5rem;
  color: var(--blue);
  opacity: 0.18;
  line-height: 1;
}
.friction-card h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.friction-card p {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ── PROMISE ───────────────────────────────────── */
.promise {
  background: var(--bg-dark);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(30, 144, 255, 0.15), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(244, 183, 64, 0.08), transparent 50%);
  pointer-events: none;
}
.promise > .container { position: relative; }
.promise .section-tag {
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
}
.promise-quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--paper);
  margin-bottom: 2.5rem;
}
.promise-divider {
  width: 64px; height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.promise-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted-dark);
  max-width: 60ch;
  margin: 0 auto;
}
.promise-sub .accent {
  color: var(--blue-glow);
  font-weight: 600;
}

/* ── PILLARS ───────────────────────────────────── */
.pillars { background: var(--paper); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pillar {
  padding: 2rem 1.75rem 2rem;
  background: var(--paper-warm);
  border: 1px solid var(--line-lite);
  border-radius: 4px;
  transition: transform 400ms var(--ease-out), border-color 300ms ease, box-shadow 300ms ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 16px 40px rgba(0, 16, 62, 0.07);
}
.pillar-mark {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--blue-glow);
  margin-bottom: 1.5rem;
}
.pillar-mark svg { width: 22px; height: 22px; }
.pillar h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ── LAUNCH STACK ─────────────────────────────── */
.launch { background: var(--paper); }

.launch-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 64ch;
  margin-top: 1.5rem;
}

.launch-group {
  margin-bottom: 3.5rem;
}
.launch-group:last-of-type {
  margin-bottom: 2rem;
}

.launch-group-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-lite);
}
.launch-group-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.launch-item {
  padding: 1.75rem 1.5rem 1.75rem;
  background: var(--paper-warm);
  border: 1px solid var(--line-lite);
  border-radius: 4px;
  transition: transform 400ms var(--ease-out), border-color 300ms ease, box-shadow 300ms ease;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}
.launch-item:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(0, 16, 62, 0.06);
}
.launch-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--blue-glow);
  margin-bottom: 0.35rem;
}
.launch-icon svg { width: 18px; height: 18px; }

.launch-item h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  word-break: break-word;
  hyphens: auto;
}
.launch-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

.launch-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--paper-soft);
  border: 1px solid var(--line-lite);
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.launch-cta p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
  min-width: 22ch;
  font-style: italic;
}

/* ── PRICING ───────────────────────────────────── */
.pricing { background: var(--paper-soft); }

.price-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--bg-dark);
  color: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 24px 60px rgba(0, 16, 62, 0.18);
}
.price-hero-stripe {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--blue);
}
.price-hero-content {
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-dark);
}
.price-hero-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 1.5rem;
}
.price-hero-amount {
  display: flex; align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.price-currency {
  font-family: var(--display);
  font-size: 2.5rem;
  margin-top: 0.5rem;
}
.price-num {
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 400;
  line-height: 0.85;
}
.price-hero-unit {
  font-size: 0.95rem;
  color: var(--muted-dark);
  letter-spacing: 0.02em;
}
.price-hero-includes {
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.5rem;
  align-content: center;
}
.price-hero-includes li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--paper);
}
.price-hero-includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

/* Pricing extras: 3 cols */
.price-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.price-col {
  background: var(--paper);
  border: 1px solid var(--line-lite);
  border-radius: 4px;
  padding: 2rem 1.75rem;
}
.price-col h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.price-col-sub {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-lite);
  font-size: 0.92rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li span { color: var(--ink-soft); }
.price-list li b {
  color: var(--blue-deep);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.9rem;
}

.price-footnote {
  font-size: 0.82rem;
  color: var(--ink-faint);
  font-style: italic;
  margin-top: 2rem;
  text-align: center;
}

/* ── TRUST ─────────────────────────────────────── */
.trust {
  background: var(--bg-dark);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 144, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 144, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.trust > .container { position: relative; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust-card {
  padding: 2rem 2rem 1.75rem;
  background: rgba(0, 26, 92, 0.5);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  backdrop-filter: blur(10px);
}
.trust-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue-glow);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.trust-card dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem 1.5rem;
}
.trust-card dt {
  color: var(--muted-dark);
  font-size: 0.92rem;
}
.trust-card dd {
  color: var(--paper);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: right;
  max-width: 60%;
  line-height: 1.45;
  margin-left: auto;
}
.trust-note {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.65rem;
  font-style: italic;
  color: var(--gold-soft);
  line-height: 1.5;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

/* ── SUPPORT ───────────────────────────────────── */
.support { background: var(--paper-soft); }

.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.support-card {
  position: relative;
  padding: 2.5rem 2.25rem;
  background: var(--paper);
  border: 1px solid var(--line-lite);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 400ms var(--ease-out), border-color 300ms ease, box-shadow 300ms ease;
}
.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 16, 62, 0.07);
}

.support-card-primary {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--paper);
}
.support-card-primary:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 50px rgba(0, 16, 62, 0.18);
}

.support-card-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.support-card-primary .support-card-tag { color: var(--blue-glow); }

.support-card h3 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.support-card-primary h3 { color: var(--paper); }

.support-card p {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.support-card-primary p { color: var(--muted-dark); }

.support-card .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.support-meta {
  font-size: 0.85rem !important;
  font-style: italic;
  color: var(--ink-faint) !important;
  margin-top: 0.25rem !important;
}
.support-card-primary .support-meta {
  color: var(--ink-faint) !important;
}

.support-direct {
  border-top: 1px solid var(--line-lite);
  padding-top: 1rem;
  margin-top: 0.25rem;
}
.support-direct-link {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.4rem 0;
  transition: color 200ms ease;
}
.support-direct-link:hover { color: var(--blue); }
.support-direct-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  width: 60px;
  flex-shrink: 0;
}
.support-direct-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.support-direct-link:hover .support-direct-value {
  color: var(--blue);
}

/* ── CONTACT ───────────────────────────────────── */
.contact { background: var(--paper); }
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-pitch .section-title { margin-bottom: 1.5rem; }
.contact-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 42ch;
}
.contact-direct {
  display: flex; flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--line-lite);
  padding-top: 1.5rem;
}
.contact-direct-link {
  display: flex; align-items: baseline;
  gap: 1.5rem;
  padding: 0.5rem 0;
  transition: color 200ms ease;
}
.contact-direct-link:hover { color: var(--blue); }
.contact-direct-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  width: 60px;
  flex-shrink: 0;
}
.contact-direct-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 200ms ease;
}
.contact-direct-link:hover .contact-direct-value {
  color: var(--blue);
}

/* Form */
.contact-form {
  background: var(--paper-soft);
  border: 1px solid var(--line-lite);
  border-radius: 6px;
  padding: 2.5rem;
}
.form-row {
  margin-bottom: 1.25rem;
}
.form-row label {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.form-optional {
  text-transform: none;
  font-family: var(--body);
  font-style: italic;
  letter-spacing: 0;
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-lite);
  border-radius: 4px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  font-family: var(--body);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.12);
}
.form-row textarea {
  resize: vertical;
  min-height: 96px;
}
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23475266' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-row-half-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row-half-grid > div { margin-bottom: 0; }
.form-hp {
  position: absolute;
  left: -10000px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1.05rem 1.5rem;
  margin-top: 0.5rem;
  position: relative;
}
.btn-submit .btn-arrow {
  transition: transform 200ms var(--ease-out);
}
.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}
.btn-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-status {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.92rem;
  min-height: 1.4em;
}
.form-status.is-success { color: var(--blue-deep); }
.form-status.is-error   { color: #C8453B; }

/* ── FOOTER ────────────────────────────────────── */
.footer {
  background: var(--bg-darker);
  color: var(--muted-dark);
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 1rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--paper);
}
.footer-logo { width: 28px; height: 28px; }
.footer-wordmark {
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}
.footer-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--paper);
}
.footer-meta {
  font-size: 0.82rem;
}
.footer-meta a {
  color: var(--blue-glow);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.footer-meta a:hover { border-color: var(--blue-glow); }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1280px) {
  .launch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem var(--gutter);
    background: rgba(0, 16, 62, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms ease, opacity 300ms ease;
  }
  .nav-links a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1rem;
  }
  .nav-cta {
    margin-top: 1rem;
    border-radius: 999px;
    text-align: center;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .friction-grid,
  .pillar-grid,
  .price-extras,
  .trust-grid,
  .support-grid,
  .launch-grid {
    grid-template-columns: 1fr;
  }
  .price-hero {
    grid-template-columns: 1fr;
  }
  .price-hero-content { border-right: none; border-bottom: 1px solid var(--line-dark); }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero { min-height: auto; padding-top: 7rem; padding-bottom: 5rem; }
  .hero-trust { gap: 1.5rem; }
  .hero-trust-divider { display: none; }
  .hero-scroll { display: none; }
  .hero-logo-watermark { width: 80vmin; right: -25vmin; bottom: -20vmin; opacity: 0.12; }
}

@media (max-width: 540px) {
  .form-row-half-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .friction-card,
  .pillar,
  .price-col,
  .trust-card,
  .launch-item { padding: 1.5rem 1.25rem; }
  .launch-cta { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
  .launch-item h4 { font-size: 1.2rem; }
  .price-hero-content,
  .price-hero-includes { padding: 2rem 1.5rem; }
  .price-hero-includes { grid-template-columns: 1fr; }
}
