@import url('./liquid-glass-button.css');

.page {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 80px;
}

      /* ─── Hero ─── */
      .pricing-hero {
        text-align: center;
        padding: 48px 0 56px;
        display: flex; flex-direction: column; align-items: center; gap: 18px;
      }
      .kicker {
        font-family: var(--font-mono);
        font-size: 11px; letter-spacing: 0.2em;
        text-transform: uppercase; color: #c4c9d4;
      }
      .pricing-hero h1 {
        font-size: clamp(2.4rem, 5vw, 4rem);
        line-height: 1.05; letter-spacing: -0.04em;
        max-width: 14ch;
      }
      .pricing-hero p {
        font-size: 18px; color: #c4c9d4;
        line-height: 1.6; max-width: 52ch;
      }

      /* Countdown + seats */
      .urgency-row {
        display: flex; flex-wrap: wrap; align-items: center;
        justify-content: center; gap: 14px;
        margin-top: 4px;
      }
      .countdown-badge {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 8px 16px;
        border-radius: 999px;
        border: 1px solid rgba(239, 68, 68, 0.5);
        background: rgba(239, 68, 68, 0.08);
        color: #fca5a5;
        font-family: var(--font-mono);
        font-size: 12px; letter-spacing: 0.05em;
      }
      .countdown-dot {
        width: 7px; height: 7px; border-radius: 50%;
        background: #ef4444;
        animation: blink 1.2s ease-in-out infinite;
        flex-shrink: 0;
      }
      @keyframes blink {
        0%, 100% { opacity: 1; } 50% { opacity: 0.2; }
      }
      .seats-badge {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 8px 16px;
        border-radius: 999px;
        border: 1px solid rgba(16, 185, 129, 0.4);
        background: rgba(16, 185, 129, 0.08);
        color: #6ee7b7;
        font-family: var(--font-mono);
        font-size: 12px;
      }
      .seats-bar-wrap {
        width: 80px; height: 4px;
        background: rgba(16, 185, 129, 0.2);
        border-radius: 999px; overflow: hidden;
      }
      .seats-bar-fill {
        height: 100%; width: 69%;
        background: linear-gradient(90deg, #10b981, #6ee7b7);
        border-radius: 999px;
      }

      /* ─── Pricing grid ─── */
      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        align-items: stretch;
        margin-bottom: 48px;
      }

      .pricing-card {
        position: relative;
        border-radius: 26px;
        border: 1px solid rgba(255,255,255,0.06);
        background: #111113;
        padding: 32px 28px 28px;
        display: flex; flex-direction: column;
        gap: 0;
        box-shadow: 0 18px 64px rgba(0, 0, 0, 0.26);
        transition: all 300ms cubic-bezier(0.16,1,0.3,1);
      }
      .pricing-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
      }

      /* Featured card */
      .pricing-card.featured {
        border-color: rgba(255,255,255,0.12);
        background: #181818;
        box-shadow:
          0 0 0 1px rgba(255, 255, 255, 0.08),
          0 24px 80px rgba(0, 0, 0, 0.3),
          0 18px 64px rgba(0, 0, 0, 0.35);
        transform: scale(1.03);
      }
      .pricing-card.featured:hover { transform: scale(1.03) translateY(-3px); }

      /* Dimmed card */
      .pricing-card.dim {
        opacity: 0.62;
      }
      .pricing-card.dim:hover { opacity: 0.82; transform: none; }

      /* Popular badge */
      .popular-badge {
        position: absolute; top: -13px; left: 50%;
        transform: translateX(-50%);
        padding: 4px 14px;
        border-radius: 999px;
        background: #ffffff;
        color: #050506;
        font-family: var(--font-mono);
        font-size: 10px; letter-spacing: 0.14em;
        text-transform: uppercase; font-weight: 700;
        white-space: nowrap;
        box-shadow: 0 4px 18px rgba(255, 255, 255, 0.15);
      }

      /* Early adopter ribbon */
      .early-ribbon {
        display: inline-flex; align-items: center; gap: 6px;
        margin-bottom: 10px;
        padding: 4px 10px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255,255,255,0.12);
        color: #cdd1d8;
        font-family: var(--font-mono);
        font-size: 10px; letter-spacing: 0.12em;
        text-transform: uppercase;
        width: fit-content;
      }
      .ribbon-dot {
        width: 5px; height: 5px; border-radius: 50%;
        background: #c4c9d4; flex-shrink: 0;
      }

      .plan-label {
        font-family: var(--font-mono);
        font-size: 12px; letter-spacing: 0.18em;
        text-transform: uppercase; color: #97a0b0;
        margin-bottom: 14px;
      }
      .featured .plan-label { color: #c4c9d4; }

      .plan-price-row {
        display: flex; align-items: baseline; gap: 4px;
        margin-bottom: 6px;
      }
      .plan-price {
        font-size: 3rem; font-weight: 700;
        letter-spacing: -0.04em; line-height: 1;
        color: #EDEDEF;
      }
      .plan-period {
        font-size: 15px; color: #97a0b0; font-weight: 400;
      }
      .plan-original {
        font-family: var(--font-mono);
        font-size: 12px; color: #97a0b0;
        text-decoration: line-through;
        margin-bottom: 4px;
      }
      .plan-save {
        display: inline-block;
        margin-bottom: 16px;
        padding: 3px 9px;
        border-radius: 5px;
        background: rgba(16, 185, 129, 0.15);
        border: 1px solid rgba(16, 185, 129, 0.35);
        color: #6ee7b7;
        font-family: var(--font-mono);
        font-size: 11px; font-weight: 600;
        letter-spacing: 0.05em;
      }
      .plan-desc {
        font-size: 14px; color: #c4c9d4;
        line-height: 1.55; margin-bottom: 24px;
      }

      /* Divider */
      .plan-divider {
        height: 1px;
        background: rgba(255,255,255,0.06);
        margin-bottom: 20px;
      }

      /* Feature list */
      .plan-features {
        list-style: none;
        display: flex; flex-direction: column; gap: 10px;
        flex: 1;
        margin-bottom: 28px;
      }
      .plan-features li {
        display: flex; align-items: flex-start; gap: 10px;
        font-size: 14px; color: #cdd1d8; line-height: 1.4;
      }
      .plan-features li.off {
        color: #7b8494;
      }
      .feat-icon {
        width: 16px; height: 16px; flex-shrink: 0;
        margin-top: 1px;
      }
      .feat-icon.check { color: #c4c9d4; }
      .feat-icon.cross { color: #7b8494; }
      .featured .feat-icon.check { color: #EDEDEF; }

      /* CTA button */
      .plan-btn {
        width: 100%; padding: 14px 18px;
        border-radius: 12px; border: none;
        font-family: var(--font-mono);
        font-size: 13px; font-weight: 600;
        letter-spacing: 0.1em; text-transform: uppercase;
        cursor: pointer;
        transition: opacity 0.2s, transform 0.15s, box-shadow 0.25s;
        display: flex; align-items: center; justify-content: center; gap: 8px;
      }
      .plan-btn.primary {
        background: #EDEDEF;
        color: #050506;
        box-shadow: 0 8px 28px rgba(255, 255, 255, 0.08);
      }
      .plan-btn.primary:hover {
        opacity: 0.92; transform: translateY(-1px);
        box-shadow: 0 12px 36px rgba(255, 255, 255, 0.12);
      }
      .plan-btn.primary:active { transform: scale(0.97); }
      .plan-btn.ghost {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.12);
        color: #c4c9d4;
      }
      .plan-btn.ghost:hover {
        background: rgba(255, 255, 255, 0.04);
        color: #EDEDEF; border-color: #97a0b0;
        transform: translateY(-1px);
      }
      .plan-btn:disabled {
        opacity: 0.35; cursor: not-allowed; transform: none;
      }

      .seats-note {
        margin-top: 10px;
        text-align: center;
        font-family: var(--font-mono);
        font-size: 11px; color: #97a0b0; letter-spacing: 0.06em;
      }

      /* ─── Credit packs ─── */
      .section-title {
        text-align: center; margin-bottom: 10px;
      }
      .section-title .kicker { margin-bottom: 10px; display: block; }
      .section-title h2 {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        letter-spacing: -0.03em; line-height: 1.1;
      }
      .section-title p {
        margin-top: 10px; font-size: 15px; color: #c4c9d4;
      }

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

      .packs-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 420px));
        gap: 18px;
        justify-content: center;
        margin-top: 28px;
      }
      .pack-card {
        position: relative;
        border-radius: 22px;
        border: 1px solid rgba(255,255,255,0.06);
        background: #111113;
        padding: 28px 26px;
        display: flex; flex-direction: column; gap: 18px;
        box-shadow: 0 14px 48px rgba(0, 0, 0, 0.22);
        transition: transform 0.2s, box-shadow 0.2s;
      }
      .pack-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
      }
      .pack-card.best {
        border-color: rgba(255,255,255,0.12);
        box-shadow:
          0 0 0 1px rgba(255, 255, 255, 0.06),
          0 18px 56px rgba(0, 0, 0, 0.2);
      }
      .pack-best-label {
        position: absolute; top: -12px; left: 22px;
        padding: 3px 12px; border-radius: 999px;
        background: #ffffff;
        color: #050506;
        font-family: var(--font-mono);
        font-size: 9px; letter-spacing: 0.14em;
        text-transform: uppercase; font-weight: 700;
      }
      .pack-header {
        display: flex; align-items: center; justify-content: space-between;
        gap: 12px;
      }
      .pack-name {
        font-size: 16px; font-weight: 600; color: #EDEDEF;
      }
      .pack-qty {
        font-family: var(--font-mono);
        font-size: 11px;
        padding: 4px 10px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255,255,255,0.12);
        color: #c4c9d4;
      }
      .pack-price-row {
        display: flex; align-items: baseline; gap: 4px;
      }
      .pack-price {
        font-size: 2.2rem; font-weight: 700;
        letter-spacing: -0.04em; color: #EDEDEF;
      }
      .pack-per {
        font-size: 13px; color: #97a0b0;
      }
      .pack-features {
        list-style: none;
        display: flex; flex-direction: column; gap: 8px;
      }
      .pack-features li {
        display: flex; align-items: center; gap: 8px;
        font-size: 13px; color: #c4c9d4;
      }
      .pack-features .feat-icon { color: #97a0b0; }
      .pack-btn {
        width: 100%; padding: 12px 16px;
        border-radius: 10px; border: none;
        font-family: var(--font-mono);
        font-size: 12px; font-weight: 600;
        letter-spacing: 0.1em; text-transform: uppercase;
        cursor: pointer;
        transition: opacity 0.2s, transform 0.15s;
      }
      .pack-btn.primary {
        background: #EDEDEF;
        color: #050506;
      }
      .pack-btn.primary:hover { opacity: 0.9; transform: translateY(-1px); }
      .pack-btn.ghost {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.12);
        color: #c4c9d4;
      }
      .pack-btn.ghost:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: #97a0b0;
        color: #EDEDEF;
        transform: translateY(-1px);
      }

      /* ─── Feature comparison ─── */
      .comparison-section { margin-bottom: 56px; }
      .compare-table {
        width: 100%;
        border-collapse: collapse;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.06);
        background: #111113;
        margin-top: 28px;
      }
      .compare-table th, .compare-table td {
        padding: 14px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 14px;
      }
      .compare-table thead th {
        background: #181818;
        font-family: var(--font-mono);
        font-size: 11px; letter-spacing: 0.14em;
        text-transform: uppercase; color: #c4c9d4;
        font-weight: 600;
      }
      .compare-table thead th:first-child { color: #97a0b0; }
      .compare-table tbody tr:last-child td { border-bottom: none; }
      .compare-table tbody tr:hover td { background: rgba(255, 255, 255, 0.02); }
      .compare-table td:first-child { color: #c4c9d4; }
      .compare-table td:not(:first-child) {
        text-align: center;
      }
      .compare-table thead th:not(:first-child) { text-align: center; }
      .check-icon { color: #c4c9d4; display: inline-flex; justify-content: center; }
      .cross-icon { color: #7b8494; display: inline-flex; justify-content: center; }
      .highlight-col { background: rgba(255, 255, 255, 0.02); }

      /* ─── FAQ ─── */
      .faq-section { margin-bottom: 56px; }
      .faq-list { display: grid; gap: 12px; margin-top: 28px; }
      .faq-item {
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,0.06);
        background: #111113;
        overflow: hidden;
      }
      .faq-item summary {
        list-style: none;
        cursor: pointer;
        padding: 18px 22px;
        font-size: 15px; font-weight: 600;
        display: flex; align-items: center; justify-content: space-between;
        gap: 12px;
        user-select: none;
        transition: color 0.2s;
      }
      .faq-item summary:hover { color: #ffffff; }
      .faq-item summary::-webkit-details-marker { display: none; }
      .faq-chevron {
        width: 18px; height: 18px; flex-shrink: 0;
        color: #97a0b0;
        transition: transform 0.25s;
      }
      .faq-item[open] summary { color: #ffffff; border-bottom: 1px solid rgba(255,255,255,0.06); }
      .faq-item[open] .faq-chevron { transform: rotate(180deg); color: #c4c9d4; }
      .faq-item p {
        padding: 16px 22px 22px;
        color: #c4c9d4; line-height: 1.75; font-size: 14px;
      }

      /* ─── CTA ─── */
      .cta-section {
        border-radius: 26px;
        border: 1px solid rgba(255,255,255,0.06);
        background: #111113;
        box-shadow:
          0 0 0 1px rgba(255, 255, 255, 0.04),
          0 24px 80px rgba(0, 0, 0, 0.2);
        padding: 52px 40px;
        text-align: center;
        display: flex; flex-direction: column; align-items: center; gap: 20px;
        margin-bottom: 32px;
      }
      .cta-section h2 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        letter-spacing: -0.03em; line-height: 1.1;
        max-width: 18ch;
      }
      .cta-section p { font-size: 16px; color: #c4c9d4; max-width: 46ch; line-height: 1.65; }
      .cta-btn {
        padding: 16px 36px;
        border-radius: 12px; border: none;
        background: #EDEDEF;
        color: #050506;
        font-family: var(--font-mono);
        font-size: 13px; font-weight: 700;
        letter-spacing: 0.12em; text-transform: uppercase;
        cursor: pointer;
        box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
        transition: opacity 0.2s, transform 0.15s, box-shadow 0.25s;
        display: inline-flex; align-items: center; gap: 10px;
      }
      .cta-btn:hover {
        opacity: 0.9; transform: translateY(-2px);
        box-shadow: 0 14px 42px rgba(255, 255, 255, 0.12);
      }
      .cta-btn:active { transform: scale(0.97); }
      .cta-note {
        font-family: var(--font-mono);
        font-size: 11px; color: #97a0b0; letter-spacing: 0.08em;
      }

      /* ─── Footer ─── */
      .site-footer {
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.06);
        background: #111113;
        padding: 22px 28px;
        display: flex; align-items: center; justify-content: space-between;
        gap: 20px; flex-wrap: wrap;
        margin-bottom: 24px;
      }
      .footer-brand {
        font-family: var(--font-mono);
        font-size: 13px; color: #97a0b0; letter-spacing: 0.12em;
      }
      .footer-nav {
        display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
      }
      .footer-nav a {
        font-size: 13px; color: #97a0b0;
        transition: color 0.2s;
      }
      .footer-nav a:hover { color: #EDEDEF; }

      /* ─── Section spacing ─── */
      .section-gap { margin-bottom: 72px; }

      /* ─── Responsive ─── */
      @media (max-width: 1024px) {
        .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .pricing-card.featured { transform: none; }
        .pricing-card.featured:hover { transform: translateY(-3px); }
        .pricing-card.dim { display: none; }
      }
      @media (max-width: 720px) {
        .page { width: min(100%, calc(100% - 32px)); padding-top: 80px; }
        .pricing-grid { grid-template-columns: 1fr; }
        .pricing-card.dim { display: flex; }
        .packs-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
        .compare-table { font-size: 12px; }
        .compare-table th, .compare-table td { padding: 12px 14px; }
        .cta-section { padding: 36px 24px; }
        .site-footer { flex-direction: column; align-items: flex-start; }
      }
