/* ------------------------------------------------------------------
   CueStep — Marketing site
   Mirrors the iOS app's "Threes Style":
   - cream backgrounds
   - chunky 2px-bordered cards with a 4pt offset bottom shadow
   - coral primary, blue secondary, amber accent
   - Plus Jakarta Sans throughout
------------------------------------------------------------------- */

:root {
  /* Brand colors — sourced from CueStepTheme.swift */
  --coral:          #FF4D5E;   /* primary */
  --coral-shadow:   #D43F4D;   /* primaryShadow */
  --blue:           #4DA6FF;   /* secondaryBlue */
  --blue-shadow:    #3D86CC;   /* blueShadow */
  --amber:          #FFB347;   /* favAmber */
  --amber-shadow:   #D9983D;   /* amberShadow */
  --delete:         #FF3B30;   /* deleteRed */

  --bg:             #FDFAF2;   /* backgroundLight */
  --tile:           #FFFCF5;   /* tileCream */
  --tile-border:    #E8E2D2;   /* tileBorder */

  --text-1:         #1E293B;   /* slate-800 */
  --text-2:         #64748B;   /* slate-500 */
  --text-3:         #94A3B8;   /* slate-400 */

  /* Radii — matched to CueStepTheme.cornerRadius* */
  --r-sm:           16px;
  --r:              20px;
  --r-lg:           24px;
  --r-xl:           28px;

  --shadow-h:       4px;       /* shadowHeight */
  --shadow-h-lg:    6px;       /* shadowHeightLarge */

  --font:           'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text-1);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--text-2); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(253, 250, 242, 0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--tile-border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-1);
  letter-spacing: -0.02em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--text-1);
  box-shadow: 0 var(--shadow-h) 0 var(--text-1);
}
.logo-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-bottom: -2px;
}

.nav-links {
  display: none;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a {
  color: var(--text-2);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--coral); }

.nav-cta { padding: 10px 18px; font-size: 14px; }

@media (min-width: 860px) {
  .nav-links { display: flex; }
}

/* ---------- THREES BUTTONS ---------- */
/* Solid block with darker color underneath, offset 4pt down.
   Press = slide down 4pt onto the shadow. */
.threes-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  text-decoration: none;
  user-select: none;
}
.threes-btn:active { transform: translateY(var(--shadow-h)); }

.threes-btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 var(--shadow-h) 0 var(--coral-shadow);
}
.threes-btn-primary:active { box-shadow: 0 0 0 var(--coral-shadow); }

.threes-btn-blue {
  background: var(--blue);
  color: white;
  box-shadow: 0 var(--shadow-h) 0 var(--blue-shadow);
}
.threes-btn-blue:active { box-shadow: 0 0 0 var(--blue-shadow); }

.threes-btn-ghost {
  background: var(--tile);
  color: var(--text-1);
  border: 2px solid var(--tile-border);
  box-shadow: 0 var(--shadow-h) 0 var(--tile-border);
}
.threes-btn-ghost:active { box-shadow: 0 0 0 var(--tile-border); }

.threes-btn-xl {
  padding: 20px 32px;
  font-size: 17px;
  border-radius: var(--r-lg);
}
.threes-btn-full { width: 100%; }

/* small nav button uses the threes shadow too */
.nav-cta {
  position: relative;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 var(--shadow-h) 0 var(--coral-shadow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.nav-cta:active { transform: translateY(var(--shadow-h)); box-shadow: 0 0 0 var(--coral-shadow); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 48px 24px 96px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.08;
  top: -160px;
  right: -160px;
  filter: blur(40px);
}
.hero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.08;
  bottom: -100px;
  left: -100px;
  filter: blur(40px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero { padding: 80px 24px 120px; }
  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tile);
  color: var(--text-2);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--tile-border);
  box-shadow: 0 var(--shadow-h) 0 var(--tile-border);
  margin-bottom: 24px;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 77, 94, 0.7);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255, 77, 94, 0.7); }
  100% { box-shadow: 0 0 0 12px rgba(255, 77, 94, 0);  }
}

.hero-title {
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.text-coral {
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.text-coral::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: var(--amber);
  opacity: 0.4;
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.meta-sources {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.src-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--tile);
  border: 1.5px solid var(--tile-border);
  color: var(--text-2);
}
.src-badge-am    { color: var(--coral); }
.src-badge-yt    { color: var(--delete); }
.src-badge-local { color: var(--amber-shadow); }

.hero-meta-text { color: var(--text-3); font-size: 13px; font-weight: 600; }

/* ---------- PHONE MOCKUP ---------- */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dancer {
  position: absolute;
  width: 280px;
  height: auto;
  right: -40px;
  top: -30px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 960px) {
  .hero-dancer { width: 360px; right: -80px; top: -50px; opacity: 0.15; }
}

.phone {
  position: relative;
  width: 300px;
  height: 610px;
  background: #1a1a1a;
  border-radius: 48px;
  padding: 10px;
  z-index: 2;
  box-shadow:
    0 0 0 2px #000,
    0 0 0 8px #1a1a1a,
    0 28px 50px rgba(30, 41, 59, 0.18),
    0 var(--shadow-h-lg) 0 var(--text-1);
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}
.phone-shadow {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 24px;
  background: rgba(30, 41, 59, 0.18);
  filter: blur(16px);
  border-radius: 50%;
  z-index: 0;
}

@media (min-width: 960px) {
  .phone { width: 330px; height: 680px; }
}

/* ---------- IN-APP UI (mirrors CueTrackDetailView) ---------- */
.app {
  padding: 56px 14px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font);
  color: var(--text-1);
}

/* Header bar: chevron-down · APPLE MUSIC + Now Playing · heart */
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
}
.header-btn {
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid var(--tile-border);
  border-radius: 11px;
  box-shadow: 0 3px 0 var(--tile-border);
  color: var(--text-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.header-btn-fav { color: var(--coral); }
.topbar-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  flex: 1;
  text-align: center;
}
.topbar-eyebrow {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-3);
  text-transform: uppercase;
}
.topbar-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

/* Info card (track artwork + title + coral artist) */
.info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid var(--tile-border);
  border-radius: var(--r);
  padding: 10px;
  box-shadow: 0 var(--shadow-h) 0 var(--tile-border);
}
.info-art {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 77, 94, 0.10);
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.info-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.01em;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.info-artist {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1.15;
}

/* Progress bar (capsule with border, fill, no cue marks) */
.pbar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 2px;
}
.pbar-track {
  position: relative;
  height: 10px;
  background: rgba(232, 226, 210, 0.35);
  border: 2px solid var(--tile-border);
  border-radius: 999px;
  overflow: hidden;
}
.pbar-fill {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  width: 42%;
  background: var(--coral);
  border-radius: 999px;
}
.pbar-times {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
  padding: 0 2px;
}
.pbar-rate { color: var(--coral); font-weight: 800; }

/* Cue points section header */
.cues-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
  margin-top: 2px;
}
.cues-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-3);
}
.cues-add {
  font-size: 11px;
  font-weight: 800;
  color: var(--coral);
}

/* Cue tile stack — alternating blue / red big tiles, each with its own speed grid */
.cue-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.cue-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cue-tile {
  position: relative;
  padding: 12px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 78px;
  color: white;
}
.cue-tile-blue {
  background: var(--blue);
  box-shadow: 0 var(--shadow-h-lg) 0 #1D4ED8;
}
.cue-tile-red {
  background: var(--coral);
  box-shadow: 0 var(--shadow-h-lg) 0 #B91C1C;
}
.cue-tile-num {
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cue-tile-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: auto;
}
.cue-tile-meta strong {
  font-size: 12px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}
.cue-tile-meta small {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  font-variant-numeric: tabular-nums;
}

/* Speed grid below tile */
.cue-speeds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.sp {
  padding: 6px 0;
  background: white;
  border: 1.5px solid var(--tile-border);
  border-radius: 9px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 9px;
  color: var(--text-2);
  cursor: pointer;
  box-shadow: 0 3px 0 var(--tile-border);
}
.sp-active-blue {
  background: var(--blue);
  color: white;
  border-color: #1D4ED8;
  box-shadow: 0 3px 0 #1D4ED8;
}
.sp-active-red {
  background: var(--coral);
  color: white;
  border-color: #B91C1C;
  box-shadow: 0 3px 0 #B91C1C;
}

/* Bottom playback bar: -5s · play · +5s, big chunky buttons */
.bottom-bar {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}
.bb-skip, .bb-play {
  flex: 1;
  height: 42px;
  border-radius: 14px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.bb-skip {
  background: white;
  color: var(--text-1);
  border: 2px solid var(--tile-border);
  box-shadow: 0 3px 0 var(--tile-border);
}
.bb-play {
  flex: 1.2;
  background: var(--coral);
  color: white;
  border: none;
  box-shadow: 0 var(--shadow-h) 0 var(--coral-shadow);
}

/* ---------- SECTIONS ---------- */
.section { padding: 100px 0; position: relative; }
.section-cream { background: var(--tile); border-top: 1px solid var(--tile-border); border-bottom: 1px solid var(--tile-border); }
@media (max-width: 768px) { .section { padding: 72px 0; } }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }

.kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.lede {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- SOURCES ---------- */
.sources { padding: 80px 0 100px; background: var(--bg); }
.source-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .source-cards { grid-template-columns: repeat(3, 1fr); }
}
.source-card {
  padding: 32px 28px;
  background: white;
  border: 2px solid var(--tile-border);
  border-radius: var(--r-lg);
  box-shadow: 0 var(--shadow-h-lg) 0 var(--tile-border);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  text-align: left;
}
.source-card:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--tile-border); }
.source-card h3 { font-size: 1.25rem; margin: 16px 0 6px; }
.source-card p  { margin: 0; color: var(--text-2); font-size: 0.95rem; }

.source-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.source-card-coral .source-icon { background: rgba(255, 77, 94, 0.12); color: var(--coral); }
.source-card-blue  .source-icon { background: rgba(77, 166, 255, 0.14); color: var(--blue); }
.source-card-amber .source-icon { background: rgba(255, 179, 71, 0.16); color: var(--amber-shadow); }

/* ---------- FEATURES ---------- */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 768px) { .features { grid-template-columns: repeat(3, 1fr); } }

.feature {
  padding: 36px 28px;
  background: white;
  border: 2px solid var(--tile-border);
  border-radius: var(--r-lg);
  box-shadow: 0 var(--shadow-h-lg) 0 var(--tile-border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--tile-border); }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p  { margin: 0; color: var(--text-2); font-size: 0.95rem; }

.feature-icon-coral { background: rgba(255, 77, 94, 0.12); color: var(--coral); }
.feature-icon-blue  { background: rgba(77, 166, 255, 0.14); color: var(--blue); }
.feature-icon-amber { background: rgba(255, 179, 71, 0.16); color: var(--amber-shadow); }

/* Extra features strip */
.features-extra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) { .features-extra { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.extra-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--tile);
  border: 2px solid var(--tile-border);
  border-radius: var(--r);
}
.extra-card strong { display: block; font-weight: 800; font-size: 15px; color: var(--text-1); margin-bottom: 2px; }
.extra-card span   { font-size: 13px; color: var(--text-2); line-height: 1.4; }

.extra-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  border: 2px solid var(--tile-border);
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.extra-card:nth-child(2) .extra-icon { color: var(--coral); }
.extra-card:nth-child(3) .extra-icon { color: var(--blue); }

/* ---------- AUDIENCE ---------- */
.audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .audience { grid-template-columns: 1fr 1fr; gap: 32px; } }

.audience-card {
  padding: 36px 32px;
  background: white;
  border: 2px solid var(--tile-border);
  border-radius: var(--r-xl);
  box-shadow: 0 var(--shadow-h-lg) 0 var(--tile-border);
}

.audience-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.audience-badge-coral { background: var(--coral); box-shadow: 0 3px 0 var(--coral-shadow); }
.audience-badge-blue  { background: var(--blue);  box-shadow: 0 3px 0 var(--blue-shadow);  }

.audience-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.audience-card > p { color: var(--text-2); margin-bottom: 22px; }

.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text-1);
  font-size: 0.95rem;
  font-weight: 600;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--coral);
  border-radius: 6px;
  box-shadow: 0 2px 0 var(--coral-shadow);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2.5px solid white;
  border-bottom: 2.5px solid white;
  transform: rotate(-45deg);
}
.audience-card:last-child .check-list li::before {
  background: var(--blue);
  box-shadow: 0 2px 0 var(--blue-shadow);
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.step {
  padding: 32px 28px 28px;
  background: white;
  border: 2px solid var(--tile-border);
  border-radius: var(--r-lg);
  box-shadow: 0 var(--shadow-h-lg) 0 var(--tile-border);
  text-align: left;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 22px;
  color: white;
  margin-bottom: 18px;
}
.step-num-coral { background: var(--coral); box-shadow: 0 var(--shadow-h) 0 var(--coral-shadow); }
.step-num-blue  { background: var(--blue);  box-shadow: 0 var(--shadow-h) 0 var(--blue-shadow);  }
.step-num-amber { background: var(--amber); box-shadow: 0 var(--shadow-h) 0 var(--amber-shadow); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p  { color: var(--text-2); margin: 0; font-size: 0.95rem; }

/* ---------- PRICING ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 768px) { .pricing { grid-template-columns: 1fr 1fr; gap: 28px; } }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: white;
  border: 2px solid var(--tile-border);
  border-radius: var(--r-xl);
  box-shadow: 0 var(--shadow-h-lg) 0 var(--tile-border);
}
.price-card > .threes-btn { margin-top: auto; }
.price-card-featured {
  border-color: var(--coral);
  box-shadow: 0 var(--shadow-h-lg) 0 var(--coral-shadow);
}
.price-flag {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--amber);
  color: var(--text-1);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 3px 0 var(--amber-shadow);
}
.price-name { font-size: 1.4rem; margin-bottom: 4px; }
.price-tag  { font-size: 2.4rem; font-weight: 800; color: var(--text-1); margin: 0 0 4px; letter-spacing: -0.03em; }
.price-sub  { color: var(--text-2); margin-bottom: 22px; font-size: 0.95rem; }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-1);
  font-size: 0.95rem;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--tile);
  border: 2px solid var(--tile-border);
  border-radius: 5px;
}
.price-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--text-2);
  border-bottom: 2px solid var(--text-2);
  transform: rotate(-45deg);
}
.price-card-featured .price-list li::before { background: var(--coral); border-color: var(--coral); }
.price-card-featured .price-list li::after  { border-color: white; }

/* ---------- LEGAL (privacy) ---------- */
.legal {
  padding: 60px 24px 100px;
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 8px 0 8px;
}
.legal h2 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  letter-spacing: -0.02em;
}
.legal-meta {
  color: var(--text-3);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.legal p, .legal li {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.65;
}
.legal ul {
  padding-left: 22px;
  margin: 0 0 1em;
}
.legal li { margin-bottom: 6px; }
.legal a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 2px solid var(--tile-border);
  border-radius: var(--r-lg);
  box-shadow: 0 var(--shadow-h) 0 var(--tile-border);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-1);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item > p {
  padding: 0 22px 20px;
  color: var(--text-2);
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
}
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(255, 77, 94, 0.10);
  color: var(--coral);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--coral);
  color: white;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 110px 24px;
  background: var(--bg);
  overflow: hidden;
}
.cta-dancer {
  position: absolute;
  width: 280px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 768px) { .cta-dancer { width: 380px; } }

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 12px; }
.cta p  { font-size: 1.1rem; color: var(--text-2); margin-bottom: 32px; }

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

/* ---------- FOOTER ---------- */
.footer {
  background: var(--text-1);
  color: rgba(255, 252, 245, 0.65);
  padding: 48px 0 36px;
  border-top: 4px solid var(--coral);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.logo-footer { color: var(--tile); }
.logo-footer .logo-mark {
  border-color: var(--tile);
  box-shadow: 0 var(--shadow-h) 0 var(--tile);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}
.footer-links a {
  color: rgba(255, 252, 245, 0.7);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--coral); }
.footer-copy {
  font-size: 13px;
  color: rgba(255, 252, 245, 0.4);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-copy { order: 3; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
