:root {
      --navy:       #1a2e4a;
      --blue-light: #e8f1fb;
      --teal:       #3a9b8e;
      --teal-light: #e6f7f5;
      --warn-bg:    #fff5f5;
      --warn-border:#e8474a;
      --warn-text:  #b91c1c;
      --gray-50:    #f8fafc;
      --gray-100:   #f1f5f9;
      --gray-200:   #e2e8f0;
      --gray-500:   #64748b;
      --gray-700:   #334155;
      --gray-900:   #0f172a;
      --white:      #ffffff;

      --radius-sm:  6px;
      --shadow-sm:  0 1px 3px rgba(0,0,0,.07);
      --shadow:     0 4px 20px rgba(0,0,0,.09);

      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body:    'DM Sans', system-ui, sans-serif;

      --transition: .35s cubic-bezier(.4,0,.2,1);
      
        --blue:       #2A7FFF;
          --blue-dark:  #1A5FCC;
          --blue-light: #EFF6FF;
          --blue-glow:  rgba(42,127,255,0.15);
          --bg:         #F8FAFD;
          --surface:    #ffffff;
          --border:     #E4ECF7;
          --text:       #0D1B2E;
          --text-mid:   #4A5C72;
          --text-soft:  #8A9AB0;
          --radius:     14px;
          --radius-lg:  22px;
          --shadow-sm:  0 2px 12px rgba(42,127,255,0.08);
          --shadow-md:  0 8px 32px rgba(42,127,255,0.12);
          --shadow-lg:  0 20px 60px rgba(42,127,255,0.18);
          --nav-h:      70px;
          --tr:         0.3s cubic-bezier(0.4,0,0.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-body);
      background: var(--gray-50);
      color: var(--gray-900);
      line-height: 1.7;
      overflow-x: hidden;
    }


    
    /* Navbar */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gray-200);
      padding: 0 clamp(1rem, 5vw, 3rem);
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 16px rgba(42,127,255,.07);
    }

    .nav-logo{
      font-family:'Syne',sans-serif;font-size:1.25rem;font-weight:800;color:var(--text);
      display:flex;align-items:center;gap:10px
    }
    .logo-icon{color:var(--blue);font-size:1.4rem}
    .logo-accent{color:var(--blue)}
    .nav-links{display:flex;align-items:center;gap:8px}
    .nav-link{
      font-size:.9rem;font-weight:500;color:var(--text-mid);padding:8px 16px;
      border-radius:100px;transition:all var(--tr)
    }

    .btn-home {
      display: flex; align-items: center; gap: 7px;
      padding: 8px 18px;
      border-radius: 50px;
      border: 1.5px solid var(--blue);
      background: var(--blue);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-size: .82rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, color .2s;
    }

    .btn-home:hover {
      background: var(--blue-dark);
      color: #fff;
    }

    /* Layout */
    .container {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    }

    main { padding-bottom: 5rem; }

    /* Fade-in animation */
    .fade-section {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .fade-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Section wrapper */
    .section {
      margin-top: 3.5rem;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: .75rem;
    }

    .section-label .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue);
    }

    .section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3vw, 1.9rem);
      color: var(--navy);
      font-weight: 400;
      line-height: 1.25;
      margin-bottom: 1.1rem;
    }

    /* Card */
    .card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: clamp(1.5rem, 4vw, 2.5rem);
      border: 1px solid var(--gray-200);
    }

    /* Disclaimer box */
    .disclaimer-box {
      background: var(--warn-bg);
      border: 2px solid var(--warn-border);
      border-radius: var(--radius);
      padding: clamp(1.5rem, 4vw, 2.5rem);
      margin-top: 3rem;
    }

    .disclaimer-header {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1.25rem;
    }

    .disclaimer-header .icon-circle {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: var(--warn-border);
      border-radius: 50%;
      display: grid;
      place-items: center;
    }

    .disclaimer-header h2 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--warn-text);
      margin: 0;
    }

    .disclaimer-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .disclaimer-list li {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      font-size: .97rem;
      color: #7f1d1d;
      line-height: 1.55;
    }

    .disclaimer-list li .check {
      width: 22px;
      height: 22px;
      min-width: 22px;
      margin-top: 1px;
      background: rgba(232,71,74,.15);
      border-radius: 50%;
      display: grid;
      place-items: center;
    }

    /* Feature grid */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
      margin-top: 1.25rem;
    }

    .feature-tile {
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 1.25rem 1.35rem;
      display: flex;
      flex-direction: column;
      gap: .6rem;
    }

    .feature-tile .tile-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      margin-bottom: .2rem;
    }

    .feature-tile .tile-icon.blue  { background: var(--blue-light); }
    .feature-tile .tile-icon.teal  { background: var(--teal-light); }
    .feature-tile .tile-icon.warm  { background: #fff8e6; }

    .feature-tile h3 {
      font-size: .95rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.3;
    }

    .feature-tile p {
      font-size: .88rem;
      color: var(--gray-500);
      line-height: 1.55;
    }

    /* Bullet list (shared) */
    .info-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .8rem;
      margin-top: .5rem;
    }

    .info-list li {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      font-size: .95rem;
      color: var(--gray-700);
      line-height: 1.55;
    }

    .info-list li .bullet {
      width: 22px;
      height: 22px;
      min-width: 22px;
      margin-top: 2px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: .7rem;
    }

    .bullet.blue  { background: var(--blue-light); color: var(--blue); }
    .bullet.teal  { background: var(--teal-light); color: var(--teal); }
    .bullet.warn  { background: #fff5f5; color: var(--warn-border); }

    /* Stat row */
    .stat-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .stat-card {
      background: var(--blue-light);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      text-align: center;
    }

    .stat-card .stat-num {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--blue);
      line-height: 1;
    }

    .stat-card .stat-label {
      font-size: .8rem;
      color: var(--gray-500);
      margin-top: .3rem;
    }

    /* Privacy box */
    .privacy-box {
      background: var(--teal-light);
      border: 1px solid #b2dfdb;
      border-radius: var(--radius);
      padding: clamp(1.5rem, 3vw, 2rem);
    }

    .privacy-box h2 {
      color: #1a5e56;
    }

    /* CTA section */
    .cta-section {
      margin-top: 4rem;
      background: linear-gradient(135deg, var(--navy), #1e4a7c);
      border-radius: var(--radius-lg);
      padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
      text-align: center;
      color: var(--white);
    }

    .cta-section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3.5vw, 2.2rem);
      font-weight: 400;
      margin-bottom: .75rem;
      color: var(--white);
    }

    .cta-section p {
      color: rgba(255,255,255,.7);
      margin-bottom: 2rem;
      font-size: .97rem;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .75rem 1.75rem;
      border-radius: 999px;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      border: 2px solid transparent;
      transition: all var(--transition);
    }

    .btn-primary {
      background: var(--white);
      color: var(--navy);
    }

    .btn-primary:hover {
      background: var(--blue-light);
      color: var(--blue);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,.4);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,.1);
      border-color: var(--white);
    }

    /* Divider */
    .divider {
      border: none;
      border-top: 1px solid var(--gray-200);
      margin: 3.5rem 0;
    }

    /* Seek help highlight */
    .seek-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 1rem;
      margin-top: 1.25rem;
    }

    .seek-card {
      border-radius: var(--radius);
      padding: 1.3rem;
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .seek-card.red    { background: #fff5f5; border: 1px solid #fecaca; }
    .seek-card.amber  { background: #fffbeb; border: 1px solid #fde68a; }
    .seek-card.blue   { background: var(--blue-light); border: 1px solid #bfdbfe; }

    .seek-card .seek-icon { font-size: 1.4rem; margin-bottom: .2rem; }

    .seek-card h3 {
      font-size: .92rem;
      font-weight: 600;
      color: var(--navy);
    }

    .seek-card p {
      font-size: .85rem;
      color: var(--gray-500);
      line-height: 1.5;
    }

    /* Footer */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.55);
      text-align: center;
      font-size: .82rem;
      padding: 1.5rem 1rem;
    }

    footer strong { color: rgba(255,255,255,.8); }

    /* Responsive */
    @media (max-width: 768px) {
      .container {
        padding: 0 clamp(1rem, 3vw, 1.5rem);
      }

      .section {
        margin-top: 2rem;
      }

      .disclaimer-box {
        margin-top: 2rem;
        padding: 1.25rem;
      }

      .disclaimer-header h2 {
        font-size: 1.2rem;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .stat-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .seek-grid {
        grid-template-columns: 1fr;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      nav {
        padding: 0 12px;
      }

      .nav-logo {
        font-size: 1rem;
      }

      .nav-logo img {
        width: 28px;
        height: 28px;
      }

      .btn-home span {
        display: none;
      }

      .btn-home {
        padding: 6px 12px;
      }

      .stat-row {
        grid-template-columns: 1fr;
      }

      .divider {
        margin: 2rem 0;
      }

      footer {
        padding: 1rem;
        font-size: .75rem;
      }
    }