:root {
  --bg: #060606;
  --bg-2: #0c0b08;
  --panel: rgba(17, 14, 8, 0.74);
  --line: rgba(246, 193, 73, 0.18);
  --line-strong: rgba(246, 193, 73, 0.45);
  --gold: #f6c149;
  --gold-bright: #ffd978;
  --gold-deep: #b97d17;
  --blue: #78a6ff;
  --green: #82e2a8;
  --text: #f5f2ea;
  --soft: #cfc3a7;
  --muted: #9f9277;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* Mobile usability pass */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .topbar {
    position: sticky;
    top: 0;
    padding: 12px 16px;
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .brand-lockup {
    width: 100%;
    min-width: 0;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .topnav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .topnav a {
    display: grid;
    min-height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 10px;
    text-align: center;
  }

  .topnav a::after {
    display: none;
  }

  .hero,
  .signal-row,
  .workflow,
  .stats-band,
  .opportunity-band,
  .guides-band,
  .success-feed,
  .proof-band,
  .membership,
  .page-hero,
  .pricing-section,
  .login-section,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-brand {
    font-size: clamp(58px, 20vw, 88px);
  }

  .hero h1,
  .section-head h2,
  .proof-copy h2,
  .final-cta h2 {
    max-width: none;
    overflow-wrap: anywhere;
  }

  .hero p,
  .section-head p,
  .workflow p,
  .membership p,
  .final-cta p {
    font-size: 15px;
  }

  .hero-actions,
  .centered-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    display: grid;
    min-height: 48px;
    place-items: center;
    text-align: center;
  }

  .hero-visual {
    min-height: 360px;
  }

  .vault-frame {
    width: min(100%, 390px);
  }

  .signal-row,
  .workflow-grid,
  .stats-grid,
  .opportunity-grid,
  .guides-grid,
  .pricing-grid,
  .login-grid,
  .proof-band,
  .membership {
    grid-template-columns: 1fr !important;
  }

  .photo-wheel-wrap {
    margin-left: -16px;
    margin-right: -16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .photo-wheel {
    grid-auto-columns: minmax(250px, 82vw);
    padding-left: 16px;
    padding-right: 16px;
  }

  .photo-card {
    height: 360px;
  }

  .photo-media,
  .photo-proof {
    height: 210px;
  }
}

@media (max-width: 420px) {
  .topnav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-brand {
    font-size: 54px;
  }

  .photo-card {
    height: 330px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(246, 193, 73, 0.13), transparent 22%),
    radial-gradient(circle at 78% 14%, rgba(246, 193, 73, 0.18), transparent 24%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #171104;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 10px 28px rgba(246, 193, 73, 0.2);
}

.brand-name {
  font-family: "Cinzel", serif;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.brand-sub,
.eyebrow,
.topnav a,
.signal-item p,
.workflow p,
.success-feed p,
.proof-list span,
.membership p,
.final-cta p {
  color: var(--soft);
}

.brand-sub,
.eyebrow,
.topnav a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  gap: 24px;
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.topnav a:hover::after {
  transform: scaleX(1);
}

.hero,
.signal-row,
.workflow,
.guides-band,
.success-feed,
.proof-band,
.membership,
.final-cta {
  padding-left: 32px;
  padding-right: 32px;
}

.hero {
  min-height: 100svh;
  padding-top: 110px;
  padding-bottom: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.hero-brand,
.hero h1,
.section-head h2,
.proof-copy h2,
.final-cta h2 {
  font-family: "Cinzel", serif;
}

.hero-brand {
  font-size: clamp(72px, 12vw, 148px);
  line-height: 0.92;
  color: var(--gold-bright);
  text-shadow:
    0 0 0 #000,
    0 3px 0 rgba(102, 70, 12, 0.95),
    0 12px 24px rgba(0, 0, 0, 0.4);
  margin: 10px 0 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.03;
  max-width: 12ch;
}

.hero h1 span {
  color: var(--gold-bright);
}

.hero p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.cta {
  border-radius: 8px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1b1305;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-proof strong,
.signal-item h2,
.workflow h3,
.proof-list strong {
  display: block;
  color: var(--gold-bright);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.vault-glow {
  position: absolute;
  inset: 8% 14% 18% 18%;
  background: radial-gradient(circle, rgba(246, 193, 73, 0.34), transparent 52%);
  filter: blur(30px);
}

.vault-frame {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.vault-door {
  position: absolute;
  left: 2%;
  width: 62%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.22), transparent 18%),
    radial-gradient(circle at 50% 50%, #2f2a22 0%, #121212 52%, #000 100%);
  border: 14px solid #6e5118;
  box-shadow:
    inset 0 0 0 8px rgba(255, 217, 120, 0.18),
    inset 0 0 42px rgba(246, 193, 73, 0.18),
    var(--shadow);
}

.vault-door::before,
.vault-door::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 2px solid rgba(255, 217, 120, 0.22);
}

.vault-wheel {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  border: 7px solid rgba(246, 193, 73, 0.72);
  box-shadow: inset 0 0 18px rgba(246, 193, 73, 0.2);
}

.vault-wheel::before,
.vault-wheel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62%;
  height: 4px;
  background: rgba(246, 193, 73, 0.8);
  transform-origin: center;
  transform: translate(-50%, -50%);
}

.vault-wheel::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.vault-core {
  position: absolute;
  right: 0;
  width: 58%;
  height: 72%;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(21, 16, 9, 0.95), rgba(7, 7, 6, 0.98)),
    linear-gradient(135deg, rgba(246, 193, 73, 0.08), transparent);
  border: 1px solid rgba(246, 193, 73, 0.3);
  box-shadow: inset 0 0 80px rgba(246, 193, 73, 0.09), var(--shadow);
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.vault-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vault-shelf span {
  min-height: 88px;
  min-width: 0;
  border: 1px solid rgba(246, 193, 73, 0.18);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(246, 193, 73, 0.1), rgba(246, 193, 73, 0.02));
  color: var(--gold-bright);
  font-family: "Cinzel", serif;
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1.05;
  text-align: center;
  overflow-wrap: anywhere;
  padding: 8px;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 5, 0.82);
}

.signal-item {
  padding: 28px 26px;
}

.signal-item + .signal-item {
  border-left: 1px solid var(--line);
}

.signal-item h2 {
  margin: 0 0 10px;
}

.signal-item p {
  margin: 0;
  line-height: 1.6;
}

.workflow,
.success-feed,
.proof-band,
.membership,
.final-cta {
  padding-top: 92px;
  padding-bottom: 92px;
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.proof-copy h2,
.final-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.08;
}

.workflow-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.workflow-grid article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.step {
  font-family: "Cinzel", serif;
  color: var(--gold-bright);
  font-size: 22px;
}

.workflow h3,
.photo-wheel-head h3,
.proof-list strong {
  margin: 18px 0 10px;
}

.workflow p,
.guides-band p,
.success-feed p,
.proof-copy p,
.proof-list span,
.membership p,
.final-cta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.success-feed {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(130, 226, 168, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.78), rgba(11, 9, 6, 0.86));
}

.success-feed .section-head p,
.membership .section-head p {
  max-width: 760px;
  margin-top: 16px;
}

.success-grid,
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.success-card,
.membership-link {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(10, 9, 6, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.success-card {
  padding: 22px;
}

.success-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.success-top strong,
.membership-link strong {
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.success-top span,
.membership-link span {
  font-family: "Cinzel", serif;
  color: var(--muted);
  font-size: 13px;
}

.success-card p {
  font-size: 18px;
  line-height: 1.45;
  color: var(--text);
}

.success-card p span {
  color: var(--green);
  font-weight: 800;
}

.photo-wheel-wrap {
  margin-top: 46px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.photo-wheel-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.photo-wheel-head h3 {
  color: var(--text);
  font-family: "Cinzel", serif;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.08;
}

.wheel-controls {
  display: flex;
  gap: 10px;
}

.wheel-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-bright);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.photo-wheel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 20vw);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 12px;
}

.photo-card {
  position: relative;
  scroll-snap-align: start;
  min-height: 0;
  height: 350px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 9, 6, 0.82);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.photo-media,
.photo-proof {
  width: 100%;
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  overflow: hidden;
  position: relative;
}

.photo-media img {
  position: static;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.photo-proof {
  display: grid;
  place-items: center;
}

.photo-proof span {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.36);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-card strong,
.photo-card p {
  display: block;
  padding-left: 14px;
  padding-right: 14px;
}

.photo-card strong {
  margin-top: 12px;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.photo-card p {
  margin-top: 7px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.4;
}

.photo-card p span {
  color: var(--green);
  font-weight: 800;
}

.frame-controls {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  z-index: 4;
  display: none;
  grid-template-columns: repeat(6, 30px) minmax(48px, auto) minmax(70px, auto);
  gap: 6px;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(246, 193, 73, 0.32);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.frame-editing .frame-controls {
  display: grid;
}

.frame-controls button {
  min-width: 0;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.frame-controls span {
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}

.frame-export {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1b1305;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 30%, rgba(246, 193, 73, 0.08), transparent 26%),
    rgba(10, 9, 6, 0.8);
}

.membership {
  background:
    radial-gradient(circle at 86% 18%, rgba(120, 166, 255, 0.08), transparent 28%),
    rgba(6, 6, 6, 0.9);
}

.membership-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.membership-link:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background-color: rgba(246, 193, 73, 0.035);
}

.membership-link strong {
  display: block;
  margin-top: 42px;
  font-size: 17px;
}

.membership-link em {
  display: block;
  margin-top: 12px;
  color: var(--soft);
  font-style: normal;
  line-height: 1.6;
}

.proof-list {
  display: grid;
  gap: 22px;
}

.proof-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.final-cta {
  text-align: center;
}

.final-cta p {
  margin: 18px auto 28px;
  max-width: 540px;
}

.stats-band,
.opportunity-band,
.page-hero,
.pricing-section,
.login-section {
  padding-left: 32px;
  padding-right: 32px;
}

.stats-band,
.opportunity-band,
.pricing-section,
.login-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.page-hero {
  min-height: 58svh;
  padding-top: 150px;
  padding-bottom: 70px;
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.pricing-plan h2,
.login-panel h2,
.opportunity-copy h2 {
  margin: 12px 0 0;
  font-family: "Cinzel", serif;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.08;
}

.page-hero p,
.opportunity-copy p,
.pricing-section p,
.login-section p,
.stats-grid span,
.opportunity-list span {
  margin: 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.7;
}

.page-hero p,
.opportunity-copy p {
  max-width: 720px;
  margin-top: 18px;
}

.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 5, 0.82);
}

.stats-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stats-grid div {
  min-height: 190px;
  padding: 24px;
  background: #090806;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-grid strong {
  color: var(--gold-bright);
  font-family: "Cinzel", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.opportunity-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 46px;
  align-items: start;
}

.opportunity-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.opportunity-list div {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #090806;
}

.opportunity-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guides-band {
  padding-left: 32px;
  padding-right: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 10%, rgba(246, 193, 73, 0.08), transparent 24%),
    rgba(6, 6, 6, 0.9);
}

.guides-band .section-head p {
  max-width: 760px;
  margin-top: 16px;
  color: var(--soft);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.guide-link {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(10, 9, 6, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.guide-link:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background-color: rgba(246, 193, 73, 0.035);
}

.guide-link span {
  font-family: "Cinzel", serif;
  color: var(--muted);
  font-size: 13px;
}

.guide-link strong {
  display: block;
  margin-top: 42px;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 17px;
}

.guide-link em {
  display: block;
  margin-top: 12px;
  color: var(--soft);
  font-style: normal;
  line-height: 1.6;
}

.guide-pending {
  opacity: 0.72;
}

.centered-actions {
  justify-content: center;
}

.pricing-section,
.login-section {
  display: grid;
  gap: 34px;
  align-items: start;
}

.pricing-section {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.login-section {
  grid-template-columns: minmax(320px, 480px) minmax(0, 1fr);
}

.pricing-plan,
.future-services,
.login-panel,
.portal-notes {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(10, 9, 6, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.pricing-plan,
.login-panel {
  padding: 30px;
}

.future-services,
.portal-notes {
  padding: 26px;
}

.future-services h2,
.portal-notes h2 {
  margin: 0;
  color: var(--gold-bright);
}

.price-line {
  margin: 24px 0;
  display: flex;
  align-items: end;
  gap: 10px;
}

.price-line strong {
  color: var(--gold-bright);
  font-family: "Cinzel", serif;
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.9;
}

.price-line span {
  color: var(--soft);
  font-weight: 700;
}

.feature-list,
.future-list,
.portal-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li,
.future-list li,
.portal-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  line-height: 1.55;
}

.future-list strong {
  color: var(--text);
}

.future-list span {
  float: right;
  color: var(--gold-bright);
  font-weight: 800;
}

.login-actions {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.login-actions .cta {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .proof-band,
  .opportunity-band,
  .pricing-section,
  .login-section,
  .workflow-grid,
  .success-grid,
  .membership-grid,
  .guides-grid,
  .stats-grid,
  .signal-row {
    grid-template-columns: 1fr;
  }

  .signal-item + .signal-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .topbar,
  .hero,
  .signal-row,
  .workflow,
  .stats-band,
  .opportunity-band,
  .guides-band,
  .success-feed,
  .proof-band,
  .membership,
  .page-hero,
  .pricing-section,
  .login-section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    padding-top: 14px;
    padding-bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .topnav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .centered-actions {
    align-items: stretch;
  }

  .photo-wheel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-wheel {
    grid-auto-columns: minmax(230px, 72vw);
  }

  .photo-card {
    height: 350px;
  }

  .photo-media,
  .photo-proof {
    height: 220px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .vault-core {
    width: 61%;
    height: 76%;
    padding: 14px;
  }

  .vault-shelf span {
    min-height: 68px;
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .topbar {
    position: sticky;
    top: 0;
    padding: 12px 16px;
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .topnav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .topnav a {
    display: grid;
    min-height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 10px;
    text-align: center;
  }

  .topnav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-brand {
    font-size: clamp(58px, 20vw, 88px);
  }

  .hero h1,
  .section-head h2,
  .proof-copy h2,
  .final-cta h2 {
    max-width: none;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .centered-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    display: grid;
    min-height: 48px;
    place-items: center;
    text-align: center;
  }

  .signal-row,
  .workflow-grid,
  .stats-grid,
  .opportunity-grid,
  .guides-grid,
  .pricing-grid,
  .login-grid,
  .proof-band,
  .membership {
    grid-template-columns: 1fr !important;
  }

  .photo-wheel-wrap {
    margin-left: -16px;
    margin-right: -16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .photo-wheel {
    grid-auto-columns: minmax(250px, 82vw);
    padding-left: 16px;
    padding-right: 16px;
  }

  .photo-card {
    height: 360px;
  }
}

@media (max-width: 420px) {
  .topnav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Homepage deals preview ── */
.deals-preview { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.deals-preview h2 { font-size: clamp(28px,4vw,42px); margin: 8px 0 16px; }
.deals-preview > p { color: var(--muted, #9ba2a8); max-width: 600px; margin-bottom: 32px; }
.hp-deals-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 16px; margin-bottom: 24px; }
.hp-deal-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.hp-deal-card img { width: 100%; height: 140px; object-fit: contain; border-radius: 6px; background: #fff; }
.hp-deal-card .hp-deal-title { font-size: 13px; font-weight: 600; line-height: 1.35; flex: 1; }
.hp-deal-card .hp-deal-price { font-size: 20px; font-weight: 800; }
.hp-deal-card .hp-deal-was { font-size: 12px; color: var(--muted,#9ba2a8); }
.hp-deal-card .hp-deal-pct { display: inline-block; background: #e74c3c; color: #fff; font-size: 11px; font-weight: 800; border-radius: 4px; padding: 2px 6px; }
.hp-deal-card .hp-deal-btn { display: block; text-align: center; background: #f90; color: #111; font-weight: 800; font-size: 12px; border-radius: 6px; padding: 8px; text-decoration: none; margin-top: auto; }
.hp-deal-card .hp-deal-btn:hover { background: #e68a00; }
.hp-deals-footer { text-align: center; margin-bottom: 24px; }
.affiliate-disclosure { font-size: 11px; color: var(--muted,#9ba2a8); line-height: 1.5; max-width: 700px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; margin-top: 16px; }
