/* ==========================================================================
   coltonarmstrong.com — styled exactly on Spotify for Creators' real tokens
   (pulled from creators.spotify.com source):
   dark #121212 page canvas, huge tight sentence-case display type
   (SpotifyMixUITitle ~ Plus Jakarta Sans), 40px-radius color-block sections
   in cream #f2f0eb / periwinkle #9691ff / lime #cff56a (2px outline cards),
   deep-violet #26008d links + footer gradient (#121212 → #26008d),
   white pill primary buttons. Class names match index.php + subpages 1:1.
   ========================================================================== */

:root {
  --ink:     #000000;          /* page canvas */
  --black:   #121212;
  --cream:   #f2f0eb;          /* color-block card */
  --peri:    #3ec6d8;          /* periwinkle block */
  --lime:    #d9b544;          /* lime accent / outline cards */
  --violet:  #0d6d78;          /* deep violet — links on cream, footer gradient */
  --white:   #ffffff;
  --text:    #d7d5d0;          /* body text on dark */
  --muted:   #a5a39e;
  --bg:      var(--ink);
  --bg-soft: var(--cream);
  --line:    #2e2e2e;
  --radius:  40px;             /* Spotify's card radius */
  --maxw:    1200px;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-body:    'Plus Jakarta Sans', 'Inter', -apple-system, system-ui, sans-serif;
}

/* Spotify's pastel card pairs (bg + matching deep text), from their CSS */
:root {
  --pastel-pink:  #ffd2d7; --deep-pink:  #590810;
  --pastel-gold:  #ffd97e; --deep-gold:  #491e00;
  --pastel-blue:  #c8e0fc; --deep-blue:  #052a56;
  --pastel-mint:  #96f0b6; --deep-mint:  #073116;
}

/* legacy var aliases so subpages styled against --gold keep working */
:root { --gold: #d9b544; --gold-d: #b89430; --green: #d9b544; --green-d: #b89430; --purple: var(--violet); }

::selection { background: var(--lime); color: #121212; }
:focus-visible { outline: 3px solid var(--peri); outline-offset: 2px; border-radius: 6px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }
.center { text-align: center; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--white); color: #000; padding: 8px 16px; z-index: 200; border-radius: 999px; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Display headings — big, tight, sentence case, white on dark ---------- */
.big-head {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: none;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: 0 0 28px;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);   /* Spotify section heads ≈ 3rem */
  text-align: center;
}
.big-head.left { text-align: left; }
.big-head.onblack { color: var(--white); }
.big-head.split em { font-style: normal; color: inherit; display: inline; } /* Spotify doesn't two-tone heads */
.section-sub {
  max-width: 720px;
  margin: -8px auto 44px;
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
}
.section-sub.onblack { color: rgba(255,255,255,.75); }

/* ---------- Buttons — Spotify pills: white primary on dark, black on color blocks ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  text-transform: none; letter-spacing: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover { transform: scale(1.04); }
.btn-sm { padding: 10px 22px; font-size: .92rem; }
/* primary pill (kept .btn-gold class name for markup compat): white, black text */
.btn-gold { background: var(--white); color: #000; }
.btn-gold:hover { background: var(--cream); }
.btn-dark { background: #000; color: #fff; }
.btn-dark:hover { background: #2a2a2a; }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { border-color: var(--white); background: var(--white); color: #000; }

/* ==========================================================================
   HEADER — dark bar like creators.spotify.com: white wordmark, plain white
   nav links, white pill sign-up
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(18,18,18,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #242424;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 80px; }
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -.02em;
  color: var(--white);
  white-space: nowrap;
}
.nav-links { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 10px 16px;
  font-weight: 700; font-size: .95rem; color: var(--white);
  border-radius: 999px;
  transition: color .15s ease;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--peri); }
.nav-links > li > a::after { display: none; }
/* dropdowns */
.nav-menu {
  list-style: none; margin: 0; padding: 12px 0;
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: #1c1c1c; border: 1px solid #2e2e2e; border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  overflow: hidden;
}
.has-menu:hover .nav-menu, .has-menu:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a { display: block; padding: 10px 22px; font-size: .93rem; font-weight: 600; color: #e8e6e1; }
.nav-menu a:hover { background: #262626; color: var(--peri); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO — dark canvas, giant tight white type, white pill CTA
   (Spotify: "Make your show the next big thing" on #121212)
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
/* soft violet/periwinkle glow behind the type */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 480px at 18% 110%, rgba(38,0,141,.55), transparent 65%),
    radial-gradient(640px 420px at 88% -10%, rgba(150,145,255,.22), transparent 60%);
}
.hero-photo { position: absolute; inset: 0 0 0 50%; pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: .55; border-radius: 0; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #121212 0%, rgba(18,18,18,.35) 55%, rgba(18,18,18,.6) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 110px 24px 90px; }
.hero-kicker {
  display: inline-block;
  font-weight: 700; font-size: .95rem; text-transform: none; letter-spacing: 0;
  color: var(--lime); background: rgba(207,245,106,.08);
  border: 1px solid rgba(207,245,106,.45);
  padding: 8px 20px; border-radius: 999px;
  margin-bottom: 32px;
}
.hero-creds { margin: 0 0 26px; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-creds .ln { animation: rise .6s ease both; }
.hero-creds .ln:nth-child(2) { animation-delay: .1s; }
.hero-creds .ln:nth-child(3) { animation-delay: .2s; }
.hero-creds .ln:nth-child(4) { animation-delay: .3s; }
.hero-lead, .hero-cta { animation: rise .6s ease .4s both; }
@media (prefers-reduced-motion: reduce) { .hero-creds .ln, .hero-lead, .hero-cta { animation: none; } }
.hero-creds .ln {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: none;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.hero-creds .ln.outline { color: var(--peri); -webkit-text-stroke: 0; }
.hero-creds .ln.gold { color: var(--lime); }
/* credential chips — button-style pill labels, cycling the brand accents */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; animation: rise .6s ease .25s both; }
.hero-chips .chip {
  display: inline-flex; align-items: center;
  padding: 10px 22px; border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  background: var(--lime); color: #121212;
  transition: transform .15s ease;
}
.hero-chips .chip:nth-child(5n+2) { background: var(--peri); color: #121212; }
.hero-chips .chip:nth-child(5n+3) { background: var(--pastel-pink); color: var(--deep-pink); }
.hero-chips .chip:nth-child(5n+4) { background: var(--pastel-gold); color: var(--deep-gold); }
.hero-chips .chip:nth-child(5n)   { background: var(--pastel-mint); color: var(--deep-mint); }
.hero-chips .chip:hover { transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) { .hero-chips { animation: none; } }
.hero-lead { color: rgba(255,255,255,.78); font-size: 1.18rem; max-width: 580px; margin: 0 0 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-line { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-line:hover { border-color: var(--white); background: var(--white); color: #000; }
/* ticker at the hero's base — lime band, black text */
.hero-marquee { position: relative; z-index: 2; background: var(--lime); overflow: hidden; padding: 13px 0; }
.mq-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: mq 26s linear infinite;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em;
  text-transform: none; font-size: 1rem; color: #121212;
  white-space: nowrap;
}
.mq-track i { font-style: normal; font-size: .6rem; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mq-track { animation: none; } }

/* ---------- Logo strip — muted wordmarks on dark ---------- */
.logo-strip { background: var(--ink); border-bottom: 1px solid #242424; padding: 36px 0 32px; text-align: center; }
.strip-label { display: block; font-weight: 700; font-size: .82rem; text-transform: none; letter-spacing: 0; color: var(--muted); margin-bottom: 16px; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 56px; }
.logo-row span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.02em;
  color: #595955;
  transition: color .2s ease;
}
.logo-row span:hover { color: var(--white); }
/* clickable suite pills */
.logo-row { gap: 12px; }
.suite-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em;
  color: #b9b7b0; background: #1c1c1c; border: 1px solid #2c2c2c;
  padding: 12px 24px; border-radius: 999px;
  transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}
.suite-pill i { font-size: .7rem; opacity: .55; }
.suite-pill:hover { color: #121212; background: var(--lime); border-color: var(--lime); transform: translateY(-2px); }
.suite-pill:nth-child(2):hover { background: var(--peri); border-color: var(--peri); }
.suite-pill:nth-child(3):hover { background: var(--pastel-pink); border-color: var(--pastel-pink); }
.suite-pill:nth-child(4):hover { background: var(--pastel-gold); border-color: var(--pastel-gold); }
.suite-pill:nth-child(5):hover { background: var(--pastel-mint); border-color: var(--pastel-mint); }

/* ==========================================================================
   SECTIONS — dark canvas; .soft = cream 40px block; .dark = periwinkle block;
   .black = violet gradient band (Spotify footer treatment)
   ========================================================================== */
.section { padding: 96px 0; background: var(--ink); }
/* cream color-block section, Spotify-style rounded container inset on dark */
.section.soft, .section.dark {
  background: var(--ink);
  padding: 24px 0;
}
.section.soft > .container {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 88px 64px;
  color: #3a3a36;
}
.section.dark > .container {
  background: var(--peri);
  border-radius: var(--radius);
  padding: 88px 64px;
  color: #121212;
}
.section.soft .big-head, .section.dark .big-head { color: var(--ink); }
.section.soft .section-sub { color: #5c5a54; }
.section.dark .section-sub { color: #26254d; }
.section.soft a[href].inline, .section.soft .about-copy a { color: var(--violet); font-weight: 700; }
/* buttons inside color blocks: black pill, white text (Spotify inverts) */
.section.soft .btn-gold, .section.dark .btn-gold { background: #121212; color: #fff; }
.section.soft .btn-gold:hover, .section.dark .btn-gold:hover { background: #000; }
.section.soft .btn-outline, .section.dark .btn-outline { color: #121212; border-color: #121212; }
.section.soft .btn-outline:hover, .section.dark .btn-outline:hover { background: #121212; color: #fff; }
.section.black { background: linear-gradient(180deg, #121212 0%, var(--violet) 100%); }

.about-copy { text-align: center; font-size: 1.1rem; }
.about-cta { margin-top: 26px; }
#about .big-head { color: var(--white); }

/* ---------- Giant animated stat counters — white on dark, lime numbers ---------- */
.stat-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-cell { background: transparent; border: 2px solid var(--lime); border-radius: var(--radius); padding: 34px 18px 30px; transition: transform .2s ease; }
.stat-cell:nth-child(3n+2) { border-color: var(--peri); }
.stat-cell:nth-child(3n+2) .stat-num { color: var(--peri); }
.stat-cell:nth-child(3n)   { border-color: var(--pastel-pink); }
.stat-cell:nth-child(3n) .stat-num { color: var(--pastel-pink); }
.stat-cell:hover { transform: translateY(-4px); }
.stat-top, .stat-bottom {
  display: block;
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  letter-spacing: 0;
}
.stat-top { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -.03em;
  color: var(--lime);
  line-height: 1.05;
  margin: 6px 0;
}

/* ---------- Communities — cream cards on periwinkle block ---------- */
.comm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 18px; }
.comm-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--cream);
  border: 0;
  border-radius: var(--radius);
  padding: 44px 40px;
  color: #3a3a36;
  transition: transform .2s ease, box-shadow .2s ease;
}
.comm-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0,0,0,.18); }
.comm-tag {
  align-self: flex-start;
  font-weight: 700; font-size: .8rem; text-transform: none; letter-spacing: 0;
  color: #121212; background: var(--lime);
  padding: 6px 14px; border-radius: 999px;
}
.comm-card:nth-child(4n+2) .comm-tag { background: var(--pastel-pink); color: var(--deep-pink); }
.comm-card:nth-child(4n+3) .comm-tag { background: var(--pastel-blue); color: var(--deep-blue); }
.comm-card:nth-child(4n)   .comm-tag { background: var(--pastel-gold); color: var(--deep-gold); }
.comm-name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -.025em;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.08;
}
.comm-blurb { color: #5c5a54; font-size: .98rem; }
.comm-cta { color: var(--violet); font-weight: 700; text-transform: none; font-size: 1rem; letter-spacing: 0; margin-top: auto; }
.comm-cta i { transition: transform .2s ease; }
.comm-card:hover .comm-cta { text-decoration: underline; }
.comm-card:hover .comm-cta i { transform: translateX(5px); }

/* ---------- Free resources — Spotify pastel cards cycling their 4 pairs ---------- */
.res-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.res-tile {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--pastel-pink); color: var(--deep-pink);
  border: 0;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.res-tile:nth-child(4n+2) { background: var(--pastel-gold); color: var(--deep-gold); }
.res-tile:nth-child(4n+3) { background: var(--pastel-blue); color: var(--deep-blue); }
.res-tile:nth-child(4n)   { background: var(--pastel-mint); color: var(--deep-mint); }
.res-tile:hover { transform: translateY(-6px) rotate(-.5deg); box-shadow: 0 22px 44px rgba(0,0,0,.35); }
.res-ic { font-size: 1.5rem; color: inherit; margin-bottom: 8px; }
.res-kind { font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: inherit; opacity: .65; }
.res-label { font-weight: 700; color: inherit; line-height: 1.35; }

/* ---------- Pricing cards ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--cream);
  border: 0;
  border-radius: var(--radius);
  padding: 40px 34px;
  display: flex; flex-direction: column;
  text-align: center;
  color: #3a3a36;
}
.price-card.featured { outline: 3px solid var(--lime); }
.pop {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: #121212;
  font-weight: 700; font-size: .75rem; text-transform: none; letter-spacing: 0;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan { font-family: var(--font-display); font-weight: 800; text-transform: none; letter-spacing: -.02em; font-size: 1.2rem; color: var(--ink); }
.amount { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; font-size: 2.8rem; color: var(--ink); margin: 8px 0 2px; }
.amount small { font-size: 1rem; color: #5c5a54; font-family: var(--font-body); font-weight: 700; }
.price-card .sub { color: #5c5a54; font-size: .9rem; margin-bottom: 18px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; text-align: left; }
.price-card li { padding: 9px 0; border-bottom: 1px solid #dcd9d0; font-size: .95rem; }
.price-card li::before { content: "\2713"; color: var(--violet); font-weight: 800; margin-right: 10px; }
.price-card .btn { margin-top: auto; justify-content: center; background: #121212; color: #fff; }
.price-card .btn:hover { background: #000; }

/* ---------- Software band — periwinkle color block, black text ---------- */
.soft-band {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
  background: var(--peri); color: #1f1e3d;
  border-radius: var(--radius);
  padding: 72px 64px;
}
.soft-band .big-head { color: #121212; }
.soft-band p { color: #26254d; }
.sb-kicker { display: inline-flex; align-items: center; gap: 10px; color: #121212; font-weight: 800; font-size: .92rem; text-transform: none; letter-spacing: 0; margin-bottom: 16px; }
.sb-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.sb-cta .btn-gold { background: #121212; color: #fff; }
.sb-cta .btn-gold:hover { background: #000; }
.sb-cta .btn-outline { border-color: #121212; color: #121212; }
.sb-cta .btn-outline:hover { background: #121212; color: #fff; }
.sb-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sb-feats span {
  display: flex; align-items: center; gap: 12px;
  background: rgba(18,18,18,.1); border: 0; border-radius: 18px;
  padding: 16px 20px; color: #121212;
  font-weight: 600; font-size: .92rem;
  transition: background .2s ease;
}
.sb-feats span:hover { background: rgba(18,18,18,.18); }
.sb-feats i { color: #121212; }

/* ---------- Book feature — inside cream block ---------- */
.book-feature { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
.book-cover {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #121212 30%, var(--violet) 130%);
  color: var(--white);
  border-radius: 24px;
  padding: 36px 30px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 30px 60px rgba(18,18,18,.25);
  transform: rotate(-2deg);
  transition: transform .25s ease;
}
.book-cover:hover { transform: rotate(0deg) scale(1.02); }
.bc-kicker { font-weight: 700; font-size: .82rem; text-transform: none; letter-spacing: 0; color: var(--lime); }
.bc-title { font-family: var(--font-display); font-weight: 800; text-transform: none; letter-spacing: -.02em; font-size: 2.5rem; line-height: 1.04; }
.bc-by { font-weight: 700; font-size: .85rem; color: #a5a39e; }
.endorse { margin: 20px 0; padding: 18px 22px; border-left: 4px solid var(--violet); background: #fff; border-radius: 0 18px 18px 0; font-style: italic; }
.endorse cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; color: var(--ink); }
.book-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }

/* ---------- Get updates — violet gradient band, white pill form ---------- */
.update-form {
  position: relative;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 34px;
}
.update-form input {
  background: #fff; border: 0; border-radius: 999px;
  padding: 15px 26px; font-size: 1rem; font-family: var(--font-body);
  min-width: 240px;
}
.update-form input:focus { outline: 3px solid var(--lime); }
.update-form .btn { background: var(--white); color: #000; }
.update-form .btn:hover { background: var(--cream); }
.flash { width: 100%; text-align: center; font-weight: 700; padding: 12px; border-radius: 18px; margin-bottom: 6px; }
.flash.ok { background: rgba(207,245,106,.2); color: var(--lime); }
.flash.bad { background: rgba(255,90,90,.2); color: #ffc4c4; }

/* ---------- Join the community access cards — white-outline circles/cards ---------- */
.access-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.access-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 38px 20px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.access-card:hover { border-color: var(--peri); background: #202030; transform: translateY(-6px); }
.access-card i { font-size: 1.7rem; color: var(--peri); }
.access-card:nth-child(4n+2) i { color: var(--pastel-pink); }
.access-card:nth-child(4n+3) i { color: var(--lime); }
.access-card:nth-child(4n) i   { color: var(--pastel-gold); }
.access-card b { font-family: var(--font-display); font-weight: 800; text-transform: none; letter-spacing: -.01em; font-size: 1.05rem; color: var(--white); }
.access-card span { color: var(--muted); font-size: .88rem; }

/* ---------- FAQ — inside cream block ---------- */
.faq { border-top: 1px solid #dcd9d0; }
.faq-item { border-bottom: 1px solid #dcd9d0; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; cursor: pointer;
  padding: 22px 4px; text-align: left;
  font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.faq-q i { color: var(--violet); transition: transform .2s ease; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 4px 22px; color: #5c5a54; }

/* ---------- Contact — on dark ---------- */
#contact .big-head { color: var(--white); }
.contact-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   FOOTER — Spotify's exact treatment: gradient #121212 → #26008d,
   white-outline circle social icons that go periwinkle on hover
   ========================================================================== */
.brand-outro { background: linear-gradient(180deg, #121212 0%, var(--violet) 100%); color: var(--white); padding: 110px 0 64px; text-align: center; }
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -.04em;
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  line-height: 1;
  color: var(--white);
}
.outro-tag {
  margin: 22px 0 34px;
  font-weight: 700; font-size: .85rem; letter-spacing: .18em;
  color: rgba(255,255,255,.7);
}
.outro-legal { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 30px; }
.outro-legal a { color: rgba(255,255,255,.85); }
.outro-legal a:hover { color: var(--peri); }
.outro-legal .sep { color: rgba(255,255,255,.3); }
.outro-social { display: flex; gap: 14px; justify-content: center; }
.outro-social a {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #fff; color: #fff; font-size: 1.05rem;
  transition: border-color .2s ease, color .2s ease;
}
.outro-social a:hover { border-color: var(--peri); color: var(--peri); background: transparent; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .res-tiles { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 80px 0 auto 0;
    background: #121212; border-bottom: 1px solid #2e2e2e;
    flex-direction: column; gap: 0; padding: 10px 0 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 14px 28px; font-size: 1.05rem; border-radius: 0; }
  .nav-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-radius: 0; padding: 0 0 6px; background: transparent; }
  .nav-menu a { padding: 8px 44px; color: var(--muted); }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .nav-cta .nav-toggle { display: block; }
  .comm-grid, .price-grid { grid-template-columns: 1fr; }
  .section.soft > .container, .section.dark > .container { padding: 56px 28px; border-radius: 28px; }
  .soft-band { grid-template-columns: 1fr; gap: 36px; padding: 44px 28px; border-radius: 28px; }
  .price-card.featured { order: -1; }
  .book-feature { grid-template-columns: 1fr; gap: 44px; }
  .book-cover { max-width: 320px; margin: 0 auto; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .section { padding: 64px 0; }
  .hero { min-height: 55vh; }
  .hero-inner { padding-top: 140px; }
}
@media (max-width: 560px) {
  .res-tiles, .access-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-row { gap: 12px 28px; }
  .logo-row span { font-size: 1.05rem; }
  .update-form input { min-width: 0; width: 100%; }
  .update-form .btn { width: 100%; justify-content: center; }
  .contact-row .btn { width: 100%; justify-content: center; }
}
