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

:root {
  --bg: #0D0D0B;
  --bg-2: #141410;
  --fg: #F2EDE4;
  --fg-dim: #8A877F;
  --accent: #C9A227;
  --accent-dim: rgba(201, 162, 39, 0.12);
  --border: rgba(242, 237, 228, 0.08);
  --font-display: 'Bricolage Grotesque', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 4px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--fg);
}

.nav-meta {
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 6rem 2.5rem 5rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 560px;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-revenue {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
}

.rev-item {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
}

.rev-item:first-child {
  border-radius: 6px 0 0 6px;
}

.rev-item:last-child {
  border-radius: 0 6px 6px 0;
  border-left: none;
}

.rev-item:not(:first-child):not(:last-child) {
  border-left: none;
}

.rev-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 0.25rem;
}

.rev-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-revenue-cap {
  font-size: 0.75rem;
  color: var(--fg-dim);
  font-style: italic;
}

/* Glow orb */
.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* === STACK === */
.stack {
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.stack-card {
  background: var(--bg);
  padding: 2.5rem;
}

.stack-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.stack-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.stack-card p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

.stack-footnote {
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-style: italic;
  text-align: center;
}

/* === REVENUE === */
.revenue {
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
}

.revenue-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.rev-lane {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-2);
}

.rev-lane-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.rev-lane-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.rev-lane-val span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-dim);
}

.rev-lane-desc {
  font-size: 0.85rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

.revenue-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border: 1px solid var(--accent-dim);
  background: var(--accent-dim);
  border-radius: 8px;
}

.total-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.total-val {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

/* === MANIFESTO === */
.manifesto {
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.manifesto-inner {
  max-width: 680px;
}

.manifesto-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 600;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.manifesto-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-dim);
  margin-bottom: 1.25rem;
}

.manifesto-highlight {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
  font-size: 1.05rem;
}

/* === CLOSING === */
.closing {
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 680px;
}

.closing-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.closing-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-dim);
  margin-bottom: 3rem;
}

.closing-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.pillar:first-child {
  border-top: 1px solid var(--border);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 2rem;
  padding-top: 0.15rem;
}

.pillar-text {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.5;
  font-weight: 500;
}

/* === NEWSLETTER === */
.newsletter {
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.newsletter-inner {
  max-width: 600px;
}

.newsletter-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.newsletter-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.newsletter-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-dim);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  max-width: 480px;
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: var(--fg-dim);
}

.newsletter-input:focus {
  border-color: var(--accent);
}

.newsletter-btn {
  padding: 0.875rem 1.25rem;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  opacity: 0.9;
}

.newsletter-footnote {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

.newsletter-success {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 50%;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.success-body {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* === FOOTER === */
.footer {
  padding: 4rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-inner {
  max-width: 680px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 3rem; min-height: auto; }
  .hero-headline { font-size: 3rem; }
  .hero-revenue { flex-direction: column; gap: 0.5rem; }
  .rev-item { border-radius: 6px; border: 1px solid var(--border); }
  .rev-item:not(:first-child) { border-top: none; }
  .stack { padding: 4rem 1.25rem; }
  .stack-grid { grid-template-columns: 1fr; }
  .revenue { padding: 4rem 1.25rem; }
  .revenue-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 5rem 1.25rem; }
  .closing { padding: 5rem 1.25rem; }
  .newsletter { padding: 5rem 1.25rem; }
  .newsletter-form { flex-direction: column; gap: 0.5rem; }
  .newsletter-input { border-right: 1px solid var(--border); border-radius: 6px; }
  .newsletter-btn { border-radius: 6px; }
  .footer { padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-sub { font-size: 1rem; }
  .rev-lane-val { font-size: 2rem; }
}

/* === HERO FORM (new above-fold email capture) === */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.hero-form { margin-top: 2.5rem; }

.hero-form-row {
  display: flex;
  gap: 0;
  max-width: 480px;
}

.hero-input {
  flex: 1;
  padding: 0.9rem 1.1rem;
  background: rgba(242,237,228,0.05);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.hero-input::placeholder { color: var(--fg-dim); }
.hero-input:focus { border-color: rgba(201,162,39,0.6); }

.hero-btn {
  padding: 0.9rem 1.4rem;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.hero-btn:hover { opacity: 0.88; }
.hero-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-msg {
  font-size: 0.8rem;
  color: #e07070;
  margin-top: 0.6rem;
  min-height: 1.2em;
}

.hero-social-proof {
  font-size: 0.78rem;
  color: var(--fg-dim);
  margin-top: 0.75rem;
}

.proof-num {
  color: var(--accent);
  font-weight: 700;
}

.hero-confirmed {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.875rem 1.25rem;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

/* === ISSUES SECTION === */
.issues {
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.issues-inner { max-width: 900px; }

.issues-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.issues-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

.issues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.25rem;
}

.issue-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
}

.issue-card--featured {
  grid-column: 1 / -1;
  background: var(--bg-2);
  border-color: rgba(201,162,39,0.18);
}

.issue-num {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.issue-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.issue-body {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.65;
}

.issue-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.issue-topic {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--fg-dim);
}

/* === ABOUT SECTION === */
.about {
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--border);
}

.about-inner { max-width: 680px; }

.about-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-dim);
  margin-bottom: 1.25rem;
}

.about-metrics {
  display: flex;
  gap: 0;
  margin-top: 3rem;
}

.about-metric {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--border);
}

.about-metric:first-child { border-radius: 6px 0 0 6px; }
.about-metric:last-child  { border-radius: 0 6px 6px 0; border-left: none; }
.about-metric:not(:first-child):not(:last-child) { border-left: none; }

.metric-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === FOOTER (updated) === */
.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--accent); }

.footer-privacy {
  font-size: 0.75rem;
  color: var(--fg-dim);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 480px;
}

.footer-privacy-link {
  color: var(--fg-dim);
  text-decoration: underline;
}

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 768px) {
  .issues { padding: 4rem 1.25rem; }
  .issues-grid { grid-template-columns: 1fr; }
  .issue-card--featured { grid-column: 1; }
  .about { padding: 5rem 1.25rem; }
  .about-metrics { flex-direction: column; gap: 0.5rem; }
  .about-metric { border-radius: 6px; border: 1px solid var(--border); }
  .about-metric:not(:first-child) { border-top: none; }
  .hero-form-row { flex-direction: column; gap: 0.5rem; }
  .hero-input { border-right: 1px solid var(--border); border-radius: 6px; }
  .hero-btn { border-radius: 6px; }
}
