/* base.css — shared styles for all pages */

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

    :root {
      --blue: oklch(0.50 0.22 290);
      --blue-h: oklch(0.44 0.22 290);
      --blue-soft: oklch(0.95 0.045 290);
      --blue-glow: oklch(0.72 0.14 290);
      --bg: #F5F6FA;
      --surface: #FFFFFF;
      --text: #0C0E14;
      --text-2: #556;
      --text-3: #9AA0B4;
      --border: rgba(0, 0, 0, 0.08);
      --r: 18px;
      --r-sm: 10px;
      --shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.05);
      --accent: oklch(0.50 0.22 290);
      --indigo: oklch(0.46 0.26 272);
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(1.7);
      }
    }

    @keyframes hero-glow-drift {

      0%,
      100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.55;
      }

      50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 0.7;
      }
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }


    h1 {
      font-size: clamp(44px, 6vw, 76px);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.05;
      color: var(--text);
      margin-bottom: 22px;
      text-wrap: balance;
    }
    h1 em {
      font-style: normal;
      background: linear-gradient(100deg, var(--blue) 10%, var(--indigo) 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      background: rgba(245, 246, 250, 0.80);
      backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text);
    }

    .nav-logo-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .nav-logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .nav-logo-name {
      font-weight: 700;
      font-size: 15px;
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-2);
      font-size: 14px;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 8px;
      transition: all .15s;
    }

    .nav-links a:hover {
      color: var(--text);
      background: rgba(0, 0, 0, 0.05);
    }

    .nav-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn-ghost {
      text-decoration: none;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-2);
      background: none;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 7px 16px;
      cursor: pointer;
      transition: all .15s;
    }

    .btn-ghost:hover {
      color: var(--text);
      border-color: rgba(0, 0, 0, 0.18);
    }

    .btn-primary {
      text-decoration: none;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      color: white;
      background: var(--blue);
      border: none;
      border-radius: 10px;
      padding: 8px 18px;
      cursor: pointer;
      transition: all .15s;
      white-space: nowrap;
    }

    .btn-primary:hover {
      background: var(--blue-h);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px oklch(0.50 0.22 264 / 35%);
    }

    

    /* ── SECTION COMMON ── */
    section {
      padding: 100px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-tag {
      display: inline-block;
      background: var(--blue-soft);
      color: var(--blue);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 16px;
      border: 1px solid oklch(0.50 0.22 264 / 18%);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.1;
      text-wrap: balance;
      margin-bottom: 14px;
    }

    .section-sub {
      font-size: 18px;
      color: var(--text-2);
      line-height: 1.65;
      max-width: 520px;
      text-wrap: pretty;
    }

    .section-header {
      margin-bottom: 56px;
    }

    

    /* ── FOOTER ── */
    footer {
      background: var(--text);
      color: rgba(255, 255, 255, 0.8);
      padding: 64px 48px 40px;
      margin-top: 60px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto 48px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-logo-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .footer-logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .footer-logo-name {
      font-weight: 700;
      font-size: 15px;
      color: white;
    }

    .footer-desc {
      font-size: 14px;
      line-height: 1.65;
      max-width: 280px;
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      color: white;
      margin-bottom: 14px;
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      margin-bottom: 8px;
      transition: color .15s;
    }

    .footer-col a:hover {
      color: white;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 24px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: 13px;
    }

    .footer-legal {
      display: flex;
      gap: 20px;
    }

    .footer-legal a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
    }

    .footer-legal a:hover {
      color: rgba(255, 255, 255, 0.8);
    }

    

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-delay-1 {
      transition-delay: .1s;
    }

    .reveal-delay-2 {
      transition-delay: .2s;
    }

    .reveal-delay-3 {
      transition-delay: .3s;
    }




    /* Responsive – base */
    /* Responsive */
    @media (max-width: 900px) {
      nav {
        padding: 0 20px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        padding: 120px 24px 60px;
      }

      section {
        padding: 64px 24px;
      }

      .pricing-grid,
      .testi-grid,
      .blog-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }
  
    /* ── BETA GATE ── */
    #beta-gate {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: #0b0c10;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
      color: #fff;
    }
    .gate-content {
      max-width: 480px;
      animation: gateFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes gateFadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .gate-logo {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      background: rgba(255,255,255,0.05);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .gate-logo img { width: 48px; height: 48px; }
    .gate-title { font-size: 32px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
    .gate-text { color: #94a3b8; line-height: 1.6; margin-bottom: 32px; font-size: 16px; }
    .gate-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(255,255,255,0.05);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: #6366f1;
      border: 1px solid rgba(99, 102, 241, 0.2);
    }