/* ============ GM TOTEM — Dark Fantasy Landing ============ */

:root {
  --bg: #0a0807;
  --bg-2: #110d0a;
  --bg-3: #1a1410;
  --ink: #e8d9a8;          /* parchment */
  --ink-dim: #b9a877;
  --ink-mute: #6e6147;
  --gold: #c9a558;
  --gold-bright: #e6c074;
  --gold-deep: #8a6f3a;
  --brass: #7a6240;
  --rule: #3a2f1f;
  --danger: #8a3a2a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle film grain over the entire page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
}

/* ---------- Typography ---------- */
.display {
  font-family: 'Cinzel', 'Trajan Pro', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.display-xl {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.display-lg {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.08;
  letter-spacing: 0.02em;
}
.display-md {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
}

.fell {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--ink-dim);
	  max-width: 100%;

}

.body-lg { font-size: 19px; line-height: 1.55; color: var(--ink-dim); }
.body { font-size: 16px; color: var(--ink-dim); }
.body-sm { font-size: 14px; color: var(--ink-mute); }

/* ---------- Layout ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  position: relative;
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.section--hero { padding: 0; border-top: none; }
.section--tight { padding: 80px 0; }

/* Decorative gold rule with diamond */
.rule-ornate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold-deep);
  margin: 0 auto;
  width: 100%;
  max-width: 520px;
}
.rule-ornate::before,
.rule-ornate::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.rule-ornate svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Top Bar ---------- */
.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
	 justify-content: center;
}
.topbar__brand {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.42em;
  color: var(--ink);
}
.topbar__brand .dot { color: var(--gold); }
.topbar__meta {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.topbar__logo {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center right;
}
.hero__bg-art {
  width: 100%;
  height: 100%;
  display: block;
}
/* Vertical scrim — darken top + bottom for readability */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,5,3,0.85) 0%, rgba(7,5,3,0.15) 28%, rgba(7,5,3,0.15) 70%, rgba(7,5,3,0.9) 100%);
  pointer-events: none;
}
/* Side scrim — heavy darkening behind the copy on the left */
.hero__scrim-side {
  position: absolute;
  inset: 0;
background:
  linear-gradient(90deg, rgba(7,5,3,0.92) 0%, rgba(7,5,3,0.78) 28%, rgba(7,5,3,0.15) 55%, rgba(7,5,3,0.0) 80%, rgba(7,5,3,0) 100%);  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 140px 40px 100px;
}
.hero__copy {
  max-width: 760px;
  /* Make text legible no matter what's under it: text-shadow on display, subtle on body */
}
.hero__title {
  /* Each line break is intentional — keep "Always Available." together */
  text-wrap: balance;
}
.hero__copy .hero__title,
.hero__copy .hero__sub {
  text-shadow: 0 2px 24px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
}
.hero__copy .eyebrow,
.hero__copy .signup__note,
.hero__copy .indicator__label,
.hero__copy .indicator__num {
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__eyebrow .pulse {
  width: 6px; height: 6px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title { margin-bottom: 24px; }
.hero__title .line { display: inline-block; white-space: nowrap; }
.hero__title .em { color: var(--gold); font-style: italic; font-family: 'IM Fell English', serif; font-weight: 400; }

.hero__sub {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ink-dim);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

/* Email form */
.signup {
  display: flex;
  border: 1px solid var(--brass);
  background: rgba(0,0,0,0.4);
  max-width: 540px;
  position: relative;
}
.signup::before, .signup::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
}
.signup::before { top: -4px; left: -4px; border-right: none; border-bottom: none; }
.signup::after { bottom: -4px; right: -4px; border-left: none; border-top: none; }

.signup input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 22px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.signup input::placeholder { color: var(--ink-mute); font-style: italic; }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  border: none;
  border-left: 1px solid var(--gold-deep);
  color: #1a0f00;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0 32px;
  cursor: pointer;
  position: relative;
  transition: filter 0.2s;
  white-space: nowrap;
}
.btn-gold:hover { filter: brightness(1.15); }
.btn-gold:active { filter: brightness(0.92); }

.signup__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero scrim adjustments + remove old product styles */
.hero__indicators {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(122, 98, 64, 0.4);
  max-width: 540px;
}

/* ---------- Placeholder card (parchment frame) ---------- */
.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, rgba(201,165,88,0.06), transparent 70%),
    linear-gradient(180deg, #1a1410, #0d0907);
  border: 1px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--ink-mute);
  overflow: hidden;
}
.placeholder::before,
.placeholder::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.placeholder::before {
  top: 8px; left: 8px;
  border-right: none; border-bottom: none;
}
.placeholder::after {
  bottom: 8px; right: 8px;
  border-left: none; border-top: none;
}
/* Add the other two corners via inner spans */
.placeholder .corner-tr,
.placeholder .corner-bl {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.placeholder .corner-tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.placeholder .corner-bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }

.placeholder__label {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
}
.placeholder__sub {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
}
.placeholder__icon { color: var(--gold-deep); opacity: 0.7; }

.hero__product .placeholder {
  display: none;
}
.hero__product::before {
  display: none;
}

/* Hero footer indicators (now scoped above) */
.hero__indicators-DEAD {
  display: none;
}
.indicator {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.indicator__num {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.indicator__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- PROBLEM ---------- */
.problem {
  background: var(--bg);
  text-align: center;
}
.problem__lines {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.problem__line {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--ink-dim);
}

.problem__line--label {
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
  font-weight: 600;
}

.problem__line--strike { color: var(--ink-mute); }
.problem__line--key { color: var(--gold); }
.problem__line .underline {
  display: inline-block;
  position: relative;
  padding-bottom: 36px;
}
.problem__line .underline::after {
  content: "";
  position: absolute;
  left: 10%; right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- HOW IT WORKS ---------- */
.section__head {
  text-align: center;
  margin-bottom: 80px;
}
.section__head .eyebrow { display: block; margin-bottom: 18px; }
.section__head h2 { margin-bottom: 20px; }
.section__head p { color: var(--ink-dim); max-width: 90%; margin: 0 auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.step {
  padding: 56px 40px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
}
.step:last-child { border-right: none; }
.step__img {
  width: 100%;
  height: auto;
  display: block;
}
.step__num {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.36em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.step__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--brass);
  color: var(--gold);
  position: relative;
}
.step__icon::before, .step__icon::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
}
.step__icon::before { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.step__icon::after { bottom: -3px; right: -3px; border-left: none; border-top: none; }

.step__title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.2;
}
.step__body {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* ---------- DEMO ---------- */
.demo {
  background:
    radial-gradient(ellipse 800px 400px at center, rgba(201,165,88,0.05), transparent 70%),
    var(--bg);
  text-align: center;
}
.demo__head { margin-bottom: 56px; }
.demo__video {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
.demo__video .placeholder { background: linear-gradient(180deg, #15100c, #080604); }

.play-btn {
  width: 88px; height: 88px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: var(--gold);
  position: relative;
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  opacity: 0.5;
}

/* ---------- SKINS ---------- */
.skins {
  background: var(--bg);
}
.skins__carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 16px;
  align-items: stretch;
}
.skins__viewport {
  overflow: hidden;
  width: 100%;
}
.skins__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  transition: transform 0.5s cubic-bezier(.4,.1,.2,1);
}
@media (max-width: 960px) {
  .skins__track { grid-auto-columns: calc((100% - 16px) / 2); }
}
@media (max-width: 600px) {
  .skins__track { grid-auto-columns: 100%; gap: 0; }
	  .hero__bg {
    background-position: 70% center;
  }
}
.skin-arrow {
  background: transparent;
  border: 1px solid var(--brass);
  color: var(--gold);
  width: 44px;
  align-self: center;
  height: 64px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.skin-arrow:hover { background: rgba(201,165,88,0.08); border-color: var(--gold); }
.skin-arrow:disabled { opacity: 0.25; cursor: not-allowed; }
.skin-arrow::before, .skin-arrow::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
}
.skin-arrow::before { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.skin-arrow::after { bottom: -3px; right: -3px; border-left: none; border-top: none; }

.skins__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}
.skin-dot {
  width: 8px; height: 8px;
  background: var(--rule);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.skin-dot--active { background: var(--gold); }
.skin {
  display: flex;
  flex-direction: column;
}
.skin__frame {
  aspect-ratio: 3/4;
  margin-bottom: 16px;
  perspective: 1200px;
}
.skin__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.4,.1,.2,1);
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  cursor: pointer;
  will-change: transform;
}
.skin__face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.skin__face--back {
  transform: rotateY(180deg) translateZ(0);
}

/* Back-card: same look as the original .placeholder frame, but no perspective parent */
.skin__back-card {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, rgba(201,165,88,0.06), transparent 70%),
    linear-gradient(180deg, #1a1410, #0d0907);
  border: 1px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--ink-mute);
  overflow: hidden;
}
.skin__back-card::before,
.skin__back-card::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.skin__back-card::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.skin__back-card::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.skin__back-card .corner-tr,
.skin__back-card .corner-bl {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.skin__back-card .corner-tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.skin__back-card .corner-bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
/* Front: show product image; Back: show iconographic placeholder */
.skin__frame:hover .skin__inner,
.skin__frame.is-flipped .skin__inner {
  transform: rotateY(180deg);
}

/* Front face — image placeholder, more atmospheric */
.skin__front-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201,165,88,0.18), transparent 65%),
    linear-gradient(180deg, #1a1410 0%, #080605 100%);
  border: 1px solid var(--brass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 16px 20px;
  overflow: hidden;
}
.skin__front-placeholder::before,
.skin__front-placeholder::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.skin__front-placeholder::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.skin__front-placeholder::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.skin__front-placeholder .corner-tr,
.skin__front-placeholder .corner-bl {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.skin__front-placeholder .corner-tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.skin__front-placeholder .corner-bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }

.skin__front-figure {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.skin__front-figure svg {
  width: 65%;
  height: auto;
  color: var(--gold);
  opacity: 0.85;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
}
.skin__front-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.skin__front-tag {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.skin__flip-hint {
  position: absolute;
  bottom: 28px; right: 28px;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.36em;
  color: var(--gold-deep);
  text-transform: uppercase;
  opacity: 0.7;
}

.skin__label {
  display: none;
}
.skin__name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.skin__num {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
}

/* ---------- PLEDGE TIERS ---------- */
.pledges {
  background:
    linear-gradient(180deg, var(--bg) 0%, #100b08 100%);
}
.tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--bg-2);
}
.tier {
  padding: 40px 24px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.3s;
 align-items: center;    /* ← aggiunto */
  text-align: center;     /* ← aggiunto */
}
.tier:last-child { border-right: none; }
.tier:hover { background: rgba(201,165,88,0.04); }

.tier--featured {
  background: rgba(201,165,88,0.05);
  position: relative;
}
.tier--featured::before {
  content: "MOST CHOSEN";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--bg);
  padding: 4px 14px;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.36em;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  white-space: nowrap;
}

.tier__rank {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.tier__name {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}
.tier__sigil {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-top: 4px;
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.tier__price .currency {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold-deep);
}
.tier__price .amount {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.tier__desc {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-dim);
  min-height: 4em;
}

/* ---------- SECONDARY CTA ---------- */
.cta-final {
  text-align: center;
  background:
    radial-gradient(ellipse 700px 300px at center, rgba(201,165,88,0.08), transparent 70%),
    var(--bg);
  padding: 140px 0;
}
.cta-final__title { margin-bottom: 20px; }
.cta-final__sub { margin-bottom: 48px; }
.cta-final .signup { margin: 0 auto; }

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--rule);
  padding: 40px 0;
  text-align: center;
}
.foot__url {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.42em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.foot__line {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero__inner { padding: 120px 40px 80px; }
  .hero__copy { max-width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--rule); }
  .step:last-child { border-bottom: none; }
@media (max-width: 960px) {
  .skins__grid { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: none; border-bottom: 1px solid var(--rule); }
  .tier:last-child { border-bottom: none; }
  .tier--featured::before { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .hero__inner { padding: 100px 24px 60px; }
  .signup { flex-direction: column; }
  .signup input { padding: 16px; }
  .btn-gold { padding: 16px; border-left: none; border-top: 1px solid var(--gold-deep); }
  .topbar { padding: 20px 24px; }
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
