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

:root {
  /* ---- Brand palette: BLACK · GOLD (Bento Grid) ----
     Text is always the light cream tone against dark tiles — never dark-on-dark —
     so nothing sinks/blends into the black+gold background photo. */
  --black:      #0b0906;
  --card:       #15110a;   /* main bento tile surface */
  --card-2:     #1d160b;   /* alt tile surface, slightly lifted */
  --card-hi:    #251c0d;   /* highlighted / hovered tile surface */

  --gold:        #d4af37;
  --gold-bright: #f4d878;
  --gold-deep:   #9c7a24;

  --cream: #f6ecd6;
  --text:  #f6ecd6;
  --muted: #cdbb92;
  --dim:   #8d7d5c;

  --border:      rgba(212,175,55,0.3);
  --border-soft: rgba(212,175,55,0.15);

  --grad-gold: linear-gradient(120deg, #f4d878 0%, #d4af37 50%, #9c7a24 100%);
  --grad-dark: linear-gradient(160deg, #251c0d 0%, #15110a 65%, #0b0906 100%);
  --grad-cta:  linear-gradient(135deg, #f4d878 0%, #d4af37 55%, #a3801f 100%);

  --r:    18px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow:      0 10px 26px rgba(0,0,0,0.5);
  --shadow-lg:   0 18px 44px rgba(0,0,0,0.55);
  --shadow-gold: 0 0 0 1px rgba(212,175,55,0.3), 0 14px 32px rgba(0,0,0,0.5);

  --font-display: 'Bai Jamjuree', 'Prompt', sans-serif;
  --font-body:    'Prompt', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 78px; /* space for the flush bottom mobile 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 photo is already black+gold,
   only a light darkening wash is added at the bottom so tiles stay readable. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(11,9,6,0.15), rgba(11,9,6,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(11,9,6,0.2), rgba(11,9,6,0.76)),
      url('assets/img/Bg%20Mobile.webp');
  }
}

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; text-wrap: balance; color: var(--cream); }

/* ===== 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: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.45rem 1.1rem;
  background: var(--card);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: 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(--black); box-shadow: var(--shadow); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-gold:active { transform: translateY(1px); }
.btn-outline { background: var(--card); color: var(--gold-bright); border: 1px solid var(--border); }
.btn-outline:hover { transform: translateY(-2px); background: var(--card-hi); }

/* Login/Register image buttons — always shown as full, unframed images,
   just lifted with a soft drop-shadow, never boxed in a chip. */
.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); filter: drop-shadow(0 3px 8px rgba(0,0,0,0.4)); }
.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 — Segmented Bento Bar: a flush, edge-to-edge bar attached
   directly to the top of the screen (no floating margin, no rounded
   floating island), internally divided into logo / nav / buttons
   "cells" by thin gold hairlines — the bar itself IS a row of bento
   cells fused together, rather than one solid tile or a plain gradient
   bar. A genuinely new silhouette vs. every earlier brand's header.
   ===================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.header-row1 { display: flex; align-items: stretch; width: 100%; }

.logo-link {
  display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
  padding: 0.7rem 1.5rem; border-right: 1px solid var(--border-soft);
}
.logo-img { height: 46px; width: auto; max-width: 200px; object-fit: contain; }

.nav-menu {
  display: flex; align-items: center; gap: 0.2rem; margin: 0 auto;
  padding: 0 1.25rem;
}
.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(--card-2); }

.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.65rem; align-items: center; flex-shrink: 0;
  padding: 0.7rem 1.5rem; border-left: 1px solid var(--border-soft);
}

.header-row2 { display: none; }

@media (max-width: 768px) {
  .header-inner { padding: 0 0.9rem; }
  .header-row1 { gap: 0; }
  .nav-menu { display: none; }
  .logo-link { padding: 0.6rem 0.9rem 0.6rem 0; border-right: none; }
  .logo-img { height: 38px; }
  .header-btns { padding: 0.6rem 0 0.6rem 0.9rem; border-left: 1px solid var(--border-soft); margin-left: auto; }
  .hbtn { height: 34px; max-width: 118px; }
  .header-row2 {
    display: flex; align-items: center; gap: 0.35rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 0.55rem 0;
    border-top: 1px solid var(--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(--card-2);
  border: 1px solid var(--border-soft);
}
.mob-nav-link:active { color: var(--gold-bright); background: var(--card-hi); }

/* ===== HERO (bento: two tiles side by side) ===== */
.hero { position: relative; padding: 128px 1.25rem 2.5rem; overflow: visible; }
.hero-inner {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 1.25rem; align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 1.1rem; }
  .hero-visual { order: -1; }
}
.hero-text {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow); padding: 2.25rem; display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 768px) { .hero-text { padding: 1.6rem; } }
.hero-text .eyebrow { margin-bottom: 1.2rem; align-self: flex-start; }
@media (max-width: 960px) { .hero-text .eyebrow { align-self: center; } }
.hero h1 { font-size: clamp(1.85rem, 5vw, 2.85rem); line-height: 1.28; }
@media (max-width: 479px) { .hero h1 { font-size: clamp(1.5rem, 7.5vw, 1.95rem); } }
.hero p {
  color: var(--muted); font-size: clamp(0.9rem, 2vw, 1rem); line-height: 1.85;
  margin: 1.1rem 0 1.75rem;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
@media (max-width: 960px) { .hero-actions { justify-content: center; } }

.hero-visual {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-gold); line-height: 0;
}
.hero-visual img { width: 100%; height: auto; display: block; border-radius: var(--r-xl); }

/* ===== BENTO GRID (features) ===== */
.bento-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 1.1rem;
}
@media (max-width: 900px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento-grid { grid-template-columns: 1fr; } }

.bento-tile {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--r-lg);
  padding: 1.75rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.bento-tile:hover { transform: translateY(-4px); border-color: var(--border); }
.bento-tile::before {
  content: ""; position: absolute; top: -40%; right: -30%; width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(212,175,55,0.16) 0%, rgba(212,175,55,0) 70%);
  pointer-events: none;
}
.bento-tile.lg { grid-column: span 2; grid-row: span 2; }
.bento-tile.wide { grid-column: span 2; }
@media (max-width: 900px) { .bento-tile.lg { grid-column: span 2; grid-row: span 1; } }
@media (max-width: 560px) { .bento-tile.lg, .bento-tile.wide { grid-column: span 1; } }

.bento-icon {
  width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; font-size: 1.6rem;
  background: var(--grad-gold); color: var(--black);
}
.bento-tile h3 { font-size: 1.1rem; margin-bottom: 0.55rem; }
.bento-tile p { font-family: var(--font-body); font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* ===== 3ICON STRIP ===== */
.strip { padding: 1.25rem 1.25rem 0; }
.strip-frame {
  max-width: 1000px; margin: 0 auto; border: 1px solid var(--border-soft);
  border-radius: var(--r-xl); box-shadow: var(--shadow); overflow: hidden; line-height: 0;
}
.strip-frame img { width: 100%; border-radius: var(--r-xl); }

/* ===== 2-COL CONTENT (bento pair) ===== */
.c2 { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: center; }
@media (max-width: 900px) { .c2 { gap: 1.1rem; } }
@media (max-width: 768px) { .c2 { grid-template-columns: 1fr; } .c2.flip > div:first-child { order: -1; } }
.c2-text {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--r-xl);
  padding: 2.25rem; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 768px) { .c2-text { padding: 1.6rem; } }
.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(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-gold); overflow: hidden; line-height: 0;
}
.c2-frame img { border-radius: var(--r-xl); width: 100%; }

/* ===== INFO CARD (H3 / generic bento tile) ===== */
.info-card {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 0.85fr; gap: 1.25rem; align-items: center;
}
@media (max-width: 860px) { .info-card { grid-template-columns: 1fr; } }
.info-card-text {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--r-xl);
  padding: 2.5rem; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 768px) { .info-card-text { padding: 1.9rem 1.5rem; } }
@media (max-width: 479px) { .info-card-text { padding: 1.5rem 1.1rem; border-radius: var(--r-lg); } }
.info-card-text h3 { font-size: clamp(1.15rem, 3.2vw, 1.5rem); margin-bottom: 1.1rem; line-height: 1.3; }
.info-card-text p { color: var(--muted); font-size: 0.92rem; line-height: 1.9; }
.info-card-frame {
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-gold); overflow: hidden; line-height: 0;
}
@media (max-width: 860px) { .info-card-frame { display: none; } }
.info-card-frame img { border-radius: var(--r-xl); width: 100%; }

/* generic single-tile info card (no image) */
.info-card-solo {
  max-width: 860px; margin: 0 auto; background: var(--card); border: 1px solid var(--border-soft);
  border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--shadow);
}
@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 (bento tiles) ===== */
.steps-wrap { max-width: 1200px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step-item {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow);
}
.step-num {
  width: 42px; height: 42px; border-radius: 13px; background: var(--grad-gold);
  color: var(--black); font-weight: 700; font-size: 1.05rem; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.step-item h3 { font-size: 1rem; margin-bottom: 0.4rem; font-weight: 600; }
.step-item p { color: var(--muted); font-size: 0.87rem; line-height: 1.8; }

/* ===== FAQ (bento tiles) ===== */
.faq-list { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 700px) { .faq-list { grid-template-columns: 1fr; } }
.faq-item { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--r); padding: 1.3rem 1.5rem; box-shadow: var(--shadow); }
.faq-q { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; margin-bottom: 0.55rem; color: var(--cream); }
.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(--gold-bright); 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(--grad-dark); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 3.25rem 2rem; box-shadow: var(--shadow-gold);
}
.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(--card); border-top: 1px solid var(--border-soft); color: var(--muted); padding: 3rem 1.25rem 2.25rem; text-align: center; }
.footer-logo { height: 56px; margin: 0 auto 1.25rem; }
.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 — Segmented Bento Dock: a flush bar attached
   directly to the bottom edge (no floating margin), divided into
   cells by thin gold hairlines — the same "fused bento cells" language
   as the header. The logo sits in a raised shield-cut tile (clip-path,
   not a circle/pill) breaking the top edge of the bar — a distinct new
   shape from every earlier brand's dock, including this brand's own
   earlier floating-tile version.
   ===================================================================== */
.sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  align-items: stretch;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 26px rgba(0,0,0,0.5);
}
@media (max-width: 768px) { .sticky-bar { display: flex; } }
.mnav-item {
  flex: 1 1 0; display: flex; align-items: center; justify-content: center;
  padding: 0.75rem 0.15rem; color: var(--muted);
  font-size: 0.7rem; font-weight: 600; text-align: center; line-height: 1.1;
  border-right: 1px solid var(--border-soft);
  -webkit-tap-highlight-color: transparent; transition: color 0.2s, background 0.2s;
}
.mnav-item:last-child { border-right: none; }
.mnav-item:active { color: var(--gold-bright); background: var(--card-2); }
.mnav-item.acc { color: var(--gold-bright); font-weight: 700; }

.mnav-center {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  padding: 0.55rem 1.2rem 0.4rem; margin: 0 0.3rem; transform: translateY(-15px);
  background: var(--grad-dark);
  clip-path: polygon(16% 0%, 84% 0%, 100% 32%, 100% 100%, 0% 100%, 0% 32%);
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-lg);
  -webkit-tap-highlight-color: transparent; transition: transform 0.15s ease;
}
.mnav-center:active { transform: translateY(-15px) scale(0.94); }
.mnav-center img { height: 36px; width: auto; max-width: 128px; object-fit: contain; margin-top: 0.3rem; }
@media (max-width: 360px) {
  .mnav-item { font-size: 0.6rem; padding: 0.65rem 0.1rem; }
  .mnav-center { padding: 0.45rem 0.9rem 0.32rem; transform: translateY(-12px); }
  .mnav-center:active { transform: translateY(-12px) scale(0.94); }
  .mnav-center img { height: 28px; max-width: 100px; }
}

/* ===== SECTION ALT BG ===== */
.bg-alt { background: rgba(0,0,0,0.22); }

/* ===== 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: 128px 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; }
.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; }
.action-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 360px) { .action-btns { flex-direction: column; align-items: center; } }

/* ===== ARTICLE PAGE ===== */
.article-main { max-width: 780px; margin: 0 auto; padding: 128px 1.25rem 5rem; }
.article-main h1 { font-size: clamp(1.5rem, 4.2vw, 2.1rem); line-height: 1.4; margin-bottom: 1rem; }
.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-size: clamp(1.15rem, 3vw, 1.4rem); margin: 2rem 0 1rem; }

.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);
  padding: 1.5rem 1.75rem; margin-bottom: 2rem;
}
.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; }
.article-faq .faq-list { display: flex; flex-direction: column; gap: 0.9rem; max-width: none; }
