/* ════════════════════════════════════════════════════════════
   CROWNTUNE — HOMEPAGE STYLES
   Only used on index.html
   Flat treatment: solid surfaces, no glows or gradient washes.
   ════════════════════════════════════════════════════════════ */

/* ── SECTION 1: HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Flat scrim so headline text stays readable over the background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.62);
  z-index: 1;
}

/* Full-bleed hero background image */
.hero-artist-placeholder {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  overflow: hidden;
}
/* Mirrored: in the source photo the singer's face sits at ~35–47% across,
   directly under the headline. Flipping puts him at ~53–67% — clear of the
   text — and drops his dark shoulder behind the copy instead. Panning can't
   do this: the photo is narrower than the hero, so it crops vertically only
   and there is no horizontal slack to shift. */
.hero-artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 15%;
  padding: 0 60px 0 0;
  max-width: 840px;
}

.hero-eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(49px, 6.1vw, 85px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
  color: var(--white);
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 40px;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── PLATFORM TICKER STRIP ── */
#platforms {
  background: var(--black);
  border-top: 1px solid rgba(240,195,48,0.14);
  border-bottom: 1px solid rgba(240,195,48,0.14);
  padding: 16px 0;
  position: relative;
  overflow: hidden;
}

.platforms-inner {
  display: flex;
  align-items: center;
}

.platforms-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  white-space: nowrap;
  padding: 0 28px 0 60px;
  flex-shrink: 0;
}

.platforms-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin-right: 28px;
  flex-shrink: 0;
}

.platforms-ticker-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.platforms-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: platformTicker 38s linear infinite;
}
@keyframes platformTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* DSP logos — normalized to flat white so 18 different brand palettes
   read as one row. Source art is pre-trimmed so heights match visually. */
.platform-logo {
  height: 26px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.25s;
}
.platform-logo:hover { opacity: 1; }

.platform-sep {
  font-size: 7px;
  color: var(--gold);
  padding: 0 16px;
  opacity: 0.35;
  display: inline-block;
}


/* ── SECTION 2: COMPETITOR COMPARISON ── */
#comparison {
  background: var(--black-2);
  padding: 80px 60px 100px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Floating notes/shinies in the gutters around the box — same language as the map section */
.cmp-orn {
  position: absolute;
  color: rgba(240,195,48,0.42);
  pointer-events: none;
  z-index: 2;              /* above the photo backdrop + scrim */
  animation: ornFloat 8s ease-in-out infinite;
}
.cmp-orn-1 { left: 7%;  top: 18%; font-size: 20px; animation-delay: 0s;    animation-duration: 7.5s; }
.cmp-orn-2 { left: 4%;  top: 52%; font-size: 15px; animation-delay: 1.5s;  animation-duration: 9s; }
.cmp-orn-3 { left: 9%;  top: 80%; font-size: 17px; animation-delay: 3s;    animation-duration: 8s; }
.cmp-orn-4 { right: 6%; top: 22%; font-size: 16px; animation-delay: 2.2s;  animation-duration: 10s; }
.cmp-orn-5 { right: 9%; top: 58%; font-size: 21px; animation-delay: 4.4s;  animation-duration: 7s; }
.cmp-orn-6 { right: 4%; top: 84%; font-size: 14px; animation-delay: 5.6s;  animation-duration: 8.5s; }

/* No gutter room on smaller screens — hide rather than collide with the box */
@media (max-width: 1499px) {
  .cmp-orn { display: none; }
}

.compare-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
}

.compare-box {
  /* compare10 concrete/sheet-music texture behind the table. The source is
     bright (mean luminance ~139), so a flat scrim knocks it back far enough
     for white rows to stay legible while the grain still reads. */
  background: linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.78)),
              url("images/compare-bg.jpg") center / cover no-repeat var(--black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px 48px 40px;
  position: relative;
  overflow-x: auto;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1.7fr 1.3fr 1fr 1fr 1fr;
  min-width: 680px;
}

.compare-corner { /* no underline — the feature column stays line-free */ }

.compare-head {
  padding: 16px 14px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Crowntune column reads as one continuous elevated widget.
   The old tones sat at ~20%/11% lightness which is what made them read bronze —
   same yellow hue (~48deg), just lifted so they actually look yellow. */
.compare-head-us {
  background: #D9B120;
  border: 1px solid rgba(240,195,48,0.6);
  border-bottom: 1px solid rgba(240,195,48,0.25);
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden; /* clip the logo's transparent overhang so the yellow block stays tidy */
}

.compare-head-name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* Crowntune column header is the logo image, not text.
   The PNG is a 1024² square with ~31% transparent pad on top, ~35% on the bottom.
   Negative margins cancel that padding: bottom pull drops "Tune" onto the distro-name
   baseline; top pull shrinks the header. The overhang is transparent + clipped by the cell. */
.compare-head-logo {
  display: block;
  width: 200px;
  max-width: 96%;
  height: auto;
  margin-top: -60px;
  margin-bottom: -69px;
}

.compare-row-label {
  padding: 18px 24px 18px 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  min-height: 64px;
}

.compare-mark {
  padding: 18px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-mark-us {
  background: #8A711A;
  border-left: 1px solid rgba(240,195,48,0.5);
  border-right: 1px solid rgba(240,195,48,0.5);
  border-bottom: 1px solid rgba(240,195,48,0.12);
}
.compare-mark-us-last {
  border-bottom: 1px solid rgba(240,195,48,0.5);
  border-radius: 0 0 16px 16px;
}

/* Crowntune column: the crown artwork instead of a checkmark */
.check-gold {
  width: 46px;
  height: 32px;
  background: url("images/compare-crown.png") center / contain no-repeat;
}
.check-no { color: #B5B5B5; font-size: 18px; }
/* Competitor checks: white circle with a grey check — same badge language as ours used to be */
.check-text {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: #777777;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin-top: 20px;
  line-height: 1.8;
}


/* ── SECTION 3: PLANS (2 CARDS) ── */
#plans {
  background: var(--black);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
}

.plans-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto;
  align-items: start;
}

.plan-card {
  background: var(--card);
  border: 1px solid rgba(240,195,48,0.22);
  border-radius: 20px;
  padding: 44px 44px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,195,48,0.4);
}

.plan-card.featured {
  background: var(--card-warm);
  border: 1px solid rgba(240,195,48,0.5);
}
.plan-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.plan-card.featured:hover {
  border-color: rgba(240,195,48,0.7);
}

/* Twinkling stars orbiting the crown tile on the featured card */
.plan-spark {
  position: absolute;
  color: var(--gold);
  pointer-events: none;
  animation: sparkTwinkle 3.4s ease-in-out infinite;
  z-index: 1;
}
.plan-spark-1 { top: 86px;  right: 112px; font-size: 15px; }
.plan-spark-2 { top: 150px; right: 34px;  font-size: 10px; animation-delay: 1.2s; }
.plan-spark-3 { top: 52px;  right: 50px;  font-size: 12px; animation-delay: 2.3s; }
@keyframes sparkTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7) rotate(0deg); }
  50%      { opacity: 1;    transform: scale(1.2) rotate(45deg); }
}

.plan-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
  background: var(--gold);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.plan-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

/* Featured card's crown art — no tile/square behind it. Lifted out of the flow
   and pinned to the top-right corner so the plan name keeps the card's full
   width and stays on one line. The PNG is a 1024² square with ~29% transparent
   pad on top, so the visible artwork sits lower than the element box. */
.plan-crown-img {
  position: absolute;
  /* 25% smaller than before; offsets re-derived so the visible artwork stays
     put — the PNG's transparent padding scales with the width */
  top: -7px;
  right: 2px;
  width: 113px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

.plan-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.plan-card.featured .plan-card-name {
  color: #FFE24D; /* brighter yellow than --gold, so the featured plan pops */
  font-size: 37px;
  font-weight: 800;
}

.plan-card-desc {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.08em;
}

.plan-card-price {
  font-family: 'Inter', sans-serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-card-price span {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0;
}
.plan-card.featured .plan-card-price {
  color: var(--gold);
}
.plan-price-deal {
  font-size: 44px;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.25s, background 0.25s, color 0.25s;
}
.plan-btn-ghost {
  color: var(--gold-light);
  border: 1px solid rgba(240,195,48,0.45);
  background: rgba(240,195,48,0.05);
}
.plan-btn-ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}
.plan-btn-gold {
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
}
.plan-btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.plan-sep {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 32px 0 20px;
}

.plan-list-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.plan-features-list {
  list-style: none;
}
.plan-features-list li {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.5;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.plan-features-list li::before {
  content: '✓';
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(240,195,48,0.1);
  border: 1px solid rgba(240,195,48,0.35);
  color: var(--gold);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ── SECTION 4: WHY US (MAP) ── */
#path {
  background: var(--black-2);
  padding: 80px 60px 140px; /* extra room: widget 3 sits low and its art is tall */
  border-top: 1px solid var(--border);
}

.path-map {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  height: 860px;
}

.path-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.path-line {
  fill: none;
  stroke: var(--gold-dim);
  stroke-width: 1.5;
  stroke-dasharray: 3 9;
  animation: dashFlow 40s linear infinite;
}
@keyframes dashFlow {
  to { stroke-dashoffset: -480; }
}

.path-center-title {
  position: absolute;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 1;
}
.path-center-title h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
}

/* Each node+text is one hoverable widget */
.path-widget {
  position: absolute;
  width: 300px;
  text-align: center;
  transform: translateX(-50%);
  transform-origin: top center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  z-index: 2;
}
.path-widget:hover {
  transform: translateX(-50%) scale(1.08);
}

/* Illustrations replace the old bordered circles — art only, no container.
   Square box + contain keeps three different aspect ratios visually matched. */
.path-img {
  display: block;
  margin: 0 auto 26px;
  object-fit: contain;
}

.path-widget-1 { left: 13.75%; top: calc(13.9% - 78px); }
.path-widget-1 .path-img { width: 156px; height: 156px; }

.path-widget-2 { left: 85%; top: calc(40% - 105px); width: 320px; }
.path-widget-2 .path-img { width: 208px; height: 208px; }

.path-widget-3 { left: 39%; top: calc(76% - 85px); }
.path-widget-3 .path-img { width: 168px; height: 168px; }

.path-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 12px;
}

.path-title {
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  transition: color 0.3s;
}
.path-widget:hover .path-title { color: var(--gold-light); }

.path-body {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

/* Floating ornaments — subtle drifting glyphs in the empty areas */
.float-orn {
  position: absolute;
  color: rgba(240,195,48,0.42);
  pointer-events: none;
  z-index: 0;
  animation: ornFloat 8s ease-in-out infinite;
}
@keyframes ornFloat {
  0%, 100% { transform: translateY(0);     opacity: 0.3; }
  50%      { transform: translateY(-18px); opacity: 0.9; }
}

.float-orn-1 { left: 60%; top: 10%; font-size: 19px; animation-delay: 0s;    animation-duration: 7s; }
.float-orn-2 { left: 8%;  top: 70%; font-size: 14px; animation-delay: 1.5s;  animation-duration: 9s; }
.float-orn-3 { left: 35%; top: 57%; font-size: 23px; animation-delay: 3s;    animation-duration: 8s; }
.float-orn-4 { left: 66%; top: 84%; font-size: 16px; animation-delay: 2.2s;  animation-duration: 10s; }
.float-orn-5 { left: 91%; top: 7%;  font-size: 15px; animation-delay: 4.5s;  animation-duration: 7.5s; }
.float-orn-6 { left: 28%; top: 24%; font-size: 14px; animation-delay: 5.8s;  animation-duration: 8.5s; }
.float-orn-7 { left: 74%; top: 6%;  font-size: 18px; animation-delay: 1s;    animation-duration: 9.5s; }
.float-orn-8 { left: 56%; top: 66%; font-size: 15px; animation-delay: 3.8s;  animation-duration: 7s; }
.float-orn-9 { left: 93%; top: 88%; font-size: 17px; animation-delay: 2.6s;  animation-duration: 8s; }
/* the outer margins read as dead space without these — positions picked from
   the gaps between the three widgets and the centre title */
.float-orn-10 { left: 6%;  top: 62%; font-size: 16px; animation-delay: 0.7s;  animation-duration: 8.5s; }
.float-orn-11 { left: 14%; top: 86%; font-size: 20px; animation-delay: 4.1s;  animation-duration: 7.5s; }
.float-orn-12 { left: 3%;  top: 78%; font-size: 15px; animation-delay: 2.9s;  animation-duration: 9.5s; }
.float-orn-13 { left: 62%; top: 88%; font-size: 18px; animation-delay: 1.8s;  animation-duration: 8s; }
.float-orn-14 { left: 44%; top: 14%; font-size: 14px; animation-delay: 5.2s;  animation-duration: 9s; }
.float-orn-15 { left: 86%; top: 88%; font-size: 17px; animation-delay: 3.4s;  animation-duration: 7s; }
.float-orn-16 { left: 33%; top: 8%;  font-size: 15px; animation-delay: 6.1s;  animation-duration: 8.5s; }


/* ── SECTION 5: EARNINGS CALCULATOR ── */
#calculator {
  background: var(--black);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
}

.calc-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.calc-inputs-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  gap: 16px;
}
.slider-header label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray);
}

.slider-value {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  text-align: right;
}
.slider-value-tier { font-size: 21px; }

/* Thick track that fills neon up to the thumb. home.js keeps --fill in sync
   with the value, so the filled portion works in every browser. */
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 100px;
  background: linear-gradient(to right,
    var(--neon) 0%, var(--neon) var(--fill, 0%),
    rgba(255,255,255,0.09) var(--fill, 0%), rgba(255,255,255,0.09) 100%);
  outline: none;
  cursor: pointer;
}
/* Solid neon knob, ringed in the panel colour so it reads as a separate
   handle against the neon track rather than melting into it. */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--neon);
  border: 3px solid var(--card);
  border-radius: 50%;
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--neon);
  border: 3px solid var(--card);
  border-radius: 50%;
  cursor: pointer;
}

.tier-stops {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 2px;
}
.tier-stops span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);
  transition: color 0.2s;
}
/* Everything up to and including the current stop stays lit */
.tier-stops span.reached { color: var(--white); }
.tier-stops span.active  { color: var(--white); }

.calc-assumptions {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  line-height: 1.7;
}

/* Dashboard widget */
.calc-results-widget {
  background: var(--card-warm);
  border: 1px solid rgba(240,195,48,0.28);
  border-radius: 16px;
  padding: 44px 40px 36px;
  position: relative;
  overflow: hidden;
}
.calc-results-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.calc-widget-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: -16px;
  margin-bottom: 22px;
}

/* Coin art filling the dead space beside the big earnings figure */
.calc-coins {
  position: absolute;
  top: 62px;
  right: 34px;
  width: 112px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.calc-widget-period {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}

.calc-widget-earn-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.calc-widget-amount {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.calc-breakdown {
  margin-bottom: 28px;
}

.calc-bd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Softer white than the left panel's values — present, but a step back */
.calc-bd-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.calc-bd-name em {
  font-style: normal;
  font-size: 11px;
  color: rgba(255,255,255,0.34);
  letter-spacing: 0.04em;
}

.calc-bd-amt {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  line-height: 1;
  white-space: nowrap;
}

/* Boost row matches the big earnings figure exactly */
.calc-bd-row.gold .calc-bd-amt  { color: var(--gold); }
.calc-bd-row.gold .calc-bd-name { color: var(--gold); }

.calc-bd-row.dim .calc-bd-amt  { color: rgba(255,255,255,0.28); }
.calc-bd-row.dim .calc-bd-name { color: rgba(255,255,255,0.35); }

.calc-difference-pill {
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  letter-spacing: 0.02em;
}
.calc-difference-pill strong { font-weight: 800; }
/* the ✦ carries the accent colour so the pill isn't flat black-on-white */
.calc-difference-pill i {
  font-style: normal;
  color: #6FA800;
  margin-right: 3px;
}


/* ── SECTION 6: FAQ ── */
#faq {
  background: var(--black-2);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Floating Q&A chat bubbles cycling in the side gutters */
.faq-bubble {
  position: absolute;
  width: 218px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  animation: bubbleCycle 14s ease-in-out infinite;
  z-index: 1;
}
.faq-bubble-q {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom-left-radius: 4px;
  color: rgba(255,255,255,0.78);
}
.faq-bubble-a {
  background: #262015;
  border: 1px solid rgba(240,195,48,0.42);
  border-bottom-right-radius: 4px;
  color: var(--gold-light);
}
@keyframes bubbleCycle {
  0%   { opacity: 0; transform: translateY(14px) scale(0.96); }
  5%   { opacity: 1; transform: translateY(0)    scale(1); }
  36%  { opacity: 1; transform: translateY(0)    scale(1); }
  43%  { opacity: 0; transform: translateY(-10px) scale(0.97); }
  100% { opacity: 0; transform: translateY(14px)  scale(0.96); }
}

/* Pair positions: Q above, its A answers slightly below and indented */
.fb-1 { left: 4%;   top: 22%;                animation-delay: 0s; }
.fb-2 { left: 6.5%; top: calc(22% + 66px);   animation-delay: 1.1s; }
.fb-3 { right: 6.5%; top: 30%;               animation-delay: 3.5s; }
.fb-4 { right: 4%;   top: calc(30% + 66px);  animation-delay: 4.6s; }
.fb-5 { left: 5.5%; top: 60%;                animation-delay: 7s; }
.fb-6 { left: 3.5%; top: calc(60% + 66px);   animation-delay: 8.1s; }
.fb-7 { right: 5%;   top: 64%;               animation-delay: 10.5s; }
.fb-8 { right: 7.5%; top: calc(64% + 66px);  animation-delay: 11.6s; }

/* Not enough gutter room below ~1500px — hide rather than collide */
@media (max-width: 1499px) {
  .faq-bubble { display: none; }
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question.open  { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(240,195,48,0.4);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  font-size: 0; /* hide the "+" glyph — the plus is drawn below so it centers perfectly */
  transition: transform 0.3s, background 0.2s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--gold);
  transition: background 0.2s;
}
.faq-icon::before { width: 11px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 11px; transform: translate(-50%, -50%); }
.faq-question.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
}
.faq-question.open .faq-icon::before,
.faq-question.open .faq-icon::after { background: var(--black); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  border-left: 2px solid transparent;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 28px;
  padding-left: 22px;
  border-left: 2px solid var(--gold-dim);
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
}


/* ════════════════════════════════════════════════════════════
   MOBILE / TABLET — HOMEPAGE
   ════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* ── Hero ── */
  #hero { height: auto; min-height: 0; padding: 112px 0 64px; }
  .hero-content {
    margin-left: 0;
    padding: 0 24px;
    max-width: none;
  }
  .hero-headline { font-size: clamp(38px, 11vw, 60px); margin-bottom: 20px; }
  .hero-sub {
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: none;
  }
  /* the copy is hard-wrapped with <br> for desktop; let it reflow instead */
  .hero-sub br { display: none; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 16px; }
  .hero-eyebrow::before { width: 20px; }
  .hero-artist-photo { object-position: 68% center; }

  /* ── Platform ticker ── */
  .platforms-label { padding: 0 16px 0 24px; font-size: 10px; }
  .platforms-divider { margin-right: 16px; }
  .platform-logo { height: 20px; }

  /* ── Comparison table ── */
  #comparison { padding: 56px 16px 64px; }
  .compare-box { padding: 24px 16px 24px; border-radius: 18px; }
  /* it scrolls sideways on its own — nudge that it is scrollable */
  .compare-box { -webkit-overflow-scrolling: touch; }
  .compare-grid { min-width: 560px; }
  .compare-head-logo { width: 118px; margin-top: -35px; margin-bottom: -41px; }
  .compare-head-name { font-size: 14px; }
  .compare-row-label { font-size: 13px; padding-right: 12px; min-height: 54px; }
  .compare-mark { min-height: 54px; }
  .check-gold { width: 34px; height: 24px; }
  .compare-disclaimer { font-size: 10px; }

  /* ── Plans ── */
  #plans { padding: 64px 20px; }
  .plans-grid { grid-template-columns: 1fr; gap: 20px; max-width: 440px; }
  .plan-card { padding: 30px 24px 28px; }
  .plan-card-name { font-size: 26px; }
  .plan-card.featured .plan-card-name { font-size: 28px; }
  .plan-card-price { font-size: 40px; }
  .plan-price-deal { font-size: 32px; }
  .plan-crown-img { width: 84px; top: -4px; right: 0; }
  .plan-features-list li { font-size: 13.5px; }

  /* ── "Built different" map: drop the absolute layout, stack it ── */
  #path { padding: 60px 20px 64px; }
  .path-map { height: auto; }
  .path-map-svg,
  .float-orn { display: none; }          /* connectors/ornaments only make sense in the map layout */
  .path-center-title {
    position: static;
    transform: none;
    margin-bottom: 40px;
  }
  .path-center-title h2 { font-size: clamp(28px, 8vw, 40px); }
  .path-widget,
  .path-widget-1,
  .path-widget-2,
  .path-widget-3 {
    position: static;
    transform: none;
    width: 100%;
    top: auto;
    left: auto;
    margin: 0 auto 44px;
    max-width: 420px;
  }
  .path-widget:hover { transform: none; }
  .path-widget-1 .path-img,
  .path-widget-2 .path-img,
  .path-widget-3 .path-img { width: 128px; height: 128px; margin-bottom: 18px; }

  /* ── Calculator ── */
  #calculator { padding: 64px 20px; }
  .calc-layout { grid-template-columns: 1fr; gap: 20px; }
  .calc-inputs-panel { padding: 30px 22px; gap: 30px; }
  /* a 10px track is hard to grab with a thumb - thicken it and the handle */
  input[type=range] { height: 14px; }
  input[type=range]::-webkit-slider-thumb { width: 26px; height: 26px; }
  input[type=range]::-moz-range-thumb { width: 20px; height: 20px; }
  /* more room between footer links so they are easier to hit */
  .footer-linkcol { gap: 16px; }
  .footer-legal { gap: 15px; }
  /* label + value share a row; at this width let them stack rather than squeeze */
  .slider-header { flex-wrap: wrap; gap: 4px 12px; margin-bottom: 12px; }
  .slider-header label { font-size: 12px; }
  .slider-value { font-size: 24px; }
  .slider-value-tier { font-size: 17px; }
  .calc-results-widget { padding: 30px 22px 28px; }
  .calc-widget-amount { font-size: 42px; margin-bottom: 24px; }
  /* the coin art overlaps the figure once the widget narrows */
  .calc-coins { display: none; }
  .calc-bd-amt { font-size: 18px; }
  .calc-bd-name { font-size: 12.5px; }
  .tier-stops span { font-size: 9.5px; }

  /* ── FAQ ── */
  #faq { padding: 64px 20px; }
  .faq-question { font-size: 15px; padding: 22px 0; gap: 14px; }
  .faq-answer p { font-size: 14px; }
}

@media (max-width: 560px) {
  .compare-grid { min-width: 470px; }
  .plan-card-price span { display: block; font-size: 13px; margin-top: 6px; }
  .calc-difference-pill { font-size: 12px; padding: 11px 14px; }
}
