/* ============ Teleshopping.Club landing — clean white & black ============ */
:root {
  --bg: #ffffff;
  --surface: #f6f6f4;
  --surface-2: #efefec;
  --line: #e4e4e0;
  --ink: #14161a;
  --muted: #6a6f76;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 24px 56px rgba(20, 22, 26, 0.12);
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ---------- brand ---------- */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-icon { width: 36px; height: 34px; color: var(--ink); }
.brand-word { font-weight: 500; font-size: 21px; letter-spacing: 0.01em; color: var(--ink); }
.brand-word em { font-style: normal; color: var(--muted); }
.brand-footer { font-size: 19px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 14px 28px;
  font-size: 15.5px;
  box-shadow: 0 12px 28px rgba(20, 22, 26, 0.22);
}
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: 0 18px 40px rgba(20, 22, 26, 0.3); }
.btn-lg { padding: 17px 38px; font-size: 17.5px; }
.btn-ghost {
  color: var(--ink);
  padding: 17px 34px;
  font-size: 17.5px;
  border: 2px solid var(--line);
  background: var(--bg);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35); }
.btn-light:hover { transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 16px 0; transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; }
.nav.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 28px rgba(20, 22, 26, 0.08);
}
.nav-inner { width: min(1180px, 92vw); margin: 0 auto; display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px; position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.btn-nav { padding: 11px 22px; font-size: 14.5px; }
.lang-switch {
  display: flex;
  gap: 3px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  font-family: var(--font);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { background: var(--ink); color: var(--white); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 150px 0 90px;
  overflow: hidden;
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 70%); }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobDrift 16s ease-in-out infinite alternate;
}
.blob-a { width: 520px; height: 520px; background: #ececea; top: -180px; right: -140px; }
.blob-b { width: 440px; height: 440px; background: #f1f1ee; bottom: -160px; left: -140px; animation-delay: 4s; }
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(36px, 26px) scale(1.1); }
}
.hero-inner {
  position: relative;
  width: min(900px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* centered logo lockup */
.hero-logo { display: flex; flex-direction: column; align-items: center; }
.hero-icon {
  width: clamp(110px, 14vw, 150px);
  height: auto;
  color: var(--ink);
  transform-origin: 50% 60%;
  animation: logoFloat 5.5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(-6px) rotate(-2deg); }
  50% { transform: translateY(6px) rotate(2deg); }
}
.hero-word {
  font-size: clamp(40px, 6.4vw, 78px);
  font-weight: 300;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 28px;
}
.hero-tagline {
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 19px);
  letter-spacing: 0.52em;
  text-indent: 0.52em;
  color: var(--ink);
  margin-top: 18px;
}
.lead {
  font-size: clamp(16.5px, 1.6vw, 20px);
  color: var(--muted);
  max-width: 58ch;
  margin: 36px 0 40px;
}
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 36px; }
.hero-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; list-style: none; font-weight: 500; color: var(--ink); font-size: 15px; }
.hero-perks svg { width: 18px; height: 18px; color: var(--ink); vertical-align: -3px; margin-right: 4px; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  translate: -50% 0;
  width: 28px; height: 48px;
  border: 2px solid var(--line);
  border-radius: 999px;
  display: flex;
  justify-content: center;
}
.scroll-hint span {
  width: 4px; height: 10px;
  background: var(--ink);
  border-radius: 3px;
  margin-top: 9px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(15px); opacity: 0.2; }
}

/* ---------- flat TV frame around the hero, with slight grey fuzz ---------- */
.tv-frame {
  position: absolute;
  top: 92px;
  left: max(26px, 4.5vw);
  right: max(26px, 4.5vw);
  bottom: 52px;
  z-index: 0;
  pointer-events: none;
  border: 2.5px solid rgba(20, 22, 26, 0.15);
  border-radius: 46px / 36px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 7px rgba(20, 22, 26, 0.03),
    inset 0 0 140px rgba(20, 22, 26, 0.05);
}
.tv-frame__signal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
/* faint grey fuzz (snow) */
.tv-frame__signal::before {
  content: "";
  position: absolute;
  inset: -14%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23c)'/%3E%3C/svg%3E");
  background-size: 110px 110px;
  opacity: 0.07;
  animation: tvStatic 0.45s steps(5) infinite;
}
/* faint rolling scanlines */
.tv-frame__signal::after {
  content: "";
  position: absolute;
  inset: -4% 0;
  background: repeating-linear-gradient(0deg, rgba(20, 22, 26, 0.045) 0 1.5px, rgba(20, 22, 26, 0) 1.5px 4px);
  animation: tvRoll 6s linear infinite;
}
/* faint horizontally-streaked fuzz */
.tv-frame__buzz {
  position: absolute;
  inset: -12%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23b)'/%3E%3C/svg%3E");
  background-size: 340px 2.5px;
  opacity: 0.06;
  animation: tvBuzz 0.18s steps(3) infinite;
}
/* small power LED in the bottom bezel */
.tv-frame__led {
  position: absolute;
  right: 26px;
  bottom: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(20, 22, 26, 0.3);
}
@keyframes tvStatic {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-22px, 13px); }
}
@keyframes tvRoll {
  from { transform: translateY(0); }
  to { transform: translateY(10px); }
}
@keyframes tvBuzz {
  0% { transform: translateY(0); opacity: 0.05; }
  50% { transform: translateY(-6px); opacity: 0.08; }
  100% { transform: translateY(3px); opacity: 0.06; }
}
@media (max-width: 560px) {
  .tv-frame { top: 78px; bottom: 36px; border-radius: 32px / 26px; }
}

/* ---------- kicker ---------- */
.kicker {
  display: inline-block;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.24em;
  color: var(--muted);
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

/* ---------- marquee ---------- */
.marquee { background: var(--ink); overflow: hidden; padding: 15px 0; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marqueeMove 26s linear infinite;
}
.marquee-track span { color: var(--white); font-weight: 500; font-size: 14.5px; white-space: nowrap; }
.marquee-track i { color: rgba(255, 255, 255, 0.45); font-style: normal; font-size: 13px; }
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sections ---------- */
section { padding: 110px 0; }
.section-title { font-size: clamp(30px, 3.8vw, 46px); font-weight: 600; letter-spacing: -0.015em; color: var(--ink); text-align: center; }
.section-sub { text-align: center; color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); margin: 14px auto 0; max-width: 62ch; }

/* ---------- benefits ---------- */
.benefits { background: var(--bg); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.benefit-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--ink); }
.benefit-icon {
  width: 60px; height: 60px;
  border-radius: 17px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover .benefit-icon { background: var(--ink); color: var(--white); border-color: var(--ink); transform: scale(1.07) rotate(-4deg); }
.benefit-icon svg { width: 34px; height: 34px; }
.benefit-card h3 { font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.benefit-card p { color: var(--muted); font-size: 15px; }

/* ---------- steps ---------- */
.steps { background: var(--surface); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 64px;
}
.step {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  padding: 40px 30px 34px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 21px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.step-icon svg { width: 38px; height: 38px; }
.step-num {
  position: absolute;
  top: -18px; left: 50%;
  translate: -50% 0;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(20, 22, 26, 0.28);
}
.step h3 { font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step-arrow { display: grid; place-items: center; color: var(--line); }
.step-arrow svg { width: 32px; height: 32px; }

/* ---------- featured ---------- */
.featured { background: var(--bg); }
.featured-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.featured-visual { position: relative; display: grid; place-items: center; }
.featured-bubble {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--bg), var(--surface-2));
  border: 1.5px solid var(--line);
}
.featured-visual img {
  position: relative;
  width: 78%;
  filter: drop-shadow(0 32px 40px rgba(20, 22, 26, 0.2));
  animation: prodFloat 5.5s ease-in-out infinite;
}
@keyframes prodFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}
.featured-tag {
  position: absolute;
  top: 6%; right: 8%;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  padding: 9px 18px;
  border-radius: 999px;
  rotate: 4deg;
  box-shadow: 0 12px 26px rgba(20, 22, 26, 0.25);
}
.featured-copy .section-title { text-align: left; }
.featured-copy > p { color: var(--muted); font-size: 17px; margin: 20px 0 34px; max-width: 52ch; }
.featured-cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- membership card section ---------- */
.cards-section {
  background:
    radial-gradient(760px 460px at 82% 12%, rgba(214, 162, 60, 0.12), transparent 62%),
    radial-gradient(620px 420px at 10% 96%, rgba(214, 162, 60, 0.07), transparent 60%),
    var(--bg);
  text-align: center;
}
.club-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  margin-top: 64px;
}
.club-visual { display: grid; place-items: center; }
.club-info { text-align: left; }
.tier-name { color: var(--ink); font-size: 28px; font-weight: 600; }
.tier-tag { color: var(--muted); font-size: 16px; margin-top: 8px; }
.tier-perks { list-style: none; margin: 28px 0 34px; display: grid; gap: 13px; text-align: left; }
.tier-perks li {
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tier-perks li:hover { transform: translateX(8px); box-shadow: 0 12px 26px rgba(20, 22, 26, 0.1); border-color: var(--ink); }
.tier-perks svg { width: 20px; height: 20px; color: var(--ink); flex-shrink: 0; }
.invite-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 13px 24px;
}
.invite-badge svg { width: 19px; height: 19px; flex-shrink: 0; }
.cards-note { color: var(--muted); font-size: 14px; margin-top: 56px; }

/* ---------- the club card ---------- */
.club-card {
  position: relative;
  width: min(440px, 88vw);
  aspect-ratio: 1.586;
  border-radius: 22px;
  padding: 7% 8%;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out, box-shadow 0.3s ease;
  overflow: hidden;
  user-select: none;
  background:
    radial-gradient(120% 160% at 14% 0%, rgba(255, 248, 214, 0.55), transparent 42%),
    linear-gradient(125deg, #f4cf73 0%, #d6a23c 34%, #a9741d 68%, #74470c 100%);
  color: #3a2706;
  box-shadow: 0 34px 70px rgba(122, 84, 12, 0.5);
}
.card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 252, 235, 0.55), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.club-card:hover .card-shine { opacity: 1; }
.card-top { display: flex; justify-content: space-between; align-items: center; }
.card-brand { font-weight: 600; font-size: clamp(15px, 1.6vw, 18px); letter-spacing: 0.01em; }
.card-brand em { font-style: normal; opacity: 0.7; }
.card-waves { width: 28px; height: 28px; opacity: 0.85; }
.card-chip {
  width: 13%;
  aspect-ratio: 1.3;
  border-radius: 18%;
  background: linear-gradient(135deg, #fff4cf, #d9b455);
  border: 1px solid rgba(90, 60, 8, 0.5);
  margin-top: 8%;
  display: grid;
  place-items: center;
}
.card-chip span { width: 70%; height: 55%; border-radius: 4px; border: 1.5px solid rgba(90, 60, 8, 0.45); }
.card-tier { margin-top: auto; font-weight: 700; font-size: clamp(12px, 1.3vw, 14.5px); letter-spacing: 0.2em; opacity: 0.95; }
.card-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-top: 6px; }
.card-name { font-weight: 600; font-size: clamp(13px, 1.4vw, 16px); letter-spacing: 0.12em; opacity: 0.78; }
.card-perk { font-weight: 700; font-size: clamp(12px, 1.3vw, 15px); white-space: nowrap; }

/* ---------- product carousel ---------- */
.carousel-section { background: var(--bg); overflow: hidden; }
.carousel {
  position: relative;
  margin-top: 56px;
}
.carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding: 14px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 24px 0 max(calc((100vw - 1180px) / 2), 4vw);
}

/* slider navigation */
.carousel-slider {
  width: min(1180px, 92vw);
  margin: 40px auto 0;
  padding: 0 4px;
}
.carousel-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  outline: none;
  cursor: pointer;
}
.carousel-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 46px;
  height: 14px;
  border-radius: 999px;
  background: var(--ink);
  cursor: grab;
  transition: transform 0.2s ease, background 0.2s ease;
}
.carousel-range::-webkit-slider-thumb:active { cursor: grabbing; transform: scaleY(1.25); }
.carousel-range::-moz-range-thumb {
  width: 46px;
  height: 14px;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  cursor: grab;
}
.carousel-range::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--ink); }
.product-card {
  flex: 0 0 auto;
  width: 290px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--ink); }
.product-img {
  aspect-ratio: 1.15;
  background: var(--surface);
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-meta { padding: 20px 22px 24px; }
.product-cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-meta h3 { font-size: 18.5px; font-weight: 600; color: var(--ink); margin: 6px 0 14px; line-height: 1.25; }
.product-link { font-size: 14.5px; font-weight: 600; color: var(--ink); }

/* ---------- cta band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 50% -10%, rgba(255, 255, 255, 0.08), transparent 70%),
    linear-gradient(135deg, #1f2228 0%, var(--ink) 60%, #08090b 100%);
  text-align: center;
}
.cta-band h2 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 600; letter-spacing: -0.015em; color: var(--white); }
.cta-band h2 em { font-style: normal; color: #b9bec7; }
.cta-band p { color: rgba(255, 255, 255, 0.72); font-size: clamp(16px, 1.6vw, 19.5px); margin: 16px 0 38px; }

/* ---------- footer ---------- */
.footer { background: var(--bg); border-top: 1.5px solid var(--line); padding: 42px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer p { color: var(--muted); font-size: 14px; }
.footer a { color: var(--ink); }

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .club-layout { grid-template-columns: 1fr; gap: 44px; }
  .club-info { text-align: center; }
  .club-info .btn { margin: 0 auto; }
  .tier-perks { max-width: 460px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .step-arrow { rotate: 90deg; padding: 4px 0; }
  .featured-inner { grid-template-columns: 1fr; gap: 40px; }
  .featured-copy .section-title { text-align: center; }
  .featured-copy { text-align: center; }
  .featured-copy > p { margin-left: auto; margin-right: auto; }
  .featured-cta { justify-content: center; }
  .nav-links { display: none; }
  .lang-switch { margin-left: auto; }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  /* more compact sections so each fits the screen with less scrolling */
  section { padding: 52px 0; }
  .section-sub { margin-top: 10px; }
  .benefits-grid { margin-top: 32px; gap: 16px; }
  .benefit-card { padding: 26px 22px; }
  .carousel { margin-top: 32px; }
  .carousel-slider { margin-top: 28px; }
  .club-layout { margin-top: 34px; gap: 26px; }
  .tier-perks { margin: 22px 0 26px; gap: 10px; }
  .tier-perks li { padding: 12px 16px; font-size: 15px; }
  .cards-note { margin-top: 30px; }
  .steps-grid { margin-top: 44px; gap: 34px; }
  .step { padding: 32px 24px 28px; }
  .featured-inner { gap: 30px; }
  .featured-copy > p { margin: 16px auto 26px; }
  .cta-band p { margin: 14px 0 30px; }
  .hero { padding-top: 124px; }
  .hero-tagline { letter-spacing: 0.34em; text-indent: 0.34em; }
  .brand-word { font-size: 16px; }
  /* keep hero content inside the TV frame (frame is inset ~26px; content was wider) */
  .hero-inner { width: calc(100vw - 84px); max-width: 360px; }
  .hero-word { font-size: clamp(23px, 7.2vw, 36px); margin-top: 22px; }
  .lead { font-size: 16px; }
  /* stack the feature ticks so they don't run past the frame edges */
  .hero-perks { flex-direction: column; gap: 10px; }
  /* compact nav so it fits: shrink icon + switch, drop the redundant CTA (hero has its own) */
  .nav-inner { gap: 12px; }
  .brand-icon { width: 30px; }
  .btn-nav { display: none; }
  .lang-switch { gap: 2px; padding: 3px; }
  .lang-btn { padding: 6px 10px; font-size: 12px; }
}
