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

:root {
  /* ---- Brand palette: Cosmic Galaxy — deep space purple/navy nebula + gold + cyan ---- */
  --space:     #0a0820;   /* deepest space canvas */
  --space-2:   #150f35;   /* nebula purple-navy alt section */
  --space-hi:  #241a4d;   /* lighted surface variant */

  --nebula:      #7c4dff;
  --nebula-deep: #5b2fd4;
  --blue:        #4f7fe8;
  --blue-deep:   #2f57c0;

  --gold:        #f4c95d;
  --gold-bright: #ffe08a;
  --gold-deep:   #d4a017;
  --cyan:        #6fe3ff;
  --cyan-deep:   #2bb8e0;

  /* text kept light/high-contrast against the dark nebula so nothing sinks */
  --text:  #ede9ff;
  --muted: #b6acdb;
  --dim:   #8378a8;

  --glass-bg:      rgba(36,26,77,0.55);
  --glass-bg-soft: rgba(36,26,77,0.35);
  --glass-border:      rgba(244,201,93,0.3);
  --glass-border-soft: rgba(244,201,93,0.15);
  --glass-border-cyan: rgba(111,227,255,0.32);

  --grad-gold:   linear-gradient(120deg, #ffe08a 0%, #f4c95d 50%, #d4a017 100%);
  --grad-nebula: linear-gradient(135deg, #7c4dff 0%, #4f7fe8 55%, #2bb8e0 100%);
  --grad-cta:    linear-gradient(135deg, #ffe08a 0%, #f4c95d 55%, #d4a017 100%);

  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow:      0 10px 28px rgba(4,2,16,0.5);
  --shadow-lg:   0 18px 46px rgba(4,2,16,0.55);
  --glow-gold: 0 0 0 1px rgba(244,201,93,0.32), 0 0 26px rgba(244,201,93,0.22), 0 14px 32px rgba(4,2,16,0.5);
  --glow-cyan: 0 0 0 1px rgba(111,227,255,0.3), 0 0 22px rgba(111,227,255,0.2), 0 14px 32px rgba(4,2,16,0.5);

  --font-display: 'Chakra Petch', 'Prompt', sans-serif;
  --font-body:    'Prompt', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--space);
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 100px; /* space for the bottom mobile orbit dock */
}
@media (min-width: 769px) { body { padding-bottom: 0; } }

/* Page background as a fixed full-viewport layer — sizing "cover" against
   body would scale against the whole scrollable page height on long pages,
   causing a huge zoom on mobile. The provided nebula photo already carries
   the whole cosmic mood, only a light space-navy wash keeps text readable. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background-color: var(--space);
  background-image:
    linear-gradient(rgba(10,8,32,0.25), rgba(10,8,32,0.7)),
    url('assets/img/bg%20web.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  body::before {
    background-image:
      linear-gradient(rgba(10,8,32,0.3), rgba(10,8,32,0.76)),
      url('assets/img/Bg%20Mobile.webp');
  }
}

/* sparse twinkling star layer sitting above the nebula photo */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 8% 15%, #fff, transparent 60%),
    radial-gradient(2px 2px at 22% 38%, #fff, transparent 60%),
    radial-gradient(1.5px 1.5px at 38% 12%, var(--cyan), transparent 60%),
    radial-gradient(2px 2px at 55% 28%, #fff, transparent 60%),
    radial-gradient(1.5px 1.5px at 68% 8%, var(--gold-bright), transparent 60%),
    radial-gradient(2px 2px at 78% 42%, #fff, transparent 60%),
    radial-gradient(1.5px 1.5px at 88% 20%, var(--cyan), transparent 60%),
    radial-gradient(2px 2px at 15% 62%, #fff, transparent 60%),
    radial-gradient(1.5px 1.5px at 45% 70%, var(--gold-bright), transparent 60%),
    radial-gradient(2px 2px at 92% 68%, #fff, transparent 60%);
  animation: twinkle 4.5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.35; } to { opacity: 0.95; } }
@media (prefers-reduced-motion: reduce) { body::after { animation: none; opacity: 0.6; } }

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

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5.5rem 1.25rem; position: relative; }
@media (max-width: 768px) { .section { padding: 3.25rem 1rem; } }
@media (max-width: 479px) { .section { padding: 2.75rem 0.875rem; } }

/* ===== HEADINGS ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.01em; text-wrap: balance; color: var(--text); }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-bright);
  border-radius: 9999px;
  padding: 0.45rem 1.1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 8px var(--gold-bright); }

.section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 4vw, 2.35rem); line-height: 1.3; margin: 0.9rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 0.95rem; line-height: 1.85; }
@media (max-width: 479px) { .section-head { margin-bottom: 2rem; } .section-head p { font-size: 0.875rem; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 0.85rem 2.1rem; border-radius: 9999px; border: none; cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.btn-gold { background: var(--grad-cta); color: var(--space); box-shadow: var(--glow-gold); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-gold:active { transform: translateY(1px); }
.btn-outline { background: var(--glass-bg); color: var(--gold-bright); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); }
.btn-outline:hover { transform: translateY(-2px); }

/* Login/Register image buttons — always shown as full, unframed images */
.hbtn, .hero-btn-img {
  cursor: pointer; object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.55));
  transition: transform 0.18s ease, filter 0.18s ease;
}
.hbtn:hover, .hero-btn-img:hover { transform: translateY(-3px); }
.hbtn:active, .hero-btn-img:active { transform: translateY(1px); }
.hbtn { height: 44px; width: auto; max-width: 160px; }
.hero-btn-img { height: 66px; width: auto; max-width: 248px; }
@media (max-width: 479px) { .hero-btn-img { height: 54px; } }

/* =====================================================================
   HEADER — Visor Bar: a floating cosmic-glass capsule whose bottom edge
   curves deeply like an astronaut helmet visor, with a thin gold glow
   border and tiny star specks — a genuinely different silhouette vs.
   every earlier brand's header (flush bar, segmented bento, bubble
   rectangle, plain pill).
   ===================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 1.25rem 0;
}
.header-inner {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-direction: column;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0 0 42px 42px / 0 0 26px 26px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 0.6rem 0.9rem 0.7rem 1.05rem;
}
.header-row1 { display: flex; align-items: center; gap: 1rem; width: 100%; }

.logo-link { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-img {
  height: 52px; width: 52px; object-fit: contain; border-radius: 12px;
  background: var(--space-hi); box-shadow: 0 0 0 1px var(--glass-border);
}
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.02em; }

.nav-menu { display: flex; align-items: center; gap: 0.2rem; margin: 0 auto; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 1.05rem; border-radius: 9999px;
  font-size: 0.87rem; font-weight: 500; color: var(--muted); white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--gold-bright); background: var(--space-hi); }

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

.header-btns { display: flex; gap: 0.6rem; align-items: center; flex-shrink: 0; margin-left: auto; }

.header-row2 { display: none; }

@media (max-width: 768px) {
  .header { padding: 0.8rem 0.65rem 0; }
  .header-inner { padding: 0.5rem 0.6rem 0.6rem; border-radius: 0 0 32px 32px / 0 0 20px 20px; }
  .header-row1 { gap: 0.55rem; }
  .nav-menu { display: none; }
  .logo-img { height: 40px; width: 40px; border-radius: 10px; }
  .logo-name { font-size: 0.9rem; }
  .hbtn { height: 36px; max-width: 120px; }
  .header-row2 {
    display: flex; align-items: center; gap: 0.3rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-top: 0.4rem; margin-top: 0.4rem;
    border-top: 1px solid var(--glass-border-soft);
  }
  .header-row2::-webkit-scrollbar { display: none; }
}
.mob-nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.85rem; border-radius: 9999px;
  font-size: 0.78rem; font-weight: 500; color: var(--muted); white-space: nowrap;
  background: var(--space-hi);
}
.mob-nav-link:active { color: var(--gold-bright); }

/* ===== HERO =====
   Stacked on every viewport, including desktop: image row on top,
   hero text row below — not a side-by-side split. */
.hero { position: relative; padding: 148px 1.25rem 3rem; overflow: visible; }
.hero-inner {
  position: relative; z-index: 1; max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2.25rem;
}
.hero-visual { order: -1; width: 100%; }
.hero-text { width: 100%; }
.hero-text .eyebrow { margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(1.85rem, 5.4vw, 3rem); line-height: 1.25; }
@media (max-width: 479px) { .hero h1 { font-size: clamp(1.55rem, 7.6vw, 2rem); } }
.hero p {
  color: var(--muted); font-size: clamp(0.92rem, 2vw, 1.02rem); line-height: 1.85;
  max-width: 58ch; margin: 1.1rem auto 1.75rem;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
@media (max-width: 768px) { .hero-inner { gap: 1.75rem; } }

/* hero visual: no inset padding — the image fills the frame edge to edge,
   just ringed by a thin gold glow border for depth */
.hero-visual { position: relative; }
.hero-frame {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: var(--glow-gold);
  overflow: hidden; line-height: 0;
}
.hero-frame img { width: 100%; height: auto; border-radius: var(--r-xl); }

/* ===== FEATURES ===== */
.features { padding: 3rem 1.25rem 5rem; }
@media (max-width: 768px) { .features { padding: 2rem 1rem 3rem; } }
.feat-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 720px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border-soft); border-radius: var(--r-lg); padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feat-card:hover { transform: translateY(-4px); border-color: var(--glass-border); }
.feat-icon {
  width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; font-size: 1.5rem;
  background: var(--grad-gold); color: var(--space);
}
.feat-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feat-card p { font-family: var(--font-body); font-size: 0.87rem; color: var(--muted); line-height: 1.75; }

/* ===== 3ICON STRIP =====
   The provided 3icon.webp has its own white canvas baked in, so this
   frame is a light plaque (not dark glass) — it reads as an intentional
   badge/certificate panel against the cosmic background instead of a
   stray white box. */
.strip { padding: 1.5rem 1.25rem; }
.strip-frame {
  max-width: 1080px; margin: 0 auto; background: #fdf9ef; border: 1px solid var(--glass-border);
  border-radius: var(--r-xl); box-shadow: var(--glow-gold); overflow: hidden; line-height: 0;
}
.strip-frame img { width: 100%; border-radius: var(--r-xl); }

/* ===== 2-COL CONTENT ===== */
.c2 { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 900px) { .c2 { gap: 2.25rem; } }
@media (max-width: 768px) { .c2 { grid-template-columns: 1fr; gap: 1.9rem; } .c2.flip > div:first-child { order: -1; } }
.c2 .tag { color: var(--gold-bright); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; display: block; }
.c2 h2 { font-size: clamp(1.4rem, 3.2vw, 2rem); line-height: 1.3; margin-bottom: 1.1rem; }
.c2 p { color: var(--muted); font-size: 0.92rem; line-height: 1.9; margin-bottom: 1rem; }
.c2-frame {
  border: 1px solid var(--glass-border-cyan); border-radius: var(--r-xl);
  box-shadow: var(--glow-cyan); overflow: hidden; line-height: 0;
}
.c2-frame img { border-radius: var(--r-xl); width: 100%; }

/* ===== INFO CARD (H3 / generic) ===== */
.info-card {
  max-width: 1000px; margin: 0 auto; background: var(--glass-bg);
  border: 1px solid var(--glass-border); border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--glow-gold);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 768px) { .info-card { padding: 1.9rem 1.5rem; } }
@media (max-width: 479px) { .info-card { padding: 1.5rem 1.1rem; border-radius: var(--r-lg); } }
.info-card h3 { font-size: clamp(1.15rem, 3.2vw, 1.5rem); margin-bottom: 1.1rem; line-height: 1.3; }
.info-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.9; }
/* bleed the image to the card's own edges instead of sitting inset,
   so it renders bigger — only the bottom corners stay rounded to match
   the outer card. */
.info-card-frame { margin: 1.5rem -2.5rem -2.5rem; overflow: hidden; border-radius: 0 0 var(--r-xl) var(--r-xl); }
.info-card-frame img { width: 100%; display: block; }
@media (max-width: 768px) { .info-card-frame { margin: 1.5rem -1.5rem -1.9rem; } }
@media (max-width: 479px) { .info-card-frame { margin: 1.25rem -1.1rem -1.5rem; border-radius: 0 0 var(--r-lg) var(--r-lg); } }

/* generic single-tile info card (no image) */
.info-card-solo {
  max-width: 860px; margin: 0 auto; background: var(--glass-bg); border: 1px solid var(--glass-border-soft);
  border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--shadow);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 768px) { .info-card-solo { padding: 1.9rem 1.5rem; } }
@media (max-width: 479px) { .info-card-solo { padding: 1.5rem 1.1rem; border-radius: var(--r-lg); } }
.info-card-solo h2 { font-size: clamp(1.3rem, 3.4vw, 1.8rem); margin-bottom: 1.1rem; line-height: 1.3; }
.info-card-solo p { color: var(--muted); font-size: 0.92rem; line-height: 1.9; }

/* ===== STEPS ===== */
.steps-wrap { max-width: 820px; margin: 0 auto; }
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; }
.step-item {
  display: flex; gap: 1.25rem; align-items: flex-start; background: var(--glass-bg);
  border: 1px solid var(--glass-border-soft); border-radius: var(--r-lg); padding: 1.4rem 1.5rem; box-shadow: var(--shadow);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.step-num {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: var(--grad-gold);
  color: var(--space); font-weight: 700; font-size: 1.05rem; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 { font-size: 1rem; margin-bottom: 0.4rem; font-weight: 600; }
.step-body p { color: var(--muted); font-size: 0.87rem; line-height: 1.8; }
@media (max-width: 479px) { .step-item { gap: 0.9rem; padding: 1.1rem 1.15rem; } .step-num { width: 36px; height: 36px; font-size: 0.9rem; } }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: var(--glass-bg); border: 1px solid var(--glass-border-soft); border-radius: var(--r); padding: 1.3rem 1.5rem; box-shadow: var(--shadow); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.faq-q { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; margin-bottom: 0.55rem; color: var(--text); }
.faq-q::before { content: 'Q  '; color: var(--gold-bright); }
.faq-a { color: var(--muted); font-size: 0.865rem; line-height: 1.85; }
.faq-a::before { content: 'A  '; color: var(--cyan); font-weight: 700; }
@media (max-width: 479px) { .faq-item { padding: 1.05rem 1.15rem; } }

/* ===== CTA SECTION ===== */
.cta-section { padding: 5rem 1.25rem; }
.cta-panel {
  max-width: 1000px; margin: 0 auto; text-align: center; position: relative; overflow: hidden;
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-xl);
  padding: 3.25rem 2rem; box-shadow: var(--glow-gold);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.cta-panel h2 { font-size: clamp(1.5rem, 4vw, 2.15rem); margin-bottom: 0.75rem; }
.cta-panel 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: 768px) { .cta-panel { padding: 2.5rem 1.5rem; } }
@media (max-width: 479px) { .cta-panel { padding: 2rem 1.1rem; border-radius: var(--r-lg); } }

/* ===== FOOTER ===== */
.footer { background: var(--space-2); border-top: 1px solid var(--glass-border-soft); color: var(--muted); padding: 3rem 1.25rem 2.25rem; text-align: center; }
.footer-logo { height: 60px; width: 60px; object-fit: contain; margin: 0 auto 1.25rem; border-radius: 14px; background: var(--space-hi); }
.footer-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.85; max-width: 640px; margin: 0 auto 1.25rem; }
.footer-copy { color: var(--dim); font-size: 0.76rem; }

/* =====================================================================
   BOTTOM MOBILE NAV — Orbit Dock: cosmic glass chips with the logo
   sitting in a circular "planet" knob ringed by a thin elliptical
   orbit line — a distinct new shape from every earlier brand's dock.
   ===================================================================== */
.sticky-bar {
  display: none;
  position: fixed; bottom: 10px; left: 10px; right: 10px; z-index: 90;
  align-items: center; justify-content: space-between;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 0.45rem;
}
@media (max-width: 768px) { .sticky-bar { display: flex; } }
.mnav-item {
  flex: 1 1 0; display: flex; align-items: center; justify-content: center;
  padding: 0.6rem 0.15rem; border-radius: 9999px; color: var(--muted);
  font-size: 0.7rem; font-weight: 600; text-align: center; line-height: 1.1;
  -webkit-tap-highlight-color: transparent; transition: color 0.2s, background 0.2s;
}
.mnav-item:active { color: var(--gold-bright); background: var(--space-hi); }
.mnav-item.acc { color: var(--gold-bright); font-weight: 700; }

.mnav-center {
  flex: 0 0 auto; position: relative; display: flex; align-items: center; justify-content: center;
  width: 78px; height: 78px; transform: translateY(-24px);
  background: var(--space-hi);
  border-radius: 50%; box-shadow: var(--glow-gold);
  -webkit-tap-highlight-color: transparent; transition: transform 0.15s ease;
}
.mnav-center::before {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1.5px solid var(--glass-border); transform: rotate(-24deg) scaleY(0.42);
  pointer-events: none;
}
.mnav-center:active { transform: translateY(-24px) scale(0.94); }
.mnav-center img { height: 46px; width: 46px; object-fit: contain; border-radius: 10px; }
@media (max-width: 360px) {
  .mnav-item { font-size: 0.6rem; }
  .mnav-center { width: 66px; height: 66px; transform: translateY(-20px); }
  .mnav-center:active { transform: translateY(-20px) scale(0.94); }
  .mnav-center img { height: 38px; width: 38px; }
}

/* ===== SECTION ALT BG ===== */
.bg-alt { background: rgba(21,15,53,0.55); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== 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: 148px 1.25rem 7rem; text-align: center; gap: 1.75rem; position: relative; }
.page-h1 { font-size: clamp(1.3rem, 3.6vw, 1.9rem); line-height: 1.3; }
.action-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 360px) { .action-btns { flex-direction: column; align-items: center; } }
.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; }

/* ===== ARTICLE PAGE ===== */
.article-main { max-width: 780px; margin: 0 auto; padding: 148px 1.25rem 5rem; }
.article-main h1 { font-family: var(--font-display); 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: var(--font-display); 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(--glow-gold); line-height: 0; }
.article-cover img { width: 100%; }

.article-tldr {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem; margin-bottom: 2rem; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.article-tldr h2 { margin-top: 0; font-size: 1rem; color: var(--gold-bright); }
.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; }
