/* ════════════════════════════════════════════════════════════════════
 * Glass Horizon — Design tokens + Admin-Chrome (#227 Welle A)
 *                 + Marketing-Chrome (#229 Welle B)
 *
 * Source of truth for hex/radii/blur: prototyp 03
 * https://loocollector-prototypes.pages.dev/03-glass-horizon/
 * Tokens are exact. Feature screens inherit; do not invent new hex here.
 * ════════════════════════════════════════════════════════════════════ */

:root {
    --teal: #0d9488;
    --teal-bright: #14b8a6;
    --teal-deep: #0f766e;
    --teal-ink: #134e4a;
    --mint: #ccfbf1;
    --foam: #f0fdfa;
    --amber: #f59e0b; /* warn ONLY */
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-500: #71717a;
    --zinc-700: #3f3f46;
    --zinc-900: #18181b;
    --glass: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.65);
    --shadow: 0 20px 60px rgba(19, 78, 74, 0.12);
    --sidebar-w: 280px;
    --radius-pill: 999px;
    --radius-nav: 14px;
    --radius-card: 22px;
    --radius-card-lg: 28px;
    --radius-card-xl: 32px;
    --glass-blur: 20px;
    --glass-saturate: 1.35;
}

/* ── Shared atoms (usable outside the shell) ─────────────────────── */

.gh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--teal);
    color: #fff;
    border: none;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
    min-height: 44px;
}

.gh-btn:hover {
    background: var(--teal-deep);
    transform: translateY(-1px);
    color: #fff;
}

.gh-btn:disabled,
.gh-btn[aria-disabled="true"] {
    background: var(--zinc-200);
    color: var(--zinc-500);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.gh-btn-ghost {
    background: var(--glass);
    color: var(--teal-ink);
    box-shadow: none;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px) saturate(var(--glass-saturate));
}

.gh-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.85);
    color: var(--teal-ink);
}

.gh-panel {
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow);
}

.gh-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-pill);
    background: var(--mint);
    color: var(--teal-ink);
}

.gh-status--warn {
    background: #fef3c7;
    color: #92400e;
}

.gh-status--done {
    background: var(--zinc-100);
    color: var(--zinc-500);
}

.gh-meter {
    height: 12px;
    border-radius: var(--radius-pill);
    background: rgba(13, 148, 136, 0.12);
    overflow: hidden;
}

.gh-meter__fill {
    height: 100%;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--teal-bright), var(--teal));
    transition: width 0.4s ease;
}

.gh-meter__fill--warn {
    background: linear-gradient(90deg, var(--amber), #ea580c);
}

.gh-modal {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    max-width: 440px;
    width: calc(100% - 2rem);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    color: var(--zinc-900);
}

.gh-modal::backdrop {
    background: rgba(19, 78, 74, 0.4);
    backdrop-filter: blur(6px);
}

.gh-modal__title {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--teal-ink);
    margin: 0 2.25rem 0.5rem 0;
}

.gh-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(19, 78, 74, 0.15);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    color: var(--teal-ink);
}

.gh-modal__close:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* ── Admin app shell ─────────────────────────────────────────────── */

body.gh-shell,
body.gh-shell[data-theme-aware] {
    font-family: "DM Sans", system-ui, sans-serif;
    color: var(--zinc-900);
    background-color: var(--foam);
    background-image:
        linear-gradient(160deg, var(--mint) 0%, var(--foam) 42%, var(--foam) 100%),
        radial-gradient(ellipse 60% 50% at 10% 0%, rgba(20, 184, 166, 0.25), transparent),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(13, 148, 136, 0.15), transparent);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

[data-theme="dark"] body.gh-shell,
[data-theme="dark"] body.gh-shell[data-theme-aware] {
    color: #f4f4f5;
    background-color: #042f2e;
    background-image:
        linear-gradient(160deg, #134e4a 0%, #042f2e 45%, #09090b 100%),
        radial-gradient(ellipse 60% 50% at 10% 0%, rgba(20, 184, 166, 0.18), transparent),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(13, 148, 136, 0.12), transparent);
}

.gh-app {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
}

.gh-side {
    width: var(--sidebar-w);
    flex-shrink: 0;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 40;
}

.gh-side-glass {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card-lg);
    padding: 1.25rem 1rem;
    box-shadow: var(--shadow);
}

.gh-side-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--teal-ink);
    font-weight: 700;
    padding: 0.5rem 0.65rem 1.25rem;
    border-bottom: 1px solid rgba(13, 148, 136, 0.12);
    margin-bottom: 0.75rem;
}

.gh-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.gh-nav {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.gh-nav-section {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--zinc-500);
    padding: 0.75rem 0.85rem 0.35rem;
}

.gh-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--zinc-700);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-nav);
    transition: background 0.15s, color 0.15s;
}

.gh-nav-item:hover {
    background: rgba(13, 148, 136, 0.1);
    color: var(--teal-ink);
}

.gh-nav-item.is-active {
    background: rgba(13, 148, 136, 0.16);
    color: var(--teal-ink);
}

.gh-nav-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.gh-side-foot {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 148, 136, 0.12);
}

.gh-user-chip {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem;
    border-radius: var(--radius-nav);
    text-decoration: none;
    color: inherit;
}

.gh-user-chip:hover {
    background: rgba(13, 148, 136, 0.08);
}

.gh-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--teal-ink);
    font-weight: 700;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.gh-main {
    flex: 1;
    padding: 1.35rem 2.25rem 2.75rem;
    min-width: 0;
}

.gh-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.gh-topbar h1,
.gh-title {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--teal-ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.gh-topbar .gh-sub {
    font-size: 0.9rem;
    color: var(--zinc-500);
    margin-top: 0.15rem;
}

.gh-top-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.gh-menu-toggle {
    display: none;
    align-items: center;
    gap: 0.4rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    color: var(--teal-ink);
    min-height: 44px;
}

.gh-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(19, 78, 74, 0.3);
    backdrop-filter: blur(3px);
    border: 0;
    padding: 0;
    margin: 0;
}

.gh-drawer-overlay.is-open {
    display: block;
}

/* Feature screens inherit Fraunces titles + pill CTAs inside the shell. */
.gh-shell .font-display,
.gh-main h1 {
    font-family: "Fraunces", Georgia, serif;
    color: var(--teal-ink);
}

.gh-shell a.bg-primary-600,
.gh-shell button.bg-primary-600,
.gh-shell a.bg-gradient-to-r.from-primary-600,
.gh-shell button.bg-gradient-to-r.from-primary-600 {
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
}

.gh-shell a.rounded-xl.border,
.gh-shell button.rounded-xl.border {
    border-radius: var(--radius-pill);
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-color: var(--glass-border);
}

.gh-shell .rounded-2xl.border.bg-white,
.gh-shell .rounded-2xl.shadow-card {
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(var(--glass-saturate));
    border-color: var(--glass-border);
    box-shadow: var(--shadow);
    border-radius: var(--radius-card);
}

@media (max-width: 900px) {
    .gh-side {
        display: none;
    }

    .gh-side.is-open {
        display: flex;
        position: fixed;
        z-index: 90;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(280px, 85vw);
        height: 100vh;
    }

    .gh-menu-toggle {
        display: inline-flex;
    }

    .gh-main {
        padding: 1rem;
    }

    .gh-topbar h1,
    .gh-title {
        font-size: 1.5rem;
    }
}

/* ── Marketing chrome (Welle B) ───────────────────────────────────── */

body.gh-mkt,
body.gh-mkt[data-theme-aware] {
    font-family: "DM Sans", system-ui, sans-serif;
    color: var(--zinc-900);
    overflow-x: hidden;
    background-color: var(--teal-ink);
    background-image: radial-gradient(
        ellipse 120% 80% at 50% 0%,
        var(--teal-bright) 0%,
        var(--teal) 28%,
        var(--teal-deep) 55%,
        var(--teal-ink) 100%
    );
    background-repeat: no-repeat;
    background-attachment: fixed;
}

[data-theme="dark"] body.gh-mkt,
[data-theme="dark"] body.gh-mkt[data-theme-aware] {
    color: var(--zinc-100);
    background-color: var(--teal-ink);
    background-image: radial-gradient(
        ellipse 120% 80% at 50% 0%,
        var(--teal) 0%,
        var(--teal-deep) 32%,
        var(--teal-ink) 70%,
        #042f2e 100%
    );
}

.gh-horizon {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            color-mix(in srgb, var(--foam) 15%, transparent) 45%,
            color-mix(in srgb, var(--foam) 85%, transparent) 72%,
            var(--foam) 100%
        ),
        radial-gradient(
            ellipse 90% 40% at 70% 30%,
            color-mix(in srgb, var(--mint) 40%, transparent),
            transparent
        );
}

.gh-wrap {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 3.5vw 4rem;
}

.gh-pill-nav {
    position: sticky;
    top: 1.25rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.25rem auto 0;
    max-width: 1100px;
    width: calc(100% - 7vw);
    padding: 0.55rem 0.65rem 0.55rem 1.25rem;
    background: var(--glass);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
}

.gh-pill-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--teal-ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.gh-pill-brand:hover {
    color: var(--teal-ink);
}

.gh-pill-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.gh-pill-links a {
    text-decoration: none;
    color: var(--zinc-700);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.45rem 0.95rem;
    border-radius: var(--radius-pill);
    transition: background 0.2s, color 0.2s;
}

.gh-pill-links a:hover,
.gh-pill-links a.is-active {
    background: rgba(13, 148, 136, 0.12);
    color: var(--teal-ink);
}

.gh-pill-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gh-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: var(--radius-pill);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0;
}

.gh-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--teal-ink);
    margin: 2px 0;
    border-radius: 2px;
}

.gh-mkt-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(19, 78, 74, 0.35);
    backdrop-filter: blur(4px);
    border: 0;
    padding: 0;
    margin: 0;
}

.gh-mkt-drawer.is-open {
    display: block;
}

.gh-mkt-drawer-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: color-mix(in srgb, var(--foam) 95%, transparent);
    backdrop-filter: blur(20px) saturate(1.3);
    padding: 1.5rem;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gh-mkt-drawer-panel a {
    text-decoration: none;
    color: var(--teal-ink);
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.gh-mkt-drawer-panel a:hover {
    background: var(--mint);
}

.gh-mkt-drawer-panel .gh-btn {
    margin-top: 1rem;
    justify-content: center;
}

.gh-mkt-drawer-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--teal-ink);
    padding: 0.25rem 0.5rem;
    line-height: 1;
}

.gh-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0 4.5rem;
    min-height: 78vh;
}

.gh-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal-ink);
    background: rgba(255, 255, 255, 0.5);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--glass-border);
    margin-bottom: 1.25rem;
}

.gh-hero h1 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 2px 30px rgba(19, 78, 74, 0.25);
    margin-bottom: 1.25rem;
    max-width: 14ch;
}

.gh-hero-lede {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 38ch;
    margin-bottom: 2rem;
}

.gh-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gh-hero-cta .gh-btn {
    font-size: 1rem;
    padding: 0.7rem 1.4rem;
}

.gh-hero-cta .gh-btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.gh-hero-cta .gh-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.gh-glass-card {
    background: var(--glass);
    backdrop-filter: blur(22px) saturate(1.45);
    -webkit-backdrop-filter: blur(22px) saturate(1.45);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card-xl);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.gh-float-card {
    transform: rotate(-1.5deg);
    transition: transform 0.3s ease;
}

.gh-float-card:hover {
    transform: rotate(0deg) translateY(-4px);
}

.gh-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.gh-stat {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.gh-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-ink);
    letter-spacing: -0.03em;
}

.gh-stat span {
    font-size: 0.8rem;
    color: var(--zinc-500);
    font-weight: 500;
}

.gh-mini-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
}

.gh-mini-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.45);
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 500;
}

.gh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

.gh-dot--warn {
    background: var(--amber);
}

.gh-mkt-section {
    padding: 3rem 0 1rem;
}

.gh-mkt-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 0.75rem;
}

.gh-mkt-section h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--teal-ink);
    margin-bottom: 0.75rem;
}

.gh-mkt-lede {
    color: var(--zinc-500);
    font-size: 1.05rem;
    max-width: 48ch;
    margin-bottom: 2.5rem;
}

.gh-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gh-feature {
    padding: 1.75rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gh-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(19, 78, 74, 0.1);
}

.gh-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--mint);
    color: var(--teal-ink);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.gh-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal-ink);
    margin-bottom: 0.5rem;
}

.gh-feature p {
    font-size: 0.95rem;
    color: var(--zinc-500);
    line-height: 1.55;
}

.gh-cta-band {
    margin-top: 4rem;
    padding: 3rem 3.5rem;
    border-radius: var(--radius-card-xl);
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.65),
        color-mix(in srgb, var(--mint) 50%, transparent)
    );
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.gh-cta-band h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 2rem;
    color: var(--teal-ink);
    letter-spacing: -0.02em;
}

.gh-cta-band p {
    color: var(--zinc-500);
    margin-top: 0.35rem;
}

.gh-page-head {
    text-align: center;
    padding: 4.5rem 0 3rem;
}

.gh-page-head h1 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 30px rgba(19, 78, 74, 0.25);
    margin-bottom: 0.75rem;
}

.gh-page-head p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 42ch;
    margin: 0 auto;
}

.gh-billing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    padding: 0.3rem;
    margin: 1.75rem auto 0;
    gap: 0.25rem;
}

.gh-billing-toggle button {
    border: none;
    background: transparent;
    font: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    color: var(--teal-ink);
    transition: background 0.2s;
}

.gh-billing-toggle button[aria-pressed="true"],
.gh-billing-toggle button.is-active {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gh-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.gh-plan {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px) saturate(1.35);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.gh-plan:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.gh-plan--featured {
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid var(--teal);
    box-shadow: 0 24px 60px rgba(13, 148, 136, 0.25);
    transform: scale(1.04);
    position: relative;
}

.gh-plan--featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.gh-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
}

.gh-plan h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teal-ink);
    margin-bottom: 0.35rem;
}

.gh-plan-desc {
    font-size: 0.9rem;
    color: var(--zinc-500);
    margin-bottom: 1.25rem;
    min-height: 2.6em;
}

.gh-plan-price {
    font-family: "Fraunces", Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--teal-ink);
    letter-spacing: -0.03em;
    line-height: 1;
}

.gh-plan-price span {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--zinc-500);
}

.gh-plan-note {
    font-size: 0.8rem;
    color: var(--zinc-500);
    margin: 0.5rem 0 1.5rem;
}

.gh-plan-features {
    list-style: none;
    flex: 1;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.gh-plan-features li {
    font-size: 0.9rem;
    color: var(--zinc-700);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.gh-plan-features li::before {
    content: "✓";
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

.gh-plan .gh-btn {
    width: 100%;
}

.gh-pricing-legal {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--zinc-500);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.gh-faq {
    margin-top: 5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.gh-faq h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 2rem;
    color: var(--teal-ink);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.gh-faq-item {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.gh-faq-item summary {
    width: 100%;
    text-align: left;
    font: inherit;
    font-weight: 600;
    color: var(--teal-ink);
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gh-faq-item summary::-webkit-details-marker {
    display: none;
}

.gh-faq-item summary::after {
    content: "+";
    font-weight: 700;
    color: var(--teal);
}

.gh-faq-item[open] summary::after {
    content: "–";
}

.gh-faq-item summary:hover {
    background: rgba(255, 255, 255, 0.4);
}

.gh-faq-body {
    padding: 0 1.25rem 1.1rem;
    color: var(--zinc-500);
    font-size: 0.95rem;
    line-height: 1.55;
}

.gh-mkt-footer {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
    padding: 2rem 3.5vw;
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--teal-ink);
}

.gh-mkt-footer a,
.gh-mkt-footer button {
    color: inherit;
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.gh-mkt-footer a:hover,
.gh-mkt-footer button:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .gh-hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0 2rem;
        min-height: auto;
    }

    .gh-feature-grid,
    .gh-pricing-grid {
        grid-template-columns: 1fr;
    }

    .gh-pricing-grid {
        max-width: 400px;
    }

    .gh-plan--featured,
    .gh-plan--featured:hover {
        transform: none;
    }

    .gh-pill-links {
        display: none;
    }

    .gh-nav-toggle {
        display: flex;
    }

    .gh-wrap {
        padding: 0 1.25rem 3rem;
    }

    .gh-cta-band {
        padding: 2rem;
    }

    .gh-mkt-footer {
        padding: 2rem 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gh-btn,
    .gh-nav-item,
    .gh-meter__fill,
    .gh-feature,
    .gh-plan,
    .gh-float-card {
        transition: none;
    }

    .gh-btn:hover,
    .gh-feature:hover,
    .gh-plan:hover,
    .gh-float-card:hover,
    .gh-plan--featured,
    .gh-plan--featured:hover {
        transform: none;
    }
}
