:root {
      --bg: radial-gradient(circle at 20% 20%, rgba(83, 146, 255, 0.15), transparent 25%),
            radial-gradient(circle at 80% 10%, rgba(46, 204, 113, 0.18), transparent 22%),
            #0f172a;
      --glass: rgba(255, 255, 255, 0.06);
      --border: rgba(255, 255, 255, 0.08);
      --primary: #7ddaff;
      --accent: #ff8a54;
      --success: #82ffd8;
      --text: #e6edf7;
      --muted: #9fb3c8;
      --card: #0b1224;
      --shadow: 0 20px 60px rgba(0,0,0,0.35);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Space Grotesk', 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }
    a { color: inherit; text-decoration: none; }
    .page {
      max-width: 1200px;
      margin: 0 auto;
      padding: 32px 24px 72px;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 12px 18px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: linear-gradient(120deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      backdrop-filter: blur(12px);
      position: sticky;
      top: 12px;
      z-index: 10;
      box-shadow: var(--shadow);
      flex-wrap: nowrap;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      letter-spacing: 0.4px;
      flex-shrink: 0;
    }
    .brand .logo {
      height: 42px;
      width: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      padding: 6px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    }
    .brand .logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .nav-links {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
      font-size: 14px;
      color: var(--muted);
      justify-content: center;
      flex: 1;
      min-width: 0;
    }
    .nav-links a {
      padding: 6px 10px;
      border-radius: 10px;
      transition: color 0.15s ease, background-color 0.15s ease;
    }
    .nav-links a:hover { color: var(--primary); background: rgba(255,255,255,0.06); }
    .nav-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-shrink: 0;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.2px;
    }
    .cta {
      padding: 12px 18px;
      border-radius: 12px;
      border: none;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      color: #0b1224;
      background: linear-gradient(120deg, #7ddaff, #82ffd8);
      box-shadow: 0 12px 30px rgba(113, 218, 255, 0.35);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .cta:hover { transform: translateY(-1px); box-shadow: 0 8px 40px rgba(113, 218, 255, 0.45); }
    .ghost {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
      box-shadow: none;
    }
    .hero {
      margin: 64px 0 40px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      align-items: start;
    }
    .hero-copy { max-width: 720px; }
    .hero h1 {
      font-size: clamp(32px, 4vw, 48px);
      margin: 32px 0 24px;
      line-height: 1.15;
      letter-spacing: -0.8px;
      text-wrap: pretty;
    }
    .hero .hero-lead {
      color: var(--muted);
      margin: 0 0 28px;
      font-size: 16px;
    }
    .cta-row {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 20px;
    }
    .hero button {
      font-size: 18px;
      padding: 16px 24px;
    }
    .trust-grid {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
    }
    .hero-aside {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .hero-card {
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 18px;
      box-shadow: var(--shadow);
      text-wrap: pretty;
    }
    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 11px;
      color: var(--muted);
      margin: 0 0 6px;
    }
    .checklist {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }
    .checklist li {
      position: relative;
      padding-left: 20px;
    }
    .checklist li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--success);
      font-weight: 700;
    }
    .comparison-card {
      background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border: 1px solid var(--border);
    }
    .comparison-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .comparison-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .comparison-col {
      display: grid;
      gap: 10px;
    }
    .comparison-col.highlight {
      background: rgba(130,255,216,0.05);
      border: 1px solid rgba(130,255,216,0.18);
      border-radius: 12px;
      padding: 12px;
    }
    .comparison-row {
      display: flex;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
    }
    .chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      font-weight: 800;
      font-size: 13px;
      flex-shrink: 0;
    }
.chip.bad { background: rgba(255,138,84,0.15); color: #ffb08a; }
.chip.good { background: rgba(130,255,216,0.18); color: var(--success); }
.hero-note {
  border: 1px dashed var(--border);
  border-radius: 14px;
      padding: 14px 16px;
      color: var(--muted);
      background: rgba(255,255,255,0.03);
      font-size: 14px;
    }
    .pill {
      padding: 12px 14px;
      border-radius: 12px;
      background: #111a30;
      border: 1px solid rgba(255,255,255,0.04);
      color: var(--muted);
      font-size: 14px;
    }
    .pill strong { color: var(--text); }
    
    .section {
      margin: 64px 0;
      scroll-margin-top: 120px;
    }
    .section h2 {
      font-size: 32px;
      margin-top: 0;
      margin-bottom: 32px;
      letter-spacing: -0.2px;

    }
    .section p.lead {
      color: var(--muted);
      margin-bottom: 32px;
      margin-top: 0;
      font-size: 16px;
    }
    .cards {
      display: grid;
      gap: 32px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
.card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 18px 24px;
      box-shadow: var(--shadow);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,0.18);
      box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    }
.card h3 {
  margin: 16px 0 16px;
  font-size: 18px;
  color: var(--primary);
}
.card p { color: var(--muted); margin: 0; text-wrap: pretty; }
.icon-bubble {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(125,218,255,0.24), rgba(255,138,84,0.18));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  margin-bottom: 10px;
}
.pulse { animation: pulse 6s ease-in-out infinite; }
.pulse.delay-1 { animation-delay: 0.4s; }
.pulse.delay-2 { animation-delay: 0.8s; }
.pulse.delay-3 { animation-delay: 1.2s; }
.pulse.delay-4 { animation-delay: 1.6s; }
    
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      counter-reset: step;
      margin-bottom: 32px;
      position: relative;
    }

    .step {
      background: var(--glass);
      border: 2px solid var(--border);
      border-radius: 14px;
      padding: 32px 16px;
      min-height: 150px;
      position: relative;
    }
    .step::before {
      counter-increment: step;
      content: "#" counter(step);
      position: absolute;
      top: 12px;
      right: 12px;
      font-weight: 700;
      color: var(--primary);
      font-size: 18px;
    }

    .step h3 {
      color: var(--primary);
    }
    .stat-bar {
      display: flex;
      gap: 16px;
      margin-top: 64px;
      margin-bottom: 32px;
    }
    .stat {
      flex: 1;
      text-align: center;
      text-wrap: pretty;

    }
    .stat strong {
      display: block;
      font-size: 20px;
      margin-bottom: 16px;
      color: var(--primary);
    }
.faq {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  align-items: start;
}
.faq-item {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 0 18px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(125, 218, 255, 0.4);
  box-shadow: 0 18px 38px rgba(0,0,0,0.3);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 14px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  font-weight: 700;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 15px;
  text-wrap: pretty;
  color: var(--muted);
  padding: 0 14px 18px;
  margin: 0;
}
    .footer {
      margin-top: 52px;
      padding: 24px 18px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
      color: var(--muted);
      font-size: 14px;
    }
    .ambient {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.5;
      mix-blend-mode: screen;
      pointer-events: none;
      animation: drift 18s ease-in-out infinite alternate;
      z-index: 0;
    }
    .ambient.a { width: 280px; height: 280px; background: #7ddaff33; top: -80px; left: -40px; }
    .ambient.b { width: 320px; height: 320px; background: #ff8a5430; top: 140px; right: -60px; animation-duration: 22s; }
    .ambient.c { width: 240px; height: 240px; background: #82ffd820; bottom: -60px; left: 18%; animation-duration: 26s; }
    .glow-card {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .glow-card::after {
      content: "";
      position: absolute;
      inset: -60%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.09), transparent 35%),
                  radial-gradient(circle at 70% 70%, rgba(126, 218, 255, 0.15), transparent 38%);
      animation: gradientPulse 16s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: -1;
    }
    .floating { animation: float 8s ease-in-out infinite; }
    .fade-up { opacity: 0; animation: fadeUp 0.9s ease forwards; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }
    .delay-5 { animation-delay: 0.5s; }
    .credibility {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 12px;
      margin-top: 16px;
    }
    .credibility .pill {
      border-style: dashed;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: shimmer 14s linear infinite;
      background-size: 180% 180%;
      background: linear-gradient(120deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .pricing-card {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items:flex-start ;
      border: 2px solid var(--border);
      background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
      border-radius: 18px;
      padding: 18px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .pricing-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,0.16);
      box-shadow: 0 28px 60px rgba(0,0,0,0.42);
    }
    .pricing-card.featured {
      border: 1px solid rgba(130, 255, 216, 0.8);
      box-shadow: 0 28px 70px rgba(130,255,216,0.22);
    }

    .pricing-card h3 {
      margin: 32px 0 16px;
    }
    .price {
      font-size: 32px;
      font-weight: 700;
      margin: 16px 0 32px;
      display: flex;
      align-items: baseline;
      gap: 6px;
    }
    .price .freq { color: var(--muted); font-size: 14px; font-weight: 500; }
    
    .pricing-list {
      list-style: none;
      padding: 0;
      display: grid;
      gap: 16px;
      color: var(--muted);
      font-size: 14px;
    }
    .pricing-list li {
      display: flex;
      gap: 16px;
      align-items: center;
    }
    .pricing-list li::before {
      content: "✓";
      color: var(--success);
      font-weight: 700;
      align-self: flex-start;
    }

    .pricing-card a {
      align-self: stretch;
      margin-top: auto;
      font-size: 18px;
    }
    .small-note {
      font-size: 12px;
      color: var(--muted);
      margin-top: 6px;
    }
    @keyframes pulse {
      0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25)); }
      50% { transform: translateY(-4px) scale(1.04); filter: drop-shadow(0 14px 30px rgba(0,0,0,0.35)); }
    }
    @keyframes drift {
      from { transform: translate3d(0,0,0) scale(1); }
      to { transform: translate3d(10px,-16px,0) scale(1.05); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes gradientPulse {
      0% { transform: scale(1) translate3d(0,0,0); opacity: 0.7; }
      50% { transform: scale(1.05) translate3d(-10px, 6px, 0); opacity: 1; }
      100% { transform: scale(1.02) translate3d(8px, -6px, 0); opacity: 0.8; }
    }
    @keyframes shimmer {
      0% { background-position: 0% 50%; }
      100% { background-position: 120% 50%; }
    }
    @media (max-width: 860px) {
      .nav {
        position: static;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.35);
      }
      .brand { width: 100%; justify-content: center; }
      .nav-links {
        width: 100%;
        justify-content: center;
        gap: 10px;
      }
      .nav-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
      }
      .hero {
        margin-top: 28px;
        grid-template-columns: 1fr;
      }
      .hero-aside {
        order: 2;
      }
      .hero-copy {
        order: 1;
      }
      .comparison-body,
      .comparison-header {
        grid-template-columns: 1fr;
      }
      .stat-bar {
        flex-direction: column;
      }
    }
