/* ─────────────────────────────────────────
   OSKKEE — styles.css
   ───────────────────────────────────────── */

:root {
  /* ── Color Primitives ── */
  --clr-bg:            oklch(98.5% 0.005 85);    /* warm cream white */
  --clr-bg-2:          oklch(96%   0.010 85);    /* slightly warmer */
  --clr-bg-3:          oklch(94%   0.012 85);    /* section alt bg */
  --clr-surface:       oklch(100%  0     0);     /* pure white card */
  --clr-surface-hover: oklch(97%   0.008 85);
  --clr-primary:       oklch(42%   0.12  155);   /* forest green */
  --clr-primary-dark:  oklch(33%   0.12  155);   /* deep green */
  --clr-primary-hover: oklch(38%   0.12  155);
  --clr-primary-muted: oklch(90%   0.06  155);   /* light green tint */
  --clr-accent:        oklch(62%   0.18  50);    /* warm amber */
  --clr-accent-muted:  oklch(94%   0.08  50);
  --clr-text:          oklch(18%   0.01  260);   /* near-black */
  --clr-text-2:        oklch(42%   0.01  260);   /* medium gray */
  --clr-text-3:        oklch(62%   0.01  260);   /* light gray */
  --clr-text-muted:    var(--clr-text-2);        /* alias */
  --clr-border:        oklch(88%   0.01  260);   /* subtle border */
  --clr-border-strong: oklch(78%   0.01  260);
  --clr-success:       oklch(55%   0.14  160);
  --clr-success-muted: oklch(94%   0.06  160);
  --clr-danger:        oklch(55%   0.20  25);
  --clr-danger-muted:  oklch(95%   0.06  25);
  --clr-warning:       oklch(72%   0.18  80);
  --clr-warning-muted: oklch(96%   0.06  80);

  /* ── Legacy variable aliases (so inline styles still work) ── */
  --primary:           var(--clr-primary);
  --primary-light:     var(--clr-primary-muted);
  --primary-dark:      var(--clr-primary-dark);
  --bg-primary:        var(--clr-bg);
  --bg-secondary:      var(--clr-bg-2);
  --bg-card:           var(--clr-surface);
  --bg-card-hover:     var(--clr-surface-hover);
  --text-primary:      var(--clr-text);
  --text-secondary:    var(--clr-text-2);
  --border:            var(--clr-border);
  --accent:            var(--clr-primary);
  --accent-teal:       var(--clr-success);
  --accent-red:        var(--clr-danger);
  --accent-orange:     var(--clr-accent);
  --accent-blue:       oklch(55% 0.18 250);
  --accent-pink:       oklch(62% 0.18 345);

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px oklch(0% 0 0 / 0.04);
  --shadow-sm: 0 1px 4px oklch(0% 0 0 / 0.06), 0 1px 2px oklch(0% 0 0 / 0.04);
  --shadow-md: 0 4px 12px oklch(0% 0 0 / 0.08);
  --shadow-lg: 0 8px 24px oklch(0% 0 0 / 0.10);
  --shadow-xl: 0 16px 40px oklch(0% 0 0 / 0.12);

  /* ── Border Radius ── */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* ── Legacy radius aliases ── */
  --gradient-primary: var(--clr-primary);
  --gradient-card: transparent;
  --gradient-hero: var(--clr-bg);
  --gradient-mesh: none;
  --shadow-glow: none;
}

/* ── Dark Mode ── */
[data-theme="dark"] {
  --clr-bg:            oklch(14%   0.01  260);
  --clr-bg-2:          oklch(18%   0.01  260);
  --clr-bg-3:          oklch(20%   0.01  260);
  --clr-surface:       oklch(20%   0.01  260);
  --clr-surface-hover: oklch(24%   0.01  260);
  --clr-primary:       oklch(60%   0.14  155);
  --clr-primary-dark:  oklch(70%   0.14  155);
  --clr-primary-hover: oklch(65%   0.14  155);
  --clr-primary-muted: oklch(25%   0.06  155);
  --clr-text:          oklch(94%   0.005 85);
  --clr-text-2:        oklch(65%   0.005 260);
  --clr-text-3:        oklch(50%   0.005 260);
  --clr-border:        oklch(28%   0.01  260);
  --clr-border-strong: oklch(38%   0.01  260);
  --clr-success:       oklch(65%   0.14  160);
  --clr-success-muted: oklch(20%   0.06  160);
  --clr-danger:        oklch(65%   0.20  25);
  --clr-danger-muted:  oklch(22%   0.06  25);

  --shadow-sm: 0 1px 4px oklch(0% 0 0 / 0.25);
  --shadow-md: 0 4px 12px oklch(0% 0 0 / 0.35);
  --shadow-lg: 0 8px 24px oklch(0% 0 0 / 0.40);

  --bg-primary:    var(--clr-bg);
  --bg-secondary:  var(--clr-bg-2);
  --bg-card:       var(--clr-surface);
  --bg-card-hover: var(--clr-surface-hover);
  --text-primary:  var(--clr-text);
  --text-secondary:var(--clr-text-2);
  --border:        var(--clr-border);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--clr-bg);
  color: var(--clr-text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
  color: var(--clr-text);
}

a {
  color: var(--clr-primary);
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.gradient-text {
  color: var(--clr-primary);
}

/* ─────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.2s ease, border-color 0.2s ease;
}

[data-theme="dark"] .site-nav {
  background: var(--clr-bg);
  border-bottom-color: var(--clr-border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1001;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--clr-text);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--clr-text-2);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--clr-primary);
}

.nav-link-cta {
  display: none !important;
}

.nav-links a::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--clr-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: var(--clr-primary-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 1px;
  transition: all 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--clr-border);
  background: transparent;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-2);
  transition: color 0.15s ease, border-color 0.15s ease;
  border-radius: var(--radius-xs);
}

.theme-toggle:hover {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
}

.theme-toggle .sun-icon { display: block; }
.theme-toggle .moon-icon { display: none; }
[data-theme="dark"] .theme-toggle .sun-icon { display: none; }
[data-theme="dark"] .theme-toggle .moon-icon { display: block; }

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 32px 96px;
  background: var(--clr-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 80vh;
}

.hero-bg-animation { display: none; }
.hero-bg-animation .orb { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-primary-muted);
  color: var(--clr-primary);
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

[data-theme="dark"] .hero-badge {
  background: var(--clr-primary-muted);
  color: var(--clr-primary);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--clr-success);
  border-radius: 50%;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title-line {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--clr-text);
}

.hero-title-gradient {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--clr-primary);
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--clr-text-2);
  max-width: 500px;
  margin: 0 0 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-channels {
  text-align: left;
}

.hero-channels-label {
  display: block;
  color: var(--clr-text-3);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero-channels-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-primary);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
  border: none;
  cursor: pointer;
  line-height: 1.4;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--clr-primary-hover);
}

.btn-primary.btn-glow {
  background: var(--clr-primary);
}

.btn-primary.btn-glow:hover {
  background: var(--clr-primary-hover);
}

.btn-primary.btn-sm {
  padding: 9px 20px;
  font-size: 0.875rem;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-text);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
  border: 1px solid var(--clr-border-strong);
  cursor: pointer;
  line-height: 1.4;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--clr-bg-2);
  border-color: var(--clr-border-strong);
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* ─────────────────────────────────────────
   CHANNEL CHIPS
   ───────────────────────────────────────── */
.channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-xs);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.775rem;
  font-weight: 500;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-2);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

[data-theme="dark"] .channel-chip {
  background: var(--clr-bg-2);
  border-color: var(--clr-border);
}

.channel-chip:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.channel-chip-soon {
  opacity: 0.45;
  cursor: default;
}

.channel-chip-soon:hover {
  border-color: var(--clr-border);
  color: var(--clr-text-2);
}

.channel-chip svg {
  width: 13px;
  height: 13px;
}

/* ─────────────────────────────────────────
   HERO VISUAL / MOCKUP
   ───────────────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-mockup {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg-2);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }

.mockup-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--clr-text-3);
  font-weight: 500;
}

.mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-msg {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 85%;
}

.mockup-msg-user {
  background: var(--clr-primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: var(--radius-xs);
}

.mockup-msg-bot {
  background: var(--clr-bg-2);
  color: var(--clr-text);
  align-self: flex-start;
  border-bottom-left-radius: var(--radius-xs);
  border: 1px solid var(--clr-border);
}

.mockup-typing {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 5px;
}

.mockup-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-primary);
  animation: typingBounce 1.4s ease-in-out infinite;
}

.mockup-typing span:nth-child(2) { animation-delay: 0.2s; }
.mockup-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-3px); opacity: 1; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   STATS BAR
   ───────────────────────────────────────── */
.stats-bar {
  padding: 0 32px;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

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

.stat-item:not(:last-child) {
  border-right: 1px solid var(--clr-border);
}

.stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--clr-primary);
  line-height: 1.2;
  display: block;
}

.stat-label {
  color: var(--clr-text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────── */
.section {
  padding: 96px 32px;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-primary-muted);
  color: var(--clr-primary);
  padding: 5px 14px;
  border-radius: var(--radius-xs);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

[data-theme="dark"] .section-badge {
  color: var(--clr-primary);
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--clr-text);
}

.section-subtitle {
  color: var(--clr-text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   FEATURES
   ───────────────────────────────────────── */
.features {
  background: var(--clr-bg-2);
  position: relative;
}

.feature-layout {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.feature-lead {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 48px 48px 40px;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
}

.feature-lead-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--clr-primary);
  flex-shrink: 0;
  opacity: 0.85;
}

.feature-lead-body {
  padding-top: 8px;
}

.feature-lead-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 12px;
}

.feature-lead-body p {
  color: var(--clr-text-2);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 60ch;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--clr-border);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px;
  background: var(--clr-surface);
  transition: background 0.15s ease;
}

.feature-item:hover {
  background: var(--clr-surface-hover);
}

.feature-item svg {
  flex-shrink: 0;
  color: var(--clr-primary);
  margin-top: 3px;
}

.feature-item h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--clr-text);
}

.feature-item p {
  color: var(--clr-text-2);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────── */
.how-it-works {
  background: var(--clr-bg);
  position: relative;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  text-align: left;
  padding: 0 32px;
  max-width: 340px;
  border-right: 1px solid var(--clr-border);
}

.step-card:last-child {
  border-right: none;
}

.step-connector {
  display: none;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--clr-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}

.step-number span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.step-content h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.step-content p {
  color: var(--clr-text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   CHANNELS
   ───────────────────────────────────────── */
.channels-section {
  background: var(--clr-bg-2);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-decoration: none;
  color: var(--clr-text);
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
}

a.channel-card:hover {
  border-color: var(--clr-primary);
  background: var(--clr-surface-hover);
}

div.channel-card {
  opacity: 0.55;
  cursor: default;
}

div.channel-card:hover {
  border-color: var(--clr-border);
  background: var(--clr-surface);
}

.channel-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ch-color, var(--clr-primary));
  transition: none;
}

.channel-card:hover .channel-icon {
  transform: none;
}

.channel-card-info {
  flex: 1;
  min-width: 0;
}

.channel-card-info h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--clr-text);
}

.channel-card-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--clr-text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  background: var(--clr-bg-3);
  color: var(--clr-text-3);
}

.channel-badge-action {
  background: var(--clr-primary-muted);
  color: var(--clr-primary);
}

.channels-help-text {
  text-align: center;
  color: var(--clr-text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  margin-top: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────
   PRICING
   ───────────────────────────────────────── */
.pricing {
  background: var(--clr-bg);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
}

.pricing-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: border-color 0.15s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--clr-primary);
  transform: none;
}

.pricing-card-featured {
  border-color: var(--clr-primary);
  background: var(--clr-surface);
}

.pricing-card-featured:hover {
  transform: none;
}

.pricing-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-primary);
  color: white;
  padding: 4px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card-top {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}

.pricing-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--clr-text);
}

.pricing-price {
  margin-bottom: 6px;
}

.pricing-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--clr-text);
}

.pricing-period {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--clr-text-2);
  font-weight: 500;
}

.pricing-desc {
  color: var(--clr-text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-features li {
  padding: 5px 0;
  color: var(--clr-text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-success);
  font-weight: 700;
  font-size: 0.78rem;
}

.pricing-button {
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-button-filled {
  background: var(--clr-primary);
  color: white;
  border: none;
}

.pricing-button-filled:hover {
  background: var(--clr-primary-hover);
  transform: none;
}

.pricing-button-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border-strong);
}

.pricing-button-outline:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: var(--clr-primary-muted);
}

/* ─────────────────────────────────────────
   BLOG (INDEX PAGE PREVIEW)
   ───────────────────────────────────────── */
.blog {
  padding: 96px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.blog-loading,
.blog-empty {
  text-align: center;
  padding: 40px;
  color: var(--clr-text-2);
  grid-column: 1 / -1;
  font-family: 'DM Sans', sans-serif;
}

.blog-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.15s ease;
  cursor: pointer;
}

.blog-card:hover {
  border-color: var(--clr-primary);
  transform: none;
}

.blog-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--clr-bg-2);
}

.blog-card-content {
  padding: 20px;
}

.blog-card-category {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card-summary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--clr-text-2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--clr-border);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.775rem;
  color: var(--clr-text-2);
}

.blog-card-type {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-subscribe {
  text-align: center;
  margin-top: 40px;
  padding: 36px;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  position: relative;
}

.blog-subscribe::before {
  display: none;
}

.blog-subscribe p {
  margin-bottom: 16px;
  color: var(--clr-text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}

/* ─────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────── */
.cta-section {
  padding: 0 32px 96px;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 48px;
  background: var(--clr-primary);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.cta-bg-orbs { display: none; }

.cta-inner h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  color: white;
}

.cta-inner p {
  color: oklch(90% 0.04 155);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-inner .hero-cta-group {
  justify-content: center;
}

.cta-inner .btn-primary {
  background: white;
  color: var(--clr-primary-dark);
}

.cta-inner .btn-primary:hover {
  background: oklch(96% 0.01 85);
}

.cta-inner .btn-secondary {
  background: transparent;
  color: white;
  border-color: oklch(75% 0.08 155);
}

.cta-inner .btn-secondary:hover {
  background: oklch(35% 0.12 155 / 0.4);
  border-color: white;
}

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

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--clr-text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: var(--clr-text-2);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--clr-primary);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--clr-border);
  text-align: center;
}

.footer-bottom p {
  color: var(--clr-text-3);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-bottom p + p {
  margin-top: 4px;
  font-size: 0.72rem;
}

/* ─────────────────────────────────────────
   CARD HOVER
   ───────────────────────────────────────── */
[data-theme="light"] .feature-item,
[data-theme="light"] .pricing-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .channel-card {
  box-shadow: var(--shadow-xs);
}

/* ─────────────────────────────────────────
   ANIMATE ON SCROLL
   ───────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.06s; }
.animate-on-scroll.delay-2 { transition-delay: 0.12s; }
.animate-on-scroll.delay-3 { transition-delay: 0.18s; }
.animate-on-scroll.delay-4 { transition-delay: 0.24s; }
.animate-on-scroll.delay-5 { transition-delay: 0.30s; }

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */

@media (max-width: 1280px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 48px;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .step-card {
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--clr-border);
    padding: 0 0 32px;
  }

  .step-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-link-cta {
    display: inline-flex !important;
    background: var(--clr-primary);
    color: white !important;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 8px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:not(:last-child) {
    border-right: none;
  }

  .stat-item {
    border-bottom: 1px solid var(--clr-border);
  }

  .stat-item:nth-child(odd):not(:nth-last-child(-n+2)) {
    border-right: 1px solid var(--clr-border);
  }

  .section {
    padding: 64px 20px;
  }

  .feature-lead {
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px 28px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .channels-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 48px 20px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .cta-inner {
    padding: 48px 24px;
  }

  .nav-container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 1.5rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  .pricing-card {
    padding: 22px 18px;
  }

  .footer {
    padding: 36px 16px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-bg-animation .orb {
    animation: none;
  }

  .hero-badge-dot {
    animation: none;
  }

  .mockup-typing span {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
