﻿/* IronSync Partners — Presentation Deck
   Visual language: Stripe / Linear / Vercel / Notion */

:root {
  --bg: #0F1115;
  --bg-elevated: #151820;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #F4F6FA;
  --muted: #8B93A7;
  --accent: #F97316;
  --accent-bright: #FB923C;
  --accent-glow: rgba(249, 115, 22, 0.45);
  --accent-soft: rgba(249, 115, 22, 0.12);
  --gold: #F5C542;
  --silver: #C0C7D4;
  --bronze: #CD7F32;
  --ok: #34D399;
  --danger: #F87171;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button, input {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* —— Deck shell —— */
.deck {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--bg);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.06);
}

.progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #FDBA74);
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 0.45s var(--ease);
}

.chrome {
  position: fixed;
  top: 18px;
  left: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.chrome__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chrome__logo {
  height: 22px;
  width: auto;
  opacity: 0.9;
}

.chrome__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  padding: 4px 8px;
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 999px;
  background: var(--accent-soft);
}

.chrome__counter {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

/* —— Slides —— */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    visibility 0.55s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 48px 96px;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.slide.is-exit {
  opacity: 0;
  transform: translateY(-10px) scale(0.99);
}

.slide__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(249, 115, 22, 0.08), transparent 50%);
}

.slide__bg--mesh {
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(249, 115, 22, 0.22), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(251, 146, 60, 0.1), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(249, 115, 22, 0.12), transparent 30%),
    linear-gradient(180deg, #0F1115 0%, #0B0D11 100%);
}

.slide__bg--mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black, transparent);
  opacity: 0.5;
}

.slide__bg--radial {
  background:
    radial-gradient(circle at 50% 45%, rgba(249, 115, 22, 0.28), transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(249, 115, 22, 0.08), transparent 40%);
}

.slide__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.slide__inner--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide__inner--split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

/* —— Typography —— */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 14px;
}

.title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.headline-xl {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  line-height: 1.55;
  max-width: 36em;
  margin-bottom: 36px;
  font-weight: 400;
}

.lead--narrow {
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}

.text-gradient {
  background: linear-gradient(120deg, #FDBA74 0%, #FB923C 45%, #F97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footnote {
  margin-top: 36px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.neon-text {
  color: #FDBA74;
  text-shadow: 0 0 18px rgba(251, 146, 60, 0.45);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.slide.is-active .reveal {
  opacity: 1;
  transform: none;
}

.slide.is-active .delay-1 { transition-delay: 0.08s; }
.slide.is-active .delay-2 { transition-delay: 0.16s; }
.slide.is-active .delay-3 { transition-delay: 0.24s; }
.slide.is-active .delay-4 { transition-delay: 0.32s; }
.slide.is-active .delay-5 { transition-delay: 0.4s; }
.slide.is-active .delay-6 { transition-delay: 0.48s; }

/* —— Cover —— */
.cover {
  position: relative;
  padding: 40px 20px;
}

.cover__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.cover__logo {
  height: 48px;
  width: auto;
  margin-bottom: 28px;
  position: relative;
}

.cover__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-bottom: 24px;
  position: relative;
}

.cover__sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 28em;
  margin: 0 auto 36px;
  line-height: 1.5;
  position: relative;
}

.cover__line {
  width: 64px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  box-shadow: 0 0 16px var(--accent-glow);
}

/* —— Reason cards —— */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.reason-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.reason-card:hover {
  border-color: rgba(251, 146, 60, 0.4);
  background: rgba(249, 115, 22, 0.06);
  transform: translateY(-3px);
}

.reason-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
  margin-bottom: 18px;
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.15);
}

.reason-card__icon svg {
  width: 22px;
  height: 22px;
}

.reason-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.reason-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* —— Feature pills + mockups —— */
.feature-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-pills li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.88rem;
  font-weight: 500;
  color: #C8D0E0;
}

.feature-pills li:nth-child(odd) {
  border-color: rgba(251, 146, 60, 0.35);
  background: var(--accent-soft);
  color: #FED7AA;
}

.mock-stage {
  position: relative;
  height: 420px;
  perspective: 1200px;
}

.mock-desktop {
  position: absolute;
  left: 0;
  top: 20px;
  width: 92%;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: #12151C;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(249, 115, 22, 0.12);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.6s var(--ease);
}

.slide.is-active .mock-desktop {
  transform: rotateY(-4deg) rotateX(2deg);
}

.mock-desktop__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0C0E13;
  border-bottom: 1px solid var(--border);
}

.mock-desktop__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3A3F4B;
}

.mock-desktop__bar span:nth-child(1) { background: #EF4444; }
.mock-desktop__bar span:nth-child(2) { background: #EAB308; }
.mock-desktop__bar span:nth-child(3) { background: #22C55E; }

.mock-desktop__url {
  margin-left: 12px;
  flex: 1;
  font-size: 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 4px 10px;
}

.mock-desktop__body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 300px;
}

.mock-nav {
  background: #0C0E13;
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-nav__logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #FDBA74);
  margin-bottom: 8px;
  box-shadow: 0 0 16px var(--accent-glow);
}

.mock-nav__item {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-nav__item.is-active {
  background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-glow);
}

.mock-main {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}

.mock-stat__label {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
}

.mock-stat__value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #E8EEF9;
}

.mock-chart {
  height: 90px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(249, 115, 22, 0.04);
  overflow: hidden;
  padding: 8px;
}

.mock-chart svg {
  width: 100%;
  height: 100%;
}

.mock-chart__line {
  filter: drop-shadow(0 0 4px rgba(251, 146, 60, 0.8));
}

.slide.is-active .mock-chart__line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 1.4s var(--ease) 0.4s forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.mock-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-row {
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
}

.mock-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 148px;
  height: 300px;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #0A0C10;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(249, 115, 22, 0.2);
  padding: 10px 8px;
  transform: translateY(20px) rotate(4deg);
  transition: transform 0.7s var(--ease);
}

.slide.is-active .mock-phone {
  transform: translateY(0) rotate(3deg);
}

.mock-phone__notch {
  width: 48px;
  height: 6px;
  border-radius: 999px;
  background: #1A1E28;
  margin: 4px auto 12px;
}

.mock-phone__screen {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: calc(100% - 20px);
}

.mock-phone__header {
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.5), rgba(251, 146, 60, 0.2));
}

.mock-phone__card {
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.mock-phone__card--accent {
  background: rgba(249, 115, 22, 0.2);
  border-color: rgba(251, 146, 60, 0.35);
  box-shadow: inset 0 0 20px rgba(249, 115, 22, 0.15);
}

.mock-phone__bars {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  padding: 4px;
}

.mock-phone__bars span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #FDBA74, #F97316);
  box-shadow: 0 0 10px rgba(251, 146, 60, 0.4);
  opacity: 0;
  transform: scaleY(0.3);
  transform-origin: bottom;
}

.slide.is-active .mock-phone__bars span {
  animation: barUp 0.7s var(--ease) forwards;
}

.slide.is-active .mock-phone__bars span:nth-child(1) { animation-delay: 0.5s; }
.slide.is-active .mock-phone__bars span:nth-child(2) { animation-delay: 0.6s; }
.slide.is-active .mock-phone__bars span:nth-child(3) { animation-delay: 0.7s; }
.slide.is-active .mock-phone__bars span:nth-child(4) { animation-delay: 0.8s; }

@keyframes barUp {
  to { opacity: 1; transform: scaleY(1); }
}

/* —— Flow —— */
.flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.flow__step {
  flex: 1 1 140px;
  max-width: 170px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  position: relative;
}

.flow__step--highlight {
  border-color: rgba(251, 146, 60, 0.5);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0.04));
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
}

.flow__num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin-bottom: 12px;
}

.flow__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
}

.flow__icon svg {
  width: 22px;
  height: 22px;
}

.flow__step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.flow__arrow {
  width: 28px;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  position: relative;
  flex: 0 0 28px;
}

.flow__arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--accent-bright);
}

/* —— Recurring —— */
.recurring-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.recurring-pair__item {
  min-width: 220px;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.recurring-pair__item.is-muted {
  opacity: 0.55;
}

.recurring-pair__item.is-glow {
  border-color: rgba(251, 146, 60, 0.5);
  background: rgba(249, 115, 22, 0.12);
  box-shadow: 0 0 50px rgba(249, 115, 22, 0.25);
}

.recurring-pair__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 10px;
  font-weight: 600;
}

.recurring-pair__item p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.recurring-pair__divider {
  width: 40px;
  height: 2px;
  background: var(--border-strong);
}

.pulse-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(251, 146, 60, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: pulseRing 3.5s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(0.7); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* —— Tiers —— */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.tier-card {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  text-align: center;
  overflow: hidden;
}

.tier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(205, 127, 50, 0.15), transparent 55%);
  pointer-events: none;
}

.tier-card--mid::before {
  background: radial-gradient(circle at 50% 0%, rgba(192, 199, 212, 0.18), transparent 55%);
}

.tier-card--gold {
  border-color: rgba(251, 146, 60, 0.45);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.tier-card--gold::before {
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.35), transparent 55%);
}

.tier-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
  position: relative;
}

.tier-card--mid .tier-card__badge { color: var(--silver); }
.tier-card--gold .tier-card__badge { color: #FDBA74; }

.tier-card__pct {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
  background: linear-gradient(180deg, #fff, #A5B4C8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tier-card--gold .tier-card__pct {
  background: linear-gradient(180deg, #FFF7ED, #FB923C);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(251, 146, 60, 0.4));
}

.tier-card__range {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
}

.tier-card__bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.tier-card__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #FDBA74);
  box-shadow: 0 0 12px var(--accent-glow);
  transform: scaleX(0);
  transform-origin: left;
}

.slide.is-active .tier-card__bar span {
  animation: fillBar 0.9s var(--ease) 0.35s forwards;
}

@keyframes fillBar {
  to { transform: scaleX(1); }
}

/* —— Earnings —— */
.earnings-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.earnings-note {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-bottom: 6px;
}

.plans-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.plan-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 16px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
  font: inherit;
}

.plan-chip:hover:not(.plan-chip--muted) {
  border-color: rgba(251, 146, 60, 0.45);
  transform: translateY(-2px);
}

.plan-chip.is-active {
  border-color: rgba(251, 146, 60, 0.65);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0.04));
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.2);
}

.plan-chip--muted {
  cursor: default;
  opacity: 0.72;
  background: rgba(255, 255, 255, 0.02);
}

.plan-chip__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.plan-chip__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.plan-chip.is-active .plan-chip__price {
  color: #FDBA74;
  text-shadow: 0 0 16px rgba(251, 146, 60, 0.35);
}

.plan-chip__meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.plan-chip__tag {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.plan-chip--muted .plan-chip__tag {
  color: var(--muted);
}

.plan-chip--muted .plan-chip__price {
  color: var(--muted);
}

.earnings-table__caption {
  padding: 12px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(249, 115, 22, 0.06);
}

.earnings-table__caption strong {
  color: var(--accent-bright);
  font-weight: 600;
}

.earnings-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.earnings-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.earnings-table__head,
.earnings-table__row {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr;
  gap: 12px;
  padding: 16px 22px;
  align-items: center;
}

.earnings-table__head {
  background: rgba(249, 115, 22, 0.1);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.earnings-table__row {
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  transition: background 0.2s;
}

.earnings-table__row:last-child {
  border-bottom: none;
}

.earnings-table__row.is-highlight {
  background: rgba(249, 115, 22, 0.1);
}

.cell-coaches {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
}

.cell-pct {
  color: var(--muted);
}

.earnings-chart {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(249, 115, 22, 0.15), transparent 60%),
    rgba(255, 255, 255, 0.02);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.earnings-chart canvas {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.chart-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .plans-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* —— Timeline —— */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0 28px;
  padding-top: 12px;
}

.timeline__track {
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.2), var(--accent-bright), rgba(249, 115, 22, 0.2));
  box-shadow: 0 0 12px var(--accent-glow);
}

.timeline__item {
  text-align: center;
  position: relative;
  padding-top: 36px;
}

.timeline__dot {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent-bright);
  box-shadow: 0 0 16px var(--accent-glow);
  z-index: 1;
}

.timeline__dot--final {
  background: var(--accent-bright);
  box-shadow: 0 0 24px var(--accent-glow);
}

.timeline__item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.timeline__item p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* —— Tax / withholdings —— */
.tax-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 8px 0 28px;
  flex-wrap: wrap;
}

.tax-flow__step {
  flex: 1 1 180px;
  max-width: 240px;
  text-align: center;
  padding: 24px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.tax-flow__step--warn {
  border-color: rgba(251, 146, 60, 0.4);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.14), rgba(249, 115, 22, 0.03));
  box-shadow: 0 0 36px rgba(249, 115, 22, 0.15);
}

.tax-flow__step--ok {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.1), rgba(255, 255, 255, 0.02));
}

.tax-flow__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
}

.tax-flow__step--ok .tax-flow__icon {
  background: rgba(52, 211, 153, 0.12);
  color: var(--ok);
}

.tax-flow__icon svg {
  width: 22px;
  height: 22px;
}

.tax-flow__step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.tax-flow__step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.tax-flow__arrow {
  width: 28px;
  align-self: center;
  height: 2px;
  flex: 0 0 28px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  position: relative;
}

.tax-flow__arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--accent-bright);
}

.tax-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.tax-card {
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.tax-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--accent-bright);
}

.tax-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.lead strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 980px) {
  .tax-flow__arrow {
    display: none;
  }

  .tax-cards {
    grid-template-columns: 1fr;
  }
}

/* —— Callout —— */
.callout {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 14px;
  border: 1px solid rgba(251, 146, 60, 0.35);
  background: var(--accent-soft);
  color: #FFEDD5;
  max-width: 100%;
}

.callout svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent-bright);
}

.callout strong {
  color: #fff;
  font-weight: 600;
}

/* —— Rules —— */
.rules {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}

.rule {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.rule__check {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 153, 0.12);
  color: var(--ok);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.15);
}

.rule__check svg {
  width: 18px;
  height: 18px;
}

.rule h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.rule p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* —— Impact —— */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.impact-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(248, 113, 113, 0.18);
  background: linear-gradient(180deg, rgba(248, 113, 113, 0.06), rgba(255, 255, 255, 0.02));
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.impact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 113, 113, 0.4);
}

.impact-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(248, 113, 113, 0.1);
  color: var(--danger);
}

.impact-card__icon svg {
  width: 20px;
  height: 20px;
}

.impact-card h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* —— Transparency visual —— */
.transparency-visual {
  width: min(480px, 100%);
  margin-top: 28px;
}

.tv-bar {
  position: relative;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.tv-bar__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.3), var(--accent-bright));
  box-shadow: 0 0 30px var(--accent-glow);
}

.slide.is-active .tv-bar__fill {
  animation: fillWide 1.2s var(--ease) 0.4s forwards;
}

@keyframes fillWide {
  to { width: 100%; }
}

.tv-bar__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  z-index: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* —— Why cards —— */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.why-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.why-card--wide {
  grid-column: span 4;
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.02));
  border-color: rgba(251, 146, 60, 0.3);
}

.why-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.why-card--wide .why-card__icon {
  margin-bottom: 0;
}

.why-card__icon svg {
  width: 20px;
  height: 20px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* —— Start steps —— */
.start-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 12px;
  counter-reset: step;
}

.start-step {
  position: relative;
  padding: 28px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
}

.start-step::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -10px;
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-bright), transparent);
  z-index: 1;
}

.start-step:last-child::after {
  display: none;
}

.start-step__n {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow);
}

.start-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.start-step p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

/* —— CTA —— */
.cta__logo {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}

.cta__sub {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 36px;
}

.cta-panel {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 28px 32px;
  border-radius: 24px;
  border: 1px solid rgba(251, 146, 60, 0.35);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(249, 115, 22, 0.2), transparent 50%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.15);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-qr img {
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: #0F1115;
  padding: 8px;
}

.cta-qr span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.cta-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.cta-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.cta-link:hover {
  border-color: rgba(251, 146, 60, 0.5);
  background: var(--accent-soft);
  transform: translateX(4px);
}

.cta-link svg {
  width: 22px;
  height: 22px;
  color: var(--accent-bright);
  flex-shrink: 0;
}

.cta-link strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.cta-link span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* —— Controls —— */
.nav-controls {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 17, 21, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.nav-btn:hover:not(:disabled) {
  background: var(--accent-soft);
  border-color: rgba(251, 146, 60, 0.5);
}

.nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.nav-btn svg {
  width: 16px;
  height: 16px;
}

.nav-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: width 0.25s, background 0.25s, box-shadow 0.25s;
}

.nav-dot.is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-glow);
}

.hint {
  position: fixed;
  bottom: 34px;
  right: 28px;
  z-index: 80;
  font-size: 11px;
  color: rgba(139, 147, 167, 0.7);
  letter-spacing: 0.04em;
  pointer-events: none;
  transition: opacity 0.5s;
}

.hint.is-hidden {
  opacity: 0;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .slide {
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(56px + env(safe-area-inset-top, 0px)) 20px calc(96px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .slide__inner {
    width: 100%;
    padding-bottom: 8px;
  }

  .slide__inner--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .slide__inner--center {
    min-height: auto;
    padding-top: 24px;
  }

  .title {
    font-size: clamp(1.65rem, 6.5vw, 2.4rem);
    margin-bottom: 12px;
  }

  .headline-xl {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  .cover {
    padding: 24px 0 12px;
  }

  .cover__logo {
    height: 36px;
    margin-bottom: 20px;
  }

  .cover__title {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    margin-bottom: 16px;
  }

  .cover__sub {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }

  .cover__glow {
    width: 280px;
    height: 280px;
  }

  .mock-stage {
    height: auto;
    min-height: 260px;
    margin: 0 auto;
    max-width: 420px;
  }

  .mock-desktop {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .slide.is-active .mock-desktop {
    transform: none;
  }

  .mock-phone {
    display: none;
  }

  .reason-grid,
  .tier-grid,
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reason-card,
  .tier-card {
    padding: 22px 18px;
  }

  .tier-card--gold {
    transform: none;
  }

  .tier-card__pct {
    font-size: 2.8rem;
  }

  .flow {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .flow__step {
    max-width: none;
    flex: none;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 14px 16px;
  }

  .flow__num {
    margin-bottom: 0;
  }

  .flow__icon {
    width: 36px;
    height: 36px;
    margin: 0;
  }

  .flow__icon svg {
    width: 18px;
    height: 18px;
  }

  .flow__step h3 {
    font-size: 0.95rem;
  }

  .flow__arrow {
    display: none;
  }

  .recurring-pair {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .recurring-pair__item {
    min-width: 0;
    width: 100%;
    padding: 20px;
  }

  .recurring-pair__divider {
    width: 2px;
    height: 24px;
  }

  .pulse-ring {
    display: none;
  }

  .earnings-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
  }

  .earnings-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .earnings-table__head,
  .earnings-table__row {
    grid-template-columns: 0.85fr 0.7fr 1.2fr;
    gap: 8px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .earnings-table__head {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .earnings-table__caption {
    padding: 10px 14px;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .cell-coaches {
    font-size: 1.05rem;
  }

  .plans-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .plan-chip {
    padding: 12px;
  }

  .plan-chip__price {
    font-size: 1.1rem;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
  }

  .timeline__track {
    display: none;
  }

  .timeline__item {
    text-align: left;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
  }

  .timeline__dot {
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .why-card {
    padding: 16px 14px;
  }

  .why-card--wide {
    grid-column: span 2;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .start-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .start-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    text-align: left;
    padding: 16px;
    align-items: center;
  }

  .start-step__n {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .start-step::after {
    display: none;
  }

  .feature-pills {
    gap: 8px;
  }

  .feature-pills li {
    padding: 7px 12px;
    font-size: 0.82rem;
  }

  .rules {
    gap: 10px;
  }

  .rule {
    padding: 16px;
    gap: 14px;
  }

  .callout {
    width: 100%;
    align-items: flex-start;
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .tax-flow {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }

  .tax-flow__step {
    max-width: none;
  }

  .tax-flow__arrow {
    display: none;
  }

  .tax-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .cta__logo {
    height: 32px;
    margin-bottom: 16px;
  }

  .cta__sub {
    margin-bottom: 24px;
  }

  .cta-panel {
    flex-direction: column;
    gap: 20px;
    padding: 20px 16px;
    width: 100%;
  }

  .cta-qr img {
    width: 140px;
    height: 140px;
  }

  .cta-links {
    width: 100%;
    min-width: 0;
  }

  .chrome {
    top: calc(10px + env(safe-area-inset-top, 0px));
    left: 14px;
    right: 14px;
  }

  .chrome__logo {
    height: 18px;
  }

  .chrome__label {
    font-size: 9px;
    padding: 3px 7px;
  }

  .chrome__counter {
    font-size: 12px;
  }

  .hint {
    display: none;
  }

  .nav-controls {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
    padding: 6px 10px;
    max-width: calc(100vw - 24px);
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .nav-dots {
    max-width: min(180px, 42vw);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 5px;
  }

  .nav-dots::-webkit-scrollbar {
    display: none;
  }

  .footnote {
    margin-top: 20px;
    font-size: 0.88rem;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .slide {
    padding: calc(52px + env(safe-area-inset-top, 0px)) 14px calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card--wide {
    grid-column: span 1;
  }

  .plans-strip {
    grid-template-columns: 1fr 1fr;
  }

  .plan-chip__name {
    font-size: 0.85rem;
  }

  .plan-chip__price {
    font-size: 1rem;
  }

  .plan-chip__meta,
  .plan-chip__tag {
    font-size: 0.72rem;
  }

  .plan-chip__tag {
    letter-spacing: 0.06em;
  }

  .earnings-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .earnings-table__head,
  .earnings-table__row {
    min-width: 300px;
  }

  .cover__title {
    font-size: clamp(2.1rem, 12vw, 2.8rem);
  }

  .recurring-pair__item p {
    font-size: 1.15rem;
  }

  .mock-desktop__body {
    min-height: 220px;
  }

  .mock-stats {
    gap: 6px;
  }

  .mock-stat {
    padding: 8px;
  }

  .mock-stat__value {
    font-size: 0.9rem;
  }

  .nav-dots {
    display: none;
  }

  .cta-panel {
    padding: 16px 14px;
  }

  .impact-card h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .plans-strip {
    grid-template-columns: 1fr;
  }

  .earnings-table__head span:nth-child(2),
  .earnings-table__row .cell-pct {
    display: none;
  }

  .earnings-table__head,
  .earnings-table__row {
    grid-template-columns: 0.9fr 1.2fr;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
