    :root, [data-theme="dark"] {
      --bg: #0d0e11;
      --surface: #15171c;
      --card: #1c1f27;
      --accent: #5be5c5;
      --accent2: #e8c96a;
      --text: #f0eeea;
      --muted: #7a7e8a;
      --border: rgba(255,255,255,0.07);
      --danger: #ff6b6b;
      --safe: #5be5c5;
    }
    [data-theme="light"] {
      --bg: #f0ede8;
      --surface: #e8e4de;
      --card: #ffffff;
      --accent: #2aab8e;
      --accent2: #c9a030;
      --text: #1a1a1a;
      --muted: #888888;
      --border: rgba(0,0,0,0.08);
      --danger: #d94040;
      --safe: #2aab8e;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.7; }
    body::before {
      content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    }

    nav {
      position: sticky; top: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 2.5rem;
      background: rgba(13,14,17,.9); backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .logo { text-decoration: none; display: flex; align-items: center; }
    .logo-img { height: 40px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--muted); font-size: .88rem; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--text); }
    .nav-cta { background: var(--accent2); color: #0d0e11 !important; padding: .5rem 1.2rem; border-radius: 6px; font-weight: 600 !important; }
    .nav-theme-btn {
      width: 36px; height: 36px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; border: none; background: rgba(255,255,255,.06);
      font-size: 1rem; flex-shrink: 0; transition: transform .3s; color: var(--text);
    }
    [data-theme="light"] .nav-theme-btn { background: rgba(0,0,0,.06); }
    .nav-theme-btn:hover { transform: rotate(22deg); }

    /* HERO */
    .hero {
      position: relative; padding: 8rem 2.5rem 6rem; text-align: center;
      overflow: hidden; border-bottom: 1px solid var(--border);
    }
    .hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(91,229,197,.1) 0%, transparent 65%); top: -150px; left: 50%; transform: translateX(-50%); pointer-events: none; }
    .hero-shield {
      display: inline-flex; align-items: center; justify-content: center;
      width: 90px; height: 90px; border-radius: 50%;
      background: rgba(91,229,197,.1); border: 1px solid rgba(91,229,197,.2);
      font-size: 2.5rem; margin-bottom: 1.8rem;
      animation: shieldPulse 3s ease-in-out infinite;
    }
    @keyframes shieldPulse { 0%,100%{box-shadow:0 0 0 0 rgba(91,229,197,.2)} 50%{box-shadow:0 0 0 16px rgba(91,229,197,0)} }
    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(91,229,197,.1); border: 1px solid rgba(91,229,197,.2);
      border-radius: 99px; padding: .35rem 1rem;
      font-size: .72rem; color: var(--accent); font-weight: 600;
      letter-spacing: .5px; text-transform: uppercase; margin-bottom: 1.2rem;
    }
    h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 1.2rem; animation: fadeUp .7s ease both; }
    h1 em { font-style: normal; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero-sub { color: var(--muted); font-size: 1rem; font-weight: 300; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.85; animation: fadeUp .7s .15s ease both; }
    .hero-pillars { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: .5rem; animation: fadeUp .7s .25s ease both; }
    .pillar { display: flex; align-items: center; gap: .6rem; background: var(--card); border: 1px solid var(--border); border-radius: 99px; padding: .5rem 1rem; font-size: .82rem; font-weight: 500; }
    .pillar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

    section { position: relative; z-index: 1; }
    .section-inner { max-width: 1100px; margin: 0 auto; padding: 5.5rem 2.5rem; }

    /* TRUST SCORES */
    .scores-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 5rem; }
    .score-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
    .score-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2)); }
    .score-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--accent); display: block; letter-spacing: -1px; }
    .score-label { font-size: .8rem; color: var(--muted); font-weight: 300; margin-top: .3rem; }

    /* SECTIONS */
    .divider-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .eyebrow { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; margin-bottom: .8rem; }
    .eyebrow.teal { color: var(--accent); }
    .eyebrow.gold { color: var(--accent2); }
    .eyebrow.red { color: var(--danger); }
    h2.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; letter-spacing: -.8px; line-height: 1.1; margin-bottom: 1rem; }
    .section-sub { color: var(--muted); font-size: .95rem; font-weight: 300; line-height: 1.8; max-width: 540px; margin-bottom: 2.5rem; }

    /* SAFETY TIPS */
    .tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .tip-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 1.8rem;
      transition: transform .3s, border-color .3s;
      position: relative; overflow: hidden;
    }
    .tip-card:hover { transform: translateY(-4px); border-color: rgba(91,229,197,.2); }
    .tip-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(91,229,197,.15); position: absolute; top: 1rem; right: 1.2rem; line-height: 1; }
    .tip-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
    .tip-title { font-weight: 600; font-size: .95rem; margin-bottom: .5rem; }
    .tip-desc { color: var(--muted); font-size: .85rem; font-weight: 300; line-height: 1.7; }

    /* DO / DON'T */
    .do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
    .do-col, .dont-col { border-radius: 16px; padding: 2rem; }
    .do-col { background: rgba(91,229,197,.06); border: 1px solid rgba(91,229,197,.15); }
    .dont-col { background: rgba(255,107,107,.05); border: 1px solid rgba(255,107,107,.18); }
    .col-header { display: flex; align-items: center; gap: .7rem; font-weight: 700; font-size: 1rem; margin-bottom: 1.4rem; }
    .col-header.do { color: var(--accent); }
    .col-header.dont { color: var(--danger); }
    .check-list { list-style: none; }
    .check-list li { display: flex; gap: .8rem; font-size: .88rem; color: var(--muted); font-weight: 300; padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.04); line-height: 1.6; }
    .check-list li:last-child { border-bottom: none; }
    .check-list li::before { font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }
    .do-col .check-list li::before { content: '✓'; color: var(--accent); font-weight: 700; }
    .dont-col .check-list li::before { content: '✗'; color: var(--danger); font-weight: 700; }

    /* REPORT */
    .report-section { background: var(--surface); border-top: 1px solid var(--border); }
    .report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
    .report-steps { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
    .report-step { display: flex; gap: 1rem; align-items: flex-start; }
    .step-badge { width: 34px; height: 34px; border-radius: 50%; background: rgba(91,229,197,.1); border: 1px solid rgba(91,229,197,.2); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
    .step-content .step-title { font-weight: 600; font-size: .9rem; margin-bottom: .2rem; }
    .step-content .step-desc { color: var(--muted); font-size: .84rem; font-weight: 300; line-height: 1.65; }
    .report-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; text-align: center; }
    .report-card-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
    .report-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: .7rem; }
    .report-card p { color: var(--muted); font-size: .88rem; font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
    .btn-report { display: inline-block; background: var(--danger); color: #fff; padding: .8rem 1.8rem; border-radius: 8px; font-weight: 600; font-size: .9rem; text-decoration: none; transition: opacity .2s, transform .2s; }
    .btn-report:hover { opacity: .85; transform: translateY(-2px); }
    .contact-chips { display: flex; flex-direction: column; gap: .8rem; margin-top: 1rem; }
    .contact-chip { display: flex; align-items: center; gap: .8rem; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; padding: .7rem 1rem; font-size: .84rem; text-decoration: none; color: var(--muted); transition: border-color .2s, color .2s; }
    .contact-chip:hover { border-color: rgba(91,229,197,.3); color: var(--text); }
    .contact-chip span:first-child { font-size: 1.1rem; }

    /* RED FLAGS */
    .flags-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
    .flag-item { display: flex; gap: 1rem; background: rgba(255,107,107,.05); border: 1px solid rgba(255,107,107,.15); border-radius: 12px; padding: 1.2rem 1.4rem; align-items: flex-start; }
    .flag-icon { font-size: 1.3rem; flex-shrink: 0; }
    .flag-title { font-weight: 600; font-size: .88rem; margin-bottom: .2rem; color: #ff8c8c; }
    .flag-desc { color: var(--muted); font-size: .82rem; font-weight: 300; line-height: 1.6; }

    /* FOOTER */
    footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 2.5rem; }
    .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
    .footer-logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.15rem; color: var(--accent2); }
    .footer-logo span { color: var(--text); }
    .footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
    .footer-links a { text-decoration: none; color: var(--muted); font-size: .83rem; transition: color .2s; }
    .footer-links a:hover { color: var(--text); }
    .footer-copy { color: var(--muted); font-size: .78rem; }

    @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
    .reveal { opacity:0; transform:translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }

    @media (max-width: 1024px) { .scores-row { grid-template-columns: repeat(2, 1fr); } .tips-grid { grid-template-columns: repeat(2, 1fr); } .report-grid { grid-template-columns: 1fr; } .flags-grid { grid-template-columns: 1fr; } }
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; } .nav-links { display: none; }
      .hero { padding: 5rem 1.5rem 4rem; }
      .section-inner { padding: 4rem 1.5rem; }
      .tips-grid { grid-template-columns: 1fr; }
      .do-dont { grid-template-columns: 1fr; }
      .scores-row { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }
    }
  
    @media (max-width: 480px) {
      .hero { padding: 4rem 1.2rem 3rem; }
      .hero-pillars { gap: .6rem; }
      .pillar { font-size: .76rem; padding: .4rem .75rem; }
      .section-inner { padding: 3rem 1.2rem; }
      .score-num { font-size: 2rem; }
      .tip-card { padding: 1.3rem; }
      .tip-desc { font-size: .82rem; }
      .check-list li { font-size: .82rem; }
      .flag-item { padding: .9rem 1rem; }
    }
    @media (max-width: 380px) {
      .scores-row { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
      .score-card { padding: 1rem .8rem; }
    }
