/* ===== MARITIME THEME — NaveOS ===== */

:root {
  /* Palette */
  --navy:        #1a2744;
  --navy-deep:   #111a30;
  --navy-light:  #243561;
  --cream:       #fef6ec;
  --peach:       #fde8d0;
  --amber:       #e8a84b;
  --gold:        #c97d1a;
  --sage:        #3d7a8c;
  --sage-light:  #5a9db0;
  --fg:          #1a2744;
  --fg-2:        #4a5878;
  --fg-3:        #8a96b0;
  --accent:      #c97d1a;
  --accent-light:#e8a84b;
  --bg:          #fef6ec;
  --bg-2:        #fde8d0;
  --bg-3:        #f5d5b0;
  --border:      rgba(26,39,68,0.10);
  --section-pad: clamp(80px, 10vw, 140px);

  /* Wave divider SVG data */
  --wave-top: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,0 L0,0 Z' fill='%23fef6ec'/%3E%3C/svg%3E");
  --wave-top-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,0 L0,0 Z' fill='%23111a30'/%3E%3C/svg%3E");
  --wave-bottom: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,0 720,80 1080,40 C1260,20 1380,30 1440,40 L1440,80 L0,80 Z' fill='%23fef6ec'/%3E%3C/svg%3E");
  --wave-bottom-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,0 720,80 1080,40 C1260,20 1380,30 1440,40 L1440,80 L0,80 Z' fill='%23111a30'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(254,246,236,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  color: var(--fg-2);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  color: var(--accent) !important;
  border: 1px solid rgba(201,125,26,0.35);
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: rgba(201,125,26,0.08) !important;
  color: var(--navy) !important;
}

/* ===== HERO — matches reference image: sunset scene + sailboat + flowering plants ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

/* Warm sunset layered background */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-sunset {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      #6b4a8a 0%,
      #9a6080 20%,
      #c87050 38%,
      #e8a050 54%,
      #f5c878 68%,
      #fde0b0 82%,
      #fef6ec 100%);
  z-index: 0;
}

/* Reference image scene layer */
.hero-scene {
  position: absolute;
  inset: 0;
}
.hero-scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.hero-scene-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(60,30,70,0.25) 0%,
    rgba(180,100,60,0.18) 30%,
    rgba(240,160,60,0.10) 55%,
    rgba(245,200,100,0.05) 75%,
    rgba(254,246,236,0.12) 100%
  );
}

/* Flowering plant SVGs framing the scene */
.floral {
  position: absolute;
  bottom: 0;
  width: 120px;
  height: 420px;
  z-index: 3;
  pointer-events: none;
}
.floral-left  { left: 0; }
.floral-right { right: 0; transform: scaleX(-1); }

/* Canvas (WebGL) sits behind everything */
#ocean-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Hero content overlay */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
}
.hero-wordmark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(80px, 16vw, 180px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #fef6ec;
  line-height: 0.88;
  margin-bottom: 24px;
  text-shadow:
    0 2px 12px rgba(30,15,40,0.45),
    0 0 40px rgba(245,200,120,0.30),
    0 0 80px rgba(245,180,80,0.15);
}
.hero-tagline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(13px, 1.5vw, 19px);
  font-weight: 400;
  font-style: italic;
  color: rgba(254,246,236,0.82);
  letter-spacing: 0.05em;
  margin-bottom: 0;
  text-shadow: 0 1px 8px rgba(30,15,40,0.40);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
  animation: bounce 2.4s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(254,246,236,0.70);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTION SHARED ===== */
.section {
  padding: var(--section-pad) 48px;
  position: relative;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  display: block;
  font-family: 'DM Mono', monospace;
  font-weight: 500;
}
.section-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-2);
  max-width: 560px;
  line-height: 1.75;
}
.section-nonitalic {
  font-family: 'DM Mono', monospace !important;
  font-style: normal !important;
}

/* ===== PROBLEM — warm golden sunset tones ===== */
.problem {
  background: linear-gradient(165deg,
    #fdf0dc 0%,
    #fde5cc 25%,
    #f8d8b5 50%,
    #f0c890 80%,
    #e8a858 100%);
  padding-top: calc(var(--section-pad) + 80px);
  padding-bottom: var(--section-pad);
}
.problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--wave-top);
  background-size: 100% 100%;
  display: block;
  z-index: 2;
}
.problem::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--wave-bottom);
  background-size: 100% 100%;
  display: block;
}
.problem .section-label { color: #8a5018; }
.problem .section-title { color: var(--navy); }
.problem .section-sub { color: #5a3820; }

.problem-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.problem-ambient::before {
  content: '';
  position: absolute;
  top: 80px; left: 0; right: 0; bottom: 80px;
  background:
    radial-gradient(ellipse 70% 40% at 15% 30%, rgba(240,160,80,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 85% 70%, rgba(200,100,50,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(250,200,120,0.06) 0%, transparent 70%);
}

.problem-hero-text {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.problem-hero-text .section-sub {
  max-width: 500px;
  margin: 12px auto 0;
}

.problem-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.problem-stat-card {
  padding: 36px 28px 30px;
  border-radius: 22px;
  border: 1px solid rgba(200,125,50,0.22);
  box-shadow:
    0 10px 48px rgba(200,100,40,0.12),
    0 3px 10px rgba(150,70,30,0.08),
    inset 0 1px 0 rgba(255,255,255,0.65);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
  background: linear-gradient(145deg, rgba(255,250,240,0.97) 0%, rgba(255,240,218,0.97) 100%);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.problem-stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(200,120,40,0.35), transparent);
}
.problem-stat-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 64px rgba(200,100,40,0.18),
    0 5px 14px rgba(150,70,30,0.10),
    inset 0 1px 0 rgba(255,255,255,0.75);
}
.problem-stat-icon {
  color: #c06018;
  margin-bottom: 10px;
}
.problem-stat-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a05818;
  background: rgba(201,125,26,0.10);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 4px;
}
.problem-stat-badge.miss { color: #8a4a10; background: rgba(201,125,26,0.12); }
.problem-stat-big {
  font-family: 'Instrument Serif', serif;
  font-size: 38px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.problem-stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 11.5px;
  color: #7a6040;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.problem-stat-note {
  font-size: 13px;
  color: #6a5030;
  line-height: 1.55;
}

.problem-context {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 38px;
  background: linear-gradient(145deg, rgba(255,250,238,0.95) 0%, rgba(255,232,205,0.93) 100%);
  border: 1px solid rgba(200,125,50,0.20);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 30px rgba(180,90,30,0.10);
  position: relative;
  z-index: 1;
}
.problem-context p {
  font-size: 15px;
  color: #5a3820;
  line-height: 1.82;
}

/* ===== SOLUTION — warm golden palette ===== */
.solution {
  background: linear-gradient(180deg, #fde8d0 0%, #f8d4b0 40%, #f0c090 100%);
  border-top: none;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.solution::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--wave-bottom);
  background-size: 100% 100%;
  display: block;
}
.solution-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 35% at 75% 20%, rgba(250,190,80,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 75%, rgba(240,150,60,0.10) 0%, transparent 60%);
}
.solution .section-label { color: #7a5a3a; }
.solution .section-title { color: var(--navy); }
.solution .section-sub { color: #5a3a20; }

.solution-header {
  text-align: center;
  margin-bottom: 56px;
}

.solution-headline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.solution-yield {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(64px, 9vw, 104px);
  font-weight: 400;
  font-style: italic;
  color: #9a5010;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(180,80,20,0.18), 0 1px 0 rgba(255,200,100,0.30);
}
.solution-yield-label {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: #7a3a08;
}

.solution-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.solution-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: linear-gradient(145deg, rgba(255,250,240,0.96) 0%, rgba(255,238,215,0.96) 100%);
  padding: 34px 26px;
  border-radius: 20px;
  border: 1px solid rgba(180,100,40,0.14);
  box-shadow:
    0 6px 32px rgba(180,90,30,0.08),
    0 2px 6px rgba(150,70,20,0.05),
    inset 0 1px 0 rgba(255,255,255,0.70);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 52px rgba(180,90,30,0.14),
    0 4px 12px rgba(150,70,20,0.07),
    inset 0 1px 0 rgba(255,255,255,0.75);
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(200,120,40,0.10);
  color: #a05818;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pillar h3 { font-family: 'Instrument Serif', serif; font-size: 17px; font-weight: 400; font-style: italic; margin-bottom: 8px; color: var(--navy); }
.pillar p { font-size: 13px; color: var(--fg-2); line-height: 1.65; font-family: 'DM Mono', monospace; }

.solution-description {
  background: linear-gradient(145deg, rgba(255,250,240,0.98) 0%, rgba(255,238,215,0.98) 100%);
  border-radius: 22px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(200,120,40,0.18);
  box-shadow:
    0 10px 48px rgba(200,100,40,0.10),
    0 3px 10px rgba(150,70,30,0.06),
    inset 0 1px 0 rgba(255,255,255,0.70);
  position: relative;
  overflow: hidden;
}
.solution-description::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c97d1a, #e8a84b, #f0c870);
  border-radius: 22px 22px 0 0;
}
.solution-description p {
  font-size: 15px;
  color: #4a3020;
  line-height: 1.78;
}
.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.sol-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  background: rgba(201,125,26,0.10);
  color: #8a4a14;
  border-radius: 20px;
  border: 1px solid rgba(200,120,40,0.18);
}

/* ===== HOW IT WORKS ===== */
.how {
  background: linear-gradient(180deg, #f5d8c0 0%, #fde8d0 50%, #fef6ec 100%);
  border-top: none;
}
.how::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--wave-bottom);
  background-size: 100% 100%;
  display: block;
}
.how .section-label { color: var(--sage); }
.how .section-title { color: var(--navy); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px 26px;
  background: linear-gradient(145deg, rgba(255,250,240,0.97) 0%, rgba(255,238,215,0.97) 100%);
  border: 1px solid rgba(180,100,40,0.14);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(180,90,30,0.06), inset 0 1px 0 rgba(255,255,255,0.65);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s, border-color 0.35s;
}
.how-step:hover {
  transform: translateY(-6px);
  border-color: rgba(200,130,60,0.28);
  box-shadow: 0 14px 48px rgba(180,90,30,0.12), inset 0 1px 0 rgba(255,255,255,0.70);
}
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--amber);
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(61,122,140,0.10);
  color: var(--sage);
  display: flex; align-items: center; justify-content: center;
}
.step-body h4 { font-family: 'Instrument Serif', serif; font-size: 17px; font-weight: 400; font-style: italic; margin-bottom: 8px; color: var(--navy); }
.step-body p { font-size: 13px; color: var(--fg-2); line-height: 1.6; font-family: 'DM Mono', monospace; }

/* ===== WHO IT'S FOR — dark navy with warm golden accents ===== */
.who {
  background: linear-gradient(175deg, #1a2744 0%, #243561 40%, #2d4878 70%, #1a2744 100%);
  border-top: none;
  padding-top: var(--section-pad);
}
.who::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--wave-bottom-dark);
  background-size: 100% 100%;
  display: block;
}
.who .section-label { color: var(--amber); }
.who .section-title { color: var(--cream); }
.who .section-sub { color: rgba(254,246,236,0.65); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
.who-card { background: var(--navy-deep); padding: 36px 28px; transition: background 0.25s; }
.who-card:hover { background: var(--navy); }
.who-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.who-icon.fam   { background: rgba(232,168,75,0.15); color: var(--amber); }
.who-icon.co    { background: rgba(90,157,176,0.15); color: var(--sage-light); }
.who-icon.fund  { background: rgba(201,125,26,0.15); color: var(--accent-light); }
.who-icon.non   { background: rgba(254,246,236,0.08); color: rgba(254,246,236,0.6); }
.who-card h3 { font-family: 'Instrument Serif', serif; font-size: 17px; font-weight: 400; font-style: italic; margin-bottom: 8px; color: var(--cream); }
.who-card p { font-size: 13px; color: rgba(254,246,236,0.55); line-height: 1.65; font-family: 'DM Mono', monospace; }

/* ===== SECURITY ===== */
.security {
  background: linear-gradient(180deg, #fef6ec 0%, #fde5cc 50%, #f8d4b5 100%);
  border-top: none;
}
.security::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--wave-top);
  background-size: 100% 100%;
  display: block;
  padding-top: var(--section-pad);
}
.security .section-label { color: var(--sage); }
.security .section-title { color: var(--navy); }

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.security-points { display: flex; flex-direction: column; gap: 14px; }
.sec-point {
  display: flex; gap: 16px;
  padding: 22px 26px;
  background: linear-gradient(145deg, rgba(255,250,240,0.96) 0%, rgba(255,238,215,0.96) 100%);
  border: 1px solid rgba(180,100,40,0.14);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(180,90,30,0.06), inset 0 1px 0 rgba(255,255,255,0.65);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.sec-point:hover {
  transform: translateY(-3px);
  border-color: rgba(200,130,60,0.25);
  box-shadow: 0 10px 36px rgba(180,90,30,0.10), inset 0 1px 0 rgba(255,255,255,0.70);
}
.sec-point-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(61,122,140,0.10);
  color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sec-point-body h4 { font-family: 'Instrument Serif', serif; font-size: 15px; font-weight: 400; font-style: italic; margin-bottom: 4px; color: var(--navy); }
.sec-point-body p { font-size: 13px; color: var(--fg-2); font-family: 'DM Mono', monospace; }
.security-contrast { display: flex; flex-direction: column; gap: 16px; }
.contrast-card {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid;
}
.contrast-card.trust {
  background: rgba(61,122,140,0.07);
  border-color: rgba(61,122,140,0.20);
}
.contrast-card.risk {
  background: rgba(201,125,26,0.06);
  border-color: rgba(201,125,26,0.20);
}
.trust .contrast-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; font-weight: 500; color: var(--sage); font-family: 'DM Mono', monospace; }
.risk .contrast-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; font-weight: 500; color: var(--accent); font-family: 'DM Mono', monospace; }
.contrast-card h4 { font-family: 'Instrument Serif', serif; font-size: 16px; font-weight: 400; font-style: italic; margin-bottom: 6px; color: var(--navy); }
.contrast-card p { font-size: 13px; color: var(--fg-2); font-family: 'DM Mono', monospace; }

/* ===== CTA ===== */
.cta {
  padding: var(--section-pad) 48px;
  background: linear-gradient(175deg,
    #f8d4b0 0%,
    #fde0c0 30%,
    #fef0d8 60%,
    #fef6ec 100%);
  border-top: none;
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--wave-bottom);
  background-size: 100% 100%;
  display: block;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.cta-sub { font-size: 16px; color: var(--fg-2); margin-bottom: 36px; line-height: 1.7; }
.waitlist-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto 16px; }
.waitlist-form input {
  flex: 1; padding: 16px 22px;
  background: linear-gradient(145deg, #fff 0%, #fef0dc 100%);
  border: 1px solid rgba(180,100,40,0.20);
  border-radius: 14px;
  color: var(--fg);
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(180,90,30,0.08);
}
.waitlist-form input::placeholder { color: #b08060; }
.waitlist-form input:focus {
  border-color: rgba(200,130,60,0.45);
  box-shadow: 0 0 0 4px rgba(200,130,60,0.12), 0 4px 16px rgba(180,90,30,0.10);
}
.waitlist-form button {
  padding: 16px 30px;
  background: linear-gradient(135deg, #c97d1a 0%, #e8a030 50%, #f0b840 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(200,125,26,0.35), 0 2px 6px rgba(150,80,20,0.15);
}
.waitlist-form button:hover {
  background: linear-gradient(135deg, #b06818 0%, #d89028 50%, #e8a838 100%);
  box-shadow: 0 6px 28px rgba(200,125,26,0.45), 0 3px 10px rgba(150,80,20,0.20);
  transform: translateY(-2px);
}
.waitlist-form button:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(200,125,26,0.30);
}
.cta-note { font-size: 12px; color: var(--fg-3); }
.form-success {
  display: none;
  padding: 20px;
  background: rgba(61,122,140,0.08);
  border: 1px solid rgba(61,122,140,0.20);
  border-radius: 10px;
  color: var(--sage);
  font-size: 14px;
  margin-bottom: 16px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--cream);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
}
.footer-copy { font-size: 13px; color: var(--fg-2); flex: 1; font-family: 'DM Mono', monospace; }
.footer-legal { font-size: 12px; color: var(--fg-3); font-family: 'DM Mono', monospace; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Parallax background layer */
.parallax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
  overflow: hidden;
}

/* Warm ambient gradient for parallax depth */
.problem .parallax-bg {
  background:
    radial-gradient(ellipse 80% 60% at 15% 85%, rgba(201,125,26,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 15%, rgba(61,122,140,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232,168,75,0.04) 0%, transparent 70%);
}

.who .parallax-bg {
  background:
    radial-gradient(ellipse 80% 50% at 75% 25%, rgba(240,160,80,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 25% 75%, rgba(200,100,50,0.06) 0%, transparent 55%);
}

/* Staggered who-card entrance */
.who-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s;
}
.who-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Problem section stats slide in */
.problem-stat-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.problem-stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .problem-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-content-grid { grid-template-columns: 1fr; }
  .solution-pillars { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .section { padding: 80px 24px; }
  .footer { padding: 32px 24px; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .problem-stats-grid { grid-template-columns: 1fr; }
  .how-steps, .who-grid { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
  .section-title { font-size: 30px; }
}