/* Pricing-page presentation system. */
:root {
      --entry-bg: #0b0b0f;
      --entry-surface-raised: #141418;
      --entry-panel: #17171c;
      --entry-panel-strong: #1c1c22;
      --entry-line-soft: rgba(255, 255, 255, 0.06);
      --entry-line: rgba(255, 255, 255, 0.1);
      --entry-copy: #ffffff;
      --entry-copy-muted: #a1a1aa;
      --entry-copy-faint: #6b6b75;
      --entry-accent: #6c4dff;
      --entry-accent-hover: #5a3dff;
      --entry-accent-soft: #8b75ff;
      --entry-success: #34d399;
      --entry-radius: 14px;
      --entry-radius-lg: 22px;
      --entry-radius-xl: 32px;
      --entry-measure: 1140px;
    }

    html, body {
      background: var(--entry-bg);
      color: var(--entry-copy);
      font-family: 'Geist', system-ui, -apple-system, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.5;
      overflow-x: hidden;
    }

    .entry-scene-grid {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 64px 64px, 64px 64px, 16px 16px, 16px 16px;
      background-position: center center;
      -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 35%, #000 25%, transparent 90%);
              mask-image: radial-gradient(ellipse 95% 85% at 50% 35%, #000 25%, transparent 90%);
    }
    .entry-scene-grid::after {
      content: "";
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 1px 1px, rgba(139,117,255,0.35) 1px, transparent 1.5px);
      background-size: 64px 64px;
      background-position: center center;
      -webkit-mask-image: radial-gradient(ellipse 60% 45% at 50% 22%, #000 0%, transparent 80%);
              mask-image: radial-gradient(ellipse 60% 45% at 50% 22%, #000 0%, transparent 80%);
      opacity: .55;
    }
    .entry-atmosphere {
      position: fixed; pointer-events: none; z-index: 0;
      filter: blur(60px); border-radius: 50%;
    }
    .entry-atmosphere--top {
      top: -260px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 520px;
      background: radial-gradient(ellipse, rgba(108,77,255,0.22) 0%, rgba(108,77,255,0) 70%);
    }
    .entry-atmosphere--lower-left {
      bottom: -200px; left: -180px; width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(108,77,255,0.12) 0%, rgba(108,77,255,0) 65%);
    }
    .entry-pointer-glow {
      position: fixed; width: 480px; height: 480px; border-radius: 50%;
      background: radial-gradient(circle, rgba(108,77,255,0.22) 0%, rgba(108,77,255,0) 60%);
      pointer-events: none; transform: translate(-50%, -50%);
      z-index: 1; transition: opacity .4s ease; mix-blend-mode: screen; opacity: 0;
    }

    .entry-frame { max-width: var(--entry-measure); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }


    .entry-reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
    }
    .entry-reveal.state-visible { opacity: 1; transform: none; }
    .entry-reveal-delay-1 { transition-delay: .08s; }
    .entry-reveal-delay-2 { transition-delay: .16s; }
    .entry-reveal-delay-3 { transition-delay: .24s; }


    .entry-button {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px 24px; border-radius: 10px; font-size: 14px; font-weight: 600;
      transition: transform .25s cubic-bezier(.16,1,.3,1), background .2s ease, box-shadow .25s ease;
      position: relative; overflow: hidden; isolation: isolate;
    }
    .entry-button--primary {
      background: var(--entry-accent); color: #fff;
      box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 8px 24px -8px rgba(108,77,255,0.6);
    }
    .entry-button--primary::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(120px circle at var(--entry-cursor-x, 50%) var(--entry-cursor-y, 50%), rgba(255,255,255,0.35), transparent 70%);
      opacity: 0; transition: opacity .25s ease; z-index: -1;
    }
    .entry-button--primary:hover::before { opacity: 1; }
    .entry-button--primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 14px 36px -10px rgba(108,77,255,0.8); }
    .entry-button--outline {
      background: rgba(255,255,255,0.03); color: #fff; border: 1px solid var(--entry-line);
    }
    .entry-button--outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.2); }
    .entry-button--large { padding: 15px 30px; font-size: 15px; }
    .entry-button--dark-outline { background: #0b0b0f; border-color: rgba(255,255,255,0.18); }
    .entry-button--block { width: 100%; }

    .entry-eyebrow {
      display: inline-flex; align-items: center; padding: 6px 14px;
      background: rgba(255, 255, 255, 0.04); border: 1px solid var(--entry-line-soft);
      border-radius: 999px; font-size: 12px; color: var(--entry-copy-muted); letter-spacing: 0.01em;
    }


    .entry-site-bar {
      position: sticky; top: 0; z-index: 50;
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      background: rgba(11, 11, 15, 0.72); border-bottom: 1px solid var(--entry-line-soft);
    }
    .entry-nav-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
    .entry-wordmark { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
    .entry-wordmark__mark {
      width: 26px; height: 26px; border-radius: 7px;
      background: linear-gradient(135deg, var(--entry-accent) 0%, #4f37cf 100%);
      display: grid; place-items: center; box-shadow: 0 4px 14px -4px rgba(108,77,255,0.55);
      transition: transform .25s ease;
    }
    .entry-wordmark:hover .entry-wordmark__mark { transform: rotate(-8deg) scale(1.06); }
    .entry-wordmark__mark svg { width: 14px; height: 14px; }
    .entry-nav-links { display: flex; align-items: center; gap: 28px; }
    .entry-nav-links a { color: var(--entry-copy-muted); font-size: 14px; position: relative; transition: color .15s ease; }
    .entry-nav-links a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0; background: var(--entry-accent-soft); transition: width .25s ease; }
    .entry-nav-links a:hover { color: var(--entry-copy); }
    .entry-nav-links a:hover::after { width: 100%; }
    @media (max-width: 820px) { .entry-nav-links { display: none; } }


    .entry-hero { padding: 80px 0 30px; text-align: center; }
    .entry-hero-confetti { font-size: clamp(26px, 4.4vw, 40px); }
    .entry-hero h1 {
      font-size: clamp(28px, 4.6vw, 44px); line-height: 1.12; letter-spacing: -0.03em; font-weight: 700;
      max-width: 760px; margin: 0 auto 26px;
      background: linear-gradient(180deg, #fff 30%, #c9c2ff 100%);
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    }
    .entry-arrow-down {
      display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto 28px;
      border-radius: 50%; border: 1px solid var(--entry-line); background: rgba(255,255,255,0.03);
      animation: entry-pricing-bob 1.8s ease-in-out infinite;
    }
    .entry-arrow-down svg { width: 20px; height: 20px; color: var(--entry-accent-soft); }
    @keyframes entry-pricing-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
    .entry-hero-subcopy { color: var(--entry-copy-muted); font-size: 16px; max-width: 560px; margin: 0 auto 16px; }
    .entry-hero-join {
      color: var(--entry-copy-faint); font-size: 14px; max-width: 540px; margin: 0 auto;
      display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
    }
    .entry-join-avatars { display: inline-flex; }
    .entry-join-avatars span {
      width: 26px; height: 26px; border-radius: 50%; margin-left: -8px;
      border: 2px solid var(--entry-bg); background-size: cover; background-position: center;
    }
    .entry-join-avatars span:first-child { margin-left: 0; }


    .entry-pricing-section { padding: 56px 0 80px; }
    .entry-plan-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start;
    }
    .entry-plan-card {
      background: var(--entry-panel); border: 1px solid var(--entry-line-soft);
      border-radius: var(--entry-radius-lg); padding: 32px 30px; position: relative;
      transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    }
    .entry-plan-card:hover { transform: translateY(-4px); border-color: var(--entry-line); }
    .entry-plan-card.entry-plan-card--featured {
      border-color: rgba(108,77,255,0.5);
      background: linear-gradient(180deg, rgba(108,77,255,0.07), var(--entry-panel) 60%);
      box-shadow: 0 40px 90px -40px rgba(108,77,255,0.5);
    }
    .entry-plan-card.entry-plan-card--featured:hover {
      border-color: rgba(108,77,255,0.7);
      box-shadow: 0 50px 110px -40px rgba(108,77,255,0.65);
    }
    .entry-plan-badge {
      position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
      background: var(--entry-accent); color: #fff; padding: 5px 16px; border-radius: 999px;
      font-size: 12px; font-weight: 600; white-space: nowrap;
      box-shadow: 0 8px 22px -6px rgba(108,77,255,0.7); border: 1px solid rgba(255,255,255,0.15);
    }
    .entry-plan-badge.entry-plan-badge--value { background: linear-gradient(135deg, #8b75ff, #6c4dff); }
    .entry-plan-name { font-size: 15px; font-weight: 600; color: var(--entry-copy-muted); margin-bottom: 16px; }
    .entry-plan-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
    .entry-plan-price { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
    .entry-plan-period { color: var(--entry-copy-faint); font-size: 15px; font-weight: 500; }
    .entry-plan-trial-label {
      display: inline-block; margin-bottom: 6px;
      color: var(--entry-success); font-size: 13px; font-weight: 600;
      letter-spacing: 0.02em; text-transform: uppercase;
    }
    .entry-plan-copy { color: var(--entry-copy-faint); font-size: 13px; line-height: 1.6; margin: 14px 0 22px; min-height: 62px; }
    .entry-plan-copy strong { color: inherit; font-weight: 600; }
    .entry-plan-card .entry-button { margin-bottom: 26px; }
    .entry-divider { height: 1px; background: var(--entry-line-soft); margin-bottom: 22px; }
    .entry-plan-features { list-style: none; display: grid; gap: 13px; }
    .entry-plan-features li { display: flex; align-items: flex-start; gap: 11px; font-size: 13.5px; color: var(--entry-copy-muted); line-height: 1.45; }
    .entry-checkmark {
      width: 18px; height: 18px; border-radius: 50%; margin-top: 1px;
      background: rgba(108,77,255,0.15); display: grid; place-items: center; flex-shrink: 0;
    }
    .entry-plan-card--featured .entry-checkmark { background: rgba(108,77,255,0.28); }
    .entry-checkmark svg { width: 10px; height: 10px; color: var(--entry-accent-soft); }
    @media (max-width: 940px) {
      .entry-plan-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 28px; }
      .entry-plan-copy { min-height: 0; }
    }


    .entry-faq-section { padding: 70px 0; }
    .entry-faq-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
    .entry-faq-head .entry-eyebrow { margin-bottom: 18px; }
    .entry-faq-head h2 {
      font-size: clamp(28px, 3.8vw, 42px); line-height: 1.15; letter-spacing: -0.03em; font-weight: 700;
    }
    .entry-faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
    .entry-faq-item {
      background: var(--entry-panel); border: 1px solid var(--entry-line-soft); border-radius: var(--entry-radius);
      overflow: hidden; transition: border-color .3s ease, background .3s ease;
    }
    .entry-faq-item.state-open { border-color: rgba(108,77,255,0.35); background: var(--entry-panel-strong); }
    .entry-faq-question {
      width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 22px 24px; font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
    }
    .entry-faq-icon {
      width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
      border: 1px solid var(--entry-line); display: grid; place-items: center;
      transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s ease, border-color .3s ease;
    }
    .entry-faq-item.state-open .entry-faq-icon { transform: rotate(45deg); background: var(--entry-accent); border-color: var(--entry-accent); }
    .entry-faq-icon svg { width: 13px; height: 13px; color: var(--entry-copy-muted); transition: color .3s ease; }
    .entry-faq-item.state-open .entry-faq-icon svg { color: #fff; }
    .entry-faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
    .entry-faq-answer-inner { padding: 0 24px 24px; color: var(--entry-copy-muted); font-size: 14.5px; line-height: 1.65; }
    .entry-faq-answer-inner a { color: var(--entry-accent-soft); text-decoration: underline; }


    .entry-final-section { padding: 30px 0 90px; }
    .entry-final-cta {
      background: linear-gradient(180deg, #6c4dff 0%, #5a3dff 100%);
      border-radius: var(--entry-radius-xl); padding: 70px 40px; text-align: center;
      position: relative; overflow: hidden;
    }
    .entry-final-cta::before, .entry-final-cta::after {
      content: ""; position: absolute; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12); pointer-events: none; transition: transform 1s ease;
    }
    .entry-final-cta::before { width: 420px; height: 420px; left: -120px; top: 30%; }
    .entry-final-cta::after { width: 320px; height: 320px; right: -80px; top: -120px; }
    .entry-final-cta:hover::before { transform: translateX(20px) translateY(-10px); }
    .entry-final-cta:hover::after { transform: translateX(-20px) translateY(10px); }
    .entry-final-cta h2 {
      font-size: clamp(28px, 4vw, 44px); line-height: 1.15; letter-spacing: -0.025em; font-weight: 700;
      color: #fff; max-width: 560px; margin: 0 auto 32px; position: relative; z-index: 1;
    }
    .entry-final-cta .entry-button { position: relative; z-index: 1; }
