/* ── IDENTITY TOKENS ─────────────────────────────────────────────────────── */
:root {
  --forest:    #1A2E1A;
  --forest2:   #243424;
  --forest3:   #2E4A2E;
  --gold:      #B8963E;
  --gold-lt:   #D4B06A;
  --gold-pale: #F0E6CC;
  --ivory:     #FAF7F2;
  --ivory2:    #F2EDE4;
  --stone:     #8A8478;
  --stone-lt:  #C4BFB5;
  --ink:       #1C1C1A;
  --display:   'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', sans-serif;
  --mono:      'DM Mono', monospace;
  --wm:        'Josefin Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--ivory); color: var(--ink); overflow-x: hidden; line-height: 1.6; }
* { cursor: none !important; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── CURSOR ──────────────────────────────────────────────────────────────── */
#cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: multiply;
}
#cursor.expand { width: 36px; height: 36px; opacity: 0.35; }




/* ── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 68px;
  transition: background 0.4s, border-bottom 0.4s;
}
nav.scrolled {
  background: rgba(26,46,26,0.97);
  border-bottom: 1px solid rgba(200,169,74,0.18);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: var(--wm); font-size: 20px; font-weight: 200;
  letter-spacing: 0.32em; color: var(--ivory);
}
.nav-logo span { color: var(--gold-lt); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(250,247,242,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-cta {
  border: 1px solid rgba(200,169,74,0.45);
  padding: 8px 20px; color: var(--gold) !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--forest) !important; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1px; background: var(--ivory);
  transition: 0.3s;
}
.nav-mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(26,46,26,0.98); z-index: 199;
  padding: 24px 52px; flex-direction: column; gap: 20px;
}
.nav-mobile a {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(250,247,242,0.75);
}
.nav-mobile.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--forest);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 80px 80px 80px; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.hero-title {
  font-family: var(--display); font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 400; line-height: 1.05; color: var(--ivory);
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 16px; font-weight: 300; color: var(--stone-lt);
  line-height: 1.75; max-width: 420px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  background: var(--forest2); position: relative; overflow: hidden;
}
.hero-svg { width: 80%; height: 80%; opacity: 0; animation: fadeIn 1.2s 0.6s forwards; }
.hero-divider {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,74,0.3) 30%, rgba(200,169,74,0.3) 70%, transparent);
  z-index: 3;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--forest);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 14px 32px;
  transition: background 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-lt); }
.btn-ghost {
  color: var(--stone-lt); font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.2s; display: inline-block;
}
.btn-ghost:hover { color: var(--gold-lt); }
.btn-outline {
  border: 1px solid var(--forest); color: var(--forest);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 12px 28px; display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--forest); color: var(--ivory); }
.btn-ghost-light {
  color: rgba(250,247,242,0.6); font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.2s; display: inline-block;
}
.btn-ghost-light:hover { color: var(--gold-lt); }

/* ── MARQUEE ──────────────────────────────────────────────────────────────── */
.marquee-bar {
  background: var(--forest); overflow: hidden; padding: 12px 0;
  border-top: 1px solid rgba(200,169,74,0.12);
  border-bottom: 1px solid rgba(200,169,74,0.12);
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--stone); white-space: nowrap;
  display: flex; align-items: center; gap: 48px; padding: 0 24px;
}
.marquee-item span { color: var(--gold); font-size: 7px; }

/* ── LAYOUT HELPERS ──────────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 52px; }
section { padding: 100px 0; }
.section-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--display); font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.01em;
  color: var(--forest);
}
.section-title em { font-style: italic; }

/* ── STATS ────────────────────────────────────────────────────────────────── */
.stats-section { background: var(--ivory2); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(200,169,74,0.15); }
.stat-item {
  background: var(--forest); padding: 48px 40px;
  transition: background 0.3s;
}
.stat-item:hover { background: var(--forest2); }
.stat-num {
  font-family: var(--display); font-size: 42px; font-weight: 400;
  color: var(--gold-lt); line-height: 1.1; margin-bottom: 12px;
}
.stat-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(200,169,74,0.7); margin-bottom: 8px;
}
.stat-sub { font-size: 13px; font-weight: 300; color: var(--stone); line-height: 1.6; }

/* ── PLATFORMS ────────────────────────────────────────────────────────────── */
.platforms { background: var(--ivory); }
.platforms-header { margin-bottom: 56px; }
.platforms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.platform-card {
  border: 1px solid rgba(26,46,26,0.12); padding: 48px 40px;
  position: relative; transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column; gap: 0;
}
.platform-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.platform-num {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 16px;
}
.platform-name {
  font-family: var(--display); font-size: 28px; font-weight: 400;
  color: var(--forest); margin-bottom: 16px;
}
.platform-desc {
  font-size: 15px; font-weight: 300; color: #4A4A46;
  line-height: 1.7; margin-bottom: 24px; flex: 1;
}
.platform-items {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--stone); margin-bottom: 28px; line-height: 1.8;
}
.platform-arrow {
  font-size: 18px; color: var(--gold);
  transition: transform 0.2s;
}
.platform-card:hover .platform-arrow { transform: translateX(6px); }

/* ── ABOUT TEASER ─────────────────────────────────────────────────────────── */
.about-teaser { background: var(--ivory2); }
.about-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-teaser-left p {
  font-size: 16px; font-weight: 300; color: #4A4A46;
  line-height: 1.8; margin-bottom: 16px; margin-top: 24px;
}
.about-teaser-left .btn-outline { margin-top: 16px; }
.pillar-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.pillar-mini {
  background: var(--forest); color: var(--stone-lt);
  padding: 24px 20px; font-size: 13px; font-weight: 300;
  line-height: 1.4; transition: background 0.2s;
  display: flex; flex-direction: column; gap: 8px;
}
.pillar-mini:hover { background: var(--forest2); }
.pillar-mini span {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  color: var(--gold); display: block;
}

/* ── CTA BAND ─────────────────────────────────────────────────────────────── */
.cta-band { background: var(--forest); padding: 80px 0; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-title {
  font-family: var(--display); font-size: 36px; font-weight: 400;
  color: var(--ivory); margin-bottom: 10px;
}
.cta-sub { font-size: 14px; font-weight: 300; color: var(--stone); }
.cta-actions { display: flex; gap: 20px; align-items: center; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--forest); border-top: 1px solid rgba(200,169,74,0.1);
  padding: 60px 0 36px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(200,169,74,0.08); }
.footer-logo {
  font-family: var(--wm); font-size: 20px; font-weight: 200;
  letter-spacing: 0.32em; color: var(--ivory); margin-bottom: 14px;
}
.footer-logo span { color: var(--gold-lt); }
.footer-brand p { font-size: 13px; font-weight: 300; color: var(--stone); line-height: 1.7; max-width: 200px; }
.footer-domain { font-family: var(--display); font-size: 14px; color: var(--gold) !important; margin-top: 16px !important; }
.footer-col h4 {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; font-weight: 300; color: var(--stone); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--ivory); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; }
.footer-bottom p { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: rgba(138,132,120,0.45); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  background: var(--forest); padding: 140px 0 80px;
  border-bottom: 1px solid rgba(200,169,74,0.12);
}
.page-hero-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--display); font-size: clamp(44px, 5vw, 72px);
  font-weight: 400; color: var(--ivory); line-height: 1.08; margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--gold-lt); }
.page-hero-sub { font-size: 17px; font-weight: 300; color: var(--stone-lt); line-height: 1.75; max-width: 600px; }

/* ── ANIMATIONS ───────────────────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes fadeUp { from { opacity:0; transform:translateY(22px) } to { opacity:1; transform:translateY(0) } }
@keyframes marquee { from { transform:translateX(0) } to { transform:translateX(-50%) } }

.reveal-up { opacity:0; animation: fadeUp 0.75s ease forwards; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-divider { display: none; }
  .hero-content { padding: 120px 24px 64px; }
  .container { padding: 0 24px; }
  .stats-grid { grid-template-columns: 1fr; gap: 1px; }
  .platforms-grid { grid-template-columns: 1fr; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .pillar-mini-grid { grid-template-columns: 1fr; }
}
