/* =========================================================
   Elevation Media — v1 (Estuary layout, Elevation palette)
   Deep forest + brand green + bone white.
   ========================================================= */

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

:root {
  --bg: #0a1410;             /* deep forest near-black */
  --bg-elev: #0f1c16;
  --bg-card: #142019;
  --bg-cream: #f4ecdf;        /* bone white surface (for inverted cards) */
  --line: #1f3528;
  --text: #f4ecdf;            /* bone white primary */
  --text-dim: #b6c0b8;
  --text-muted: #6c8077;
  --text-on-cream: #0a1410;
  --accent: #0e9554;          /* brand green, brightened for contrast */
  --accent-hover: #14b367;
  --accent-deep: #006038;     /* original sampled brand green */
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-dim);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle radial vignette */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 50%, rgba(14, 149, 84, 0.12), transparent 60%);
  z-index: 0;
}

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
  z-index: 1;
}

.tag-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: 'JetBrains Mono', 'Inter', monospace;
}
.tag-line::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--text-muted);
}

/* ------- Navbar (minimal) ------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 20, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text);
  text-transform: uppercase;
}
/* Logo rendered as a CSS mask so the source silhouette repaints in bone white. */
.nav-logo .logo-img {
  display: inline-block;
  width: 50px;
  height: 30px;
  background-color: var(--text);
  -webkit-mask-image: url('alex-warren-logo-mask.png');
          mask-image: url('alex-warren-logo-mask.png');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  flex-shrink: 0;
}
.footer-brand .nav-logo .logo-img {
  width: 72px;
  height: 42px;
}
.nav-meta {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.nav-meta a:hover { color: var(--accent); }

/* ------- Hero ------- */
.hero {
  position: relative;
  padding: 180px 0 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag { margin-bottom: 60px; }
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.86;
  letter-spacing: -2px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 0;
}
.hero h1 .line { display: block; }
.hero h1 .accent-period { color: var(--accent); }
.hero-body {
  margin-top: 60px;
  max-width: 560px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 36px;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 64px;
  font-family: 'JetBrains Mono', 'Inter', monospace;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 32px;
  background: var(--text-muted);
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.btn .icon { width: 16px; height: 16px; }
.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 24px rgba(14, 149, 84, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(14, 149, 84, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--text);
  background: var(--bg-elev);
}

/* ------- Marquee ------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg-elev);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee-item {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--text-dim);
  text-transform: uppercase;
  padding: 0 48px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ------- Sections ------- */
section { padding: 140px 0; position: relative; z-index: 1; }
.section-num-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
  font-family: 'JetBrains Mono', 'Inter', monospace;
}
.section-num-tag::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--accent);
}

/* ------- Platform intro ------- */
.platform-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: start;
}
.platform-intro h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -1px;
}
.platform-intro h2 .dim { color: var(--text-muted); }
.platform-intro-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.platform-intro-body p strong { color: var(--text); font-weight: 600; }

/* ------- Feature grid (2x2) ------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.feature-cell {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.3s;
}
.feature-cell:nth-child(2n) { border-right: none; }
.feature-cell:nth-last-child(-n+2) { border-bottom: none; }
.feature-cell:hover { background: var(--bg-elev); }
.feature-num {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', 'Inter', monospace;
}
.feature-cell h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.feature-cell p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 460px;
}

/* ------- Big phrase break ------- */
.phrase-break {
  padding: 160px 0;
}
.phrase-break h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -1.5px;
  margin: 0;
}
.phrase-break .dim { color: var(--text-muted); display: block; }
.phrase-break .accent { color: var(--accent); }

/* ------- Spotlights / Results ------- */
.spotlights-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.spotlights-header h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.9;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -1px;
}
.spotlights-header h2 .accent { color: var(--accent); }
.spotlights-header p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 460px;
}

.spotlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.spotlight-card {
  padding: 56px 48px;
  border-radius: 4px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.spotlight-card.dark { background: var(--bg-card); border: 1px solid var(--line); }
.spotlight-card.cream { background: var(--bg-cream); color: var(--text-on-cream); }
.spotlight-card.cream .spotlight-tag { color: rgba(10, 20, 16, 0.5); }
.spotlight-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'JetBrains Mono', 'Inter', monospace;
}
.spotlight-card h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ------- Ownership strip ------- */
.ownership {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ownership h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.ownership .accent { color: var(--accent); }

/* ------- Final CTA ------- */
.final-cta {
  text-align: center;
  padding: 160px 0 120px;
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 149, 84, 0.18), transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; }
.final-cta .tag-line {
  justify-content: center;
  margin-bottom: 36px;
}
.final-cta .tag-line::before { background: var(--accent); }
.final-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 10vw, 168px);
  line-height: 0.9;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -1.5px;
  margin-bottom: 36px;
}
.final-cta h2 .accent { color: var(--accent); }
.final-cta-sub {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--text-dim);
}
.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.compliance-line {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.compliance-line a {
  color: var(--text-dim);
  text-decoration: underline;
}
.compliance-line a:hover { color: var(--accent); }

/* ------- Footer ------- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer-brand .nav-logo {
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-contact {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 2;
}
.footer-contact a:hover { color: var(--accent); }
.footer-col h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-col .social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col .social-row svg { color: var(--text-dim); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
  font-family: 'JetBrains Mono', 'Inter', monospace;
}

/* ------- Reveal animation ------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------- Legal pages ------- */
.legal-page {
  padding: 160px 0 120px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.legal-page h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--text);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 0.95;
}
.legal-page h1 .accent { color: var(--accent); }
.legal-page .last-updated {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 56px;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', 'Inter', monospace;
}
.legal-page h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--text);
  margin: 48px 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-page h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  margin: 28px 0 10px;
}
.legal-page p, .legal-page li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.legal-page ul, .legal-page ol {
  margin: 0 0 18px 24px;
}
.legal-page strong { color: var(--text); }
.legal-page a { color: var(--accent); text-decoration: underline; }
.legal-page a:hover { color: var(--accent-hover); }

.placeholder-banner {
  background: rgba(14, 149, 84, 0.08);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 40px;
  line-height: 1.65;
}
.placeholder-banner strong { color: var(--accent); }

.contact-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px;
  margin-top: 40px;
}
.contact-block h2 { margin-top: 0; }
.contact-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'JetBrains Mono', 'Inter', monospace;
}
.contact-value { font-size: 15px; color: var(--text); }

/* ------- Responsive ------- */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-container { padding: 22px 32px; }
  .hero { padding: 140px 0 60px; }
  .platform-intro, .spotlights-header { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .feature-cell:last-child { border-bottom: none; }
  .spotlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 24px; }
  .nav-meta { gap: 16px; font-size: 11px; }
  .nav-meta a:not(:last-child) { display: none; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(56px, 18vw, 96px); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-buttons, .final-cta-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
