:root {
  --black: #0a0a0a;
  --dark: #111111;
  --charcoal: #1b1b1b;
  --gold: #c9a84c;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #f4f1eb;
  --muted: #686868;
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─── */
.cur {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cur-r {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left .25s cubic-bezier(.23,1,.32,1), top .25s cubic-bezier(.23,1,.32,1);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 52px;
  transition: background .4s;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 6px;
  color: var(--gold);
  text-decoration: none;
}

.nav-logo em {
  color: var(--white);
  font-style: normal;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--black);
  background: var(--gold);
  padding: 11px 26px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .3s;
}

.nav-cta:hover {
  background: #e8c97a;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 75% 45%, rgba(201,168,76,.07) 0%, transparent 65%),
    linear-gradient(160deg, #0a0a0a 40%, #130f02 70%, #0a0a0a 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-ghost {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(160px, 28vw, 380px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.07);
  letter-spacing: -16px;
  user-select: none;
  pointer-events: none;
}

.hero-vline {
  position: absolute;
  left: 51px;
  top: 120px;
  bottom: 80px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.3) 30%, rgba(201,168,76,.3) 70%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp .8s .2s both;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 155px);
  line-height: .92;
  letter-spacing: 2px;
  margin-bottom: 28px;
  animation: fadeUp .8s .35s both;
}

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

.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: rgba(244,241,235,.55);
  line-height: 1.9;
  margin-bottom: 44px;
  max-width: 520px;
  animation: fadeUp .8s .5s both;
}

.hero-btns {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeUp .8s .65s both;
}

.btn-g {
  background: var(--gold);
  color: var(--black);
  padding: 16px 44px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color .3s;
}

.btn-g::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}

.btn-g:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-g span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  text-transform: uppercase;
  transition: all .3s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}

.hero-price {
  position: absolute;
  right: 52px;
  bottom: 90px;
  z-index: 2;
  text-align: right;
  animation: fadeUp .8s .8s both;
}

.hero-price-from {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 84px);
  line-height: 1;
  color: var(--white);
}

.hero-price-tags {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 12px;
}

.p-tag {
  font-size: 9px;
  letter-spacing: 2px;
  padding: 5px 12px;
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 52px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
}

.scroll-line-anim {
  width: 48px;
  height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.scroll-line-anim::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  animation: scanline 1.8s ease-in-out infinite;
}

@keyframes scanline {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ─── STATS BAR ─── */
.stats {
  background: var(--gold);
  padding: 0 52px;
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(10,10,10,.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--black);
  line-height: 1;
  padding-right: 20px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(10,10,10,.65);
  line-height: 1.5;
}

.stat-label strong {
  display: block;
  font-size: 13px;
  color: var(--black);
}

/* ─── SHARED SECTION ELEMENTS ─── */
.s-label {
  font-size: 9px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .95;
  letter-spacing: 1px;
  margin-bottom: 52px;
}

/* ─── PAIN ─── */
.pain {
  padding: 120px 52px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.pain-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pain-card {
  background: var(--charcoal);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  border-left: 3px solid transparent;
  transition: border-color .3s, background .3s;
}

.pain-card:hover {
  background: #202020;
  border-color: var(--gold);
}

.pain-card-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: rgba(201,168,76,.2);
  line-height: 1;
}

.pain-card-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pain-card-body p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.pain-answer {
  position: sticky;
  top: 140px;
}

.pain-answer-frame {
  border: 1px solid rgba(201,168,76,.2);
  padding: 52px;
  position: relative;
}

.pain-answer-frame::before {
  content: 'SOLUTION';
  position: absolute;
  top: -10px;
  left: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--gold);
  background: var(--dark);
  padding: 0 12px;
}

.pain-big-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.pain-big-text .g {
  color: var(--gold);
}

.pain-answer p {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(244,241,235,.6);
  margin-bottom: 36px;
}

.pain-badges {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.badge {
  background: var(--charcoal);
  padding: 20px 12px;
  text-align: center;
}

.badge-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}

.badge-l {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 4px;
  line-height: 1.4;
}

/* ─── STRENGTHS ─── */
.strengths {
  padding: 120px 52px;
  background: var(--black);
}

.strengths-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.strengths-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.strengths-header-right {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(244,241,235,.4);
  max-width: 340px;
  text-align: right;
  line-height: 1.9;
}

.str-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.str-card {
  background: var(--charcoal);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}

.str-card:hover {
  background: #1f1f1f;
}

.str-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .5s cubic-bezier(.23,1,.32,1);
}

.str-card:hover .str-card-accent {
  width: 100%;
}

.str-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  opacity: .75;
}

.str-num {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.1);
  line-height: 1;
}

.str-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.15;
}

.str-body {
  font-size: 13px;
  line-height: 2;
  color: rgba(244,241,235,.6);
  margin-bottom: 20px;
}

.str-pill {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
  padding: 6px 16px;
}

/* ─── COMPARISON ─── */
.compare {
  padding: 120px 52px;
  background: var(--charcoal);
}

.compare-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.compare-table {
  margin-top: 60px;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid rgba(255,255,255,.06);
}

.compare-table th {
  padding: 18px 28px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
}

.compare-table th:first-child {
  text-align: left;
  color: var(--muted);
}

.compare-table th.th-other {
  color: var(--muted);
  background: rgba(255,255,255,.02);
}

.compare-table th.th-us {
  color: var(--gold);
  background: rgba(201,168,76,.06);
}

.compare-table td {
  padding: 18px 28px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.compare-table td:first-child {
  color: rgba(244,241,235,.5);
  font-size: 13px;
}

.compare-table td.td-other {
  text-align: center;
  color: var(--muted);
  background: rgba(255,255,255,.01);
}

.compare-table td.td-us {
  text-align: center;
  background: rgba(201,168,76,.04);
}

.no {
  color: #a85050;
  font-weight: 700;
  font-size: 13px;
}

.yes {
  color: #6db97c;
  font-weight: 700;
  font-size: 13px;
}

.val {
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
}

.price-spot {
  margin-top: 52px;
  background: var(--dark);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 52px;
  border: 1px solid rgba(201,168,76,.15);
}

.price-spot-divider {
  background: rgba(201,168,76,.15);
}

.price-spot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.price-spot-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

.price-spot-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
}

.price-spot-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── FLOW ─── */
.transform {
  padding: 120px 52px;
  background: var(--dark);
}

.transform-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.transform-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  align-items: start;
}

.tf-step {
  padding: 32px 20px;
  text-align: center;
  position: relative;
}

.tf-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 40px;
  width: 2px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.tf-circle {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color .4s, background .4s;
}

.tf-step:hover .tf-circle {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.tf-circle svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tf-n {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tf-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.tf-body {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── RESULTS ─── */
.results {
  padding: 120px 52px;
  background: var(--black);
}

.results-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.result-card {
  background: var(--charcoal);
  padding: 40px;
  transition: background .3s;
}

.result-card:hover {
  background: #1f1f1f;
}

.result-num-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.result-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  line-height: 1;
  color: var(--gold);
}

.result-unit {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 2px;
}

.result-text {
  font-size: 14px;
  line-height: 2;
  color: rgba(244,241,235,.7);
  margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
}

.result-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.result-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), #7a5a10);
  border-radius: 50%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-author-info {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
}

.result-author-name {
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
}

/* ─── FAQ ─── */
.faq {
  padding: 120px 52px;
  background: var(--charcoal);
}

.faq-inner {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  gap: 24px;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q-text {
  font-size: 15px;
  font-weight: 400;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .3s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  transition: transform .35s;
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-item.open .faq-icon {
  border-color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.23,1,.32,1);
}

.faq-a-inner {
  padding: 0 0 28px;
  font-size: 13px;
  line-height: 2.1;
  color: var(--muted);
}

.faq-item.open .faq-a {
  max-height: 200px;
}

/* ─── CTA ─── */
.cta {
  padding: 160px 52px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.04);
  white-space: nowrap;
  user-select: none;
  letter-spacing: -20px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eye {
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  line-height: .95;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.cta-h .g {
  color: var(--gold);
}

.cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(244,241,235,.5);
  line-height: 1.9;
  margin-bottom: 52px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
}

.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.cta-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
}

.cta-note span {
  color: rgba(201,168,76,.7);
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  padding: 64px 52px 36px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.f-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 14px;
}

.f-logo em {
  color: var(--white);
  font-style: normal;
}

.f-desc {
  font-size: 12px;
  line-height: 2;
  color: var(--muted);
  max-width: 300px;
}

.f-col-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}

.f-links a:hover {
  color: var(--white);
}

.f-store {
  margin-bottom: 16px;
}

.f-store-name {
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 3px;
}

.f-store-info {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1160px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(104,104,104,.5);
  letter-spacing: 2px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }

  .stats { flex-wrap: wrap; padding: 0 24px; }
  .stat-item { min-width: 50%; }

  .pain { padding: 80px 24px; }
  .pain-inner { grid-template-columns: 1fr; }

  .strengths,
  .compare,
  .transform,
  .results,
  .faq,
  .cta { padding: 80px 24px; }

  .str-grid { grid-template-columns: 1fr; }
  .transform-flow { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }

  .price-spot { grid-template-columns: 1fr; padding: 32px; }
  .price-spot-divider { display: none; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .hero-price { display: none; }
  .hero-content { padding-left: 24px; }
  .hero-vline { display: none; }
  .tf-step:not(:last-child)::after { display: none; }
}
