/* ─── CSS VARIABLES ──────────────────────────────────────────────────────── */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #EFF6FF;
  --bg-dark: #042C53;
  --bg-mid: #0A3D6B;
  --accent: #185FA5;
  --light-blue: #85B7EB;
  --off-white: #F7FAFF;
  --white: #FFFFFF;
  --text-primary: #071A2E;
  --text-secondary: #2C4A6E;
  --text-muted: #7A95B0;
  --success: #1A9E5C;
  --danger: #C0392B;
  --card-border: rgba(24, 95, 165, 0.12);
  --gold: #C9A84C;
  --nav-height: 72px;
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
.font-display { font-family: 'Cormorant Garamond', serif; }
.font-mono    { font-family: 'JetBrains Mono', monospace; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── GRAIN TEXTURE ──────────────────────────────────────────────────────── */
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
  background: rgba(4, 44, 83, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.scrolled {
  background: var(--white);
  border-bottom-color: var(--card-border);
  box-shadow: 0 1px 24px rgba(4, 44, 83, 0.07);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Nav text is white when sitting over the dark hero (before scroll) */
.nav:not(.scrolled) .nav__links a { color: rgba(230, 241, 251, 0.8); }
.nav:not(.scrolled) .nav__links a:hover { color: var(--white); }
.nav:not(.scrolled) .nav__links a.active { color: var(--light-blue); }
.nav:not(.scrolled) .nav__wordmark { color: var(--white); }
.nav:not(.scrolled) .nav__monogram { color: var(--light-blue); border-color: var(--light-blue); }
.nav:not(.scrolled) .nav__hamburger span { background: var(--white); }
.nav:not(.scrolled) .nav__cta { background: rgba(133, 183, 235, 0.2); border: 1px solid rgba(133, 183, 235, 0.5); color: var(--white); }

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__monogram {
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.nav__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__links a.active {
  color: var(--accent);
}
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  background: var(--accent);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.nav__cta:hover {
  background: var(--light-blue);
  color: var(--bg-dark);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile overlay nav */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav__overlay.open { transform: translateX(0); }

.nav__overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}

.nav__overlay a:hover, .nav__overlay a.active { color: var(--accent); }

.nav__overlay .nav__cta {
  font-size: 16px;
  padding: 14px 36px;
  margin-top: 8px;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--card-border);
  padding: 64px 32px 0;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand .nav__logo { margin-bottom: 16px; }

/* Footer reuses .nav__logo — override colors for dark background */
.footer__brand .nav__wordmark { color: var(--off-white); }
.footer__brand .nav__monogram { color: var(--light-blue); border-color: var(--light-blue); }

.footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
}

.footer__links h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(133, 183, 235, 0.5);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.footer__links ul li { margin-bottom: 10px; }

.footer__links a {
  font-size: 14px;
  color: rgba(133, 183, 235, 0.6);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--light-blue); }

.footer__right {
  text-align: right;
}

.footer__slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.3;
}

.footer__bottom {
  border-top: 1px solid var(--card-border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__legal {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(133, 183, 235, 0.45);
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
}

.btn--filled {
  background: var(--accent);
  color: var(--white);
}

.btn--filled:hover {
  background: var(--light-blue);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--light-blue);
  border: 1px solid var(--light-blue);
}

.btn--outline:hover {
  background: rgba(133, 183, 235, 0.1);
  transform: translateY(-2px);
}

/* ─── HERO (SHARED) ──────────────────────────────────────────────────────── */
.hero--compact {
  position: relative;
  height: 45vh;
  min-height: 320px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero--compact .hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero--compact .eyebrow { color: var(--light-blue); }

.hero--compact h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  margin: 12px 0 16px;
}

.hero--compact p {
  font-size: 16px;
  color: rgba(230, 241, 251, 0.7);
  max-width: 560px;
}

/* ─── SECTION UTILITY ────────────────────────────────────────────────────── */
.section {
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.section--full {
  padding: 100px 32px;
}

.section__header {
  margin-bottom: 64px;
}

.section__header h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 12px 0 16px;
}

.section__header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
}

.hairline {
  width: 100%;
  height: 1px;
  background: var(--card-border);
  border: none;
}

/* ─── HOME: FULL HERO ────────────────────────────────────────────────────── */
.hero--full {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--full .hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
}

.hero__eyebrow {
  margin-bottom: 28px;
  opacity: 0;
}

.hero__h1 {
  font-size: clamp(56px, 10vw, 112px);
  font-weight: 700;
  color: var(--white);
  display: block;
  opacity: 0;
}

.hero__h1--sub {
  font-size: clamp(56px, 10vw, 112px);
  font-weight: 400;
  color: rgba(230, 241, 251, 0.7);
  display: block;
  opacity: 0;
  margin-top: -8px;
}

.hero__tagline {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--off-white);
  margin: 28px 0 40px;
  opacity: 0;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

/* Stats bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(7, 26, 46, 0.85);
  border-top: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  opacity: 0;
}

.stats-bar__grid {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
  width: 100%;
  justify-content: space-between;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background: var(--card-border);
}

.stat-item__value {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.stat-item__note {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: rgba(133, 183, 235, 0.55);
  margin-top: 6px;
  line-height: 1.5;
  font-style: italic;
}

/* ─── HOME: STRATEGY CARDS ───────────────────────────────────────────────── */
.strategy-cards {
  background: var(--bg-secondary);
  padding: 100px 32px;
}

.strategy-cards__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.card {
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 36px;
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(60px);
  box-shadow: 0 2px 16px rgba(4, 44, 83, 0.06);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(24, 95, 165, 0.12);
}

.card__badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.card__badge--flagship { background: rgba(201, 168, 76, 0.15); color: #8B6914; border: 1px solid rgba(201, 168, 76, 0.3); }
.card__badge--risk-on  { background: rgba(24, 95, 165, 0.1); color: var(--accent); border: 1px solid rgba(24, 95, 165, 0.2); }
.card__badge--risk-off { background: rgba(26, 158, 92, 0.1); color: #136B3C; border: 1px solid rgba(26, 158, 92, 0.25); }

.card h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.card__subtitle {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 8px;
}

.card__ytd {
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.card__stat {
  background: var(--off-white);
  border: 1px solid var(--card-border);
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 12px;
  color: var(--text-secondary);
}

.card__stat span {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-weight: 500;
}

.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── HOME: EDGE SECTION ─────────────────────────────────────────────────── */
.edge-section {
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.edge-text { opacity: 0; transform: translateX(-60px); }
.edge-svg  { opacity: 0; transform: translateX(60px); }

.edge-text .eyebrow { margin-bottom: 16px; }

.edge-text h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 24px;
}

.edge-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.edge-text a {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.edge-text a:hover { gap: 12px; }

/* ─── HOME: CTA BANNER ───────────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-dark);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(133, 183, 235, 0.75);
  margin-bottom: 40px;
}

/* ─── PERFORMANCE PAGE ───────────────────────────────────────────────────── */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 56px;
  position: relative;
  gap: 0;
}

.tab-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #9EB3C8;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 28px;
  position: relative;
  transition: color 0.2s;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--light-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn.active { color: var(--text-primary); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--text-primary); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  margin-bottom: 64px;
}

.stat-cell {
  background: var(--white);
  padding: 24px 20px;
}

.stat-cell__label {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stat-cell__value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
}

.stat-cell__value.positive { color: var(--success); }
.stat-cell__value.negative { color: var(--danger); }

/* ─── SHARPE CALLOUT ─────────────────────────────────────────────────────── */
.sharpe-section {
  padding: 0 32px 0;
  max-width: 1280px;
  margin: 0 auto;
}
.sharpe-callout {
  background: var(--bg-dark);
  border: 1px solid rgba(133, 183, 235, 0.15);
  border-radius: 2px;
  padding: 40px 48px 48px;
  margin-bottom: 64px;
}

.sharpe-callout__title {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}

.sharpe-callout__highlight {
  color: var(--success);
}

.sharpe-callout__sub {
  font-size: 14px;
  color: rgba(133, 183, 235, 0.65);
  margin-bottom: 48px;
  max-width: 520px;
}

.sharpe-scale {
  padding: 0 8px;
}

.sharpe-scale__track {
  position: relative;
  height: 4px;
  background: rgba(133, 183, 235, 0.15);
  border-radius: 2px;
  margin-bottom: 40px;
}

.sharpe-scale__fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 95%;
  height: 100%;
  background: linear-gradient(to right, rgba(133,183,235,0.3), var(--success));
  border-radius: 2px;
}

.sharpe-scale__marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sharpe-scale__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(133, 183, 235, 0.4);
  border: 1px solid rgba(133, 183, 235, 0.6);
  flex-shrink: 0;
}

.sharpe-scale__dot--mcm {
  width: 14px;
  height: 14px;
  background: var(--success);
  border-color: var(--success);
  box-shadow: 0 0 12px rgba(26, 158, 92, 0.5);
}

.sharpe-scale__label {
  position: absolute;
  top: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(133, 183, 235, 0.6);
  white-space: nowrap;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.sharpe-scale__label span {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(133, 183, 235, 0.4);
}

.sharpe-scale__label--mcm {
  color: var(--success);
  font-size: 13px;
}

.sharpe-scale__label--mcm span {
  color: rgba(26, 158, 92, 0.75);
}

.charts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.chart-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 2px 16px rgba(4, 44, 83, 0.05);
}

.chart-card h3 {
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chart-card canvas {
  max-height: 260px;
}

.chart-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 32px;
  border-top: 1px solid var(--card-border);
  font-style: italic;
  margin-bottom: 64px;
  color: #9EB3C8;
}

/* Trade Breakdown Table */
.breakdown-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--card-border);
}

.breakdown-table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
  background: var(--off-white);
}

.breakdown-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(24, 95, 165, 0.06);
}

.breakdown-table tr:nth-child(even) td { background: var(--off-white); }
.breakdown-table tr:last-child td { border-bottom: none; }

.breakdown-table td:last-child {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 13px;
}

/* ─── ABOUT: DARK TIMELINE SECTION ──────────────────────────────────────── */
.timeline-dark .eyebrow { color: var(--light-blue); }
.timeline-dark h2 { color: var(--white); }
.timeline-dark .timeline__content h3 { color: var(--white); }
.timeline-dark .timeline__content p { color: rgba(230, 241, 251, 0.75); }

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────────── */
.mission-block {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.mission-block p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.timeline {
  padding: 100px 32px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateX(-40px);
  align-items: start;
}

.timeline__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  width: 36px;
  height: 36px;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
  background: var(--off-white);
}

.timeline__content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.timeline__content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-item {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.why-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── SHOP PAGE ──────────────────────────────────────────────────────────── */
.shop-hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 32px 80px;
  text-align: center;
  position: relative;
  background: var(--bg-dark);
}

.shop-hero .eyebrow { color: var(--light-blue); }
.shop-hero h1 { font-size: clamp(44px, 7vw, 80px); margin: 16px 0 20px; color: var(--white); }
.shop-hero p  { font-size: 18px; color: rgba(230, 241, 251, 0.75); max-width: 480px; margin: 0 auto 48px; }

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 80px;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-form input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(133,183,235,0.35);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input:focus { border-color: var(--light-blue); }
.waitlist-form input::placeholder { color: var(--text-muted); }

.ghost-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.ghost-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(133,183,235,0.2);
  padding: 40px 32px;
  border-radius: 2px;
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  position: relative;
}

.ghost-cards__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  z-index: 2;
  pointer-events: none;
}

.ghost-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(133, 183, 235, 0.5);
}

.ghost-lock svg { width: 28px; height: 28px; }
.ghost-lock span { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }

.ghost-card__badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.ghost-card h3 { font-size: 24px; margin-bottom: 12px; }

.ghost-card__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 20px;
}

.ghost-card ul li {
  font-size: 13px;
  color: rgba(230, 241, 251, 0.5);
  padding: 6px 0;
  border-bottom: 1px solid var(--card-border);
}

.most-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  padding: 80px 32px 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-info__email {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: var(--accent);
  display: block;
  margin-bottom: 28px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-info__small {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  font-style: italic;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 48px;
  border-radius: 2px;
  box-shadow: 0 4px 32px rgba(4, 44, 83, 0.07);
}

.form-row {
  margin-bottom: 24px;
}

.form-row label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 13px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2385B7EB' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  background-color: rgba(7, 26, 46, 0.6);
}

.form-row select option {
  background: var(--white);
  color: var(--text-primary);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--light-blue); }

.form-row input::placeholder,
.form-row textarea::placeholder { color: #9EB3C8; }

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

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 2px;
  font-size: 14px;
  margin-top: 16px;
}

.form-message.success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--success);
}

.form-message.error {
  background: rgba(224, 85, 85, 0.1);
  border: 1px solid rgba(224, 85, 85, 0.3);
  color: var(--danger);
}

/* ─── FOCUS VISIBLE ──────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--light-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── ABOUT: STRATEGIES ──────────────────────────────────────────────────── */
.strategies-about {
  padding: 80px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.strategies-about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.strategy-brief {
  border-top: 2px solid var(--accent);
  padding-top: 24px;
}

.strategy-brief h3 { font-size: 22px; margin-bottom: 10px; }

.strategy-brief p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.strategy-brief a {
  font-size: 13px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.strategy-brief a:hover { gap: 8px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .cards-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .edge-section { grid-template-columns: 1fr; gap: 48px; }
  .edge-svg { order: -1; }
  .mission-block { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .strategies-about__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__right { text-align: left; grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .ghost-cards { grid-template-columns: 1fr; max-width: 320px; }
  .ghost-cards__overlay { flex-direction: column; gap: 60px; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 20px; }
  .strategy-cards { padding: 64px 20px; }
  .timeline { padding: 64px 20px; }
  .stats-bar { display: none; }
}
