/* ══════════════════════════════════════════════════
   PeakCart — Light Editorial Design System (2026)
   v2: visual richness + animated data viz + refined typography
   ══════════════════════════════════════════════════ */

:root {
  --bg: #FFFFFF;
  --bg-soft: #FAF9F7;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F5F3F0;
  --border: #ECEAE6;
  --border-strong: #DDD9D3;
  --text: #1A1814;
  --text-soft: #56524C;
  --text-muted: #8B8680;
  --accent: #E84520;
  --accent-btn: #C93A18;
  --accent-hover: #B83316;
  --accent-soft: #FFF1ED;
  --success: #1F9D57;
  --success-bg: #EEFBF3;

  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-w: 1200px;
  --side-pad: clamp(16px, 4vw, 24px);
  --section-pad: clamp(64px, 10vw, 100px);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 1px 3px rgba(0,0,0,.04), 0 12px 32px -12px rgba(0,0,0,.08);
  --shadow-lg: 0 1px 3px rgba(0,0,0,.04), 0 24px 48px -12px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding-top: 64px;
}
body.drawer-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ── Typography (refined) ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}
h1 { font-size: clamp(42px, 6vw, 76px); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 4.5vw, 48px); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
p { max-width: 72ch; }

/* ── Layout ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad); }
.section { padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.section--soft { background: var(--bg-soft); }
.section--accent { background: var(--accent-soft); }
.section--dots { background-image: radial-gradient(circle, var(--border) 1px, transparent 1px); background-size: 24px 24px; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── Subhead ── */
.subhead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 600px;
  margin-top: 16px;
}
.subhead.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent-btn);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 58, 24, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--text-muted);
  background: var(--bg-soft);
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ── Bento Grid ── */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bento-card--alt { background: var(--bg-card-alt); }
.bento-card--accent { background: var(--accent-soft); border-color: rgba(232,69,32,0.12); }
.bento-card--stat { display: flex; flex-direction: column; justify-content: center; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.row-2 { grid-row: span 2; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .col-3, .col-4, .col-6 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  [class*="col-"] { grid-column: span 1; }
}

/* ── Cards (classic) ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h4 { margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: 14px; line-height: 1.55; }

/* ── Grids (classic) ── */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── Feature Row ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.feature-row:first-child { border-top: none; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-media { order: 1; }
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .feature-row.reverse .feature-text, .feature-row.reverse .feature-media { order: unset; }
}
.feature-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Checklist ── */
.checklist { list-style: none; margin-top: 16px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 8px;
  line-height: 1.5;
}
.checklist li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Screenshot Framing (LIGHT) ── */
.browser-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.browser-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }
.browser-url {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex: 1;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.browser-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
}
.shot-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shot-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.shot-card img { display: block; width: 100%; height: auto; object-fit: contain; aspect-ratio: auto; }
.shot-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* ── Stats ── */
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.stat-num.orange { color: var(--accent); }
.stat-label {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 8px;
  line-height: 1.4;
}

/* ═══ ANIMATED DATA VIZ ═══ */

/* Line chart draw */
.viz-line { stroke-dasharray: 1000; stroke-dashoffset: 1000; transition: stroke-dashoffset 1.6s cubic-bezier(0.4, 0, 0.2, 1); }
.viz-line.animate { stroke-dashoffset: 0; }

/* Bar grow */
.viz-bar { transform-origin: bottom; transform: scaleY(0); transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.viz-bar.animate { transform: scaleY(1); }
.viz-bar:nth-child(2) { transition-delay: 0.1s; }
.viz-bar:nth-child(3) { transition-delay: 0.2s; }
.viz-bar:nth-child(4) { transition-delay: 0.3s; }
.viz-bar:nth-child(5) { transition-delay: 0.4s; }

/* Ring fill */
.viz-ring { stroke-dasharray: 314; stroke-dashoffset: 314; transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s; stroke-linecap: round; }
.viz-ring.animate { stroke-dashoffset: calc(314 - var(--fill, 0)); }

/* Gauge arc */
.viz-gauge-arc { stroke-dasharray: 157; stroke-dashoffset: 157; transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s; stroke-linecap: round; }
.viz-gauge-arc.animate { stroke-dashoffset: calc(157 - var(--fill, 0)); }

/* Pulse dot (India map) */
.pulse-dot { animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 0.4; r: 3; }
  50% { opacity: 1; r: 5; }
}
.pulse-dot:nth-child(2n) { animation-delay: 0.8s; }
.pulse-dot:nth-child(3n) { animation-delay: 1.6s; }

/* Funnel step */
.viz-funnel-bar { transform-origin: left; transform: scaleX(0); transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.viz-funnel-bar.animate { transform: scaleX(1); }
.viz-funnel-bar:nth-child(2) { transition-delay: 0.15s; }
.viz-funnel-bar:nth-child(3) { transition-delay: 0.3s; }
.viz-funnel-bar:nth-child(4) { transition-delay: 0.45s; }

/* Floating decorative shapes */
.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
  animation: floatDrift 20s ease-in-out infinite alternate;
}
.float-shape--1 { width: 300px; height: 300px; background: var(--accent); top: -80px; right: -100px; animation-duration: 18s; }
.float-shape--2 { width: 200px; height: 200px; background: var(--accent); bottom: -60px; left: -60px; animation-duration: 22s; animation-delay: -5s; }
@keyframes floatDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(15px, -20px) scale(1.06); }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.06s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.18s; }
.stagger-4 { transition-delay: 0.24s; }
.stagger-5 { transition-delay: 0.30s; }
.stagger-6 { transition-delay: 0.36s; }

/* Hero entrance */
.hero-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-stagger > *:nth-child(1) { animation-delay: 0s; }
.hero-stagger > *:nth-child(2) { animation-delay: 0.08s; }
.hero-stagger > *:nth-child(3) { animation-delay: 0.16s; }
.hero-stagger > *:nth-child(4) { animation-delay: 0.24s; }
.hero-stagger > *:nth-child(5) { animation-delay: 0.32s; }
.hero-stagger > *:nth-child(6) { animation-delay: 0.40s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* Hero gradient mesh */
.hero-mesh {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  background: radial-gradient(ellipse at 25% 20%, rgba(232,69,32,0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 80%, rgba(255,106,71,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(255,180,120,0.04) 0%, transparent 60%);
  animation: meshDrift 16s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshDrift {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(10px, -8px) scale(1.02) rotate(0.5deg); }
  100% { transform: translate(20px, -15px) scale(1.04) rotate(0deg); }
}

/* ── Microcopy ── */
.microcopy { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.green-tick::before { content: '✓ '; color: var(--success); font-weight: 700; }

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-stagger > * { opacity: 1; transform: none; animation: none; }
  .hero-mesh { animation: none; }
  .float-shape { animation: none; }
  .card, .bento-card, .browser-frame, .shot-card { transition: none; }
  .viz-line { stroke-dashoffset: 0; transition: none; }
  .viz-bar { transform: scaleY(1); transition: none; }
  .viz-ring { stroke-dashoffset: calc(314 - var(--fill, 0)); transition: none; }
  .viz-gauge-arc { stroke-dashoffset: calc(157 - var(--fill, 0)); transition: none; }
  .viz-funnel-bar { transform: scaleX(1); transition: none; }
  .pulse-dot { animation: none; opacity: 0.7; }
}

/* ── Responsive ── */
@media (max-width: 900px) { .section { padding: clamp(48px, 8vw, 64px) 0; } }
@media (max-width: 480px) { .browser-url { display: none; } }
@media (max-width: 600px) { .feature-row { padding: 32px 0; gap: 20px; } }


/* ═══ 2.2 Rotating word — smooth crossfade ═══ */
.rotating-word-wrap {
  display: inline-block;
  position: relative;
  color: var(--accent);
  vertical-align: baseline;
}
.rotating-word {
  display: inline-block;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  left: 0;
  white-space: nowrap;
}
.rotating-word.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* ═══ 2.2 Hero stat chips ═══ */
.hero-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  opacity: 0;
  animation: chipPop 0.5s cubic-bezier(.34,1.56,.64,1) forwards;
  animation-delay: var(--delay, 0.8s);
  z-index: 5;
  white-space: nowrap;
}
.chip-1 { top: 15%; left: -60px; }
.chip-2 { top: 40%; right: -50px; }
.chip-3 { bottom: 25%; left: -70px; }
.chip-4 { bottom: 10%; right: -40px; }
@keyframes chipPop {
  from { opacity:0; transform:scale(0.8) translateY(10px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
@media (max-width: 900px) {
  .hero-chip { display: none; }
}

/* ═══ 2.3 Dark manifesto ═══ */
.dark-manifesto {
  background: #0C0B0F;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.dark-manifesto::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,69,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0;
}

/* ═══ 2.4 Ticker strip ═══ */
.ticker-wrap {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, #0C0B0F 0%, transparent 100%); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, #0C0B0F 0%, transparent 100%); }
.ticker-track {
  display: flex;
  gap: 16px;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-chip {
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.ticker-chip.accent { color: var(--accent); border-color: rgba(232,69,32,0.2); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══ 2.1 Calculator ═══ */
.calc-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}
.calc-input-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.calc-revenue-display {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}
.calc-slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border);
  border-radius: 4px;
  outline: none;
  margin: 8px 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232,69,32,0.3);
}
.calc-slider::-moz-range-thumb {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.calc-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 28px;
}
.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.calc-col {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.calc-col--peak { border-color: rgba(232,69,32,0.3); background: rgba(232,69,32,0.03); }
.calc-platform {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-soft);
}
.calc-amount {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc-breakdown span {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.calc-saving-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #C93A18 100%);
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.calc-saving-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.calc-math {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.calc-math summary {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--accent);
}
.calc-math-body {
  padding: 0 16px 16px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.6;
}
.calc-math-body p { margin-bottom: 8px; }
@media (max-width: 600px) {
  .calc-results { grid-template-columns: 1fr; }
  .calc-card { padding: 24px; }
  .calc-amount { font-size: 24px; }
  .calc-saving-num { font-size: 28px; }
}

/* ═══ 2.6 Sticky CTA ═══ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sticky-cta-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.sticky-cta-btns { display: flex; gap: 8px; }
.sticky-cta-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  margin-left: 8px;
}
@media (max-width: 600px) {
  .sticky-cta-text { font-size: 12px; }
  .sticky-cta-inner { padding: 10px 16px; }
}

/* ═══ 2.6 Tilt effect ═══ */
.screenshot-tilt {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  .rotating-word { transition: none; opacity: 0; }
  .rotating-word.active { opacity: 1; }
  .hero-chip { animation: none; opacity: 1; }
  .ticker-track { animation: none; }
  .sticky-cta { transition: none; }
}
