/* ========================================
   Studio Profit OS — Landing Page Styles
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-base: #0F1117;
  --bg-surface: #1A1D27;
  --bg-elevated: #222634;
  --bg-hover: #2A2F45;
  --border-subtle: #2E3347;
  --border-strong: #3D4460;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent: #3D6EFF;
  --accent-hover: #5B84FF;
  --accent-glow: rgba(61, 110, 255, 0.18);
  --accent-subtle: rgba(61, 110, 255, 0.08);
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --gold: #F5C842;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.015em;
}

h3 {
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 112px 0;
  position: relative;
}

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

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 16px;
  line-height: 1.7;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.15s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.25s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.35s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.45s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.55s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.65s; }
.stagger > .reveal:nth-child(8) { transition-delay: 0.75s; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  padding: 14px 32px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 36px var(--accent-glow), 0 4px 16px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--accent);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: 12px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

.btn-pulse {
  animation: pulse 3s ease-in-out infinite;
}

.btn-pulse:hover {
  animation: none;
}

/* --- Cards --- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px var(--accent-glow);
  border-color: rgba(61, 110, 255, 0.25);
}

/* --- Badge --- */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

.badge-accent {
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid rgba(61, 110, 255, 0.2);
}

.badge-gold {
  background: rgba(245, 200, 66, 0.12);
  color: var(--gold);
  border: 1px solid rgba(245, 200, 66, 0.2);
}

/* ========================================
   HEADER / NAV
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.35s ease;
}

.site-header.scrolled {
  background: rgba(15, 17, 23, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

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

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-actions .btn {
  font-size: 0.88rem;
  padding: 10px 22px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 17, 23, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--text-primary);
}

.mobile-nav .btn {
  margin-top: 12px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(61, 110, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(61, 110, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: url('assets/noise.svg') repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.1); }
  50% { transform: translate(-30px, 50px) scale(0.95); }
  75% { transform: translate(40px, 20px) scale(1.05); }
}

@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 30px) scale(1.08); }
  66% { transform: translate(40px, -60px) scale(0.92); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(61, 110, 255, 0.1);
  top: -10%;
  left: 10%;
  animation: orbDrift1 22s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.07);
  bottom: 0;
  right: 5%;
  animation: orbDrift2 18s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(61, 110, 255, 0.06);
  top: 40%;
  right: 30%;
  animation: orbDrift1 25s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .accent-word {
  background: linear-gradient(135deg, var(--accent), #7B9FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-micro {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* Trust signals */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* Dashboard Mockup */
.hero-dashboard {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  perspective: 1200px;
}

.dashboard-frame {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transform: rotateX(4deg);
  transition: transform 0.6s ease;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 60px var(--accent-glow);
}

.dashboard-frame:hover {
  transform: rotateX(1deg);
}

.dashboard-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.chrome-dot.red { background: #FF5F57; }
.chrome-dot.yellow { background: #FEBC2E; }
.chrome-dot.green { background: #28C840; }

.dashboard-body {
  padding: 28px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dash-stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 18px 16px;
}

.dash-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.dash-stat-value {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--text-primary);
}

.dash-stat-value.success { color: var(--success); }
.dash-stat-value.warning { color: var(--warning); }
.dash-stat-value.accent { color: var(--accent); }

.dash-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Mini pipeline */
.dash-pipeline {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 18px;
}

.dash-pipeline-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.pipeline-cols {
  display: flex;
  gap: 8px;
}

.pipeline-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pipeline-col-header {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 0;
  text-align: center;
  border-radius: 4px;
  color: #fff;
}

.pipeline-col-header.col-new { background: var(--accent); }
.pipeline-col-header.col-contacted { background: #7C3AED; }
.pipeline-col-header.col-trial { background: var(--warning); }
.pipeline-col-header.col-converted { background: var(--success); }

.pipeline-card-mini {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* Mini chart */
.dash-chart {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 18px;
}

.dash-chart-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), rgba(61, 110, 255, 0.4));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
  transition: height 0.8s ease;
}

.chart-bar-labels {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.chart-bar-labels span {
  flex: 1;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: center;
}

/* ========================================
   PAIN SECTION
   ======================================== */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  text-align: center;
}

.pain-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--accent-subtle);
  border: 1px solid rgba(61, 110, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.pain-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.pain-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.pain-stat {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--warning);
  padding: 10px 16px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 8px;
  display: inline-block;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
}

.comparison-before,
.comparison-after {
  padding: 36px;
  border-radius: 14px;
}

.comparison-before {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  opacity: 0.7;
}

.comparison-after {
  background: var(--bg-surface);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.08);
}

.comparison-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.comparison-before .comparison-label { color: var(--danger); }
.comparison-after .comparison-label { color: var(--success); }

.tool-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.tool-item .cost {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--danger);
}

.tool-item .x-mark {
  color: var(--danger);
  font-weight: 700;
}

.after-content {
  text-align: center;
}

.after-content .after-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.after-content .after-price {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  color: var(--success);
  margin-bottom: 4px;
}

.after-content .after-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-arrow svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.tool-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 6px;
  font-weight: 600;
  font-size: 0.92rem;
}

.tool-total .cost {
  font-family: var(--font-mono);
  color: var(--danger);
}

/* Feature ribbon */
.feature-ribbon-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

.feature-ribbon-wrap::-webkit-scrollbar { display: none; }

.feature-ribbon {
  display: flex;
  gap: 12px;
  scroll-snap-type: x mandatory;
  min-width: max-content;
  justify-content: center;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  scroll-snap-align: start;
  white-space: nowrap;
  transition: all 0.2s;
}

.ribbon-item:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.ribbon-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ========================================
   FEATURES TABS
   ======================================== */
.features-tabs-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 6px;
}

.tab-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: var(--bg-hover);
}

.tab-btn.active {
  background: var(--accent);
  color: #fff;
}

.tab-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tab-panel.active {
  display: block;
  opacity: 1;
}

.tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tab-text h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 16px;
}

.tab-text > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.tab-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tab-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

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

/* Tab mockup visuals */
.tab-visual {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.mockup-member-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.member-avatar {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.member-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.member-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.member-detail {
  font-size: 0.78rem;
  padding: 4px 10px;
  background: var(--bg-elevated);
  border-radius: 6px;
  color: var(--text-secondary);
}

.member-heat-cal {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}

.heat-cell {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--bg-elevated);
}

.heat-cell.low { background: rgba(61, 110, 255, 0.2); }
.heat-cell.med { background: rgba(61, 110, 255, 0.45); }
.heat-cell.high { background: rgba(61, 110, 255, 0.75); }

/* Billing mockup */
.billing-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.billing-stat {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 16px;
}

.billing-stat .b-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.billing-stat .b-value {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 500;
}

/* Pipeline mockup */
.pipeline-mockup {
  display: flex;
  gap: 10px;
}

.pipeline-mockup-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm-col-header {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 6px;
  text-align: center;
  color: #fff;
}

.pm-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 12px;
}

.pm-card-name {
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.pm-card-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.pm-convert-btn {
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Automation mockup */
.auto-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.auto-node {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  width: 100%;
  max-width: 280px;
}

.auto-node.trigger {
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 500;
}

.auto-node.action {
  border-color: var(--success);
}

.auto-connector {
  width: 2px;
  height: 20px;
  background: var(--border-strong);
}

.auto-branch {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  max-width: 340px;
}

.auto-branch-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.auto-branch-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 0;
}

.auto-branch-label.yes {
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
}

.auto-branch-label.no {
  color: var(--danger);
  background: rgba(239, 68, 68, 0.1);
}

/* Analytics mockup */
.analytics-mockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.analytics-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 16px;
}

.analytics-card .a-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.analytics-card .a-value {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 500;
}

.decision-badge {
  grid-column: span 2;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.decision-badge .d-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.decision-badge .d-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--success);
}

/* Community mockup */
.community-mockup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.community-post {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 16px;
}

.community-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.community-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.community-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.community-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: auto;
}

.community-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.community-reactions {
  display: flex;
  gap: 12px;
}

.community-reaction {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-unlock {
  background: var(--accent-subtle);
  border: 1px solid rgba(61, 110, 255, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-unlock-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #D4A017);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-unlock-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.badge-unlock-text strong {
  color: var(--gold);
}

/* Kiosk mockup */
.kiosk-frame {
  background: #000;
  border-radius: 24px;
  padding: 16px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.kiosk-screen {
  background: var(--bg-surface);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.kiosk-member-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7C3AED);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.kiosk-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.kiosk-rank {
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.kiosk-checkin-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--success);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

/* Retail mockup */
.retail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.retail-product {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.retail-product-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-base);
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.retail-product-name {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.retail-product-price {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--success);
  margin-bottom: 8px;
}

.retail-add-btn {
  display: block;
  width: 100%;
  padding: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-placeholder {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 8px;
  opacity: 0.6;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}

.proof-stat-value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 4px;
}

.proof-stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ========================================
   PRICING
   ======================================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.pricing-toggle span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.pricing-toggle span.active {
  color: var(--text-primary);
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.toggle-switch.annual::after {
  transform: translateX(24px);
}

.save-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(245, 200, 66, 0.12);
  color: var(--gold);
  border: 1px solid rgba(245, 200, 66, 0.2);
  opacity: 0;
  transition: opacity 0.3s;
}

.save-badge.show {
  opacity: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.pricing-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}

.pricing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

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

.pricing-amount {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--text-primary);
  transition: opacity 0.2s;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 12px 0 24px;
  line-height: 1.55;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-feature svg {
  flex-shrink: 0;
  color: var(--success);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* All features list */
.all-features {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
}

.all-features h3 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.15rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feature-item svg {
  flex-shrink: 0;
  color: var(--success);
  width: 16px;
  height: 16px;
}

.pricing-micro {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(61, 110, 255, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ========================================
   FINAL CTA
   ======================================== */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(61, 110, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  position: relative;
  z-index: 1;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 16px auto 36px;
  line-height: 1.7;
}

.cta-micro {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.cta-checklist {
  max-width: 400px;
  margin: 48px auto 0;
  text-align: left;
}

.cta-checklist h4 {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.cta-checklist ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.cta-checklist li svg {
  flex-shrink: 0;
  color: var(--success);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.footer-logo img {
  height: 28px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- Demo Video Modal --- */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.demo-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.demo-modal-container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 860px;
  transform: scale(0.92) translateY(24px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-modal.is-open .demo-modal-container {
  transform: scale(1) translateY(0);
}

.demo-modal-window {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 0 0 1px rgba(61, 110, 255, 0.06),
    0 24px 80px -12px rgba(0, 0, 0, 0.7),
    0 0 120px -20px rgba(61, 110, 255, 0.12);
}

.demo-modal-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
}

.chrome-dots {
  display: flex;
  gap: 7px;
}

.chrome-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }

.chrome-title {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.01em;
}

.demo-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.demo-modal-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.demo-modal-body {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-base);
  overflow: hidden;
}

/* Placeholder state */
.demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(61, 110, 255, 0.06) 0%, transparent 70%),
    var(--bg-base);
}

.demo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h20v20H0V0zm20 20h20v20H20V20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.demo-placeholder-icon {
  position: relative;
}

.demo-play-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(61, 110, 255, 0.08);
  border: 1.5px solid rgba(61, 110, 255, 0.2);
  color: var(--accent);
  animation: demo-ring-pulse 3s ease-in-out infinite;
}

.demo-play-ring svg {
  margin-left: 4px;
}

@keyframes demo-ring-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(61, 110, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(61, 110, 255, 0);
  }
}

.demo-placeholder-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.demo-placeholder-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 380px;
  line-height: 1.6;
}

/* Video embed state (use later) */
.demo-modal-body iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .tab-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .pain-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-arrow {
    transform: rotate(90deg);
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .trust-bar {
    flex-direction: column;
    gap: 12px;
  }

  .proof-stats {
    gap: 24px;
  }

  .features-tabs-nav {
    gap: 2px;
    padding: 4px;
  }

  .tab-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .dash-lower {
    grid-template-columns: 1fr;
  }

  .pipeline-cols {
    flex-wrap: wrap;
  }

  .pipeline-col {
    min-width: 45%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .demo-modal-container {
    width: 95%;
  }

  .demo-modal-chrome {
    padding: 12px 16px;
  }

  .chrome-title {
    font-size: 0.72rem;
  }

  .demo-play-ring {
    width: 72px;
    height: 72px;
  }

  .demo-play-ring svg {
    width: 36px;
    height: 36px;
  }

  .demo-placeholder-title {
    font-size: 1.05rem;
  }

  .demo-placeholder-sub {
    font-size: 0.82rem;
  }

  .billing-mockup-grid {
    grid-template-columns: 1fr;
  }

  .analytics-mockup {
    grid-template-columns: 1fr;
  }

  .analytics-mockup .decision-badge {
    grid-column: span 1;
  }

  .pipeline-mockup {
    flex-wrap: wrap;
  }

  .pipeline-mockup-col {
    min-width: 45%;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .all-features {
    padding: 24px;
  }

  .dash-stats {
    grid-template-columns: 1fr;
  }

  .feature-ribbon {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
}
