/* ============================================================
   KAISERWETTEN — Ultra-Premium Coaching page  ("Emperor's Chamber")
   Builds on styles.css. Champagne-GOLD + serif accent on deeper
   black. Everything page-specific is scoped under body.coaching so
   it never leaks onto the main page. A few helpers (.btn-ghost-gold,
   .stickybar) are intentionally global — the main page reuses them.
   ============================================================ */

/* ---------- Premium tokens (scoped) ---------- */
body.coaching {
  --bg:        #05070b;
  --bg-2:      #080b12;
  --surface:   #0c1017;
  --surface-2: #11161f;

  --gold:        #e8c583;
  --gold-bright: #f4dca6;
  --gold-deep:   #b8965a;
  --gold-ink:    #1a1206;
  --gold-soft:   rgba(232, 197, 131, 0.10);
  --gold-line:   rgba(232, 197, 131, 0.22);

  --blue:      #2e9bf5;
  --blue-soft: #6fb9f7;
  --blue-glow: rgba(46, 155, 245, 0.16);

  --text:    #f3f1ec;
  --muted:   #b9bec9;
  --muted-2: #6e7583;

  --line:      rgba(232, 197, 131, 0.14);
  --line-cool: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(232, 197, 131, 0.24);

  --grad-gold: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  --ff-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(232,197,131,0.10), transparent 60%),
    radial-gradient(900px 620px at 12% 108%, var(--blue-glow), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
  color: var(--text);
}

/* Serif = feeling, Sora = facts. Serif only where opted in. */
.ff-serif { font-family: var(--ff-serif); font-weight: 400; letter-spacing: -0.01em; }
.coaching .eyebrow { color: var(--gold); }
.coaching .eyebrow::before { background: var(--gold); }
.coaching .h-sub { color: var(--muted); }

/* Gold gradient text — keep OUT of transformed/filtered ancestors
   (background-clip:text breaks under transform). Use .reveal-fade
   (opacity-only, no transform) on any ancestor that wraps it. */
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Opacity-only reveal (safe wrapper for gold-clip text) */
.reveal.reveal-fade { transform: none; }

/* Gilt hairline frame — the signature "expensive edge" */
.gilt { position: relative; }
.gilt::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, var(--gold-bright), rgba(232,197,131,0.14) 42%, transparent 72%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .7;
}

/* Breathing gold aurora */
.aurora { position: absolute; inset: -18% 0 auto 0; height: 62vh; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 60% at 50% 0%, rgba(232,197,131,0.13), transparent 70%);
  filter: blur(30px); animation: breathe 14s ease-in-out infinite; }
@keyframes breathe { 0%,100% { opacity: .65; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* ---------- Buttons ---------- */
.btn-gold {
  font-family: var(--ff-display); font-weight: 700; color: #1a1206;
  background: linear-gradient(180deg, #f4dca6, #e8c583 55%, #b8965a);
  box-shadow: 0 10px 30px -10px rgba(232,197,131,0.55), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 18px 46px -12px rgba(232,197,131,0.7), inset 0 1px 0 rgba(255,255,255,0.6); }
/* global (used on main page teaser too) */
.btn-ghost-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Sora', system-ui, sans-serif; font-weight: 600; font-size: .98rem; line-height: 1;
  color: #e8c583; background: transparent; padding: 15px 30px; border-radius: 999px;
  border: 1px solid rgba(232,197,131,0.30); cursor: pointer;
  transition: border-color .3s, box-shadow .3s, transform .2s;
}
.btn-ghost-gold svg { width: 18px; height: 18px; }
.btn-ghost-gold:hover { border-color: #e8c583; transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(232,197,131,0.25), 0 0 42px -10px rgba(232,197,131,0.45); }

/* Exclusive / capacity badge */
.excl-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-display); font-weight: 700; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-bright); background: linear-gradient(180deg, rgba(232,197,131,0.15), rgba(232,197,131,0.04));
  border: 1px solid var(--gold-line); border-radius: 999px; padding: 9px 16px;
}
.excl-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(232,197,131,.6); animation: pulseGold 2.4s infinite; }
@keyframes pulseGold { 0%{box-shadow:0 0 0 0 rgba(232,197,131,.5)} 70%{box-shadow:0 0 0 10px rgba(232,197,131,0)} 100%{box-shadow:0 0 0 0 rgba(232,197,131,0)} }

.gold-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-line), transparent); border: 0; margin: 0; }

/* Gold eyebrow (global — used on main-page teaser) */
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }

/* Gold nav link on the main page (points to /coaching) */
.nav-links a.nav-coach { color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.nav-links a.nav-coach::after { content: "✦"; font-size: .7em; opacity: .8; }
.nav-links a.nav-coach:hover { color: var(--gold-bright); }

/* Coaching upsell teaser (main page — the "velvet rope" downshift) */
.coach-teaser { max-width: 900px; margin: clamp(40px, 5vw, 64px) auto 0; text-align: center;
  border-radius: 24px; padding: clamp(30px, 4vw, 52px); position: relative;
  background: radial-gradient(130% 120% at 50% 0%, rgba(232,197,131,0.08), var(--surface));
  border: 1px solid var(--gold-line); }
.coach-teaser .crest-sm { width: 58px; height: 58px; margin: 0 auto 6px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--gold-line); background: rgba(232,197,131,0.06); }
.coach-teaser .crest-sm svg { width: 30px; height: 30px; color: var(--gold); }
.coach-teaser h2 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin: 14px 0 14px; }
.coach-teaser p { color: var(--muted); max-width: 60ch; margin: 0 auto 26px; font-size: clamp(1rem, 1.7vw, 1.14rem); line-height: 1.65; }
.coach-teaser p b { color: #fff; }

/* ---------- NAV ---------- */
body.coaching .nav.scrolled { border-bottom-color: var(--gold-line); }
.nav-back { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-soft); font-size: .9rem; font-weight: 500; }
.nav-back:hover { color: var(--gold); }
.nav-back svg { width: 16px; height: 16px; }
.brand .tag {
  margin-left: 9px; font-family: var(--ff-display); font-weight: 700; font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-line); border-radius: 6px; padding: 3px 8px; vertical-align: middle;
}
@media (max-width: 600px) { .brand .tag { display: none; } .nav-back span { display: none; } }

/* ---------- HERO (velvet rope) ---------- */
.chero { position: relative; padding-top: clamp(40px, 6vw, 78px); overflow: clip; }
.chero-inner { max-width: 880px; margin-inline: auto; text-align: center; position: relative; z-index: 2; }
.chero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; margin-top: 22px; }
.chero .h2sub { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 1.55rem); color: var(--gold-bright); margin-top: 20px; }
.chero .lead { margin: 20px auto 0; max-width: 60ch; font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: var(--muted); line-height: 1.65; }
.chero-actions { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.chero .cap-note { margin-top: 22px; }
.chero-meta { margin-top: 28px; display: flex; gap: 12px 22px; justify-content: center; flex-wrap: wrap; color: var(--muted-2); font-size: .9rem; }
.chero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.chero-meta svg { width: 16px; height: 16px; color: var(--gold); }
.sublink { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .92rem; margin-top: 20px; }
.sublink:hover { color: var(--gold); }
.sublink svg { width: 15px; height: 15px; }

/* Crest / wax seal */
.crest { width: 128px; height: 128px; margin: 0 auto; position: relative; display: grid; place-items: center; }
.crest .ring { position: absolute; inset: 0; animation: spin 44s linear infinite; }
.crest .ring text { fill: var(--gold); font-family: var(--ff-display); font-size: 7.4px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.crest .crown { width: 52px; height: 52px; color: var(--gold); filter: drop-shadow(0 6px 18px rgba(232,197,131,.4)); }
.crest::after { content: ""; position: absolute; inset: 22px; border-radius: 50%; background: radial-gradient(circle, var(--gold-soft), transparent 72%); border: 1px solid var(--gold-line); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .crest .ring, .aurora { animation: none; } }

/* ---------- Section title helper (serif on coaching) ---------- */
.coaching .sec-head { max-width: 760px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.coaching .sec-head.left { text-align: left; align-items: flex-start; margin-inline: 0; }
.coaching .sec-title { font-family: var(--ff-serif); font-weight: 400; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; }
.coaching .sec-title.sm { font-size: clamp(1.7rem, 4vw, 2.6rem); }

/* ---------- THE GAP / PROOF numbers ---------- */
.gap-wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px,3vw,30px); align-items: stretch; margin-top: 48px; }
.gap-card { border-radius: 18px; padding: clamp(24px,3vw,36px); display: flex; flex-direction: column; gap: 12px; background: var(--surface); border: 1px solid var(--line-cool); }
.gap-card.you { border: 1px solid var(--gold-line); background: radial-gradient(120% 120% at 50% 0%, var(--gold-soft), var(--surface)); }
.gap-card .lab { font-family: var(--ff-display); font-weight: 700; letter-spacing: .04em; font-size: 1.02rem; }
.gap-card.you .lab { color: var(--gold); }
.gap-card .big { font-family: var(--ff-serif); font-weight: 300; font-size: clamp(3rem,8vw,5.4rem); line-height: .95; }
.gap-card.grp .big { color: #cfe6ff; }
.gap-card.you .big { }
.gap-card p { color: var(--muted); font-size: .95rem; line-height: 1.55; }
.gap-mid { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.gap-mid .x2 { font-family: var(--ff-serif); font-weight: 400; font-size: 2rem; color: var(--gold); }
.gap-mid .arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--gold); }
.gap-mid .arrow svg { width: 20px; height: 20px; }
.gap-mid .cap { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- FÜR WEN / NICHT + PAIN ---------- */
.pain { max-width: 760px; margin: 0 auto; text-align: center; }
.pain p { color: var(--muted); font-size: clamp(1.05rem,1.9vw,1.24rem); line-height: 1.7; }
.pain em { color: var(--gold-bright); font-style: italic; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.fit-card { background: var(--surface); border: 1px solid var(--line-cool); border-radius: 18px; padding: clamp(24px,3vw,32px); }
.fit-card h3 { font-family: var(--ff-display); font-size: 1.12rem; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.fit-card ul { display: flex; flex-direction: column; gap: 12px; }
.fit-card li { display: flex; gap: 11px; color: #d7dbe4; font-size: .97rem; line-height: 1.45; }
.fit-card li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.fit-card.yes { border-color: var(--gold-line); }
.fit-card.yes h3, .fit-card.yes li svg { color: var(--gold); }
.fit-card.no h3, .fit-card.no li { color: var(--muted); }
.fit-card.no li svg { color: var(--muted-2); }
.fit-card .fit-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; color: var(--blue-soft); font-weight: 600; font-size: .93rem; }
.fit-card .fit-link svg { width: 16px; height: 16px; }

/* ---------- MECHANISM tiles ---------- */
.mech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 46px; }
.mech { border-radius: 18px; padding: clamp(24px,3vw,32px); background: var(--surface); }
.mech .m-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); margin-bottom: 16px; }
.mech .m-ico svg { width: 24px; height: 24px; }
.mech h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.14rem; margin-bottom: 8px; }
.mech p { color: var(--muted); font-size: .95rem; line-height: 1.55; }

/* ---------- MODULE cards (Stufe 1) with ghosted serif numbers ---------- */
.mod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 38px; }
.mod { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line-cool); border-radius: 14px; padding: 22px 20px; }
.mod .mod-num { position: absolute; top: -18px; right: 8px; font-family: var(--ff-serif); font-weight: 400; font-size: 5.5rem; color: var(--gold-deep); opacity: .13; pointer-events: none; }
.mod h4 { font-family: var(--ff-display); font-weight: 600; font-size: 1.02rem; position: relative; }
.mod p { color: var(--muted-2); font-size: .85rem; margin-top: 4px; position: relative; }

/* ---------- 1-on-1 ritual timeline (Stufe 2) ---------- */
.ritual { max-width: 720px; margin: 34px auto 0; }
.ritual .rframe { font-family: var(--ff-serif); font-style: italic; font-size: 1.2rem; color: var(--gold-bright); text-align: center; margin-bottom: 28px; }
.rstep { display: flex; gap: 20px; padding-bottom: 26px; position: relative; }
.rstep:not(:last-child)::before { content: ""; position: absolute; left: 22px; top: 46px; bottom: -4px; width: 1px; background: var(--gold-line); }
.rstep .node { width: 46px; height: 46px; flex: none; border-radius: 50%; border: 1px solid var(--gold-line); background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-family: var(--ff-serif); font-size: 1.3rem; }
.rstep .rbody h4 { font-family: var(--ff-display); font-weight: 600; font-size: 1.08rem; margin-bottom: 4px; }
.rstep .rbody p { color: var(--muted); font-size: .96rem; }

/* ---------- WAS DU BEKOMMST (pillars headers) ---------- */
.stufe-tag { font-family: var(--ff-display); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.stufe { margin-top: 46px; }
.stufe > h3 { font-family: var(--ff-serif); font-weight: 400; font-size: clamp(1.5rem,3.4vw,2.2rem); margin: 6px 0 6px; }
.stufe > p.intro { color: var(--muted); max-width: 60ch; }
.pillar-meta { margin-top: 26px; display: inline-flex; gap: 22px; flex-wrap: wrap; font-family: var(--ff-display); font-weight: 700; color: var(--text); font-size: .95rem; }
.pillar-meta span { color: var(--gold); }

/* ---------- COMPARISON table (Zwei Wege) ---------- */
.compare { margin-top: 46px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px clamp(14px,2.5vw,26px); text-align: left; border-bottom: 1px solid var(--line-cool); font-size: .96rem; vertical-align: top; }
.compare thead th { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; background: var(--surface); }
.compare thead th.c-coach { color: var(--gold); background: linear-gradient(180deg, var(--gold-soft), transparent); }
.compare tbody th { font-weight: 500; color: var(--muted); }
.compare td { color: #d7dbe4; }
.compare td.c-coach { color: var(--gold-bright); font-weight: 600; }
.compare .c-first { width: 26%; }
.compare tfoot td { border-bottom: 0; }
.compare tfoot a { color: var(--blue-soft); font-weight: 600; display: inline-flex; gap: 7px; align-items: center; }
.compare tfoot a svg { width: 16px; height: 16px; }

/* ---------- INVEST / PRICE ---------- */
.invest { max-width: 640px; margin: 46px auto 0; text-align: center; border-radius: 24px; padding: clamp(30px,4vw,50px);
  background: radial-gradient(130% 120% at 50% 0%, var(--gold-soft), var(--surface)); }
.invest .excl-badge { margin-bottom: 22px; }
.invest .inc { display: flex; flex-direction: column; gap: 10px; text-align: left; max-width: 430px; margin: 0 auto 26px; }
.invest .inc li { display: flex; gap: 11px; color: #e6ebf3; font-size: .98rem; }
.invest .inc li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--gold); }
.cprice { display: flex; align-items: baseline; justify-content: center; gap: 18px; margin-bottom: 10px; }
.cprice .old { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.4rem,3.5vw,2rem); color: var(--muted); text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 3px; }
.cprice .now { font-family: var(--ff-serif); font-weight: 400; font-size: clamp(3.4rem,10vw,5.4rem); line-height: .9; }
.cprice .now sup { font-size: .34em; vertical-align: super; }
.invest .save { display: inline-block; font-family: var(--ff-display); font-weight: 700; font-size: .82rem; color: #1a1206; background: var(--grad-gold); padding: 6px 14px; border-radius: 999px; margin-bottom: 10px; }
.invest .rate { font-size: .84rem; color: var(--muted-2); margin-bottom: 22px; }
.invest .cap-cite { color: var(--muted); font-size: .9rem; max-width: 46ch; margin: 0 auto 22px; }
.invest .guarantee { margin-top: 20px; font-size: .86rem; color: var(--muted); display: flex; align-items: center; gap: 10px; justify-content: center; }
.invest .guarantee svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* ---------- BEWERBUNG / process + form ---------- */
.steps3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.steps3 .s3 { background: var(--surface); border: 1px solid var(--line-cool); border-radius: 16px; padding: clamp(24px,3vw,30px); }
.steps3 .s3 .n { font-family: var(--ff-serif); font-size: 1.5rem; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-line); margin-bottom: 16px; }
.steps3 .s3 h3 { font-family: var(--ff-display); font-size: 1.08rem; margin-bottom: 8px; }
.steps3 .s3 p { color: var(--muted); font-size: .93rem; }

.applyform { max-width: 620px; margin: 40px auto 0; border-radius: 22px; padding: clamp(26px,3.5vw,40px); background: var(--surface); }
.applyform .fld { margin-bottom: 16px; text-align: left; }
.applyform label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: .86rem; color: var(--text); margin-bottom: 7px; }
.applyform input, .applyform textarea, .applyform select {
  width: 100%; background: #05070b; border: 1px solid var(--line-cool); border-radius: 12px; padding: 13px 15px;
  color: var(--text); font-family: var(--ff-body); font-size: .98rem; transition: border-color .2s, box-shadow .2s;
}
.applyform input:focus, .applyform textarea:focus, .applyform select:focus { outline: 0; border-color: var(--gold-line); box-shadow: 0 0 0 3px rgba(232,197,131,0.12); }
.applyform textarea { min-height: 88px; resize: vertical; }
.applyform .btn { width: 100%; margin-top: 6px; }
.applyform .micro { font-size: .82rem; color: var(--muted-2); margin-top: 14px; text-align: center; }
.apply-thanks { display: none; text-align: center; padding: 10px 0; }
.apply-thanks.show { display: block; }
.apply-thanks .tk-ic { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--gold); }
.apply-thanks .tk-ic svg { width: 30px; height: 30px; }
.apply-thanks h3 { font-family: var(--ff-serif); font-size: 1.6rem; margin-bottom: 10px; }
.apply-thanks p { color: var(--muted); margin-bottom: 18px; }
.applyform.sent .fld, .applyform.sent > .btn, .applyform.sent > .micro { display: none; }

/* ---------- FAQ (accordion) ---------- */
.faq { max-width: 780px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--line-cool); }
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; font-family: var(--ff-display); font-weight: 600; font-size: clamp(1rem,1.8vw,1.15rem); color: var(--text); }
.faq-q .ic { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1px solid var(--line-cool); display: grid; place-items: center; transition: .25s; color: var(--gold); }
.faq-q .ic svg { width: 15px; height: 15px; }
.faq-item[open] .faq-q .ic { transform: rotate(45deg); background: var(--gold-soft); border-color: var(--gold-line); }
.faq-a { padding: 0 4px 22px; color: var(--muted); font-size: .98rem; line-height: 1.65; max-width: 70ch; }

/* ---------- Reuse: testimonials framing on coaching ---------- */
.coaching .phone { border-color: #1c232f; }
.coaching .bubble.me { background: linear-gradient(135deg, var(--gold-deep), var(--gold-ink)); }

/* ============================================================
   TIERS (main page: Gruppe vs Coaching) — global
   ============================================================ */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.tier { border-radius: 22px; padding: clamp(26px,3.5vw,38px); display: flex; flex-direction: column; }
.tier .t-tag { font-family: var(--ff-display); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.tier h3 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.5rem,3vw,2rem); margin: 10px 0 6px; }
.tier .t-sub { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.tier ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.tier li { display: flex; gap: 10px; align-items: flex-start; color: #d3deec; font-size: .95rem; }
.tier li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }
.tier .btn, .tier .btn-ghost-gold { margin-top: auto; }
.tier-group { background: var(--surface); border: 1px solid var(--line-strong); }
.tier-group .t-tag { color: var(--blue-50); }
.tier-group li svg { color: var(--blue-50); }
.tier-coach { background: radial-gradient(130% 120% at 80% 0%, rgba(232,197,131,0.10), var(--surface)); border: 1px solid rgba(232,197,131,0.3); position: relative; }
.tier-coach .t-tag { color: #e8c583; }
.tier-coach li svg { color: #e8c583; }

/* ============================================================
   STICKY MOBILE CTA BAR — global (both pages)
   ============================================================ */
.stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  gap: 10px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, #05070b 92%, transparent); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,0.08); }
.stickybar .btn, .stickybar .btn-ghost-gold { flex: 1; padding: 14px; font-size: .95rem; }
@media (max-width: 720px) { .stickybar { display: flex; } body { padding-bottom: 78px; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .mech-grid, .mod-grid, .steps3, .tiers { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .gap-wrap { grid-template-columns: 1fr; }
  .gap-mid { flex-direction: row; padding: 6px 0; }
  .gap-mid .arrow svg { transform: rotate(90deg); }
  .fit-grid { grid-template-columns: 1fr; }
  .compare { overflow-x: auto; }
  .compare table { min-width: 460px; }
}
