/* ═══════════════════════════════════════════════════════════
   WAPP — Shared Stylesheet
   Loaded by every page on the site.
   Page-specific styles live inline in each HTML file.
═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --gold:        #C38B57;
  --gold-light:  #D9A876;
  --gold-dark:   #A06F3A;
  --brown:       #594B3F;
  --beige:       #F6F3E9;
  --beige-dark:  #EDE9DC;
  --dark-hero:   #111C11;
  --dark-card:   #192019;
  --dark-border: rgba(195, 139, 87, 0.2);
  --dark-text:   #E8E4DA;
  --dark-muted:  #8A8A7A;
  --light-bg:    #FFFFFF;
  --light-card:  #F9F7F2;
  --text:        #1F1A15;
  --muted:       #6B6158;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg:   0 20px 48px rgba(0,0,0,0.14);
  --t:           0.22s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; width: 100%; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--beige);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--gold); color: #fff;
  padding: 10px 20px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700; z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-sub {
  font-size: 1.05rem; color: var(--muted); margin-top: 14px; line-height: 1.72;
}
.section-sub.dark { color: var(--dark-muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  border: none; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline {
  background: transparent; color: var(--dark-text);
  border: 1.5px solid rgba(195,139,87,0.4);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(195,139,87,0.07); }
.btn-outline-light {
  background: transparent; color: var(--brown);
  border: 1.5px solid rgba(89,75,63,0.25);
}
.btn-outline-light:hover { border-color: var(--brown); background: rgba(89,75,63,0.05); }

/* Store Badges */
.store-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.store-badge { display: inline-flex; align-items: center; transition: transform var(--t), opacity var(--t); }
.store-badge:hover { transform: scale(1.04); opacity: 0.9; }
.store-badge img { height: 52px; width: auto; }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17, 28, 17, 0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--dark-muted);
  transition: color var(--t); text-decoration: none;
}
.nav-links a:hover { color: var(--dark-text); }
.nav-links a.active { color: var(--gold-light); }
.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--dark-text);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(17, 28, 17, 0.98);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--dark-border);
  }
}

/* ── FOOTER ── */
.site-footer { background: #0A0F0A; padding: 52px 24px 36px; }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center;
}
.footer-logo img { height: 32px; width: auto; opacity: 0.75; }
.footer-email a { color: var(--gold-light); font-size: 0.9rem; font-weight: 500; }
.footer-email a:hover { opacity: 0.85; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 8px; justify-content: center; list-style: none; }
.footer-links li::after { content: '·'; color: #2A2F2A; margin-left: 8px; }
.footer-links li:last-child::after { content: ''; }
.footer-links a { font-size: 0.85rem; color: #525952; text-decoration: none; transition: color var(--t); }
.footer-links a:hover { color: var(--gold-light); text-decoration: none; }
.footer-copy { font-size: 0.78rem; color: #323832; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── PHONE FRAMES (used on multiple pages) ── */
.screen-phone {
  position: relative; display: inline-block;
  background: #1C1C1E; border-radius: 48px; padding: 14px 12px;
  box-shadow:
    0 0 0 1.5px #3A3A3C,
    0 0 0 3px #1C1C1E,
    0 40px 100px rgba(0,0,0,0.7),
    0 8px 24px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screen-phone:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1.5px #3A3A3C,
    0 0 0 3px #1C1C1E,
    0 52px 120px rgba(0,0,0,0.75),
    0 12px 32px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.07);
}
.screen-phone::before {
  content: ''; position: absolute; top: 16px; left: 50%;
  transform: translateX(-50%); width: 88px; height: 28px;
  background: #1C1C1E; border-radius: 20px; z-index: 5;
}
.screen-phone::after {
  content: ''; position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%); width: 110px; height: 5px;
  background: rgba(255,255,255,0.22); border-radius: 3px; z-index: 5;
}
.screen-display {
  border-radius: 36px; overflow: hidden;
  position: relative; display: block; background: #000;
}
.screen-display img {
  display: block; width: 100%; height: auto;
  border-radius: 36px; object-fit: cover;
}
.screen-display.sm  { width: 180px; }
.screen-display.md  { width: 210px; }
.screen-display.lg  { width: 248px; }
.screen-caption {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(195,139,87,0.1); border: 1px solid rgba(195,139,87,0.2);
  border-radius: 100px; padding: 5px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--gold-light);
  letter-spacing: 0.02em; white-space: nowrap;
}
.screen-caption svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark-hero);
  background-image: radial-gradient(ellipse 70% 50% at 50% 120%, rgba(195,139,87,0.12) 0%, transparent 65%);
  padding: 96px 0 80px;
  text-align: center;
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: var(--dark-text);
  margin-bottom: 22px; line-height: 1.18;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.page-hero h1 .accent { color: var(--gold); }
.page-hero p.hero-sub {
  font-size: 1.15rem; color: var(--dark-muted);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.72;
}
.page-hero .store-badges { justify-content: center; }


    /* ═══════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════ */
    :root {
      --gold:        #C38B57;
      --gold-light:  #D9A876;
      --gold-dark:   #A06F3A;
      --brown:       #594B3F;
      --beige:       #F6F3E9;
      --beige-dark:  #EDE9DC;
      --dark-hero:   #111C11;
      --dark-card:   #192019;
      --dark-border: rgba(195, 139, 87, 0.2);
      --dark-text:   #E8E4DA;
      --dark-muted:  #8A8A7A;
      --light-bg:    #FFFFFF;
      --light-card:  #F9F7F2;
      --text:        #1F1A15;
      --muted:       #6B6158;
      --radius-sm:   8px;
      --radius-md:   14px;
      --radius-lg:   20px;
      --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
      --shadow-md:   0 8px 24px rgba(0,0,0,0.1);
      --shadow-lg:   0 20px 48px rgba(0,0,0,0.14);
      --t:           0.22s ease;
    }

    /* ═══════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: var(--beige);
      color: var(--text);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--gold); text-decoration: none; }
    a:hover { text-decoration: underline; }
    h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }

    /* ═══════════════════════════════════════
       ACCESSIBILITY
    ═══════════════════════════════════════ */
    .skip-link {
      position: absolute; top: -100%; left: 16px;
      background: var(--gold); color: #fff;
      padding: 10px 20px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
      font-weight: 700; z-index: 9999; transition: top 0.2s;
    }
    .skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }
    :focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

    /* ═══════════════════════════════════════
       LAYOUT
    ═══════════════════════════════════════ */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      display: inline-block; font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
    }

    /* ═══════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════ */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: var(--radius-sm);
      font-weight: 700; font-size: 0.95rem; cursor: pointer;
      transition: transform var(--t), box-shadow var(--t), background var(--t);
      border: none; text-decoration: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
    .btn:active { transform: translateY(0); }
    .btn-primary { background: var(--gold); color: #fff; }
    .btn-primary:hover { background: var(--gold-dark); }

    /* Store Badges */
    .store-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
    .store-badge { display: inline-flex; align-items: center; transition: transform var(--t), opacity var(--t); }
    .store-badge:hover { transform: scale(1.04); opacity: 0.9; }
    .store-badge img { height: 52px; width: auto; }
    /* ═══════════════════════════════════════
       PHONE FRAME MOCKUP (Screenshots)
    ═══════════════════════════════════════ */
    .phone-frame {
      position: relative;
      display: inline-block;
      background: #1C1C1E;
      border-radius: 48px;
      padding: 14px 12px;
      box-shadow:
        0 0 0 1.5px #3A3A3C,
        0 0 0 3px #1C1C1E,
        0 32px 80px rgba(0,0,0,0.65),
        0 8px 24px rgba(0,0,0,0.4),
        inset 0 0 0 1px rgba(255,255,255,0.07);
    }
    .phone-frame::before {
      content: '';
      position: absolute;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      width: 88px;
      height: 28px;
      background: #1C1C1E;
      border-radius: 20px;
      z-index: 5;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    }
    .phone-frame::after {
      content: '';
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: 110px;
      height: 5px;
      background: rgba(255,255,255,0.22);
      border-radius: 3px;
      z-index: 5;
    }
    .phone-screen {
      border-radius: 36px;
      overflow: hidden;
      position: relative;
      background: #000;
      display: block;
    }
    .phone-screen img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 36px;
      object-fit: cover;
      object-position: top center;
    }
    .phone-screen-placeholder {
      width: 200px;
      height: 390px;
      border-radius: 36px;
      background: linear-gradient(160deg, #1A2B1A 0%, #0F1A0F 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 24px;
      text-align: center;
    }
    .phone-screen-placeholder.lg {
      width: 230px;
      height: 448px;
    }
    .ph-icon { font-size: 2.2rem; opacity: 0.6; }
    .ph-label { font-size: 0.82rem; font-weight: 600; color: rgba(195,139,87,0.6); line-height: 1.4; }
    .ph-tag {
      font-size: 0.68rem; font-weight: 600; color: rgba(195,139,87,0.5);
      border: 1px solid rgba(195,139,87,0.2);
      border-radius: 100px; padding: 3px 8px; margin-top: 4px;
    }
    /* Phone glow effect */
    .phone-glow {
      position: absolute;
      inset: -20px;
      border-radius: 60px;
      pointer-events: none;
      z-index: 0;
    }
    .phone-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      z-index: 1;
    }

    /* ═══════════════════════════════════════
       NAV
    ═══════════════════════════════════════ */
    .site-nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(17, 28, 17, 0.96);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(195,139,87,0.18);
      box-shadow: 0 1px 0 rgba(195,139,87,0.06), 0 4px 24px rgba(0,0,0,0.3);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 72px; gap: 32px;
    }
    .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    .nav-logo img { height: 52px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: 0.9rem; font-weight: 500; color: var(--dark-muted);
      transition: color var(--t); text-decoration: none;
    }
    .nav-links a:hover { color: var(--dark-text); }
    .nav-cta { flex-shrink: 0; }
    .nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }
    /* Hamburger — proper 44px touch target with brand border */
    .nav-toggle {
      display: none;
      width: 44px; height: 44px;
      background: rgba(195,139,87,0.07);
      border: 1px solid rgba(195,139,87,0.22);
      border-radius: 10px;
      cursor: pointer;
      align-items: center; justify-content: center;
      color: var(--gold-light);
      transition: background 0.2s ease, border-color 0.2s ease;
      flex-shrink: 0;
    }
    .nav-toggle:hover {
      background: rgba(195,139,87,0.14);
      border-color: rgba(195,139,87,0.4);
    }
    .nav-toggle svg { width: 20px; height: 20px; }
    /* Nav group label (mobile only) */
    .nav-group-label {
      display: none;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(195,139,87,0.55);
      padding: 0;
      margin: 0;
      list-style: none;
    }
    /* Nav group divider */
    .nav-group-divider {
      display: none;
      height: 1px;
      background: rgba(255,255,255,0.06);
      border: none;
      margin: 4px 0;
    }

    @media (max-width: 820px) {
      .nav-links, .nav-cta { display: none; }
      .nav-toggle { display: flex; }
      .nav-group-label { display: block; }
      .nav-group-divider { display: block; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
        height: calc(100vh - 72px);
        background: rgba(11, 18, 11, 0.99);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 32px 32px 100px;
        gap: 0;
        z-index: 100;
        overflow-y: auto;
      }
      /* Group labels inside open drawer */
      .nav-links.open .nav-group-label {
        margin-top: 28px;
        margin-bottom: 10px;
      }
      .nav-links.open .nav-group-label:first-child { margin-top: 0; }
      .nav-links.open .nav-group-divider { display: block; margin: 20px 0 0; }
      .nav-links.open li { list-style: none; }
      .nav-links.open a {
        font-size: 1.25rem;
        font-weight: 700;
        padding: 8px 0;
        color: rgba(255,255,255,0.85);
        letter-spacing: -0.02em;
        line-height: 1.2;
        display: block;
      }
      .nav-links.open a:hover,
      .nav-links.open a:active { color: #fff; }
      .nav-links.open .btn-primary {
        display: block;
        text-align: center;
        margin-top: 4px;
        padding: 15px 24px;
        font-size: 1rem;
        letter-spacing: -0.01em;
        border-radius: 12px;
      }
      .nav-links.open .nav-coach-link {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: var(--gold) !important;
        letter-spacing: 0.01em !important;
        padding: 6px 0 !important;
      }
    }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      background-color: var(--dark-hero);
      background-image:
        radial-gradient(ellipse 80% 60% at 65% 110%, rgba(195,139,87,0.13) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 5% -10%, rgba(195,139,87,0.07) 0%, transparent 60%);
      padding: 96px 0 80px;
      position: relative;
    }
    .hero::before {
      content: ''; position: absolute; top: -5%; right: -15%;
      width: 1000px; height: 1000px;
      background: url('/wapp-icon.svg') no-repeat center center;
      background-size: contain; opacity: 0.04; pointer-events: none; z-index: 0;
    }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 64px;
      position: relative; z-index: 1;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(195,139,87,0.1); border: 1px solid rgba(195,139,87,0.28);
      border-radius: 100px; padding: 6px 14px;
      font-size: 0.8rem; font-weight: 600; color: var(--gold-light);
      letter-spacing: 0.04em; margin-bottom: 26px;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      font-weight: 900; color: var(--dark-text);
      margin-bottom: 22px; line-height: 1.18;
    }
    .hero h1 .accent { color: var(--gold); }
    .hero-sub {
      font-size: 1.1rem; color: var(--dark-muted);
      max-width: 480px; margin-bottom: 40px; line-height: 1.72;
    }
    .hero-badges-wrapper { margin-bottom: 36px; }
    .hero-trust { font-size: 0.8rem; color: var(--dark-muted); margin-top: 26px; }
    .hero-image-side {
      display: flex; justify-content: center; align-items: flex-end; position: relative;
    }
    .hero-phone-frame { position: relative; width: 100%; max-width: 320px; }
    .hero-phone-frame::before {
      content: ''; position: absolute; inset: -60px -40px;
      background: radial-gradient(ellipse at center, rgba(195,139,87,0.18) 0%, transparent 65%);
      z-index: 0; pointer-events: none;
    }
    /* Phone shell */
    .hero-phone-shell {
      position: relative; z-index: 1;
      display: inline-block;
      background: #1C1C1E;
      border-radius: 48px;
      padding: 14px 11px;
      box-shadow:
        0 0 0 1.5px #3A3A3C,
        0 0 0 3px #1C1C1E,
        0 36px 90px rgba(0,0,0,0.65),
        0 8px 24px rgba(0,0,0,0.4),
        inset 0 0 0 1px rgba(255,255,255,0.07);
      width: 100%;
    }
    /* Dynamic Island notch */
    .hero-phone-shell::before {
      content: '';
      position: absolute; top: 16px; left: 50%;
      transform: translateX(-50%);
      width: 88px; height: 28px;
      background: #1C1C1E; border-radius: 20px; z-index: 5;
    }
    /* Home indicator */
    .hero-phone-shell::after {
      content: '';
      position: absolute; bottom: 18px; left: 50%;
      transform: translateX(-50%);
      width: 110px; height: 5px;
      background: rgba(255,255,255,0.22); border-radius: 3px; z-index: 5;
    }
    .hero-phone-screen {
      border-radius: 36px; overflow: hidden;
      background: #000; display: block;
      /* Fade the bottom edge softly into the hero */
      -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
      mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }
    .hero-phone-img {
      position: relative; z-index: 0;
      width: 100%; height: auto;
      display: block; border-radius: 36px;
      object-fit: cover; object-position: top center;
    }
    .hero-badge-pill {
      position: absolute; background: rgba(22,28,22,0.92);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(195,139,87,0.3); border-radius: 100px;
      padding: 10px 16px; display: flex; align-items: center; gap: 10px;
      font-size: 0.82rem; font-weight: 600; color: var(--dark-text);
      white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 10;
    }
    .hero-badge-pill .live-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #4ade80; flex-shrink: 0; box-shadow: 0 0 6px #4ade80;
    }
    .hero-badge-1 { bottom: 90px; left: -44px; }
    .hero-badge-2 { top: 70px; right: -36px; }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
      .hero-sub { max-width: 100%; }
      .store-badges { justify-content: center; }
      .hero-image-side { margin-top: 52px; }
      .hero-badge-1 { left: 8px; bottom: 60px; }
      .hero-badge-2 { right: 8px; top: 50px; }
    }
    @media (max-width: 480px) {
      .hero { padding: 48px 0 32px !important; }
      .hero h1 { font-size: 2rem; }
      /* Hide floating pills that would overflow on very small screens */
      .hero-badge-1, .hero-badge-2 { display: none; }
      .hero-phone-frame { max-width: 260px; margin: 0 auto; }
      .store-badge img { width: 140px; height: auto; }
      .store-badges { gap: 12px; }
    }

    /* ═══════════════════════════════════════
       CREDIBILITY STRIP
    ═══════════════════════════════════════ */
    .credibility-strip {
      background: #0D160D;
      border-top: 1px solid rgba(195,139,87,0.12);
      border-bottom: 1px solid rgba(195,139,87,0.12);
      padding: 14px 0;
    }
    .cred-list {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 0; list-style: none;
    }
    .cred-item {
      display: flex; align-items: center; gap: 8px;
      padding: 6px 24px;
      font-size: 0.82rem; font-weight: 500; color: var(--dark-muted);
      white-space: nowrap;
    }
    .cred-icon { font-size: 0.95rem; line-height: 1; flex-shrink: 0; }
    .cred-divider {
      width: 1px; height: 18px;
      background: rgba(195,139,87,0.18); flex-shrink: 0;
    }
    @media (max-width: 640px) {
      .cred-divider { display: none; }
      .cred-list { gap: 4px 0; }
      .cred-item { padding: 4px 16px; }
    }

    /* ═══════════════════════════════════════
       PROBLEM SECTION
    ═══════════════════════════════════════ */
    .problem-section { background: var(--beige); padding: 96px 0; }
    .problem-header { margin-bottom: 56px; }
    .problem-header h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      color: var(--brown); margin-bottom: 16px;
    }
    .problem-header p {
      font-size: 1.05rem; color: var(--muted);
      max-width: 600px; line-height: 1.72;
    }
    .pain-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
      margin-bottom: 48px;
    }
    .pain-card {
      background: var(--light-bg); border-radius: var(--radius-md);
      padding: 28px 26px; border: 1px solid rgba(89,75,63,0.09);
      box-shadow: var(--shadow-sm); display: flex; gap: 18px;
    }
    .pain-icon {
      font-size: 1.5rem; flex-shrink: 0; margin-top: 2px;
      width: 40px; text-align: center;
    }
    .pain-card h3 {
      font-size: 1rem; font-weight: 700; color: var(--brown);
      margin-bottom: 8px; letter-spacing: -0.01em;
    }
    .pain-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
    .problem-transition {
      background: linear-gradient(135deg, var(--dark-hero) 0%, #1a2e1a 100%);
      border-radius: var(--radius-lg); padding: 36px 40px;
      display: flex; align-items: center; justify-content: space-between; gap: 32px;
    }
    .problem-transition p {
      font-size: 1.05rem; color: var(--dark-muted); line-height: 1.68; margin: 0;
    }
    .problem-transition p strong { color: var(--dark-text); }
    .problem-transition .btn { flex-shrink: 0; }

    @media (max-width: 700px) {
      .pain-grid { grid-template-columns: 1fr; }
      .problem-transition { flex-direction: column; padding: 28px 24px; }
    }

    /* ═══════════════════════════════════════
       WHO IT'S FOR
    ═══════════════════════════════════════ */
    .for-section { background: var(--light-bg); padding: 96px 0; }
    .for-section .section-header { text-align: center; margin-bottom: 56px; }
    .for-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--brown); }
    .for-section .section-sub {
      font-size: 1.05rem; color: var(--muted); margin-top: 14px;
      max-width: 520px; margin-left: auto; margin-right: auto;
    }
    .persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .persona-card {
      background: var(--light-card); border-radius: var(--radius-lg);
      padding: 36px 30px; border: 1px solid rgba(89,75,63,0.08);
      transition: transform var(--t), box-shadow var(--t); position: relative; overflow: hidden;
    }
    .persona-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--gold); opacity: 0; transition: opacity var(--t);
    }
    .persona-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .persona-card:hover::before { opacity: 1; }
    .persona-icon {
      width: 50px; height: 50px; border-radius: var(--radius-sm);
      background: rgba(195,139,87,0.1); display: flex; align-items: center;
      justify-content: center; margin-bottom: 20px; font-size: 1.4rem;
    }
    .persona-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
    .persona-question { font-size: 0.88rem; font-weight: 600; color: var(--gold-dark); margin-bottom: 14px; }
    .persona-card p { font-size: 0.93rem; color: var(--muted); line-height: 1.68; }
    .persona-features { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
    .persona-features li { font-size: 0.88rem; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
    .persona-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    @media (max-width: 820px) { .persona-grid { grid-template-columns: 1fr; } }
    @media (min-width: 500px) and (max-width: 820px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ═══════════════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════════════ */
    .how-section { background: var(--dark-hero); padding: 96px 0; }
    .how-section .section-header { text-align: center; margin-bottom: 72px; }
    .how-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--dark-text); }
    .how-section .section-sub { color: var(--dark-muted); margin-top: 14px; font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; }
    .steps-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative;
    }
    .steps-grid::before {
      content: ''; position: absolute; top: 42px;
      left: calc(16.67% + 24px); right: calc(16.67% + 24px);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--dark-border) 30%, var(--dark-border) 70%, transparent);
    }
    .step-card { text-align: center; position: relative; }
    .step-number {
      width: 84px; height: 84px; border-radius: 50%;
      background: var(--dark-card); border: 1.5px solid var(--dark-border);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 26px; font-size: 1.8rem; position: relative; z-index: 1;
    }
    .step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark-text); margin-bottom: 12px; }
    .step-card p { font-size: 0.92rem; color: var(--dark-muted); line-height: 1.7; max-width: 260px; margin: 0 auto; }
    @media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; gap: 40px; } .steps-grid::before { display: none; } }

    /* ═══════════════════════════════════════
       FEATURES
    ═══════════════════════════════════════ */
    .features-section { background: var(--beige-dark); padding: 96px 0; }
    .features-section .section-header { text-align: center; margin-bottom: 56px; }
    .features-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--brown); }
    .features-section .section-sub { font-size: 1.05rem; color: var(--muted); margin-top: 14px; max-width: 520px; margin-left: auto; margin-right: auto; }
    .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .feature-card {
      background: var(--light-bg); border-radius: var(--radius-md); padding: 30px 26px;
      box-shadow: var(--shadow-sm); border: 1px solid rgba(89,75,63,0.07);
      transition: transform var(--t), box-shadow var(--t);
    }
    .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .feature-icon {
      width: 46px; height: 46px; border-radius: var(--radius-sm);
      background: rgba(195,139,87,0.1); display: flex; align-items: center;
      justify-content: center; margin-bottom: 18px;
    }
    .feature-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
    .feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 10px; }
    .feature-card p { font-size: 0.91rem; color: var(--muted); line-height: 1.68; }
    @media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════
       WHY WAPP
    ═══════════════════════════════════════ */
    .why-section { background: var(--beige); padding: 96px 0; }
    .why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .why-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--brown); margin-bottom: 16px; }
    .why-content p { font-size: 0.98rem; color: var(--muted); line-height: 1.76; margin-bottom: 28px; }
    .comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
    .comparison-table thead { background: var(--brown); }
    .comparison-table thead th {
      padding: 14px 16px; font-size: 0.83rem; font-weight: 700;
      text-align: left; color: white; letter-spacing: 0.03em;
    }
    .comparison-table thead th:last-child { background: var(--gold); }
    .comparison-table tbody tr { border-bottom: 1px solid var(--beige-dark); }
    .comparison-table tbody tr:last-child { border-bottom: none; }
    .comparison-table tbody tr:nth-child(even) td { background: var(--light-card); }
    .comparison-table tbody tr:nth-child(odd) td { background: var(--light-bg); }
    .comparison-table td { padding: 13px 16px; font-size: 0.88rem; color: var(--text); vertical-align: middle; }
    .comparison-table td:first-child { font-weight: 500; }
    .comparison-table td.bad { color: #9B1C1C; }
    .comparison-table td.good { color: #14532D; font-weight: 600; }
    @media (max-width: 820px) { 
      .why-inner { grid-template-columns: 1fr; gap: 32px; } 
      .why-demo-side { max-width: 100% !important; padding: 16px !important; }
      .demo-stage { height: 400px !important; }
    }

    /* ═══════════════════════════════════════
       SCREENSHOTS
    ═══════════════════════════════════════ */
    .screenshots-section {
      background: var(--dark-hero);
      background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(195,139,87,0.08) 0%, transparent 65%);
      padding: 100px 0 80px; overflow: hidden;
    }
    .screenshots-section .section-header { text-align: center; margin-bottom: 64px; }
    .screenshots-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--dark-text); }
    .screenshots-section .section-label { color: var(--gold-light); }
    .screenshots-section .section-sub {
      color: var(--dark-muted); margin-top: 14px; font-size: 1.02rem;
      max-width: 520px; margin-left: auto; margin-right: auto;
    }
    /* Cinematic 4-phone layout */
    .screens-stage {
      display: grid;
      grid-template-columns: 1fr 1.18fr 1fr;
      grid-template-rows: auto auto;
      gap: 0 20px;
      align-items: end;
      justify-items: center;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .screen-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .screen-card.featured { grid-row: 1 / 3; align-self: center; }
    .screen-card.side-bottom { align-self: start; margin-top: 28px; }
    /* Phone frame */
    .screen-phone {
      position: relative;
      display: inline-block;
      background: #1C1C1E;
      border-radius: 48px;
      padding: 14px 12px;
      box-shadow:
        0 0 0 1.5px #3A3A3C,
        0 0 0 3px #1C1C1E,
        0 40px 100px rgba(0,0,0,0.7),
        0 8px 24px rgba(0,0,0,0.4),
        inset 0 0 0 1px rgba(255,255,255,0.07);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .screen-phone:hover {
      transform: translateY(-6px);
      box-shadow:
        0 0 0 1.5px #3A3A3C,
        0 0 0 3px #1C1C1E,
        0 52px 120px rgba(0,0,0,0.75),
        0 12px 32px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(255,255,255,0.07);
    }
    .screen-phone::before {
      content: '';
      position: absolute; top: 16px; left: 50%;
      transform: translateX(-50%);
      width: 88px; height: 28px;
      background: #1C1C1E; border-radius: 20px; z-index: 5;
    }
    .screen-phone::after {
      content: '';
      position: absolute; bottom: 18px; left: 50%;
      transform: translateX(-50%);
      width: 110px; height: 5px;
      background: rgba(255,255,255,0.22); border-radius: 3px; z-index: 5;
    }
    .screen-display {
      border-radius: 36px; overflow: hidden;
      position: relative; display: block; background: #000;
    }
    .screen-display img {
      display: block; width: 100%; height: auto;
      border-radius: 36px; object-fit: cover; object-position: top center;
    }
    /* Size variants */
    .screen-display.sm  { width: 190px; }
    .screen-display.md  { width: 220px; }
    .screen-display.lg  { width: 258px; }
    /* Caption chip */
    .screen-caption {
      margin-top: 20px;
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(195,139,87,0.1);
      border: 1px solid rgba(195,139,87,0.2);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 0.78rem; font-weight: 600;
      color: var(--gold-light); letter-spacing: 0.02em;
      white-space: nowrap;
    }
    .screen-caption svg { width: 12px; height: 12px; flex-shrink: 0; }
    /* Connector line between side phones */
    .screens-stage .screen-card:not(.featured) .screen-phone {
      opacity: 0.92;
    }
    @media (max-width: 880px) {
      .screens-stage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
      }
      .screen-card.featured { grid-column: 1 / 3; grid-row: 1; margin-bottom: 24px; }
      .screen-display.lg { width: 220px; }
      .screen-display.md { width: 180px; }
      .screen-display.sm { width: 160px; }
    }
    @media (max-width: 560px) {
      .screens-stage {
        grid-template-columns: 1fr;
        gap: 32px 0;
      }
      .screen-card.featured { grid-column: 1; }
      .screen-card.side-bottom { margin-top: 0; }
      .screen-display.lg, .screen-display.md, .screen-display.sm { width: 200px; }
    }
    /* ═══════════════════════════════════════
       FAQ
    ═══════════════════════════════════════ */
    .faq-section { background: var(--beige); padding: 96px 0; }
    .faq-section .section-header { text-align: center; margin-bottom: 52px; }
    .faq-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--brown); }
    .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
    .faq-item {
      background: var(--light-bg); border: 1px solid rgba(89,75,63,0.1);
      border-radius: var(--radius-md); overflow: hidden; transition: box-shadow var(--t);
    }
    .faq-item:hover { box-shadow: var(--shadow-sm); }
    .faq-question {
      width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
      padding: 22px 24px; background: none; border: none; cursor: pointer;
      font-family: 'Inter', sans-serif; font-size: 0.97rem; font-weight: 600;
      color: var(--brown); text-align: left;
    }
    .faq-chevron {
      flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
      background: var(--beige); display: flex; align-items: center; justify-content: center;
      transition: transform var(--t), background var(--t);
    }
    .faq-chevron svg { width: 14px; height: 14px; stroke: var(--gold); transition: transform var(--t); }
    .faq-item[open] .faq-chevron { background: var(--gold); }
    .faq-item[open] .faq-chevron svg { stroke: #fff; transform: rotate(180deg); }
    .faq-answer { padding: 0 24px 22px; font-size: 0.93rem; color: var(--muted); line-height: 1.76; }

    /* ═══════════════════════════════════════
       FINAL CTA
    ═══════════════════════════════════════ */
    .cta-section {
      background: var(--dark-hero);
      background-image: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(195,139,87,0.13) 0%, transparent 70%);
      padding: 100px 0; text-align: center;
    }
    .cta-section h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--dark-text); margin-bottom: 18px; }
    .cta-section h2 .accent { color: var(--gold); }
    .cta-section p { font-size: 1.05rem; color: var(--dark-muted); max-width: 520px; margin: 0 auto 44px; }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    .site-footer { background: #0A0F0A; padding: 52px 24px 36px; }
    .footer-inner {
      max-width: 1160px; margin: 0 auto;
      display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center;
    }
    .footer-logo img { height: 32px; width: auto; opacity: 0.75; }
    .footer-email a { color: var(--gold-light); font-size: 0.9rem; font-weight: 500; }
    .footer-email a:hover { opacity: 0.85; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 6px 8px; justify-content: center; list-style: none; }
    .footer-links li::after { content: '·'; color: #2A2F2A; margin-left: 8px; }
    .footer-links li:last-child::after { content: ''; }
    .footer-links a { font-size: 0.85rem; color: #525952; text-decoration: none; transition: color var(--t); }
    .footer-links a:hover { color: var(--gold-light); text-decoration: none; }
    .footer-copy { font-size: 0.78rem; color: #323832; }

    /* ═══════════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════════ */
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

    /* ═══════════════════════════════════════
       MOBILE SPACING ADJUSTMENTS
    ═══════════════════════════════════════ */
    @media (max-width: 820px) {
      .problem-section, .for-section, .how-section, .features-section, .why-section, .faq-section, .screenshots-section, .cta-section, .interactive-walkthrough {
        padding-top: 64px !important; padding-bottom: 64px !important;
      }
      .section-header { margin-bottom: 40px !important; }
    }
    @media (max-width: 480px) {
      .problem-section, .for-section, .how-section, .features-section, .why-section, .faq-section, .screenshots-section, .cta-section, .interactive-walkthrough {
        padding-top: 48px !important; padding-bottom: 48px !important;
      }
      .section-header { margin-bottom: 32px !important; }
      .hero { padding: 40px 0 24px !important; }
      .persona-routing-grid .feature-card { padding: 24px 20px !important; }
    }

    /* ═══════════════════════════════════════
       MOBILE SIMPLIFICATION UTILITIES
    ═══════════════════════════════════════ */
    .mobile-only { display: none !important; }
    @media (max-width: 600px) {
      .desktop-only { display: none !important; }
      .mobile-only { display: block !important; }
      span.mobile-only { display: inline !important; }
      div.mobile-only.flex { display: flex !important; }
    }
  


      .interactive-walkthrough { background: var(--dark-hero); padding: 96px 0; color: var(--dark-text); position: relative; overflow: hidden; }
      .iw-inner { display: flex; align-items: center; gap: 64px; position:relative; z-index:1; }
      @media (max-width: 900px) {
        .interactive-walkthrough { padding: 72px 0; }
        .iw-inner { flex-direction: column-reverse; gap: 40px; text-align: center; }
        .iw-tab { text-align: center; }
        /* Hide the dynamic floating badges on mobile — they overflow off-screen */
        .iw-badge { display: none !important; }
        /* Shrink phone frame slightly on mid-size screens */
        .iw-visuals .phone-frame { transform: scale(1.0) !important; transform-origin: center center !important; }
      }
      @media (max-width: 540px) {
        .iw-tabs { min-width: 0 !important; width: 100%; gap: 10px !important; }
        .iw-tab h3 { font-size: 1.05rem; margin-bottom: 0; }
        .iw-tab { padding: 14px 18px; border-radius: 12px; }
        .iw-visuals .phone-frame { max-width: 220px !important; }
      }
      .iw-tabs { flex: 1; min-width: 250px; display: flex; flex-direction: column; gap: 16px; margin: 0; padding: 0; }
      .iw-tab { 
        background: transparent; border: 1px solid rgba(195,139,87,0.15); 
        padding: 24px; border-radius: var(--radius-lg); cursor: pointer;
        text-align: left; transition: all 0.3s ease; opacity: 0.5; color: var(--dark-text);
      }
      .iw-tab h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; transition: color 0.3s ease; }
      .iw-tab p { font-size: 0.95rem; color: var(--dark-muted); line-height: 1.6; margin: 0; }
      .iw-tab:hover { opacity: 0.8; border-color: rgba(195,139,87,0.4); }
      .iw-tab.active { opacity: 1; border-color: var(--gold); background: rgba(195,139,87,0.05); }
    


      .compact-compare-mobile { background: var(--light-card); border-radius: var(--radius-lg); border: 1px solid rgba(89,75,63,0.1); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 32px; }
      .cc-row { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
      .cc-bad { background: rgba(230, 57, 70, 0.05); border-bottom: 1px solid rgba(89,75,63,0.1); }
      .cc-good { background: rgba(39, 174, 96, 0.05); }
      .cc-header { font-weight: 800; font-size: 1.1rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
      .cc-list { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; color: var(--muted); }
      .cc-list li { margin-bottom: 6px; padding-left: 16px; position: relative; }
      .cc-bad .cc-list li::before { content: '✕'; position: absolute; left: 0; color: #E63946; font-size: 0.8rem; top: 1px; }
      .cc-good .cc-list li::before { content: '✓'; position: absolute; left: 0; color: #27AE60; font-size: 0.8rem; top: 1px; font-weight: bold; }
    


            .why-demo-side { flex: 1; max-width: 480px; width: 100%; border-radius: var(--radius-lg); background: var(--light-card); border: 1px solid rgba(89,75,63,0.1); padding: 24px; box-shadow: var(--shadow-md); }
            .demo-toggle { display: flex; background: rgba(89,75,63,0.06); border-radius: 100px; padding: 4px; margin-bottom: 24px; position: relative; }
            .dt-btn { flex: 1; padding: 12px 16px; border-radius: 100px; font-weight: 700; font-size: 0.95rem; color: var(--muted); background: transparent; border: none; cursor: pointer; transition: color 0.3s ease; position: relative; z-index: 2; margin: 0; }
            .dt-btn.active { color: var(--brown); }
            .dt-pill { position: absolute; top: 4px; left: 4px; bottom: 4px; width: calc(50% - 4px); background: #fff; border-radius: 100px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1; pointer-events: none; }
            
            .demo-stage { position: relative; height: 460px; border-radius: var(--radius-md); overflow: hidden; background: #ECE5DD; border: 1px solid rgba(89,75,63,0.08); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
            .demo-view { position: absolute; inset: 0; transition: opacity 0.3s ease; opacity: 0; pointer-events: none; display: flex; flex-direction: column; overflow-y: hidden; }
            .demo-view.active { opacity: 1; pointer-events: auto; }

            .demo-chat-header { padding: 14px 16px; background: rgba(246,246,246,0.95); border-bottom: 1px solid #ddd; z-index: 10; display: flex; align-items: center; justify-content: space-between; }
            .demo-chat-header div { font-weight: 600; color: #000; font-size: 1rem; }
            .demo-chat-header span { color: #007AFF; font-size: 1rem; font-weight: 400; cursor: default; }
            
            .demo-view-inner { padding: 12px 16px 24px; display: flex; flex-direction: column; overflow-y: auto; flex: 1; }
            .cb-time { text-align: center; font-size: 0.75rem; color: rgba(0,0,0,0.6); margin: 8px 0 16px; font-weight: 500; background: rgba(225,232,238,0.9); display: inline-block; align-self: center; padding: 4px 12px; border-radius: 12px; }
            .cb { max-width: 85%; padding: 6px 10px 8px 12px; border-radius: 12px; font-size: 0.95rem; line-height: 1.35; position: relative; clear: both; margin-bottom: 6px; box-shadow: 0 1px 1px rgba(0,0,0,0.1); text-align: left; opacity: 0; }
            .demo-view.active .cb { animation: popInChat 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
            @keyframes popInChat { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
            
            .demo-view.active .cb:nth-of-type(1) { animation-delay: 0.2s; }
            .demo-view.active .cb:nth-of-type(2) { animation-delay: 1.0s; }
            .demo-view.active .cb:nth-of-type(3) { animation-delay: 1.8s; }
            .demo-view.active .cb:nth-of-type(4) { animation-delay: 2.6s; }
            .demo-view.active .cb:nth-of-type(5) { animation-delay: 3.4s; }
            .demo-view.active .cb:nth-of-type(6) { animation-delay: 4.2s; }
            .demo-view.active .cb:nth-of-type(7) { animation-delay: 4.8s; }
            .demo-view.active .cb:nth-of-type(8) { animation-delay: 5.4s; }

            .cb.in { align-self: flex-start; background: #fff; color: #000; border-top-left-radius: 2px; }
            .cb.out { align-self: flex-end; background: #DCF8C6; color: #000; border-top-right-radius: 2px; }
            .cb .meta { font-size: 0.65rem; color: rgba(0,0,0,0.45); margin-left: 12px; float: right; margin-top: 8px; }
            .cb-sender { font-weight: 600; font-size: 0.8rem; color: #34B7F1; margin-bottom: 4px; }
            
            .demo-chat-footer { background: #F6F6F6; border-top: 1px solid #ddd; padding: 8px 16px; display: flex; align-items: center; }
            .demo-chat-input { flex: 1; background: #fff; border: 1px solid #ccc; border-radius: 20px; padding: 8px 16px; color: #999; font-size: 0.9rem; }

            .wapp-mock { width: 100%; height: 100%; display: flex; align-items: flex-end; justify-content: center; background: linear-gradient(180deg, var(--brown) 0%, #3a322c 100%); padding-top: 16px; overflow: hidden; }
            .wm-ui { width: 100%; max-width: 320px; background: #fdfdfd; border-radius: 36px 36px 0 0; box-shadow: 0 -12px 64px rgba(0,0,0,0.4); border: 8px solid #1C1C1E; border-bottom: none; transform: translateY(0); display: flex; flex-direction: column; height: 100%; overflow: hidden; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; position: relative; }
            .demo-view.active .wm-ui { animation: slideUpPhone 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
            @keyframes slideUpPhone { from { transform: translateY(80px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

            .wm-notch { width: 120px; height: 24px; background: #1C1C1E; border-radius: 0 0 12px 12px; position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 10; }
            .wm-header { background: #fff; padding: 48px 20px 16px; border-bottom: 1px solid #f0f0f0; }
            .wm-title { font-weight: 700; font-size: 1.35rem; color: #111; margin-bottom: 4px; letter-spacing: -0.01em; opacity: 0; }
            .demo-view.active .wm-title { animation: fadeIn 0.4s forwards 0.2s; }
            .wm-meta { font-size: 0.8rem; color: #666; font-weight: 500; opacity: 0; }
            .demo-view.active .wm-meta { animation: fadeIn 0.4s forwards 0.5s; }
            
            .wm-attendance { padding: 20px; background: #fff; opacity: 0; }
            .demo-view.active .wm-attendance { animation: fadeIn 0.4s forwards 0.5s; }
            .wm-att-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 12px; }
            .wm-att-header span { font-size: 0.85rem; font-weight: 700; color: #111; text-transform: uppercase; letter-spacing: 0.05em; }
            .wm-att-count { color: var(--green, #27AE60) !important; font-size: 1rem !important; }
            .wm-bar { height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
            .wm-bar-fill { height: 100%; width: 0%; background: var(--green, #27AE60); border-radius: 4px; }
            .demo-view.active .wm-bar-fill { animation: fillBar 1.0s cubic-bezier(0.1, 0.7, 0.1, 1) forwards 0.9s; }
            @keyframes fillBar { to { width: 100%; } }
            @keyframes fadeIn { to { opacity: 1; } }
            
            .wm-roster { flex: 1; padding: 0 20px; display: flex; flex-direction: column; gap: 8px; }
            .wm-player { display: flex; align-items: center; background: #f9f9f9; padding: 8px 16px; border-radius: 12px; opacity: 0; transform: translateX(16px); }
            .wm-player.out { opacity: 0.5; }
            .wm-player span { flex: 1; font-weight: 600; font-size: 0.95rem; color: #111; }
            .wm-player .wm-status { font-size: 0.85rem; font-weight: 700; }
            .wm-player .wm-status.in { color: var(--green, #27AE60); }
            .wm-player .wm-status.out { color: #E63946; }
            
            .demo-view.active .wm-player:nth-child(1) { animation: slideInP 0.3s forwards 1.4s; }
            .demo-view.active .wm-player:nth-child(2) { animation: slideInP 0.3s forwards 1.6s; }
            .demo-view.active .wm-player:nth-child(3) { animation: slideInP 0.3s forwards 1.8s; }
            .demo-view.active .wm-player:nth-child(4) { animation: slideInP 0.3s forwards 2.0s; }
            .wm-more { text-align: center; font-size: 0.8rem; color: #666; font-weight: 600; margin-top: 4px; opacity: 0; }
            .demo-view.active .wm-more { animation: fadeIn 0.4s forwards 2.2s; }
            @keyframes slideInP { to { opacity: 1; transform: translateX(0); } }
            
            .wm-cta { padding: 16px 20px 24px; background: #fff; border-top: 1px solid #f0f0f0; text-align: center; display: flex; flex-direction: column; align-items: center; }
            .wm-status-alert { background: #fee; color: #E63946; font-size: 0.8rem; font-weight: 700; padding: 6px 12px; border-radius: 12px; margin-bottom: 12px; display: inline-block; opacity: 0; transform: scale(0.95); }
            .demo-view.active .wm-status-alert { animation: popInChat 0.3s forwards 2.6s; }
            .wm-cta-group { width: 100%; opacity: 0; transform: translateY(10px); }
            .demo-view.active .wm-cta-group { animation: slideInP 0.4s forwards 3.0s; }
            .wm-btn { background: #000; color: #fff; font-weight: 600; width: 100%; padding: 14px; border-radius: 12px; border: none; font-size: 1rem; margin-bottom: 6px; }
          

.demo-view.active .chat-alert { animation: popInChat 0.3s forwards; animation-delay: 6.2s; }

/* ═══════════════════════════════════════
   MOBILE PACING (AGGRESSIVE COMPRESSION)
═══════════════════════════════════════ */
@media (max-width: 820px) {
  .hero { padding: 48px 0 32px !important; }
  .for-section { padding: 48px 0 !important; }
  .why-section { padding: 48px 0 !important; }
  .faq-section { padding: 48px 0 !important; }
  .mobile-short-preview { padding: 40px 0 24px !important; }
  .section-header { margin-bottom: 24px !important; }
  .why-content h2, .for-section h2 { margin-bottom: 16px !important; }
}
.mobile-short-preview div::-webkit-scrollbar { display: none; }
