/*
 * Page-specific styles for the VPNGap zh-Hans homepage.
 * Tailwind utility classes are loaded from ../assets/css/tailwind.css
 * (compiled by tools/tailwind.config.js). Only non-utility custom rules
 * live here.
 */

html { scroll-behavior: smooth; }

.hide { display: none !important; }

/* CJK word-cohesion helper.
 *
 * Tailwind's `break-keep` utility is NOT in the project's pre-compiled
 * tailwind.css bundle and rebuilding Tailwind in-repo is forbidden by
 * agents.md ("no build tooling allowed"). This local class gives us the same
 * behaviour: prevent CJK phrases (e.g. multi-character noun compounds) from being
 * fragmented across line wraps, while still allowing breaks at ASCII
 * spaces, punctuation and the explicit <br> we author. Used on the hero
 * H1 so narrow viewports never split a Chinese word mid-character. */
.cjk-keep {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* `whitespace-nowrap` shim.
 *
 * Same situation as `.cjk-keep` above — the project's pre-compiled
 * tailwind.css bundle does NOT include the `whitespace-nowrap`
 * utility, and rebuilding Tailwind in-repo is forbidden by agents.md
 * ("no build tooling allowed"). Without this rule, CTA buttons that author
 * `class="... whitespace-nowrap"` (pricing CTA, download CTA, etc.)
 * silently fall back to default wrapping and break Chinese button
 * text mid-phrase on narrow / 2-up flex layouts. We declare the
 * Tailwind-shaped class name verbatim so all existing call sites
 * start working without HTML edits. */
.whitespace-nowrap {
    white-space: nowrap;
}

/* Tailwind-shaped utility shims used by the 2026-04 pricing redesign.
 *
 * The project's pre-compiled tailwind.css bundle is intentionally narrow
 * and rebuilding it in-repo is forbidden (agents.md "no build tooling allowed").
 * The following utilities are absent from that bundle but are needed
 * across the pricing tier cards (and a couple already used silently in
 * pricing.html / index.html that were quietly falling back to default
 * align/spacing). Naming follows Tailwind's conventions verbatim so any
 * existing `class="... items-baseline"` etc. just starts working. */
.items-baseline { align-items: baseline; }
.ml-1          { margin-left: 0.25rem; }
.mb-7          { margin-bottom: 1.75rem; }
.pt-7          { padding-top: 1.75rem; }

/* Featured pricing tier vertical lift.
 *
 * Tailwind's `-translate-y-2` and the `lg:` variant of any negative
 * translate are missing from the bundle. We want the featured (middle)
 * paid card to physically protrude ~8px above its neighbours on
 * desktop so the eye reads it as the "hero" of the tier row, but only
 * once the row has actually become a row (>= md breakpoint) — on
 * stacked mobile a vertical offset makes no sense and would just
 * leave a gap. Encapsulating the breakpoint here keeps pricing.js
 * portable to other languages without cloning Tailwind config. */
.tier-featured-lift { transform: translateY(0); }
@media (min-width: 1024px) {
    .tier-featured-lift { transform: translateY(-0.75rem); }
}

/* Top-nav active tab indicator.
 *
 * Applied by header.js (resolveActiveNavKey) on the link matching the
 * current page. Brand-colored text + a short underline pill below the
 * label gives the user clear "you are here" feedback while staying in
 * line with the rest of the navbar's minimalist look. The underline is
 * a pseudo-element so it does not push surrounding nav items around. */
.nav-link.is-active {
    color: #00D2B4;        /* brand */
    font-weight: 600;
}
.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: #00D2B4;   /* brand */
}

/* Dropdown enter animation (auth modal, language switcher) */
.dropdown-enter-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: opacity 200ms ease-out, transform 200ms ease-out;
}

/* Auth modal background */
.modal-bg {
    background-color: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(8px);
}

/* Hero phone mockup scroll bar */
.phone-scroll::-webkit-scrollbar { width: 4px; }
.phone-scroll::-webkit-scrollbar-track { background: transparent; }
.phone-scroll::-webkit-scrollbar-thumb { background-color: #334155; border-radius: 10px; }

/* Gradient-border bento card.
 *
 * The default background is wrapped in :where() so its specificity is 0 —
 * any Tailwind background utility on the same element (e.g. bg-dark-bg,
 * bg-gradient-to-br) MUST win without needing !important. Otherwise the
 * default white would silently paint over dark/gradient bento variants
 * and produce white-on-white text. */
.gradient-border-card {
    position: relative;
    border-radius: 1.5rem;
    z-index: 1;
}
:where(.gradient-border-card) {
    background: #ffffff;
}
.gradient-border-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 1.6rem;
    background: linear-gradient(135deg, #00D2B420, #e2e8f0, #00D2B420);
    z-index: -1;
    transition: opacity 0.3s ease;
}
.gradient-border-card:hover::before {
    background: linear-gradient(135deg, #00D2B480, #3b82f680, #00D2B480);
}

/* FAQ accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}
.faq-content.open {
    max-height: 1000px;
    opacity: 1;
}
.faq-icon { transition: transform 0.3s ease; }
.faq-icon.open { transform: rotate(180deg); }

/* Infinite scrolling marquee for testimonials & stats ticker */
@keyframes marquee-x {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-x 40s linear infinite;
}
.marquee-track-fast { animation-duration: 28s; }
.marquee-reverse {
    animation-direction: reverse;
    animation-duration: 50s;
}
.marquee-pause:hover .marquee-track { animation-play-state: paused; }
.marquee-mask {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

/* Quick-start timeline connector line */
.step-line {
    background-image: linear-gradient(90deg, #00D2B4 0, #00D2B4 6px, transparent 6px, transparent 14px);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    background-position: center;
}

/* Use-case cards: hover lift only */
.tilt-1, .tilt-2, .tilt-3 { transform: none; }
.tilt-card { transition: transform .35s ease; }
.tilt-card:hover { transform: translateY(-4px); }

/* Subtle grid backdrop for protocol comparison */
.grid-bg {
    background-image:
        linear-gradient(to right,  rgba(15,23,42,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15,23,42,.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Magazine-style underlined H2 */
.h-deco::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    margin-top: 14px;
    background: linear-gradient(90deg, #00D2B4, transparent);
    border-radius: 4px;
}

/* Highlight marker (handwritten feel) */
.marker {
    background-image: linear-gradient(120deg, rgba(0,210,180,.25) 0%, rgba(0,210,180,.25) 100%);
    background-repeat: no-repeat;
    background-size: 100% 38%;
    background-position: 0 80%;
    padding: 0 .15em;
}

/* ==========================================================================
 * Download page (download.html) only
 * Extracted from inline <style> per "JS / CSS Extraction Spec (VPN project edition)".
 * ========================================================================== */

/* Platform-card hover lift, consistent with .tilt-card on the homepage */
.dl-card { transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.dl-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px -25px rgba(15, 23, 42, .35); }

/* "Free users get the same stable connection experience" full-width dark card.
 *
 * Why custom CSS instead of Tailwind utilities:
 * The pre-bundled tailwind.css does NOT include lg:pl-*, lg:border-l,
 * lg:gap-10, mt-14, lg:mt-16, mt-1, etc. (verified 2026-04-20).
 * agents.md forbids rebuilding Tailwind, so anything outside the
 * shipped utility set must live here. */

/* Vertical divider + left padding on the right-column feature list,
 * applied only at the lg breakpoint so the mobile/tablet stacked
 * layout stays clean. */
@media (min-width: 1024px) {
    .free-tier-divider {
        border-left: 1px solid rgba(255, 255, 255, 0.10);
        padding-left: 2.5rem;
    }
}

/* Slight icon alignment nudge for the brand check icons in the dark
 * card list (Tailwind's mt-1 isn't bundled). */
.free-tier-list-icon {
    font-size: 1.125rem;        /* matches text-lg */
    margin-top: 0.2rem;
}

/* Spacing between the dark "free-tier" card and the system-requirements
 * table that follows it. We deliberately match the page's existing
 * intra-section card rhythm — every other section on this page uses
 * `gap-6` (1.5rem / 24px) between sibling cards (the 2×2 download
 * grid, the 2×2 install-guide grid, the 3-col use-case grid), so the
 * stacked free-tier card → table pair uses the same 24px gap to read
 * as part of the same family. */
.dl-section-table {
    margin-top: 1.5rem;
}

/* Unified download button styles across all 4 platform cards.
 *
 * Earlier draft used the platform-iconic color (Microsoft blue, Apple
 * black, Android green, Linux yellow) on each primary download button.
 * That looked technically "branded" but visually the page lost a single
 * focal CTA color and the Linux card became an entirely different
 * 3-equal-weight grid. Platform identity is already conveyed by the
 * top-left rounded icon tile, so the button itself is now neutral and
 * uniform: one solid dark primary + slate secondaries on every card. */
.dl-btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .5rem;
    padding: .95rem 1.25rem;
    border-radius: .9rem;
    background: #0B0F19;          /* dark-bg */
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 25px -15px rgba(11, 15, 25, .55);
}
.dl-btn-primary:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 15px 30px -12px rgba(11, 15, 25, .55);
}
.dl-btn-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .5rem;
    padding: .95rem 1.1rem;
    border-radius: .9rem;
    background: #f1f5f9;          /* slate-100 */
    color: #334155;               /* slate-700 */
    font-weight: 600;
    font-size: .9rem;
    line-height: 1.2;
    border: 1px solid #e2e8f0;    /* slate-200 */
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.dl-btn-secondary:hover {
    background: #e2e8f0;          /* slate-200 */
    color: #0f172a;               /* slate-900 */
    border-color: #cbd5e1;        /* slate-300 */
}

/* Architecture sub-group inside a download card.
 *
 * Each platform card now exposes its packages split by chip family
 * (e.g. Windows: AMD/Intel x64 vs ARM64). Sub-groups stack vertically
 * with a small label header + a 1- or 2-column button row, so users
 * pick architecture first and package format second. */
.dl-arch-group { margin-bottom: .9rem; }
.dl-arch-group:last-of-type { margin-bottom: 1.25rem; }
.dl-arch-label {
    display: inline-flex; align-items: center; gap: .4rem;
    margin-bottom: .55rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #64748b;               /* slate-500 */
}
.dl-arch-label .dl-arch-chip {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 6px;
    background: #f1f5f9;          /* slate-100 */
    color: #0f172a;               /* slate-900 */
    font-size: 13px;
}
.dl-arch-row {
    display: grid;
    gap: .65rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .dl-arch-row.two-up { grid-template-columns: 1fr 1fr; }
}

/* Numbered step badge for installation guides */
.step-badge {
    width: 32px; height: 32px; border-radius: 9999px;
    background: linear-gradient(135deg, #00D2B4, #0891b2);
    color: #0B0F19;
    font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Subtle dotted divider between platform sections */
.dotted-divider {
    border: 0; height: 0;
    border-top: 2px dotted rgba(15,23,42,.12);
    margin: 0;
}

/* Homepage hero · 5-platform chip row.
 *
 * Renders the "Supports 5 platforms" deeplink row below the hero CTAs (index.html).
 * Each chip is a glass-style pill on the dark hero background:
 *   - light translucent surface so the colored phosphor icons read clearly
 *     (Windows blue, Android emerald, Linux amber, etc.)
 *   - hover lifts toward brand color to mirror the primary CTA hover ring,
 *     telling the user the chip is clickable (it deeplinks into the matching
 *     section of download.html).
 * Sized between .anchor-pill (download-page jump nav, ~13.6px) and the main
 * CTA button so it visually outranks the old 5-icon trust-badges row it
 * replaced, without competing with the primary "Free Sign-up / Download Client" pair.
 *
 * Per agents.md "no build tooling allowed"—the tailwind.css bundle does not ship the
 * hover/focus utilities we'd need to reproduce this with utility classes
 * (translate-y on hover with brand-colored ring, gap shifts, etc.), so the
 * entire visual lives here as plain CSS keyed off the dedicated class
 * names referenced from index.html. Mirror these rules into other locales'
 * main.css when each language site ships its own homepage hero. */
.hero-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 36rem;
}
.hero-platforms-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8; /* slate-400 */
}
.hero-platforms-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}
.hero-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f1f5f9; /* slate-100 */
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .2s ease, background-color .2s ease,
                border-color .2s ease, box-shadow .2s ease;
}
.hero-platform i {
    font-size: 1.25rem;
}
.hero-platform:hover {
    transform: translateY(-2px);
    background: rgba(0, 210, 180, 0.12);
    border-color: rgba(0, 210, 180, 0.45);
    box-shadow: 0 12px 28px -16px rgba(0, 210, 180, 0.55);
    color: #ffffff;
}

/* Compact "anchor jump" pill nav */
.anchor-pill {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .55rem 1.1rem; border-radius: 9999px;
    background: rgba(255,255,255,0.06);
    color: #e2e8f0;
    font-size: .85rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.08);
    transition: background .2s, color .2s, border-color .2s;
}
.anchor-pill:hover {
    background: rgba(0, 210, 180, 0.15);
    color: #00D2B4;
    border-color: rgba(0, 210, 180, 0.35);
}

/* mt-1 shim (not in pre-compiled tailwind bundle) */
.mt-1 { margin-top: 0.25rem; }

/* Download card v2 — 5px platform-colored top stripe.
 * The card article must have overflow-hidden + no top padding so the
 * stripe sits flush above the border-radius clip edge. */
.dl-platform-stripe { height: 5px; width: 100%; flex-shrink: 0; }
#download-windows .dl-platform-stripe { background: #3b82f6; }
#download-macos   .dl-platform-stripe { background: #64748b; }
#download-ios     .dl-platform-stripe { background: #0ea5e9; }
#download-android .dl-platform-stripe { background: #10b981; }
#download-linux   .dl-platform-stripe { background: linear-gradient(90deg, #d97706, #f59e0b); }

/* OS-detect highlight ring */
.detected-ring {
    box-shadow: 0 0 0 3px rgba(0, 210, 180, 0.35), 0 25px 60px -25px rgba(15, 23, 42, .35);
    border-color: #00D2B4 !important;
}
.detected-tag { display: none; }
.detected-ring .detected-tag { display: inline-flex; }

/* ==========================================================================
 * Blog list page (blog/index.html) only
 * Rendered dynamically from window.BLOG_POSTS (populated by posts.js, which
 * is auto-generated by blog/generate-posts.py). The HTML shell only ships
 * empty containers — these styles cover every visual state the page can
 * reach (Featured card, regular grid card, empty state).
 * ========================================================================== */

/* Featured (latest) card — always rendered as the largest, most prominent
 * tile. Visually distinct from regular cards via dark gradient background
 * and decorative glow. */
.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background:
        radial-gradient(circle at 18% 22%, rgba(0, 210, 180, .35), transparent 55%),
        radial-gradient(circle at 82% 78%, rgba(99, 102, 241, .30), transparent 60%),
        linear-gradient(135deg, #0B0F19 0%, #111827 60%, #0B0F19 100%);
    color: #fff;
    transition: transform .35s ease, box-shadow .35s ease;
    /* Earlier draft used `min-height: 420px` to give the featured card
     * extra visual weight, but the JS template inside relies on
     * `h-full justify-end` to bottom-align its content — and per CSS
     * spec `height: 100%` resolves to `auto` when the parent has only
     * `min-height` (no explicit `height`). The result was content
     * sitting at the top with a 100+px dead zone below. We now let the
     * card size to its content; the dark gradient background and the
     * larger typography (text-5xl headline, p-12 padding) already give
     * it more than enough presence vs the regular post-card grid. */
}
.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px -20px rgba(0, 210, 180, 0.35);
}
.featured-card .featured-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(0, 210, 180, .12), transparent 50%);
}

/* Regular grid card — equal-width on >=md, hover lift identical to .tilt-card */
.post-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -25px rgba(15, 23, 42, .35);
    border-color: rgba(0, 210, 180, .35);
}

/* Category badge — small pill, color tinted by .post-tone-* on the card root */
.post-category {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 9999px;
    background: rgba(0, 210, 180, .1);
    color: #00897B;
}

/* Tag pill — slate scheme, visually softer than .post-category */
.post-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    padding: .25rem .6rem;
    border-radius: 9999px;
    background: #f1f5f9;
    color: #475569;
}

/* Empty state */
.posts-empty {
    border: 1.5px dashed #cbd5e1;
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    color: #64748b;
    background: #fff;
}

/* Multi-line truncation used by post-card summaries (Tailwind's
 * line-clamp utilities are not included in the precompiled tailwind.css). */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
 * Pricing tier cards — .pc-card component (pricing.html / pricing.js)
 *
 * Self-contained BEM component so pricing.js stays portable across
 * language variants. No Tailwind utilities here — every property is
 * authored explicitly. The existing `.tier-featured-lift` rule (above)
 * handles the desktop vertical offset of the featured card.
 * ========================================================================== */

/* ── Shell ────────────────────────────────────────────────────────────────── */
.pc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(.22,.68,.35,1.1),
                box-shadow  0.28s ease;
}

/* Light (side) card */
.pc-card--light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15,23,42,.04), 0 8px 24px -8px rgba(15,23,42,.10);
}
.pc-card--light:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(15,23,42,.06), 0 22px 50px -14px rgba(15,23,42,.20);
}

/* Featured (middle) card */
.pc-card--featured {
    background: linear-gradient(155deg, #0c1220 0%, #162035 52%, #0c1220 100%);
    border: 1px solid rgba(0,210,180,.22);
    box-shadow: 0 4px 24px rgba(0,210,180,.10), 0 24px 64px -14px rgba(0,210,180,.28);
}
.pc-card--featured::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,210,180,.18) 0%, transparent 70%);
    pointer-events: none;
}
.pc-card--featured:hover {
    box-shadow: 0 8px 32px rgba(0,210,180,.16), 0 32px 80px -14px rgba(0,210,180,.38);
}

/* ── Top accent stripe ────────────────────────────────────────────────────── */
.pc-card__accent {
    height: 3px;
    flex-shrink: 0;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1 60%, transparent);
}
.pc-card__accent--brand {
    background: linear-gradient(90deg, #00D2B4, #06b6d4 65%, #00D2B4);
    box-shadow: 0 0 16px rgba(0,210,180,.45);
}

/* ── Card body ────────────────────────────────────────────────────────────── */
.pc-card__body {
    position: relative;
    z-index: 1;
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.pc-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 1.5rem;
    margin-bottom: 1.75rem;
}
.pc-card__tier {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #94a3b8;
}
.pc-card__tier--brand { color: #00D2B4; }

/* Recommended badge */
.pc-card__badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #00D2B4;
    color: #0B0F19;
    padding: .3rem .85rem .3rem .7rem;
    border-radius: 9999px;
    line-height: 1.4;
}
.pc-card__badge i { font-size: 11px; }

/* ── Price block ──────────────────────────────────────────────────────────── */
.pc-card__price-block { margin-bottom: 1.5rem; }

.pc-card__price {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    line-height: 1;
    margin-bottom: .3rem;
}
.pc-card__price-amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -.025em;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.pc-card__price-amount--light { color: #ffffff; }

.pc-card__price-cycle {
    font-size: .875rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1;
}
.pc-card__per-month {
    font-size: .75rem;
    color: #64748b;
    margin-top: .1rem;
}
.pc-card--featured .pc-card__per-month { color: #64748b; }

/* ── Divider ──────────────────────────────────────────────────────────────── */
.pc-card__divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 0 0 1.25rem;
}
.pc-card__divider--faint { border-color: rgba(255,255,255,.09); }

/* ── Quota row ────────────────────────────────────────────────────────────── */
.pc-card__quota {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-bottom: 1.875rem;
}
.pc-card__quota-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #94a3b8;
}
.pc-card__quota-value {
    display: flex;
    align-items: baseline;
    gap: .18rem;
}
.pc-card__quota-num {
    font-size: 2.375rem;
    font-weight: 800;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    letter-spacing: -.02em;
}
.pc-card__quota-num--light { color: #ffffff; }

.pc-card__quota-unit {
    font-size: .875rem;
    font-weight: 700;
    color: #94a3b8;
    line-height: 1;
    margin-left: .1rem;
}

/* ── CTA button ───────────────────────────────────────────────────────────── */
.pc-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .9375rem 1.25rem;
    border-radius: .875rem;
    font-size: .9375rem;
    font-weight: 700;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pc-card__cta--dark {
    background: #0f172a;
    color: #ffffff;
}
.pc-card__cta--dark:hover {
    background: #020617;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -8px rgba(0,0,0,.35);
}
.pc-card__cta--brand {
    background: #00D2B4;
    color: #0B0F19;
}
.pc-card__cta--brand:hover {
    background: #00b89c;
    box-shadow: 0 0 28px rgba(0,210,180,.45);
    transform: translateY(-1px);
}

/* Arrow icon inside CTA */
.pc-card__cta-arrow {
    display: inline-block;
    transition: transform .2s ease;
}
.pc-card__cta:hover .pc-card__cta-arrow { transform: translateX(4px); }

/* ── Skeleton (loading state) ─────────────────────────────────────────────── */
.pc-skeleton {
    border-radius: 1.25rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15,23,42,.04);
    display: flex;
    flex-direction: column;
    animation: pc-pulse 1.6s ease-in-out infinite;
}
@keyframes pc-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .55; }
}
.pc-skeleton__stripe {
    height: 3px;
    background: #e2e8f0;
}
.pc-skeleton__body {
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pc-skel-bar {
    border-radius: .5rem;
    background: #e2e8f0;
    flex-shrink: 0;
}
.pc-skel-bar--sm  { height: .625rem; }
.pc-skel-bar--md  { height: 1rem; }
.pc-skel-bar--lg  { height: 3rem; }
.pc-skel-bar--btn { height: 3.125rem; border-radius: .875rem; }
.pc-skel-bar--dim { background: #f1f5f9; }

/* Patch: group-hover:bg-sky-500 missing from pre-compiled tailwind.css */
.group:hover .group-hover\:bg-sky-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 165 233 / var(--tw-bg-opacity));
}
