/* ================================================================
   transcendence-base.css
   Shared design system for Transcendence Free Screening funnel.

   Used by: all 10 deployed pages.
   Load order: this file FIRST, then page-specific overrides in <style>.

   url() paths resolve relative to THIS file's location (shared/).
   Background images live at /transcendence/shared_images/ (one level up).
   ================================================================ */

/* ── Reset / base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; line-height: 1.15; }
button { font-family: inherit; }
ul, ol { margin: 0; padding: 0; }

/* ── CSS variables ─────────────────────────────────────────────── */
:root {
  --navy-deep  : #070b16;
  --navy-mid   : #131c33;
  --navy-soft  : #1c2947;
  --amber      : #e0913f;
  --plum       : #3a1f4d;
  --mint       : #37CC94;
  --mint-dark  : #2aa87a;
  --highlight  : #F96C6C;
  --byline-gold: #e3d6ac;
  --cream      : #faf9f7;
  --ink        : #171a21;
  --ink-soft   : #565c6b;
  --line       : #e9e7e2;
  --star       : rgba(255, 255, 255, .85);
}

/* ── Layout container ─────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 860px) {
  .container { padding: 0 48px; }
}

/* ── Site header ──────────────────────────────────────────────── */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(7, 11, 22, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transform: translateY(0);
  transition: transform .3s ease;
}
header.site.nav-hidden { transform: translateY(-100%); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
@media (max-width: 480px) {
  .nav-row { padding: 8px; }
}

/* Countdown chip (LP default — white/transparent) */
.countdown-chip {
  display: none;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 8px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Info strip ───────────────────────────────────────────────── */
/* LP default: highlight (coral/red). TY pages override to mint-dark in page <style>. */
.info-strip {
  background: var(--highlight);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
}

/* ── Hero section ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(7,11,22,.55) 0%, rgba(7,11,22,.3) 45%, rgba(58,31,77,.55) 100%),
    url('/transcendence/shared_images/background-mobile.jpg'),
    radial-gradient(ellipse at 50% 0%, rgba(224,145,63,.35), transparent 55%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 45%, var(--plum) 100%);
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  /* LP default: 32px top — nav hidden on scroll. TY pages override in page <style>. */
  padding: 32px 24px 0;
}
@media (min-width: 720px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(7,11,22,.55) 0%, rgba(7,11,22,.3) 45%, rgba(58,31,77,.55) 100%),
      url('/transcendence/shared_images/background-desktop.jpg'),
      radial-gradient(ellipse at 50% 0%, rgba(224,145,63,.35), transparent 55%),
      linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 45%, var(--plum) 100%);
  }
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .8;
}
.mountains {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  z-index: 1;
  opacity: .9;
}

/* LP default: max-width 760px. TY uses 680px — override in page <style>. */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.12;
  font-weight: 700;
  max-width: 720px;
  margin: 0 auto 26px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .4);
  color: #f4f1ea;
}
.hero-headline .hl { color: #fff; font-weight: 800; }

.brand-lockup { margin-bottom: 26px; }
.t-logo {
  width: min(90vw, 420px);
  height: auto;
  fill: #fff;
  display: block;
  margin: 0 auto;
}

.byline-bold {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--byline-gold);
  text-transform: capitalize;
}
.byline-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--byline-gold);
  font-size: 1.15em;
}

.seasons-line {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.date-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  margin-bottom: 30px;
}
.date-badge--compact { padding: 5px 12px; margin-bottom: 14px; font-size: 12px; }
.date-badge b {
  background: var(--highlight);
  color: #fff;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* Opt-in form */
.hero-form {
  max-width: 480px;
  margin: 0 auto 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-form input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.hero-form input::placeholder { color: rgba(255, 255, 255, .55); }
.hero-form input:focus {
  outline: 2px solid var(--mint);
  background: rgba(255, 255, 255, .1);
}

.microcopy {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 36px;
}
.microcopy strong { color: rgba(255, 255, 255, .75); }

.featuring-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px;
}

/* ── Avatar / expert slider ───────────────────────────────────── */
.avatar-slider {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-bottom: 44px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.avatar-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: avatarScroll 26s linear infinite;
}
.avatar-slider:hover .avatar-track { animation-play-state: paused; }

@keyframes avatarScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .25);
  background-size: cover;
  background-position: center;
}
.avatar-name {
  font-size: 10px;
  text-align: center;
  margin-top: 6px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .02em;
  max-width: 76px;
}
.avatar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero slider override — larger avatars in hero */
.hero .avatar-track { gap: 34px; }
.hero .avatar-track .avatar {
  width: 120px;
  height: 120px;
  border: none;
}
.hero .avatar-track .avatar-name {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  margin-top: 14px;
  max-width: 130px;
}

/* ── Sticky mobile CTA bar ────────────────────────────────────── */
/* LP default: centred (no visible span text on LP). TY uses space-between + span. */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(110%);
  transition: transform .3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 860px) { .sticky-cta { display: none; } }

/* ── Sections ─────────────────────────────────────────────────── */
/* LP default: 40px 0 76px. TY uses 64px 0 — override in page <style>. */
section { padding: 40px 0 76px; }
.section-alt { background: #f2f0ea; }

.lead-title {
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.15;
  margin-bottom: 6px;
}
.lead-sub {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 560px;
}

/* ── Video / trailer embed ────────────────────────────────────── */
.video-wrap {
  max-width: 820px;
  margin: 32px auto 0;
  position: relative;
  z-index: 5;
}
.video-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #0c111d;
  background-image: var(--trailer-poster);
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .08);
}
.video-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy-soft);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}
.play-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.play-btn:hover .play-circle {
  background: rgba(255, 255, 255, .15);
  transform: scale(1.06);
}
.play-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── Benefits grid ────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 0;
}
@media (min-width: 840px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
.benefits-grid h3 { font-size: 21px; margin-bottom: 14px; line-height: 1.3; }
.benefits-grid p  { color: var(--ink-soft); margin-bottom: 14px; font-size: 15px; }

.check-list { list-style: none; }
.check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--ink);
}
.check-list b { color: var(--ink); }
.check-ico {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(32, 195, 154, .15);
  color: var(--mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}

/* ── Quote banner ─────────────────────────────────────────────── */
.quote-banner {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(224,145,63,.18), transparent 60%),
    var(--navy-deep);
  color: #fff;
  padding: 64px 0;
  text-align: left;
}
.quote-banner .container { max-width: 760px; }
.quote-mark {
  color: var(--mint);
  font-size: 38px;
  font-family: Georgia, serif;
  line-height: 0;
  display: block;
  margin-bottom: 10px;
}
.quote-banner p.q {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 20px;
}
.quote-banner .attr {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  border-left: 2px solid var(--mint);
  padding-left: 12px;
}
/* Photo variant — set --photo-url inline on the element */
.quote-banner--photo {
  background-image:
    linear-gradient(0deg, rgba(4,6,12,.6), rgba(4,6,12,.3)),
    var(--photo-url);
  background-size: cover;
  background-position: center;
}

/* ── Testimonial slider ───────────────────────────────────────── */
.testimonial-slider {
  background: var(--navy-deep);
  padding: 56px 0;
}
.testimonial-slider .container { max-width: 760px; }

.t-slides {
  position: relative;
  min-height: 210px;
}
.t-slide {
  display: none;
  color: #fff;
  text-align: left;
  animation: tFadeIn .5s ease;
}
.t-slide.is-active { display: block; }

@keyframes tFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.t-slide .quote-mark {
  color: var(--mint);
  font-size: 38px;
  font-family: Georgia, serif;
  line-height: 0;
  display: block;
  margin-bottom: 10px;
}
.t-slide .q {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
}
.t-slide .q strong {
  font-weight: 700;
  font-size: clamp(19px, 2.8vw, 24px);
  display: inline-block;
  margin-bottom: 4px;
  line-height: 1.35;
}
.t-slide .attr {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  border-left: 2px solid var(--mint);
  padding-left: 12px;
}

.t-dots { display: flex; gap: 8px; margin-top: 28px; }
.t-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .25);
  transition: background .2s ease, transform .2s ease;
}
.t-dots button.is-active {
  background: var(--mint);
  transform: scale(1.2);
}

/* ── Bonus section / ebook art ────────────────────────────────── */
.bonus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 780px) {
  .bonus { grid-template-columns: 1.2fr .8fr; }
}
.bonus-tag {
  display: inline-block;
  background: var(--highlight);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.bonus h3 { font-size: 24px; margin-bottom: 14px; line-height: 1.3; }
.bonus p   { color: var(--ink-soft); margin-bottom: 22px; font-size: 15px; max-width: 480px; }

/* --ebook-cover is set inline per page (LP bonus section + each ebook LP) */
.ebook-art {
  width: 100%;
  aspect-ratio: 1 / 2;
  max-width: 280px;
  margin: 0 auto;
  background-image: var(--ebook-cover);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f2f0ea;
  position: relative;
}

/* ── Episode journey / season map ─────────────────────────────── */
.journey {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 18px auto 0;
  max-width: 640px;
  flex-wrap: wrap;
}
.journey .node {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--mint);
}
.journey .node.s2 { background: var(--amber); }
.journey .seg {
  flex: 1;
  height: 1px;
  background: var(--line);
  min-width: 8px;
}
.journey-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ── Stat bar ─────────────────────────────────────────────────── */
.stat-bar {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 16px 0 4px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat b {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: var(--ink);
}
.stat span {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Episode grid + cards ─────────────────────────────────────── */
.ep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 30px;
}
@media (min-width: 760px) {
  .ep-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .ep-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.ep-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
  display: block;
}
.ep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px -18px rgba(0, 0, 0, .25);
}
.ep-card.ep-hidden { display: none; }
.ep-card.is-active {
  border-color: var(--mint);
  box-shadow: 0 0 0 2px var(--mint);
}

.ep-thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-mid);
}
.ep-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.05) 60%);
}
.ep-thumb .ep-meta {
  position: relative;
  z-index: 1;
  color: #fff;
}
.ep-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 4px;
}
.ep-thumb h4 {
  font-size: 19px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 0;
}
.ep-body { padding: 20px 22px 24px; }
.ep-body p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ── Experts section ──────────────────────────────────────────── */
.experts-wrap { text-align: center; padding-top: 36px; }
.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 16px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .experts-grid { grid-template-columns: repeat(6, 1fr); }
}
.expert {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.expert .avatar {
  width: 100%;
  height: auto;
  max-width: 140px;
  aspect-ratio: 1;
  font-size: 15px;
  background-size: 130% !important;
}
.expert-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-top: 10px;
  text-align: center;
}

.experts-grid-wrap {
  position: relative;
  overflow: hidden;
  max-height: 620px;
  margin: 40px auto 0;
  max-width: 920px;
  transition: max-height .35s ease;
}
.experts-grid-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: linear-gradient(0deg, #f2f0ea, transparent);
  pointer-events: none;
  transition: opacity .2s ease;
}
.experts-grid-wrap.expanded { max-height: 4000px; }
.experts-grid-wrap.expanded::after { opacity: 0; }

.show-more {
  margin-top: 36px;
  background: none;
  border: none;
  color: var(--mint-dark);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.show-more:hover { color: var(--mint); }

/* ── Host section ─────────────────────────────────────────────── */
.host-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  column-gap: 40px;
}
@media (min-width: 840px) {
  .host-grid { grid-template-columns: 1fr 1fr auto; align-items: start; }
}
.host-copy p { color: var(--ink-soft); margin-bottom: 14px; font-size: 15px; }
.host-portrait { text-align: center; }
.host-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.host-avatars .avatar {
  width: 96px;
  height: 96px;
  font-size: 20px;
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}
.host-avatars .avatar:last-child { margin-left: -24px; }
.host-sig {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 2px;
}
.host-role {
  font-size: 12px;
  color: var(--ink-soft);
  max-width: 220px;
  margin: 0 auto;
}

/* ── Footer CTA ───────────────────────────────────────────────── */
.footer-cta {
  background-image:
    linear-gradient(180deg, rgba(7,11,22,.55) 0%, rgba(7,11,22,.35) 40%, rgba(58,31,77,.6) 100%),
    url('/transcendence/shared_images/background-mobile.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-color: var(--navy-deep);
  color: #fff;
  text-align: center;
  padding: 56px 24px 40px;
}
@media (min-width: 720px) {
  .footer-cta {
    background-image:
      linear-gradient(180deg, rgba(7,11,22,.55) 0%, rgba(7,11,22,.35) 40%, rgba(58,31,77,.6) 100%),
      url('/transcendence/shared_images/background-desktop.jpg');
  }
}
.footer-cta h2 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 6px;
}

/* ── Legal footer ─────────────────────────────────────────────── */
footer.legal {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  text-align: center;
  padding: 26px;
}
footer.legal a {
  color: rgba(255, 255, 255, .6);
  text-decoration: underline;
  margin: 0 8px;
}

/* ── Primary CTA button ───────────────────────────────────────── */
/* Used on LP, TY, and ebook pages. Sales CSS overrides .btn to its own pill style. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--mint);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(55, 204, 148, .55);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover {
  background: #2fb885;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(55, 204, 148, .65);
}
.btn:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.btn-block { width: 100%; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
  box-shadow: none;
  font-size: 13px;
  padding: 10px 20px;
}
.btn-outline:hover { background: rgba(255, 255, 255, .08); transform: none; }

/* ── Submit button loading state ──────────────────────────────── */
.btn:disabled { opacity: .75; cursor: not-allowed; transform: none !important; }
.btn-loading { display: none; align-items: center; gap: 8px; }
.btn.loading .btn-text    { display: none; }
.btn.loading .btn-loading { display: inline-flex; }
.spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Dev image markers (non-production) ───────────────────────── */
.needs-image {
  outline: 2px dashed rgba(140, 140, 140, .75);
  outline-offset: -2px;
  position: relative;
}
.needs-image::after {
  content: attr(data-missing-label);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(20, 20, 20, .82);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 20;
}

/* ── Selection ────────────────────────────────────────────────── */
::selection { background: var(--mint); color: #06231c; }

/* ── Accessibility: reduced motion ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
    animation: none !important;
  }
}
