/* CannaBev Distribution - style.css */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1B2A4A;
  --navy-deep: #111D33;
  --navy-light: #243558;
  --sage: #6B8F71;
  --sage-dark: #4A6B50;
  --sage-light: #D4E4D7;
  --cream: #F5F0E8;
  --cream-dark: #EBE4D8;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --gold: #C4933F;
  --gold-hover: #D4A34F;
  --gold-dim: rgba(196, 147, 63, 0.15);
  --white: #FFFFFF;

  --font-heading: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --narrow-width: 900px;
  --section-pad: 100px;
  --section-pad-mobile: 56px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--narrow-width); margin: 0 auto; padding: 0 32px; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-hover); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover { background: var(--sage-dark); color: var(--white); }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--sage);
  border-radius: 4px 4px 4px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
  gap: 1px;
  flex-shrink: 0;
}

.logo-mark .sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.47);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.01em;
  position: relative;
}

.logo-bev {
  color: var(--sage);
}

.logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Light background overrides */
.on-light .logo-name,
.site-footer .logo-name { color: var(--white); }
.on-light .logo-bev { color: #5a7e60; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}
.nav-links .nav-cta:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--navy-deep);
  padding: 170px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.pexels.com/photos/5532659/pexels-photo-5532659.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.30;
  pointer-events: none;
}

/* Gradient overlay on hero image */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, var(--navy-deep) 0%, rgba(17,29,51,0.75) 40%, rgba(17,29,51,0.55) 100%),
    linear-gradient(to bottom, transparent 50%, var(--navy-deep) 100%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero .eyebrow { color: var(--sage); }

.hero h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
}

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero .btn-group { margin-top: 8px; }

/* Accent line */
.hero-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 32px;
  border-radius: 2px;
}

/* ── Value Props ── */
.value-props {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 { margin-bottom: 16px; }

.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.prop-card {
  background: var(--white);
  border-radius: 6px;
  padding: 40px 36px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,42,74,0.08);
}

.prop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  border-radius: 6px 6px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.prop-card:hover::before { opacity: 1; }

.prop-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.prop-card h3 { margin-bottom: 12px; }

.prop-card p {
  color: var(--charcoal-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── How It Works (two-path) ── */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107,143,113,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.how-it-works .eyebrow { color: var(--gold); }
.how-it-works h2 { color: var(--white); margin-bottom: 16px; }
.how-it-works .section-intro { color: rgba(255,255,255,0.5); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.split-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 48px 40px;
  transition: border-color 0.3s, background 0.3s;
}

.split-card:hover {
  border-color: rgba(107,143,113,0.3);
  background: rgba(255,255,255,0.06);
}

.split-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage);
  margin-bottom: 16px;
}

.split-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.split-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

.split-card .btn { margin-top: 28px; }

/* ── Stats Bar ── */
.stats-bar {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
  position: relative;
}

.stat-item { position: relative; }

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ── Bottom CTA ── */
.bottom-cta {
  padding: var(--section-pad) 0 120px;
  text-align: center;
  position: relative;
}

.bottom-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.bottom-cta p {
  color: var(--charcoal-light);
  margin-bottom: 40px;
  font-size: 1.1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.5);
  padding: 48px 0 32px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
}

.footer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  margin-top: 4px;
  margin-bottom: 20px;
  font-style: italic;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}

/* ── Brand Spotlight Carousel ── */
.brand-spotlight {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.spotlight-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.spotlight-card {
  scroll-snap-align: start;
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,42,74,0.08);
}

.spotlight-img {
  height: 200px;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.spotlight-img .brand-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: -0.02em;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.spotlight-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(107,143,113,0.15) 0%, transparent 60%);
}

.spotlight-body {
  padding: 28px 28px 32px;
}

.spotlight-body .spotlight-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage);
  margin-bottom: 8px;
}

.spotlight-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.spotlight-body p {
  color: var(--charcoal-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

.spotlight-body .spotlight-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
}
.spotlight-body .spotlight-link:hover { color: var(--gold); }
.spotlight-body .spotlight-link::after { content: ' →'; }

/* ── Sesh Section ── */
.sesh-section {
  padding: var(--section-pad) 0;
  background: var(--sage-light);
}

.sesh-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.sesh-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.sesh-header-text .eyebrow { margin-bottom: 4px; }
.sesh-header-text p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  font-style: italic;
}

.sesh-entries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.sesh-entry {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.04);
}

.sesh-entry .sesh-date {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 10px;
}

.sesh-entry h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.sesh-entry p {
  color: var(--charcoal-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .sesh-entries { grid-template-columns: 1fr; }
  .spotlight-track { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .spotlight-track { grid-template-columns: 1fr; }
  .sesh-header { flex-direction: column; text-align: center; }
}

/* ── Inner Page Hero ── */
.page-hero {
  background: var(--navy-deep);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 40%, rgba(107,143,113,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--sage); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  max-width: 700px;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}
.page-hero .hero-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
  border-radius: 2px;
}

/* ── Content Sections ── */
.section { padding: var(--section-pad) 0; }
.section-dark {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.55); }
.section-dark .eyebrow { color: var(--gold); }

.section-white { background: var(--white); }

.section-sage { background: var(--sage-light); }

/* ── Tier Cards (For Brands) ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.tier-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,42,74,0.08);
}

.tier-card.featured {
  border: 2px solid var(--gold);
}
.tier-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 3px;
}

.tier-card h3 { margin-bottom: 16px; }
.tier-card p {
  color: var(--charcoal-light);
  font-size: 0.92rem;
  line-height: 1.7;
}
.tier-card .tier-best {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.82rem;
  color: var(--sage);
  font-style: italic;
}

/* ── Steps / Timeline ── */
.steps {
  counter-reset: step-counter;
  margin-top: 48px;
}

.step {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}

.section-dark .step::before {
  background: rgba(196,147,63,0.15);
}

.step-content h4 { margin-bottom: 6px; color: var(--navy); }
.step-content p { font-size: 0.92rem; color: var(--charcoal-light); line-height: 1.65; }
.section-dark .step-content h4 { color: var(--white); }
.section-dark .step-content p { color: rgba(255,255,255,0.5); }

/* ── Channel Table ── */
.channel-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 0.9rem;
}

.channel-table th,
.channel-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.channel-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
  background: var(--cream);
}

.channel-table td { color: var(--charcoal-light); line-height: 1.5; }
.channel-table td strong { color: var(--navy); font-weight: 600; }
.channel-table tbody tr:hover { background: rgba(107,143,113,0.04); }

/* ── Bullet List (styled) ── */
.check-list {
  list-style: none;
  margin-top: 24px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal-light);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--sage);
  opacity: 0.6;
}
.section-dark .check-list li { color: rgba(255,255,255,0.55); }
.check-list li strong { color: var(--navy); }
.section-dark .check-list li strong { color: var(--white); }

/* ── Brand Cards (Portfolio) ── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.brand-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 36px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27,42,74,0.06);
}

.brand-card .brand-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage);
  margin-bottom: 12px;
}
.brand-card h3 { margin-bottom: 12px; }
.brand-card p { color: var(--charcoal-light); font-size: 0.92rem; line-height: 1.65; }

.brand-card.coming-soon {
  background: var(--sage-light);
  border: 1px dashed var(--sage);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
}
.brand-card.coming-soon h3 { color: var(--sage-dark); }
.brand-card.coming-soon p { color: var(--sage-dark); opacity: 0.7; }

/* ── Coverage Map Placeholder ── */
.coverage-map {
  background: var(--white);
  border-radius: 8px;
  padding: 48px;
  margin-top: 48px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Channel Detail Cards ── */
.channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.channel-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 36px 32px;
}
.channel-card .channel-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
}
.channel-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.channel-card p { font-size: 0.92rem; line-height: 1.65; }

/* ── Roadmap / Phases ── */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.phase-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.phase-card .phase-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
}
.phase-card.active { border-left: 3px solid var(--sage); }
.phase-card h3 { margin-bottom: 12px; }
.phase-card p { color: var(--charcoal-light); font-size: 0.92rem; line-height: 1.65; }

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  margin-top: 48px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success {
  text-align: center;
  padding: 40px 0;
}
.form-success h3 { color: var(--sage); margin-bottom: 8px; }

.contact-info h3 { margin-bottom: 20px; }
.contact-info p {
  color: var(--charcoal-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-info a { color: var(--sage); font-weight: 500; }

.contact-links {
  list-style: none;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.contact-links li { margin-bottom: 12px; }
.contact-links a { font-size: 0.9rem; }

/* ── Two-column content ── */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}

.content-2col h3 { margin-bottom: 16px; }
.content-2col p { font-size: 0.95rem; line-height: 1.7; }

/* ── Inner page responsive ── */
@media (max-width: 1024px) {
  .tier-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
  .phase-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-2col { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 56px; }
  .form-row { grid-template-columns: 1fr; }
  .channel-table { font-size: 0.8rem; }
  .channel-table th, .channel-table td { padding: 12px 14px; }
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .props-grid { grid-template-columns: 1fr; gap: 20px; }
  .split-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  :root { --section-pad: 72px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-deep);
    padding: 100px 32px 32px;
    gap: 28px;
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.active a {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
  }
  .nav-toggle { display: block; z-index: 101; }
  .hero { padding: 160px 0 100px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; text-align: center; }
  .prop-card { padding: 32px 28px; }
  .split-card { padding: 36px 28px; }
}
