/* =========================
   Tier Landing Page Styles
   ========================= */

/* ---------- Root & Global ---------- */
:root {
  --bg: #000000;
  --text: #eaeaea;
  --muted: #b5b5b5;
  --border: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.03);
  --glow: rgba(255, 255, 255, 0.08);
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.58);
  --radius-xl: 1.35rem;
  --radius-pill: 999px;
  --container: 72rem;
  --font-serif: "Cinzel", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      60% 50% at 50% 35%,
      rgba(255, 255, 255, 0.05),
      rgba(0, 0, 0, 0) 60%
    ),
    url("assets/tier-atmosphere.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #000;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0.75) 75%,
      rgba(0, 0, 0, 0.95) 100%
    );
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.35);
}

/* ---------- Tier Entry Modal ---------- */
.tier-entry-modal {
  position: fixed;
  inset: 0;
  z-index: 4500;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 0ms linear 240ms;
}

.tier-entry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms ease;
}

.tier-entry-modal__panel {
  width: min(33rem, 100%);
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 12, 14, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 24px 66px rgba(0, 0, 0, 0.66),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 1.4rem 1.2rem 1.25rem;
}

.tier-entry-modal__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.tier-entry-modal__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: rgba(255, 255, 255, 0.95);
}

.tier-entry-modal__body {
  margin: 0.8rem 0 1rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.tier-entry-modal__form {
  display: grid;
  gap: 0.75rem;
}

.tier-entry-modal__input {
  width: 100%;
  min-height: 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.6rem 1rem;
  outline: none;
}

.tier-entry-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.tier-entry-modal__input:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.tier-entry-modal__submit {
  min-height: 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.tier-entry-modal__submit:hover,
.tier-entry-modal__submit:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
  outline: none;
}

.tier-entry-modal__secondary {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
  padding: 0;
  justify-self: center;
}

.tier-entry-modal__secondary:hover,
.tier-entry-modal__secondary:focus-visible {
  color: rgba(255, 255, 255, 0.9);
  outline: none;
}

.tier-entry-modal__error {
  min-height: 1rem;
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 137, 137, 0.95);
}

.tier-entry-modal__success[hidden],
.tier-entry-modal__default[hidden] {
  display: none;
}

body.tier-entry-modal-open {
  overflow: hidden;
}

#mcjs-trigger {
  display: none !important;
}

/* Hide Mailchimp default popup/launcher UI (keep backend script active) */
#mcjs-trigger,
.mc-modal,
.mc-modal-bg,
.mc-modal-container,
.mc-launcher,
[data-mailchimp-popup],
[data-mailchimp-launcher],
iframe[id*="mcjs"],
iframe[src*="chimpstatic.com"],
iframe[src*="list-manage.com/subscribe"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main,
.site-footer,
.site-header {
  position: relative;
  z-index: 2;
}

/* ---------- Intro Overlay ---------- */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #000;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.11), transparent 42%),
    radial-gradient(circle at 28% 62%, rgba(255, 255, 255, 0.07), transparent 40%),
    radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.06), transparent 40%),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.05), transparent 38%);
  filter: blur(34px);
  transform: scale(1.03);
}

.intro-logo-wrap {
  position: relative;
  width: min(640px, 86vw);
  display: grid;
  place-items: center;
}

.intro-logo-glow {
  position: absolute;
  inset: 19% 20%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 48%, transparent 78%);
  filter: blur(28px);
  opacity: 0;
  transform: scale(0.96);
}

.intro-logo {
  width: min(640px, 86vw);
  height: auto;
  display: block;
  opacity: 0;
  filter: blur(9px);
  transform: scale(0.99);
}

body.intro-pending .intro-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.intro-pending .site-header,
body.intro-pending main,
body.intro-pending .site-footer {
  opacity: 0;
  transform: translateY(14px);
}

body.intro-start .intro-logo-glow {
  opacity: 0.26;
  transform: scale(1);
  transition: opacity 600ms ease, transform 600ms ease;
}

body.intro-start .intro-smoke {
  opacity: 0.65;
  transition: opacity 800ms ease;
}

body.intro-logo-in .intro-logo {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  transition: opacity 1650ms ease, filter 1650ms ease, transform 1650ms ease;
}

body.intro-settle .intro-logo-glow {
  opacity: 0.14;
  transition: opacity 500ms ease;
}

body.intro-settle .intro-smoke {
  opacity: 0.08;
  transition: opacity 600ms ease;
}

body.intro-out .intro-overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 720ms ease, visibility 0ms linear 720ms;
}

body.intro-reveal .site-header,
body.intro-reveal main,
body.intro-reveal .site-footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms ease, transform 760ms ease;
}

body.intro-reveal main {
  transition-delay: 60ms;
}

body.intro-reveal .site-header {
  transition-delay: 140ms;
}

body.intro-reveal .site-footer {
  transition-delay: 200ms;
}

/* ---------- Atmospheric Layers ---------- */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.1), transparent 30%),
    radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.06), transparent 46%),
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.03), transparent 40%),
    radial-gradient(circle at 80% 38%, rgba(255, 255, 255, 0.03), transparent 40%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.06) 100%);
}

.atmosphere::before,
.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
}

.atmosphere::before {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.007) 0,
      rgba(255, 255, 255, 0.007) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: screen;
  opacity: 0.32;
}

.atmosphere::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6%;
  height: 34vh;
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.04) 38%,
      transparent 75%
    );
  filter: blur(28px);
  opacity: 0.65;
  pointer-events: none;
}

/* ---------- Layout ---------- */
.section {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  padding-block: clamp(4.5rem, 14vw, 11rem);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js-motion .reveal {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(0);
}

.js-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js-motion [data-reveal-delay="80"].reveal.is-visible {
  transition-delay: 80ms;
}

.js-motion [data-reveal-delay="100"].reveal.is-visible {
  transition-delay: 100ms;
}

.js-motion [data-reveal-delay="160"].reveal.is-visible {
  transition-delay: 160ms;
}

.js-motion [data-reveal-delay="200"].reveal.is-visible {
  transition-delay: 200ms;
}

.js-motion [data-reveal-delay="240"].reveal.is-visible {
  transition-delay: 240ms;
}

.js-motion [data-reveal-delay="300"].reveal.is-visible {
  transition-delay: 300ms;
}

/* ---------- Glass Utilities ---------- */
.glass-panel {
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ---------- Navigation ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 999;
}

.navpill {
  width: min(920px, 92%);
  height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(18, 18, 22, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(255, 255, 255, 0.06);
}

.nav-left {
  justify-self: start;
  letter-spacing: 0.3em;
  font-size: 12px;
  opacity: 0.85;
}

.nav-left a {
  color: inherit;
}

.nav-center {
  justify-self: center;
  display: flex;
  gap: 42px;
}

.nav-center a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: opacity 0.2s ease, text-shadow 0.2s ease;
}

.nav-center a:hover {
  opacity: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-right {
  justify-self: end;
}

.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* =========================
   CINEMATIC MYTHIC NAVBAR
   ========================= */

.navpill {
  position: relative;
  overflow: hidden;
  background: rgba(12, 12, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.7),
    0 0 22px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navpill::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(
    80% 140% at 50% 0%,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06) 35%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(6px);
  opacity: 0.85;
}

.nav-left {
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.18),
    0 0 24px rgba(255, 255, 255, 0.08);
}

.nav-center a {
  position: relative;
  text-transform: none;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  opacity: 0.9;
}

.nav-center a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0%;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  transition: width 0.22s ease, opacity 0.22s ease;
  opacity: 0;
}

.nav-center a:hover {
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.28),
    0 0 24px rgba(255, 255, 255, 0.12);
}

.nav-center a:hover::after {
  width: 70%;
  opacity: 1;
}

.nav-center a:nth-child(2) {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

.nav-cta {
  position: relative;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.navpill a:focus {
  outline: none;
}

.navpill a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
  border-radius: 999px;
}

/* NAV WRAPPER */
.navbar {
  max-width: min(980px, calc(100vw - 24px));
  margin: 16px auto 0;
  padding: 10px 14px;
  border-radius: 999px;
}

/* NAV LINKS ROW */
.navbar .nav-links {
  display: flex;
  gap: clamp(10px, 3.5vw, 28px);
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.navbar .nav-links::-webkit-scrollbar {
  display: none;
}

.navbar a {
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: clamp(13px, 3.2vw, 15px);
}

/* ---------- Buttons ---------- */
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.6rem 1.45rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: auto 22% -40%;
  height: 42%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.24), transparent 70%);
  filter: blur(8px);
  z-index: -1;
  opacity: 0.6;
}

.button:hover,
.button:focus-visible {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.button:hover svg,
.button:hover img {
  filter: invert(1);
}

.button-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.04));
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding-top: clamp(36px, 8vh, 80px);
  padding-bottom: clamp(24px, 6vh, 64px);
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero .container {
  width: 100%;
}

.sigil {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 13vw, 8.5rem);
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-shadow: 0 0 34px rgba(255, 255, 255, 0.14);
}

.sigil-img {
  width: min(640px, 86vw);
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  filter:
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.1))
    drop-shadow(0 0 70px rgba(255, 255, 255, 0.04));
}

.hero h1 {
  margin: 1.2rem 0 0.6rem;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1.12;
  font-weight: 500;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
  max-width: none;
  position: relative;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
}

.hero h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: min(680px, 78vw);
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.55), transparent);
  opacity: 0.28;
  pointer-events: none;
}

.lede {
  width: min(44rem, 94%);
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2.6vw, 1.35rem);
}

.hero .subhead {
  margin: 0.6rem auto 1.1rem;
  max-width: 58ch;
}

.hero-logo {
  width: min(520px, 78vw);
  height: auto;
}

.hero-title {
  font-size: clamp(34px, 7vw, 62px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: clamp(14px, 3.7vw, 18px);
  line-height: 1.5;
  max-width: 38ch;
  margin-inline: auto;
}

.hero-cta {
  margin-top: 2.4rem;
}

/* ---------- System Section ---------- */
.section-intro {
  margin: 0 auto 2rem;
  width: min(48rem, 100%);
  text-align: center;
  color: var(--muted);
}

.paths-grid {
  display: grid;
  gap: 1rem;
}

.path-card {
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
}

.path-card,
.tier-card {
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.path-card:hover,
.path-card:focus-visible,
.path-card.is-active,
.tier-card:hover,
.tier-card:focus-visible,
.tier-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.path-card:focus-visible,
.tier-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
}

.path-card h2 {
  margin: 0 0 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
}

.path-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.path-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.path-card li {
  margin-block: 0.5rem;
}

.path-card span {
  color: var(--text);
}

/* ---------- Product Cards ---------- */
.tier-grid {
  display: grid;
  gap: 1rem;
}

.tier-card {
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.25rem;
  position: relative;
}

.card {
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.15),
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(30px);
  opacity: 0.5;
}

.tier-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 1.25rem;
  line-height: 1.25;
}

.card-subtitle {
  margin: 0.42rem 0 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.tier-card p {
  margin: 0.75rem 0;
  color: var(--muted);
}

.tier-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.tier-card li {
  margin-block: 0.44rem;
}

.tier-card p,
.tier-card li {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.list-title {
  color: var(--text);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.tier-card .button {
  margin-top: 1.2rem;
}

.tier-card-featured {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 22px 58px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tier-card-featured::before {
  content: "";
  position: absolute;
  inset: auto 13% -15%;
  height: 20%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.26), transparent 72%);
  filter: blur(11px);
  opacity: 0.7;
  pointer-events: none;
}

.system-bridge {
  text-align: center;
  margin: 2.25rem 0 0;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-title {
  margin: 0 0 1.2rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.faq h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 1rem;
  padding: 0.95rem 1.05rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--text);
}

.faq-item summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.faq-item button {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Closing ---------- */
.closing {
  text-align: center;
}

.closing h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4.8vw, 2.85rem);
  line-height: 1.2;
}

.closing p {
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

/* ---------- Social ---------- */
.social {
  padding-top: clamp(2rem, 7vw, 4rem);
}

.social-section {
  position: relative;
  padding-bottom: 6rem;
}

.social-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 200px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.05) 40%,
    transparent 70%
  );
  filter: blur(30px);
  opacity: 0.6;
  pointer-events: none;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  justify-items: center;
}

.social-card {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.social-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: invert(1) brightness(1.2);
  transition: 0.3s ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 38px rgba(255, 255, 255, 0.22),
    0 30px 70px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.social-card-featured,
.social-card.highlight {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 35px rgba(255, 255, 255, 0.25),
    0 40px 80px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-card span {
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 3.7rem 1rem 3rem;
}

.site-footer p {
  margin: 0.25rem 0;
  color: var(--muted);
}

.site-footer p:first-child {
  color: var(--text);
  font-size: 1.1rem;
}

.site-footer a {
  color: inherit;
  transition: color 220ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

/* ---------- Breakpoints ---------- */
@media (min-width: 42rem) {
  .paths-grid,
  .tier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
  }

  .tier-card-featured {
    transform: translateY(-0.6rem);
  }

  .social-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .tier-card,
  .path-card {
    transition: none !important;
  }

  .intro-overlay {
    display: none !important;
  }

  .tier-entry-modal {
    transition: none !important;
  }

  body.intro-pending .site-header,
  body.intro-pending main,
  body.intro-pending .site-footer {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .nav-links a {
    display: none;
  }

  .nav-links .cta {
    display: inline-flex;
  }

  .navbar {
    justify-content: space-between;
    padding: 10px 16px;
  }
}

/* Page frame */
body {
  margin: 0;
  background: #060607;
  color: rgba(255, 255, 255, 0.9);
}

/* Top bar */
.product-topbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 92vw);
  z-index: 1000;
}

.tier-mark {
  letter-spacing: 0.6em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.toplink {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.toplink:hover {
  color: rgba(255, 255, 255, 0.95);
}

/* Shell */
.product-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 18px 80px;
}

.product-shell::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
}

/* Cover area */
.product-media {
  position: relative;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0) 60%
  );
  filter: blur(8px);
  pointer-events: none;
}

.media-frame {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.product-cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Info */
.product-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.product-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.product-subtitle {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.7);
}

.product-desc {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 0 0 22px;
}

.product-panel,
.includes-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
}

.panel-title {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
}

.includes {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* Buy row */
.buy-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.price-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px 14px;
  backdrop-filter: blur(10px);
}

.price-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.price-value {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-stack {
  display: grid;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

/* Invert hover (no shine animation) */
.btn:hover,
.btn:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.88);
  border-color: rgba(255, 255, 255, 0.92);
  outline: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
}

.microcopy {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* Mobile */
@media (max-width: 920px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .buy-row {
    grid-template-columns: 1fr;
  }
}

.tier-cover {
  width: 340px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.cover-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.tier-2-page .tier2-anchor-cover {
  display: block;
  width: min(420px, 100%);
  max-width: 420px;
  height: auto;
  margin: 0 auto 60px;
  border: 0;
  box-shadow: none;
  filter: none;
}

.tier-2-page .product-grid {
  grid-template-columns: 1fr;
}

.tier-2-page .product-media {
  display: none;
}

.page-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.includes-card {
  margin-top: 24px;
}

.cta-wrap {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.88);
  border-color: rgba(255, 255, 255, 0.92);
  outline: none;
}

.cta-sub {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .page-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
