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

:root {
  /* ---- Brand palette: BLACK · GOLD · GRAY (premium) ---- */
  --gold:        #f3d78b;
  --gold-mid:    #e4bd63;
  --gold-deep:   #c79a2f;
  --silver:      #cfd6de;
  --silver-mid:  #9aa3af;
  --silver-deep: #6b7480;
  --champagne:   #ecd9ad;

  --bg:          #08080a;
  --surface:     #14130f;
  --card:        rgba(26, 23, 16, 0.82);
  --border:      rgba(227, 189, 99, 0.20);
  --border-silver: rgba(207, 214, 222, 0.18);

  --text:        #f4f1e9;
  --muted:       #a7a299;
  --dim:         #6c675e;

  --grad-gold: linear-gradient(135deg, #f7e6b0 0%, #e4bd63 45%, #c79a2f 100%);
  --grad-cta:  linear-gradient(135deg, #f0cf7a 0%, #d9af45 50%, #b3871f 100%);
  --grad-silver: linear-gradient(135deg, #dfe4ea 0%, #ecd9ad 100%);

  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-gold:   0 0 40px rgba(212, 175, 55, 0.22);
  --shadow-silver: 0 0 40px rgba(207, 214, 222, 0.18);

  /* ---- Aliases (keep legacy class/inline hooks working) ---- */
  --pink: var(--gold);   --pink-mid: var(--gold-mid); --pink-deep: var(--gold-deep);
  --blue: var(--silver); --blue-mid: var(--silver-mid); --blue-deep: var(--silver-deep);
  --purple: var(--champagne);
  --grad-pink: var(--grad-gold);
  --grad-blue: var(--grad-silver);
  --shadow-pink: var(--shadow-gold);
  --shadow-blue: var(--shadow-silver);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Prompt', sans-serif;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(8, 8, 10, 0.88), rgba(8, 8, 10, 0.90)),
    url('assets/img/BG%20web%20-%20Kingstar.webp');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  body {
    background-image:
      linear-gradient(rgba(8, 8, 10, 0.90), rgba(8, 8, 10, 0.92)),
      url('assets/img/BG%20phone%20-%20Kingstar.webp');
    background-attachment: scroll;
    padding-bottom: 72px;
  }
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 1.25rem; }

@media (max-width: 768px) { .section { padding: 3rem 1rem; } }
@media (max-width: 479px) { .section { padding: 2.5rem 0.875rem; } }

/* ===== UTILS ===== */
.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-blue {
  background: var(--grad-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* SEO keyword highlight */
.kw { color: var(--gold); font-weight: 700; }

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(227, 189, 99, 0.10);
  border: 1px solid rgba(227, 189, 99, 0.30);
  color: var(--gold);
  margin-bottom: 1rem;
}
.badge-blue {
  background: rgba(207, 214, 222, 0.10);
  border-color: rgba(207, 214, 222, 0.28);
  color: var(--silver);
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.divider-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(227, 189, 99, 0.5));
}
.divider-line.rev {
  background: linear-gradient(to left, transparent, rgba(227, 189, 99, 0.5));
}
.divider-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== CARD ===== */
.card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
}

/* ===== SHINE ===== */
.shine { position: relative; overflow: hidden; }
.shine::after {
  content: '';
  position: absolute;
  top: -50%; left: -100%;
  width: 200%; height: 200%;
  background: linear-gradient(to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.30) 50%,
    rgba(255,255,255,0) 100%);
  transform: rotate(25deg);
  animation: shineMove 3.5s infinite;
}
@keyframes shineMove {
  0%   { left: -100%; opacity: 0; }
  50%  { opacity: 0.5; }
  100% { left: 120%;  opacity: 0; }
}

/* ===== FLOAT ===== */
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.float { animation: floatBob 4s ease-in-out infinite; }

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2.25rem;
  border-radius: 9999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-pink {
  background: var(--grad-cta);
  color: #1a1206;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.btn-pink:hover  { transform: scale(1.05); box-shadow: 0 8px 28px rgba(212,175,55,0.55); }
.btn-pink:active { transform: scale(0.97); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(227, 189, 99, 0.55);
}
.btn-outline:hover { background: rgba(227,189,99,0.08); transform: scale(1.05); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 9, 7, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 189, 99, 0.14);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { height: 52px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media (max-width: 479px) { .logo-name { font-size: 1rem; } }
@media (max-width: 360px) { .logo-name { display: none; } }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: 0.5rem;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(227,189,99,0.08); }

.ico-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #06C755;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border-radius: 4px;
  padding: 2px 4px;
  flex-shrink: 0;
  line-height: 1;
}

.header-btns { display: flex; gap: 0.5rem; align-items: center; flex-shrink: 0; margin-left: auto; }
.hbtn {
  height: 34px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3));
}
.hbtn:hover { transform: scale(1.07); }

@media (max-width: 768px) {
  .header-inner { height: 64px; }
  .logo-img { height: 44px; max-width: 140px; }
  .nav-menu { display: none; }
}
@media (max-width: 479px) {
  .header-inner { padding: 0 0.875rem; height: 56px; }
  .logo-img { height: 36px; max-width: 110px; }
  .hbtn { height: 28px; max-width: 90px; }
  .header-btns { gap: 0.375rem; }
}

/* ===== MOBILE NAV ===== */
.mob-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(10, 9, 7, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(227,189,99,0.12);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mob-nav::-webkit-scrollbar { display: none; }
.mob-nav-inner {
  display: flex;
  align-items: center;
  padding: 0 0.875rem;
  height: 44px;
  width: max-content;
  min-width: 100%;
  gap: 0.125rem;
}
.mob-nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.mob-nav-link:hover, .mob-nav-link:active { color: var(--text); background: rgba(227,189,99,0.08); }
@media (max-width: 768px) { .mob-nav { display: block; } }
@media (max-width: 479px) { .mob-nav { top: 56px; } }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-1 {
  top: 15%; left: 5%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,175,55,0.16) 0%, transparent 70%);
}
.hero-glow-2 {
  bottom: 10%; right: 2%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(207,214,222,0.10) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .hero { padding-top: 108px; min-height: auto; padding-bottom: 3rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
    padding: 2rem 1rem;
  }
  .hero-img-wrap { order: -1; }
}
@media (max-width: 479px) {
  .hero { padding-top: 100px; }
  .hero-inner { padding: 1.75rem 0.875rem; gap: 1.5rem; }
}
.hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  font-weight: 800;
}
@media (max-width: 479px) {
  .hero h1 { font-size: clamp(1.35rem, 6vw, 1.75rem); margin-bottom: 1rem; }
}
.hero p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
@media (max-width: 479px) { .hero p { font-size: 0.875rem; margin-bottom: 1.5rem; } }
.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }
@media (max-width: 768px) { .hero-actions { justify-content: center; } }
@media (max-width: 359px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
}
/* Hero stat chips */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.hstat { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.hstat-num { font-size: 1.5rem; font-weight: 800; }
.hstat-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.02em; margin-top: 3px; }
.hstat-div { width: 1px; height: 34px; background: linear-gradient(180deg, transparent, rgba(227,189,99,0.45), transparent); }
@media (max-width: 768px) {
  .hero-stats { justify-content: center; margin-bottom: 1.5rem; }
  .hstat { align-items: center; }
}
@media (max-width: 479px) {
  .hero-stats { gap: 0.6rem; }
  .hstat-num { font-size: 1.25rem; }
  .hstat-label { font-size: 0.66rem; }
  .hstat-div { height: 28px; }
}
@media (max-width: 360px) {
  .hero-stats { gap: 0.4rem; }
  .hstat-num { font-size: 1.05rem; }
  .hstat-label { font-size: 0.6rem; }
}

.hero-img-wrap { display: flex; justify-content: center; }

/* Hero premium glass card frame */
.hero-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(227,189,99,0.12), rgba(26,23,16,0.55));
  border: 1px solid rgba(227,189,99,0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 0 0 44px rgba(212,175,55,0.07);
}
.hero-card img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 0 44px rgba(212,175,55,0.32));
}
.hero-badge-float {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.42rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(10,9,7,0.88);
  border: 1px solid rgba(227,189,99,0.5);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}
.hb-1 { top: 6%; left: -5%; animation: floatBob 4s ease-in-out infinite; }
.hb-2 { bottom: 9%; right: -3%; animation: floatBob 4.6s ease-in-out infinite; }
@media (max-width: 768px) {
  .hero-card img { max-width: 340px; }
}
@media (max-width: 479px) {
  .hero-card { padding: 1.1rem; }
  .hero-card img { max-width: 280px; }
  .hero-badge-float { font-size: 0.7rem; padding: 0.32rem 0.65rem; }
  .hb-1 { left: 0; }
  .hb-2 { right: 0; }
}

/* ===== FEATURES ===== */
.features { padding: 4rem 1.25rem; background: rgba(24, 21, 15, 0.55); }
@media (max-width: 768px) { .features { padding: 3rem 1rem; } }
@media (max-width: 479px) { .features { padding: 2.5rem 0.875rem; } }
.features-head {
  max-width: 1200px;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.features-head h2 {
  font-size: clamp(1.2rem, 3.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features-head > p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.9;
  max-width: 820px;
  margin: 1rem auto 0;
  text-align: left;
}
@media (max-width: 479px) { .features-head { margin-bottom: 1.5rem; } .features-head > p { font-size: 0.875rem; } }
.feat-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 640px) { .feat-grid { grid-template-columns: 1fr; gap: 1rem; } }
@media (min-width: 641px) and (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; }
}
.feat-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
@media (max-width: 640px) { .feat-card { padding: 1.5rem 1.25rem; } }
.feat-card:hover {
  border-color: rgba(227, 189, 99, 0.42);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.feat-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.875rem;
}
.feat-icon.p { background: rgba(227,189,99,0.10); border: 1px solid rgba(227,189,99,0.24); }
.feat-icon.b { background: rgba(207,214,222,0.10); border: 1px solid rgba(207,214,222,0.24); }
.feat-icon.v { background: rgba(236,217,173,0.10); border: 1px solid rgba(236,217,173,0.24); }
.feat-card h3 { font-size: 1rem; color: var(--gold); margin-bottom: 0.5rem; }
.feat-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ===== 3ICON STRIP ===== */
.strip { padding: 2rem 1.25rem; }
@media (max-width: 479px) { .strip { padding: 1.5rem 0.875rem; } }
.strip img { max-width: 960px; margin: 0 auto; border-radius: var(--r-xl); width: 100%; }

/* ===== 2-COL CONTENT ===== */
.c2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) { .c2 { gap: 2.5rem; } }
@media (max-width: 768px) {
  .c2 { grid-template-columns: 1fr; gap: 2rem; }
  .c2.flip > div:first-child { order: -1; }
}
@media (max-width: 479px) { .c2 { gap: 1.5rem; } }
.c2 h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.95rem);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
@media (max-width: 479px) { .c2 h2 { margin-bottom: 1rem; } }
.c2 p { color: var(--muted); font-size: 0.93rem; line-height: 1.9; margin-bottom: 1rem; }
.c2 img { border-radius: var(--r-xl); width: 100%; }

/* ===== RTP / GENERIC INFO CARD ===== */
.rtp-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-silver);
  border-radius: var(--r-xl);
  padding: 2.75rem;
}
@media (max-width: 768px) { .rtp-wrap { padding: 2rem 1.5rem; } }
@media (max-width: 479px) { .rtp-wrap { padding: 1.5rem 1rem; border-radius: var(--r-lg); } }
.rtp-wrap h3 {
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  color: var(--silver);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.rtp-wrap p { color: var(--muted); font-size: 0.93rem; line-height: 1.9; margin-bottom: 0.875rem; }
@media (max-width: 479px) { .rtp-wrap p { font-size: 0.875rem; } }
.rtp-wrap p:last-child { margin-bottom: 0; }

/* ===== SUMMARY ===== */
.summary-card {
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(227,189,99,0.18);
  border-radius: var(--r-xl);
  padding: 3rem;
  text-align: center;
}
@media (max-width: 768px) { .summary-card { padding: 2rem 1.5rem; } }
@media (max-width: 479px) { .summary-card { padding: 1.5rem 1rem; border-radius: var(--r-lg); } }
.summary-card h2 { font-size: clamp(1.25rem, 3.5vw, 1.8rem); margin-bottom: 1.5rem; }
.summary-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.9; margin-bottom: 1rem; text-align: left; }
@media (max-width: 479px) { .summary-card p { font-size: 0.875rem; } }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 1.25rem;
  background:
    linear-gradient(135deg,
      rgba(212,175,55,0.14) 0%,
      rgba(236,217,173,0.07) 50%,
      rgba(207,214,222,0.10) 100%);
  border-top: 1px solid rgba(227,189,99,0.16);
  border-bottom: 1px solid rgba(227,189,99,0.16);
  text-align: center;
}
@media (max-width: 768px) { .cta-section { padding: 3.5rem 1rem; } }
@media (max-width: 479px) { .cta-section { padding: 2.5rem 0.875rem; } }
.cta-section h2 { font-size: clamp(1.35rem, 4vw, 2.1rem); margin-bottom: 0.875rem; line-height: 1.3; }
.cta-section > div > p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
@media (max-width: 360px) { .cta-btns { flex-direction: column; gap: 0.875rem; } }
.cta-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.25s;
  filter: drop-shadow(0 4px 16px rgba(212,175,55,0.35));
}
@media (max-width: 479px) { .cta-img { height: 44px; } }
.cta-img:hover { transform: scale(1.08); }

/* ===== HOW TO SPIN / TRIAL ===== */
.spin-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.spin-inner h3 { font-size: clamp(1.2rem, 3.5vw, 1.75rem); margin-bottom: 0.75rem; line-height: 1.3; color: var(--gold); }
.spin-inner > p { color: var(--muted); margin-bottom: 1.75rem; font-size: 0.93rem; line-height: 1.9; text-align: left; }
@media (max-width: 479px) { .spin-inner > p { font-size: 0.875rem; margin-bottom: 1.25rem; } }
.spin-inner img { border-radius: var(--r-xl); margin: 0 auto; width: 100%; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(5, 5, 6, 0.97);
  border-top: 1px solid rgba(227,189,99,0.12);
  padding: 3.5rem 1.25rem 2.5rem;
  text-align: center;
}
@media (max-width: 479px) { .footer { padding: 2.5rem 1rem 2rem; } }
.footer-logo { height: 140px; margin: 0 auto 1.5rem; }
.footer-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.85; max-width: 680px; margin: 0 auto 1.5rem; }
@media (max-width: 479px) { .footer-desc { font-size: 0.825rem; } }
.footer-copy { color: var(--dim); font-size: 0.78rem; }

/* ===== STICKY MOBILE BAR (v2) ===== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  background: linear-gradient(180deg, rgba(18,15,10,0.94), rgba(8,8,10,0.98));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(227,189,99,0.32);
  box-shadow: 0 -8px 26px rgba(0,0,0,0.5);
  padding: 0.55rem 0.9rem;
  padding-bottom: max(0.55rem, env(safe-area-inset-bottom));
}
@media (max-width: 768px) { .sticky-bar { display: flex; } }

.sb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 46px;
  border-radius: 9999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.sb-btn:active { transform: scale(0.95); }
.sb-btn .sb-ico { font-size: 1.02rem; line-height: 1; }

.sb-login {
  background: rgba(227,189,99,0.10);
  border: 1.5px solid rgba(227,189,99,0.55);
  color: var(--gold);
}
.sb-line {
  background: linear-gradient(135deg, #08d15f 0%, #06b24d 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(6,199,85,0.42);
}
.sb-line:active { filter: brightness(1.05); }
.sb-line .ln {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #06C755;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: 2px 4px;
  line-height: 1;
}

/* center elevated play button */
.sb-play {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18rem;
  transform: translateY(-18px);
  -webkit-tap-highlight-color: transparent;
}
.sb-play:active .sb-play-ring { transform: scale(0.94); }
.sb-play-ring {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #0d0b07;
  box-shadow: 0 0 0 2px rgba(227,189,99,0.65), 0 8px 22px rgba(212,175,55,0.6);
  transition: transform 0.18s ease;
  animation: sbPulse 2.6s ease-in-out infinite;
}
.sb-play-ring img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.sb-play-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
@keyframes sbPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(227,189,99,0.65), 0 8px 22px rgba(212,175,55,0.55); }
  50%      { box-shadow: 0 0 0 2px rgba(227,189,99,0.85), 0 8px 30px rgba(212,175,55,0.85); }
}
@media (max-width: 360px) {
  .sb-btn { font-size: 0.76rem; height: 42px; gap: 0.3rem; }
  .sb-play-ring { width: 54px; height: 54px; }
  .sb-play-ring img { width: 38px; height: 38px; }
}

/* ===== SECTION ALT BG ===== */
.bg-alt { background: rgba(24, 21, 15, 0.48); }
.bg-dark { background: rgba(6, 6, 7, 0.55); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== STEPS ===== */
.steps-wrap { max-width: 860px; margin: 0 auto; }
.steps-head { text-align: center; margin-bottom: 2.5rem; }
.steps-head h2 { font-size: clamp(1.3rem, 3.5vw, 1.9rem); line-height: 1.3; margin-bottom: 0.75rem; }
.steps-head > p { color: var(--muted); font-size: 0.93rem; max-width: 600px; margin: 0 auto; }

.step-prereq { margin-bottom: 2.5rem; }
.step-prereq > h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.875rem; font-weight: 600; }

.step-checklist {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media (max-width: 479px) { .step-checklist { padding: 1rem 1.1rem; gap: 0.75rem; } }

.check-row { display: flex; align-items: flex-start; gap: 0.875rem; }
.ck { font-size: 1rem; flex-shrink: 0; width: 1.5rem; text-align: center; }
.ck-ok { color: var(--gold); font-weight: 800; flex-shrink: 0; font-size: 1rem; }
.check-row p, .check-row div { color: var(--muted); font-size: 0.875rem; line-height: 1.75; margin: 0; }

.tip-box {
  background: rgba(227, 189, 99, 0.06);
  border: 1px solid rgba(227, 189, 99, 0.22);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-top: 1rem;
}
.tip-box p { color: var(--muted); font-size: 0.875rem; line-height: 1.75; margin: 0; }

.steps-list { display: flex; flex-direction: column; gap: 2rem; }

.step-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #1a1206; font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}
.step-body { flex: 1; min-width: 0; }
.step-body > h3 {
  font-size: 1.02rem; color: var(--text);
  margin-bottom: 0.5rem; font-weight: 700; line-height: 1.35;
}
.step-body > p { color: var(--muted); font-size: 0.9rem; line-height: 1.85; margin-bottom: 0; }
.step-body .step-checklist { margin-top: 0.75rem; }

@media (max-width: 479px) {
  .step-item { gap: 1rem; }
  .step-num { width: 36px; height: 36px; font-size: 0.95rem; }
  .step-body > h3 { font-size: 0.93rem; }
  .step-body > p { font-size: 0.855rem; }
}

/* ===== FAQ ===== */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 2.5rem; }
.faq-head h2 { font-size: clamp(1.25rem, 3.5vw, 1.8rem); line-height: 1.3; margin-top: 0.5rem; margin-bottom: 0.625rem; }
.faq-head > p { color: var(--muted); font-size: 0.9rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.875rem; }
.faq-item {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: rgba(207, 214, 222, 0.38); box-shadow: var(--shadow-silver); }
.faq-q {
  font-weight: 700; color: var(--text); font-size: 0.95rem;
  margin-bottom: 0.625rem; line-height: 1.45;
}
.faq-q::before { content: 'Q · '; color: var(--gold); }
.faq-a { color: var(--muted); font-size: 0.875rem; line-height: 1.85; margin: 0; }
.faq-a::before { content: 'A · '; color: var(--silver); font-weight: 600; }
@media (max-width: 479px) {
  .faq-item { padding: 1.1rem 1.2rem; }
  .faq-q { font-size: 0.9rem; }
  .faq-a { font-size: 0.845rem; }
}

/* ===== SUB-PAGES ===== */
body.page-body { overflow-x: hidden; }
.page-main {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 1.25rem 5rem;
  text-align: center;
  gap: 1.75rem;
}
@media (max-width: 768px) { .page-main { padding-top: 108px; } }
@media (max-width: 479px) { .page-main { padding-top: 100px; padding-bottom: 4.5rem; } }
.page-content { max-width: 640px; margin: 0.5rem auto 0; text-align: left; color: var(--muted); font-size: 0.95rem; line-height: 1.85; }
.page-content h2 { color: var(--text); font-size: 1.15rem; line-height: 1.4; margin: 1.5rem 0 0.6rem; }
.page-content p { margin-bottom: 1rem; }
.page-content ul { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.page-content li { margin-bottom: 0.5rem; }
.page-h1 {
  font-size: clamp(1.15rem, 3.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.35;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-h1.blue {
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
}
.action-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.action-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.25s;
  filter: drop-shadow(0 4px 16px rgba(212,175,55,0.35));
}
.action-img:hover { transform: scale(1.08); }
@media (max-width: 479px) { .action-img { height: 44px; } }
@media (max-width: 360px) { .action-btns { flex-direction: column; gap: 0.875rem; } }

/* ===== ARTICLE PAGE ===== */
.article-main { max-width: 780px; margin: 0 auto; padding: 148px 1.25rem 5rem; }
.article-main h1 { font-family: 'Prompt', sans-serif; font-size: clamp(1.5rem, 4.2vw, 2.1rem); line-height: 1.4; margin-bottom: 1rem; color: var(--text); }
.article-main .article-meta { color: var(--dim); font-size: 0.8rem; margin-bottom: 2rem; }
.article-main p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.25rem; }
.article-main h2 { font-family: 'Prompt', sans-serif; font-size: clamp(1.15rem, 3vw, 1.4rem); margin: 2rem 0 1rem; color: var(--text); }

.article-cover { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--shadow-gold); line-height: 0; }
.article-cover img { width: 100%; }

.article-tldr {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-silver);
  padding: 1.5rem 1.75rem; margin-bottom: 2rem;
}
.article-tldr h2 { margin-top: 0; font-size: 1rem; color: var(--gold-deep); }
.article-tldr ul { margin: 0; padding-left: 1.25rem; color: var(--muted); font-size: 0.9rem; line-height: 1.95; }
.article-tldr li { margin-bottom: 0.35rem; }

.article-faq { margin-top: 2.5rem; }
@media (max-width: 768px) { .article-main { padding-top: 108px; } }
@media (max-width: 479px) { .article-main { padding-top: 100px; } }
