/* ══════════════════════════════════════════
   Part 1: Design Tokens, Reset, Base Styles
   StatusFox — Landing Page
   ══════════════════════════════════════════ */

/* ── 1. Dark Mode Tokens (:root) ── */
:root {
    color-scheme: dark;
    --bg-base: #020202;
    --bg-surface: #0a0a0c;
    --bg-elevated: #131315;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    --bg-card: rgba(255, 255, 255, 0.03);
    --solid-bg-card: #0f0f11;
    --glass-bg: rgba(10, 10, 12, 0.91);
    --glass-blur: 12px;
    --glass-border: rgba(255, 255, 255, 0.07);
    --accent: #F59E0B;
    --accent-hover: #D97706;
    --accent-muted: rgba(245, 158, 11, 0.15);
    --accent-subtle: rgba(245, 158, 11, 0.06);
    --accent-glow: rgba(245, 158, 11, 0.25);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e8;
    --text-tertiary: #c0c0cc;
    --border: rgba(255, 255, 255, 0.10);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --success: #10b981;
    --success-muted: rgba(16, 185, 129, 0.15);
    --warning: #f59e0b;
    --warning-muted: rgba(245, 158, 11, 0.15);
    --error: #ef4444;
    --error-muted: rgba(239, 68, 68, 0.15);
    --info: #06b6d4;
    --info-muted: rgba(6, 182, 212, 0.15);
    --gradient-subtle: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    --badge-feature: #F59E0B;
    --badge-feature-bg: rgba(245, 158, 11, 0.15);
    --badge-comment: #F59E0B;
    --badge-comment-bg: rgba(245, 158, 11, 0.15);
    --badge-vote: #F59E0B;
    --badge-vote-bg: rgba(245, 158, 11, 0.15);
    --badge-view: #F59E0B;
    --badge-view-bg: rgba(245, 158, 11, 0.15);
    --badge-vote-removed: #F59E0B;
    --badge-vote-removed-bg: rgba(245, 158, 11, 0.15);
    --badge-deleted: #F59E0B;
    --badge-deleted-bg: rgba(245, 158, 11, 0.15);
    --badge-moved: #F59E0B;
    --badge-moved-bg: rgba(245, 158, 11, 0.15);
    --badge-denied: #F59E0B;
    --badge-denied-bg: rgba(245, 158, 11, 0.15);
    --badge-undenied: #F59E0B;
    --badge-undenied-bg: rgba(245, 158, 11, 0.15);
    --badge-merged: #F59E0B;
    --badge-merged-bg: rgba(245, 158, 11, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-full: 9999px;
    --input-bg: rgba(255, 255, 255, 0.04);
    --input-focus-bg: rgba(255, 255, 255, 0.07);
    --input-focus-ring: rgba(245, 158, 11, 0.25);
    --scrollbar-thumb: rgba(255, 255, 255, 0.15);
    --scrollbar-thumb-hover: rgba(255, 255, 255, 0.25);
    --bg-gradient-start: var(--bg-base);
    --bg-gradient-end: var(--bg-surface);
    --accent-light: var(--accent);
    --accent-medium: var(--accent-hover);
    --accent-lighter: #FBBF24;
    --accent-darker: #B45309;
    --border-color: var(--border);
    --box-shadow: var(--accent-glow);
    --input-text-color: var(--text-tertiary);
    --text-hover: var(--text-secondary);
}

/* ── 2. Light Mode Tokens ── */
[data-theme="light"] {
    color-scheme: light;
    --bg-base: #f5f5f7;
    --bg-surface: #ffffff;
    --bg-elevated: #f0f0f3;
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --bg-card: rgba(217, 119, 6, 0.04);
    --solid-bg-card: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(217, 119, 6, 0.12);
    --accent: #D97706;
    --accent-hover: #B45309;
    --accent-muted: rgba(217, 119, 6, 0.12);
    --accent-subtle: rgba(217, 119, 6, 0.04);
    --accent-glow: rgba(217, 119, 6, 0.2);
    --text-primary: #1a1a2e;
    --text-secondary: #64648c;
    --text-tertiary: #9494a8;
    --border: rgba(217, 119, 6, 0.15);
    --border-subtle: rgba(217, 119, 6, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --gradient-subtle: linear-gradient(135deg, rgba(217, 119, 6, 0.06) 0%, rgba(180, 83, 9, 0.02) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(180, 83, 9, 0.03) 100%);
    --badge-feature: #D97706;
    --badge-feature-bg: rgba(217, 119, 6, 0.1);
    --badge-comment: #D97706;
    --badge-comment-bg: rgba(217, 119, 6, 0.1);
    --badge-vote: #D97706;
    --badge-vote-bg: rgba(217, 119, 6, 0.1);
    --badge-view: #D97706;
    --badge-view-bg: rgba(217, 119, 6, 0.1);
    --badge-vote-removed: #D97706;
    --badge-vote-removed-bg: rgba(217, 119, 6, 0.1);
    --badge-deleted: #D97706;
    --badge-deleted-bg: rgba(217, 119, 6, 0.1);
    --badge-moved: #D97706;
    --badge-moved-bg: rgba(217, 119, 6, 0.1);
    --badge-denied: #D97706;
    --badge-denied-bg: rgba(217, 119, 6, 0.1);
    --badge-undenied: #D97706;
    --badge-undenied-bg: rgba(217, 119, 6, 0.1);
    --badge-merged: #D97706;
    --badge-merged-bg: rgba(217, 119, 6, 0.1);
    --input-bg: rgba(217, 119, 6, 0.04);
    --input-focus-bg: rgba(217, 119, 6, 0.06);
    --input-focus-ring: rgba(217, 119, 6, 0.12);
    --scrollbar-thumb: rgba(217, 119, 6, 0.2);
    --scrollbar-thumb-hover: rgba(217, 119, 6, 0.35);
    --success: #059669;
    --success-muted: rgba(5, 150, 105, 0.12);
    --warning: #d97706;
    --warning-muted: rgba(217, 119, 6, 0.12);
    --error: #dc2626;
    --error-muted: rgba(220, 38, 38, 0.12);
    --info: #0891b2;
    --info-muted: rgba(8, 145, 178, 0.12);
    --bg-gradient-start: var(--bg-base);
    --bg-gradient-end: var(--bg-surface);
    --accent-light: var(--accent);
    --accent-medium: var(--accent-hover);
    --accent-lighter: #F59E0B;
    --accent-darker: #B45309;
    --border-color: var(--border);
    --box-shadow: var(--accent-glow);
    --input-text-color: var(--text-tertiary);
    --text-hover: var(--text-secondary);
}

/* ── 3. Light Theme Override Blocks ── */

/* CTA / Pricing button overrides */
[data-theme="light"] .cta-button,
[data-theme="light"] .cta-button a,
[data-theme="light"] .pricing-button,
[data-theme="light"] .pricing-button a,
[data-theme="light"] .best-value-badge,
[data-theme="light"] .pricing-cta-glow,
[data-theme="light"] .cta-primary,
[data-theme="light"] .signup-button {
    color: #ffffff;
}

[data-theme="light"] .cta-button:hover {
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(217, 119, 6, 0.3), 0 0 0 2px rgba(217, 119, 6, 0.1);
}

[data-theme="light"] .pricing-button:hover {
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.25), 0 0 0 2px rgba(217, 119, 6, 0.1);
}

/* Toggle button */
[data-theme="light"] .toggle-btn.active {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}

[data-theme="light"] .toggle-btn:not(.active):hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

/* FAQ */
[data-theme="light"] .faq-item {
    border-top-color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .faq-item:hover,
[data-theme="light"] .faq-item.active {
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.1), 0 24px 48px rgba(0, 0, 0, 0.06);
    border-color: rgba(217, 119, 6, 0.25);
}

[data-theme="light"] .faq-item::before {
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .faq-toggle {
    background: rgba(217, 119, 6, 0.08);
}

[data-theme="light"] .faq-item:hover .faq-toggle {
    background: rgba(217, 119, 6, 0.12);
}

/* How it works */
[data-theme="light"] #how-it-works .step-card {
    background: rgba(217, 119, 6, 0.03);
    border-color: rgba(217, 119, 6, 0.1);
    border-top-color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] #how-it-works .step-card:hover {
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.1), 0 24px 48px rgba(0, 0, 0, 0.06);
    border-color: rgba(217, 119, 6, 0.25);
}

[data-theme="light"] #how-it-works .step-card::before {
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
}

[data-theme="light"] #how-it-works .step-icon {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.04));
    border-color: rgba(217, 119, 6, 0.12);
    color: var(--accent);
}

[data-theme="light"] #how-it-works .step-card:hover .step-icon {
    color: #fff;
}

[data-theme="light"] #how-it-works .step-number {
    color: var(--accent);
    opacity: 0.06;
}

/* Pricing */
[data-theme="light"] .pricing-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(217, 119, 6, 0.1);
    border-top-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .pricing-card:hover {
    box-shadow: 0 16px 40px rgba(217, 119, 6, 0.12);
    transform: translateY(-8px) rotateX(1deg);
    border-color: rgba(217, 119, 6, 0.2);
}

[data-theme="light"] .pricing-card-featured {
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .pricing-card-featured:hover {
    box-shadow: 0 20px 48px rgba(217, 119, 6, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .pricing-cta-glow,
[data-theme="light"] .best-value-badge {
    color: #fff;
}

[data-theme="light"] .pricing-cta-solid:hover {
    color: #fff;
}

[data-theme="light"] .annual-savings-pill {
    background: #059669;
    color: #fff;
}

[data-theme="light"] .annual-savings-badge {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

[data-theme="light"] .pricing-features span::before {
    background-color: rgba(5, 150, 105, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

[data-theme="light"] .pricing-card-featured .pricing-features span::before {
    background-color: rgba(217, 119, 6, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D97706' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* Feature dim (cross marks) */
[data-theme="light"] .feature-dim::before {
    background-color: rgba(220, 38, 38, 0.08) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") !important;
}

/* Nav link */
[data-theme="light"] nav a:hover {
    color: var(--accent);
}

/* ── 4. Reset / Base Styles ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    background-color: var(--bg-base);
    background-image: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    background-image: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-y: auto;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ── 5. Font Declarations (Satoshi) ── */
@import url('https://fonts.cdnfonts.com/css/satoshi');

/* ── 6. Animated Underline ── */
a.animated-underline {
    position: relative;
    color: inherit;
    text-decoration: none;
}

a.animated-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s cubic-bezier(.4, 0, .2, 1);
}

a.animated-underline:hover::after,
a.animated-underline:focus::after {
    width: 100%;
}

/* ── 7. Content and Title Utility Classes ── */
.content {
    flex: 1;
}

.title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

/* ── 8. Theme Toggle ── */
.theme-toggle {
    background: none;
    border: 1px solid transparent;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--border-color);
    background: var(--bg-card);
    transform: rotate(15deg);
}

.theme-toggle:active {
    transform: rotate(0deg) scale(0.9);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

.theme-icon-moon {
    display: none;
}

[data-theme="light"] .theme-icon-sun {
    display: none;
}

[data-theme="light"] .theme-icon-moon {
    display: block;
}

/* ── 9. Hamburger Base Styles ── */

.nav-mobile-controls {
    display: none;
}

.hamburger {
    display: none;
    background: none;
    border: 1px solid transparent;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.hamburger:hover {
    border-color: var(--border-color);
    background: var(--bg-card);
}

.hamburger svg {
    display: block;
}

/* ══════════════════════════════════════════════════════════════
   Part 2 — Nav, Hero, CTA Buttons, Hero Mockup
   Extracted from VoteFirst landing_page.css?v=2026.2.1.7
   ══════════════════════════════════════════════════════════════ */

/* ── Floating Pill Navigation ── */

nav {
    background-color: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 800;
}

nav {
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-lg);
    width: 85%;
    max-width: 1200px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 800;
    padding: 0.875rem 2rem;
    background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.1) 0%, transparent 50%);
}

.nav-content {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    gap: 2rem;
}

.nav-content ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: auto;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-light {
    display: none;
}

[data-theme="light"] .logo-dark {
    display: none;
}

[data-theme="light"] .logo-light {
    display: block;
}

.logo-text {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.5s ease-in-out;
}

nav a:hover {
    color: var(--accent-light);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    font-size: 0.875rem;
}

nav .cta-button {
    padding: 0.45rem 1.25rem;
    font-size: 0.825rem;
    color: #fff;
}

nav .cta-button:hover {
    color: #fff;
}

nav .cta-button-secondary {
    padding: 0.45rem 1.25rem;
    font-size: 0.825rem;
    border: 1px solid var(--accent);
    border-radius: var(--radius-pill);
    color: var(--accent);
    transition: all 0.2s ease;
}

nav .cta-button-secondary:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

[data-theme="light"] nav a:hover {
    color: var(--accent);
}

/* ── Hero Section ── */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 10rem 2rem 3rem 2rem;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease-out 0s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    max-width: 650px;
    margin: 1rem auto 2rem auto;
    line-height: 1.3;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
    max-width: 650px !important;
    animation: fadeInUp 1s ease-out 0s both;
}

.hero-buttons div {
    gap: 1rem;
    display: flex;
    flex-direction: row;
}

.hero-trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-trust-points span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-trust-points span::before {
    content: '\2713';
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 0.2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    min-height: 100svh;
}

.hero {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* ── Waitlist Form ── */

.waitlist-form {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.waitlist-input-group {
    display: flex;
    gap: 8px;
    flex-direction: row;
}

.waitlist-input {
    flex: 1;
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    border: 1px solid var(--border);
    background-color: var(--bg-surface);
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.waitlist-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--input-focus-ring);
}

.waitlist-input::placeholder {
    color: var(--input-text-color);
    opacity: 0.5;
}

/* ── Highlighted Text ── */

.highlighted {
    color: var(--accent-light) !important;
}

/* ── CTA Button (base) ── */

.cta-button {
    display: inline-block;
    background-color: var(--accent-medium);
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    background-color: var(--accent-darker);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.cta-button a {
    text-decoration: none;
    color: var(--text-primary);
}

/* ── CTA Primary ── */

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-medium));
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}

/* ── CTA Secondary ── */

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-1px);
}

/* ── CTA Badge ── */

.cta-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-lighter);
    font-weight: 500;
    margin-top: 1.5rem;
    opacity: 0.9;
}

.cta-badge::before {
    content: '\2713';
    color: var(--accent-light);
    font-weight: bold;
}

/* ── Light theme overrides for CTA ── */

[data-theme="light"] .cta-button,
[data-theme="light"] .cta-button a,
[data-theme="light"] .cta-primary {
    color: #ffffff;
}

[data-theme="light"] .cta-button:hover {
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(217, 119, 6, 0.3), 0 0 0 2px rgba(217, 119, 6, 0.1);
}

/* ── Hero Mockup Wrapper ── */

.hero-mockup-wrapper {
    margin-bottom: 4rem;
    margin-top: 6rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    animation: fadeInUp 1.2s ease-out 0.4s both;
    perspective: 1200px;
}

.hero-mockup-frame {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.12), 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: rotateX(2deg) scale(0.98);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-mockup-frame:hover {
    transform: rotateX(0deg) scale(1);
    box-shadow: 0 24px 70px rgba(245, 158, 11, 0.18), 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* ── Hero Mockup Topbar ── */

.hero-mockup-topbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.hero-mockup-dots {
    display: flex;
    gap: 6px;
    margin-right: 0.75rem;
}

.hero-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-mockup-dots span:nth-child(1) {
    background: #ef4444;
}

.hero-mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.hero-mockup-dots span:nth-child(3) {
    background: #10b981;
}

.hero-mockup-url {
    flex: 1;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    user-select: none;
}

/* ── Hero Mockup Fade ── */

.hero-mockup-fade {
    position: relative;
}

.hero-mockup-fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--bg-surface));
    pointer-events: none;
    z-index: 2;
}

/* ── Hero Mockup Board (Kanban) ── */

.hero-mockup-board {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    overflow: hidden;
    text-align: left;
}

.hero-mockup-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-mockup-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0.5rem;
    margin-bottom: 0.25rem;
}

.hero-mockup-col-header span:first-child {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.hero-mockup-col-header .hero-mockup-count {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-tertiary);
    background: var(--accent-muted);
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-full);
}

/* ── Hero Mockup Board: Feature Cards ── */

.hero-mockup-board .feature-card-roadmap {
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    flex-shrink: 0;
    cursor: default;
    user-select: none;
    position: static;
    overflow: hidden;
}

.hero-mockup-board .feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.hero-mockup-board .feature-card-title {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-primary);
    margin: 0 0 0.35rem 0;
    line-height: 1.3;
    word-wrap: break-word;
}

.hero-mockup-board .feature-card-tags {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin: 0.25rem 0;
}

.hero-mockup-board .feature-tag {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
    padding: 0.1rem 0.35rem;
    border-radius: var(--radius-md);
    font-size: 0.55rem;
    font-weight: 500;
}

.hero-mockup-board .card-description {
    font-size: 0.65rem;
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.hero-mockup-board .feature-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.hero-mockup-board .feature-card-left {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.hero-mockup-board .feature-card-votes {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    line-height: 1;
    white-space: nowrap;
    background: rgba(100, 100, 100, 0.1);
    color: var(--text-secondary);
    cursor: default;
}

.hero-mockup-board .feature-card-votes .vote-icon {
    width: 10px;
    height: 10px;
    fill: currentColor;
    flex-shrink: 0;
}

.hero-mockup-board .weighted-vote-inline {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    line-height: 1;
    white-space: nowrap;
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent);
    cursor: default;
}

.hero-mockup-board .weighted-vote-inline svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    flex-shrink: 0;
}

.hero-mockup-board .card-progress-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.hero-mockup-board .card-progress-track {
    flex: 1;
    height: 6px;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.hero-mockup-board .card-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: var(--radius-sm);
}

.hero-mockup-board .card-progress-text {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* ── Light theme overrides for Hero Mockup ── */

[data-theme="light"] .hero-mockup-frame {
    box-shadow: 0 20px 60px rgba(217, 119, 6, 0.1), 0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero-mockup-frame:hover {
    box-shadow: 0 24px 70px rgba(217, 119, 6, 0.15), 0 12px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero-mockup-dots span:nth-child(1) {
    background: #ff5f57;
}

[data-theme="light"] .hero-mockup-dots span:nth-child(2) {
    background: #febc2e;
}

[data-theme="light"] .hero-mockup-dots span:nth-child(3) {
    background: #28c840;
}

/* ── Nav + Hero responsive (max-width: 768px) ── */

@media (max-width: 768px) {
    nav {
        width: 92% !important;
        padding: 0 1rem !important;
        top: 12px !important;
        border-radius: 16px;
        z-index: 800;
    }

    .nav-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0;
        height: 52px;
    }

    .nav-theme-li {
        display: none;
    }

    .nav-mobile-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .theme-toggle-mobile {
        display: flex;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        position: relative;
        z-index: 1000;
    }

    .hamburger svg line {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        transform-box: fill-box;
        transform-origin: center;
    }

    .hamburger.menu-open svg line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.menu-open svg line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.menu-open svg line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* Backdrop overlay when menu is open */
    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 789;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-backdrop.visible {
        opacity: 1;
        visibility: visible;
    }

    /* Menu panel -- drops below nav pill, matches its width & style */
    .nav-content ul {
        display: flex;
        position: fixed;
        top: 72px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(92% + 2rem);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: var(--bg-surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        z-index: 790;
        padding: 0.75rem;
        opacity: 0;
        visibility: hidden;
        clip-path: inset(0 0 100% 0 round 12px);
        transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-content ul.mobile-open {
        opacity: 1;
        visibility: visible;
        clip-path: inset(0 0 0 0 round 12px);
    }

    .nav-content ul li {
        list-style: none;
        width: 100%;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-content ul.mobile-open li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-content ul.mobile-open li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-content ul.mobile-open li:nth-child(2) {
        transition-delay: 0.08s;
    }

    .nav-content ul.mobile-open li:nth-child(3) {
        transition-delay: 0.11s;
    }

    .nav-content ul.mobile-open li:nth-child(4) {
        transition-delay: 0.14s;
    }

    .nav-content ul.mobile-open li:nth-child(5) {
        transition-delay: 0.17s;
    }

    .nav-content ul.mobile-open li:nth-child(6) {
        transition-delay: 0.20s;
    }

    .nav-content ul li a {
        display: block;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        font-weight: 400;
        border-radius: 8px;
        text-align: left;
        transition: background 0.2s ease;
    }

    .nav-content ul li a:hover {
        background: var(--accent-muted);
    }

    /* CTA button at bottom */
    .nav-demo-li {
        order: 99;
        margin-top: 0.5rem;
    }

    .nav-demo-li .cta-button {
        display: block;
        text-align: center;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--accent), var(--accent-hover));
        color: #fff;
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
    }

    .logo-container {
        margin-right: 0 !important;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .hero {
        padding: 1.5rem 1rem;
    }

    .hero-container {
        max-width: 900px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        justify-content: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
        margin: 0.75rem auto 1.5rem;
        line-height: 1.4;
    }

    .hero-buttons {
        max-width: 100% !important;
        width: 100% !important;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: initial !important;
    }

    .cta-badge {
        margin: 0 !important;
    }

    .hero-buttons div {
        width: 100%;
        flex-direction: row;
        gap: 0.75rem;
        display: flex;
        justify-content: center;
    }

    .hero-buttons div .cta-primary,
    .hero-buttons div .cta-secondary {
        flex: 1;
        width: auto;
        max-width: 45%;
        padding: 0.85rem 1rem !important;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hero-trust-points {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .hero-mockup-col:nth-child(4) {
        display: none;
    }

    .hero-mockup-board {
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .hero-mockup-wrapper {
        margin-top: 2rem;
        margin-bottom: -4rem;
    }
}

/* ── Nav + Hero responsive (max-width: 480px) ── */

@media (max-width: 480px) {
    .cta-button {
        width: 100%;
    }

    .hero-container {
        padding: 4rem 0 0;
    }

    .hero-mockup-col:nth-child(3),
    .hero-mockup-col:nth-child(4) {
        display: none;
    }

    .hero-mockup-frame {
        transform: none;
    }

    .hero-mockup-frame:hover {
        transform: none;
    }

    .hero-mockup-board .feature-card-title {
        font-size: 0.7rem;
    }

    .hero-mockup-board {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .hero-mockup-topbar {
        padding: 0.5rem 0.75rem;
    }

    .hero-mockup-wrapper {
        margin-bottom: -3rem;
    }
}

/* ── Reduced motion ── */

@media (prefers-reduced-motion: reduce) {
    .hero-mockup-wrapper {
        animation: none;
    }
}

/* ==========================================================================
   Part 3: Sections — How it Works, Features, Pricing, FAQ, scroll targets
   Extracted from VoteFirst landing_page.css
   ========================================================================== */

/* ── Section base ── */
.section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section h2, .testimonials h2, .faq-section h2 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    text-align: center;
    font-size: 3rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.section p {
    font-size: 1.5rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 650px;
    text-align: center;
    line-height: 1.5;
    color: var(--text-primary);
}

.section-text h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* ── How it Works ── */
#how-it-works {
    min-height: auto;
}

#how-it-works .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

@media (min-width: 992px) {
    #how-it-works .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

#how-it-works .step-card {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 48px 32px 40px;
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

#how-it-works .step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#how-it-works .step-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.15);
}

#how-it-works .step-card:hover::before {
    opacity: 1.5;
}

#how-it-works .step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-muted), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: var(--accent-light);
    margin-bottom: 24px;
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

#how-it-works .step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--accent-light), var(--accent-medium));
    color: #fff;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

#how-it-works .step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--accent-light);
    opacity: 0.07;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#how-it-works .step-card:hover .step-number {
    opacity: 0.12;
}

#how-it-works .step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 0.5rem 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

#how-it-works .step-description {
    color: var(--text-secondary);
    font-size: 0.938rem;
    line-height: 1.65;
    margin: 0;
    position: static;
    left: auto;
    transform: none;
    text-align: left;
}

/* Light theme overrides — How it Works */
[data-theme="light"] #how-it-works .step-card {
    background: rgba(217, 119, 6, 0.03);
    border-color: rgba(217, 119, 6, 0.1);
    border-top-color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] #how-it-works .step-card:hover {
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.1), 0 24px 48px rgba(0, 0, 0, 0.06);
    border-color: rgba(217, 119, 6, 0.25);
}

[data-theme="light"] #how-it-works .step-card::before {
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
}

[data-theme="light"] #how-it-works .step-icon {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.04));
    border-color: rgba(217, 119, 6, 0.12);
    color: var(--accent);
}

[data-theme="light"] #how-it-works .step-card:hover .step-icon {
    color: #fff;
}

[data-theme="light"] #how-it-works .step-number {
    color: var(--accent);
    opacity: 0.06;
}

/* ── Feature showcase (zigzag layout) ── */
.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-row-reversed {
    direction: rtl;
}

.feature-row-reversed > * {
    direction: ltr;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-light);
}

.feature-heading {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.feature-showcase .feature-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    max-width: 480px;
    position: static;
    left: auto;
    transform: none;
    text-align: left;
}

.feature-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Premium 3D depth */
.feature-mockup > * {
    transform: rotateX(2deg) scale(0.98);
    box-shadow: 0 16px 48px rgba(245, 158, 11, 0.08), 0 6px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-mockup > *:hover {
    transform: rotateX(0deg) scale(1);
    box-shadow: 0 24px 64px rgba(245, 158, 11, 0.14), 0 10px 28px rgba(0, 0, 0, 0.24);
}

[data-theme="light"] .feature-mockup > * {
    box-shadow: 0 16px 48px rgba(217, 119, 6, 0.10), 0 6px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .feature-mockup > *:hover {
    box-shadow: 0 24px 64px rgba(217, 119, 6, 0.16), 0 10px 28px rgba(0, 0, 0, 0.12);
}

.feature-mockup-skeleton {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-mockup-skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 100%
    );
    animation: skeleton-shimmer 2s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

[data-theme="light"] .feature-mockup-skeleton {
    background: rgba(217, 119, 6, 0.03);
    border-color: rgba(217, 119, 6, 0.1);
}

[data-theme="light"] .feature-mockup-skeleton::after {
    background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(217, 119, 6, 0.04) 50%,
            transparent 100%
    );
}

/* ── Feature showcase image ── */
.feature-showcase-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

/* ── Pricing Section ── */
.pricing-table {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    max-width: 960px;
    margin: 3rem auto 0 auto;
    align-items: stretch;
    justify-content: center;
    perspective: 1200px;
}

.pricing-card {
    width: 100%;
    max-width: 360px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px) rotateX(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: rgba(245, 158, 11, 0.2);
}

.pricing-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

.billing-toggle {
    margin: 2rem auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.annual-savings-pill {
    display: inline-flex;
    align-items: center;
    background: #059669;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.5rem;
    border-radius: var(--radius-full);
    margin-left: 0.35rem;
    vertical-align: middle;
    line-height: 1;
    letter-spacing: 0.01em;
}

.trial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.toggle-container {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 4px;
    display: flex;
    align-items: center;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.toggle-btn {
    color: var(--text-secondary);
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.25s ease-out, background 0.25s ease-out, box-shadow 0.25s ease-out;
    border-radius: var(--radius-lg) !important;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.toggle-btn.active {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.toggle-btn:not(.active):hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.toggle-switch {
    display: none;
}

.toggle-container::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    border-radius: var(--radius-lg);
    opacity: 0.5;
}

/* ── Price typography ── */
.price {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text-primary);
    text-align: left !important;
    margin: 0.25rem 0 0.75rem 0 !important;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 0;
}

.founders-price {
    font-size: 0.75rem !important;
    color: var(--accent) !important;
    margin: -0.5rem 0 0.75rem 0 !important;
    opacity: 0.85 !important;
    left: 0 !important;
    transform: none !important;
    text-align: left !important;
    max-width: none !important;
    position: static !important;
}

.founders-price strong {
    font-weight: 600;
}

.annual-savings-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #34d399;
    background: rgba(5, 150, 105, 0.12);
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-full);
    letter-spacing: 0;
    line-height: 1;
}

/* ── PRO featured card ── */
.pricing-card-featured {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    max-width: 420px;
}

.pricing-card-featured:hover {
    transform: translateY(-8px) rotateX(1.5deg);
    box-shadow: 0 20px 48px rgba(245, 158, 11, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.25);
}

/* PRO price */
.pricing-card-featured .price {
    font-size: 3.5rem;
    line-height: 1;
}

/* ── Most Popular badge ── */
.best-value-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-lighter), #FBBF24);
    background-size: 200% 200%;
    animation: badgeShimmer 3s ease infinite;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1.4rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4), 0 0 20px rgba(245, 158, 11, 0.12);
    white-space: nowrap;
    z-index: 3;
}

/* ── Pricing CTA Buttons ── */
.pricing-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.pricing-cta-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.pricing-cta-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}

.pricing-cta-solid {
    background: var(--accent-muted);
    color: var(--accent-lighter);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.pricing-cta-solid:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.pricing-cta-glow {
    background: linear-gradient(135deg, var(--accent), var(--accent-lighter));
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35), 0 0 40px rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-cta-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: none;
    animation: shimmerSlide 3s ease-in-out infinite;
}

.pricing-cta-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5), 0 0 60px rgba(245, 158, 11, 0.15);
}

.pricing-cta-glow:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* ── Legacy pricing link/button classes ── */
.pricing-link {
    margin: auto auto 0 auto;
    color: var(--accent-light);
    text-align: center;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    width: 100%;
}

.pricing-link:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--accent-light);
}

.pricing-button {
    position: relative;
    background-color: var(--accent-medium);
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: var(--border-color);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: auto auto 0 auto !important;
    width: 100%;
}

.pricing-button:hover {
    background-color: var(--accent-darker);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.pricing-button:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2) !important;
}

.pricing-button a {
    text-decoration: none;
    color: var(--text-primary);
}

/* ── Feature list ── */
.pricing-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.625rem;
    margin: 1.5rem 0 2rem 0;
}

.pricing-card-featured .pricing-features {
    margin-top: 0;
}

.pricing-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features span::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background-color: var(--success-muted);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}

.pricing-card-featured .pricing-features span::before {
    background-color: rgba(245, 158, 11, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.feature-dim {
    color: var(--text-tertiary) !important;
    opacity: 0.6;
}

.feature-dim::before {
    background-color: var(--error-muted) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") !important;
}

.pro-exclusive {
    color: var(--text-primary) !important;
    font-weight: 500;
}

/* ── Staggered entrance for pricing cards ── */
.pricing-card.fade-in-up:nth-child(1) {
    transition-delay: 0s;
}

.pricing-card.fade-in-up:nth-child(2) {
    transition-delay: 0.15s;
}

.pricing-card.fade-in-up:nth-child(3) {
    transition-delay: 0.3s;
}

/* Light theme overrides — Pricing */
[data-theme="light"] .toggle-btn.active {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}

[data-theme="light"] .toggle-btn:not(.active):hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .pricing-button,
[data-theme="light"] .best-value-badge,
[data-theme="light"] .pricing-cta-glow {
    color: #ffffff;
}

[data-theme="light"] .pricing-button:hover {
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.25), 0 0 0 2px rgba(217, 119, 6, 0.1);
}

[data-theme="light"] .pricing-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(217, 119, 6, 0.1);
    border-top-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .pricing-card:hover {
    box-shadow: 0 16px 40px rgba(217, 119, 6, 0.12);
    transform: translateY(-8px) rotateX(1deg);
    border-color: rgba(217, 119, 6, 0.2);
}

[data-theme="light"] .pricing-card-featured {
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .pricing-card-featured:hover {
    box-shadow: 0 20px 48px rgba(217, 119, 6, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .pricing-cta-glow,
[data-theme="light"] .best-value-badge {
    color: #fff;
}

[data-theme="light"] .pricing-cta-solid:hover {
    color: #fff;
}

[data-theme="light"] .annual-savings-pill {
    background: #059669;
    color: #fff;
}

[data-theme="light"] .annual-savings-badge {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

[data-theme="light"] .pricing-features span::before {
    background-color: rgba(5, 150, 105, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

[data-theme="light"] .pricing-card-featured .pricing-features span::before {
    background-color: rgba(217, 119, 6, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D97706' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

[data-theme="light"] .feature-dim::before {
    background-color: rgba(220, 38, 38, 0.08) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") !important;
}

/* ── FAQ Section ── */
#faq {
    min-height: auto;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    letter-spacing: -0.01em;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question {
    color: var(--accent-lighter);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--accent-muted);
    color: var(--accent-light);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover .faq-toggle {
    background: rgba(245, 158, 11, 0.2);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--accent-light), var(--accent-medium));
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.faq-answer {
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    position: static;
    left: auto;
    transform: none;
    max-width: none;
    font-size: 0.975rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
    margin: 0;
}

/* ── FAQ Footer / View All Link ── */
.faq-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.faq-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.faq-view-all:hover {
    color: var(--accent-light);
    gap: 0.75rem;
}

.faq-view-all svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-view-all:hover svg {
    transform: translateX(3px);
}

/* Light theme overrides — FAQ */
[data-theme="light"] .faq-item {
    border-top-color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .faq-item:hover,
[data-theme="light"] .faq-item.active {
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.1), 0 24px 48px rgba(0, 0, 0, 0.06);
    border-color: rgba(217, 119, 6, 0.25);
}

[data-theme="light"] .faq-item::before {
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .faq-toggle {
    background: rgba(217, 119, 6, 0.08);
}

[data-theme="light"] .faq-item:hover .faq-toggle {
    background: rgba(217, 119, 6, 0.12);
}

/* ── Scroll targets ── */
#features:target, #how-it-works:target, #pricing:target, #faq:target {
    scroll-margin-top: 4rem;
}

/* ── Keyframes used in this file ── */
@keyframes shimmerSlide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes badgeShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ── Responsive — Sections ── */
@media (max-width: 768px) {
    .section h2, .testimonials h2, .faq-section h2 {
        font-size: 2.5rem;
    }

    .section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .section p {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0;
        margin-bottom: 1rem;
        left: auto;
        transform: none;
        text-align: left;
    }

    .section h2, .testimonials h2, .faq-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        left: auto;
        transform: none;
        text-align: left;
    }

    .section-content {
        padding: 0;
    }

    /* Feature showcase responsive */
    .feature-showcase {
        gap: 3rem;
        margin-top: 1.5rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row-reversed {
        direction: ltr;
    }

    .feature-heading {
        font-size: 1.4rem;
    }

    .feature-showcase .feature-description {
        font-size: 0.95rem;
        max-width: none;
        padding: 0;
    }

    .feature-mockup > * {
        transform: none;
        box-shadow: 0 8px 24px rgba(245, 158, 11, 0.06), 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .feature-mockup-skeleton {
        aspect-ratio: 16 / 10;
    }

    /* How it works responsive */
    #how-it-works .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    #how-it-works .step-card {
        padding: 36px 24px 32px;
    }

    #how-it-works .step-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    #how-it-works .step-icon svg {
        width: 22px;
        height: 22px;
    }

    #how-it-works .step-number {
        font-size: 3rem;
        top: 16px;
        right: 18px;
    }

    #how-it-works .step-title {
        font-size: 1.1rem;
        margin: 0 0 8px 0;
    }

    #how-it-works .step-description {
        font-size: 0.875rem;
        line-height: 1.6;
        padding: 0;
    }

    /* Pricing responsive */
    .pricing-table {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
        margin: 2rem auto 0;
        align-items: stretch;
        perspective: none;
    }

    .pricing-card {
        max-width: 100%;
        min-height: auto;
        padding: 1.5rem;
    }

    .pricing-card:hover {
        transform: translateY(-4px);
    }

    .pricing-card-featured {
        transform: none !important;
        order: -1;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px) !important;
    }

    .pricing-card:first-child {
        order: 1;
    }

    .price {
        font-size: 2.5rem;
        text-align: left !important;
    }

    .pricing-card-featured .price {
        font-size: 1.5rem;
    }

    .billing-toggle {
        margin: 2rem auto 0;
    }

    .toggle-container {
        max-width: 100%;
    }

    .price {
        text-align: left !important;
        font-size: 1.5rem;
    }

    /* FAQ responsive */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.65;
        border-top: none;
        padding-top: 0.875rem;
        margin-top: 0.25rem;
        position: relative;
    }

    .faq-answer p::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--border-subtle);
    }

    .faq-list {
        margin: 1.5rem auto 0;
        gap: 0.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-toggle svg {
        width: 16px;
        height: 16px;
    }

    .faq-footer {
        margin-top: 1.5rem;
    }

    .faq-view-all {
        font-size: 0.875rem;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .best-value-badge {
        animation: none;
    }

    .pricing-cta-glow::after {
        animation: none;
    }
}

/* ══════════════════════════════════════════
   Part 4: CTA Final, Footer, Animations & Utilities
   Extracted from VoteFirst landing_page.css
   ══════════════════════════════════════════ */

/* ── Final CTA Section — Liquid Lava Background ── */
.cta-final-svg-filter {
    position: absolute;
    width: 0;
    height: 0;
}

.cta-final {
    position: relative;
    padding: 10rem 2rem 8rem;
    overflow: hidden;
}

.cta-final-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    /* Fade edges so blobs blend smoothly into the page */
    mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 40%, transparent 75%);
}

.cta-lava-container {
    position: absolute;
    inset: -5%;
    filter: url(#cta-goo) blur(30px);
    opacity: 0.45;
}

.cta-lava-blob {
    position: absolute;
    border-radius: 50%;
    will-change: transform, border-radius;
}

/* Blobs positioned closer to center so they overlap and merge */
.cta-lava-blob--1 {
    width: 380px;
    height: 380px;
    background: var(--accent);
    top: 15%;
    left: 20%;
    animation: ctaLavaDrift1 14s ease-in-out infinite alternate,
    ctaLavaMorph1 9s ease-in-out infinite;
}

.cta-lava-blob--2 {
    width: 320px;
    height: 320px;
    background: #7c3aed;
    bottom: 10%;
    right: 15%;
    animation: ctaLavaDrift2 16s ease-in-out infinite alternate,
    ctaLavaMorph2 11s ease-in-out infinite;
}

.cta-lava-blob--3 {
    width: 280px;
    height: 280px;
    background: #06b6d4;
    top: 30%;
    left: 40%;
    animation: ctaLavaDrift3 12s ease-in-out infinite alternate,
    ctaLavaMorph3 8s ease-in-out infinite;
}

.cta-lava-blob--4 {
    width: 220px;
    height: 220px;
    background: #4f46e5;
    top: 10%;
    right: 25%;
    animation: ctaLavaDrift4 18s ease-in-out infinite alternate,
    ctaLavaMorph1 12s ease-in-out infinite;
}

.cta-lava-blob--5 {
    width: 300px;
    height: 300px;
    background: #0891b2;
    bottom: 15%;
    left: 15%;
    animation: ctaLavaDrift5 15s ease-in-out infinite alternate,
    ctaLavaMorph2 10s ease-in-out infinite;
}

.cta-lava-blob--6 {
    width: 260px;
    height: 260px;
    background: #6366f1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ctaLavaDrift6 20s ease-in-out infinite alternate,
    ctaLavaMorph3 13s ease-in-out infinite;
}

.cta-final-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-final-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.cta-final-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0 auto 3rem;
    line-height: 1.7;
    max-width: 560px;
    opacity: 0.9;
}

.cta-final-form-card {
    width: 100%;
    max-width: 560px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-md), 0 0 80px rgba(245, 158, 11, 0.06);
}

.cta-final-form-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.1), rgba(6, 182, 212, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.cta-final-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-final-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-final-trust span::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--success-muted);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* ── Light theme overrides for CTA ── */
[data-theme="light"] .cta-lava-container {
    opacity: 0.5;
    filter: url(#cta-goo) blur(50px);
}

[data-theme="light"] .cta-lava-blob--1 {
    background: #F59E0B;
}

[data-theme="light"] .cta-lava-blob--2 {
    background: #FBBF24;
}

[data-theme="light"] .cta-lava-blob--3 {
    background: #06b6d4;
}

[data-theme="light"] .cta-lava-blob--4 {
    background: #B45309;
}

[data-theme="light"] .cta-lava-blob--5 {
    background: #14b8a6;
}

[data-theme="light"] .cta-lava-blob--6 {
    background: #FBBF24;
}

[data-theme="light"] .cta-final-form-card {
    box-shadow: var(--shadow-md), 0 0 80px rgba(217, 119, 6, 0.04);
}

[data-theme="light"] .cta-final-form-card::before {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.25), rgba(124, 58, 237, 0.08), rgba(8, 145, 178, 0.15));
}

[data-theme="light"] .cta-final-trust span::before {
    background-color: rgba(5, 150, 105, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ── Footer ── */
footer {
    padding: 3rem 2rem 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-logo-text {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-primary);
}

.footer-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.footer-column a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-column select {
    background-color: var(--bg-card);
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(10px);
}

.footer-column select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 10px 6px;
}

.footer-column select:hover,
.footer-column select:focus {
    background-color: var(--accent-darker);
    outline: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.footer-made-with {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-made-with p {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    left: auto;
    transform: none;
}

.heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

.credits-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.developer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.dev-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    background-color: var(--bg-card);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background-color: var(--accent-medium);
    color: var(--text-primary);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.ampersand {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

@media (max-width: 640px) {
    .credits-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-made-with {
        padding: 1.5rem 0;
        margin-top: 1.5rem;
    }

    .footer-made-with p {
        font-size: 0.85rem;
    }

    .ampersand {
        display: none;
    }
}

/* ── @keyframes Animations ── */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmerSlide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes badgeShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ── Lava lamp drift — smooth flowing arcs, blobs drift toward center to merge ── */
@keyframes ctaLavaDrift1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(150px, 60px) scale(1.15) rotate(15deg);
    }
    50% {
        transform: translate(80px, -80px) scale(0.85) rotate(-10deg);
    }
    75% {
        transform: translate(180px, 100px) scale(1.1) rotate(20deg);
    }
    100% {
        transform: translate(120px, -40px) scale(0.9) rotate(-5deg);
    }
}

@keyframes ctaLavaDrift2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    20% {
        transform: translate(-120px, -100px) scale(1.12) rotate(-12deg);
    }
    40% {
        transform: translate(-60px, 80px) scale(0.88) rotate(8deg);
    }
    60% {
        transform: translate(-180px, -30px) scale(1.18) rotate(-18deg);
    }
    80% {
        transform: translate(-80px, 60px) scale(0.9) rotate(10deg);
    }
    100% {
        transform: translate(-140px, -80px) scale(1.08) rotate(-8deg);
    }
}

@keyframes ctaLavaDrift3 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(-100px, 120px) scale(1.2) rotate(18deg);
    }
    66% {
        transform: translate(80px, -60px) scale(0.8) rotate(-15deg);
    }
    100% {
        transform: translate(-60px, 80px) scale(1.1) rotate(10deg);
    }
}

@keyframes ctaLavaDrift4 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(-80px, 140px) scale(1.15) rotate(-20deg);
    }
    50% {
        transform: translate(100px, 60px) scale(0.85) rotate(12deg);
    }
    75% {
        transform: translate(-40px, -100px) scale(1.1) rotate(-8deg);
    }
    100% {
        transform: translate(80px, 120px) scale(0.9) rotate(15deg);
    }
}

@keyframes ctaLavaDrift5 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(160px, -80px) scale(1.15) rotate(14deg);
    }
    66% {
        transform: translate(60px, 100px) scale(0.85) rotate(-12deg);
    }
    100% {
        transform: translate(130px, -50px) scale(1.1) rotate(8deg);
    }
}

@keyframes ctaLavaDrift6 {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    20% {
        transform: translate(calc(-50% + 80px), calc(-50% - 60px)) scale(1.2) rotate(15deg);
    }
    40% {
        transform: translate(calc(-50% - 60px), calc(-50% + 80px)) scale(0.8) rotate(-12deg);
    }
    60% {
        transform: translate(calc(-50% + 100px), calc(-50% + 40px)) scale(1.15) rotate(20deg);
    }
    80% {
        transform: translate(calc(-50% - 80px), calc(-50% - 40px)) scale(0.85) rotate(-10deg);
    }
    100% {
        transform: translate(calc(-50% + 50px), calc(-50% + 70px)) scale(1.1) rotate(8deg);
    }
}

/* ── Lava lamp morph — organic shape shifting ── */
@keyframes ctaLavaMorph1 {
    0% {
        border-radius: 30% 70% 60% 40% / 65% 25% 75% 35%;
    }
    20% {
        border-radius: 65% 35% 30% 70% / 40% 70% 25% 75%;
    }
    40% {
        border-radius: 25% 75% 70% 30% / 60% 35% 65% 40%;
    }
    60% {
        border-radius: 75% 25% 35% 65% / 30% 75% 40% 60%;
    }
    80% {
        border-radius: 40% 60% 75% 25% / 70% 30% 60% 40%;
    }
    100% {
        border-radius: 30% 70% 60% 40% / 65% 25% 75% 35%;
    }
}

@keyframes ctaLavaMorph2 {
    0% {
        border-radius: 70% 30% 35% 65% / 25% 75% 60% 40%;
    }
    25% {
        border-radius: 35% 65% 75% 25% / 70% 30% 40% 60%;
    }
    50% {
        border-radius: 60% 40% 30% 70% / 40% 65% 75% 25%;
    }
    75% {
        border-radius: 25% 75% 65% 35% / 75% 25% 35% 70%;
    }
    100% {
        border-radius: 70% 30% 35% 65% / 25% 75% 60% 40%;
    }
}

@keyframes ctaLavaMorph3 {
    0% {
        border-radius: 65% 35% 75% 25% / 30% 70% 35% 65%;
    }
    33% {
        border-radius: 25% 75% 30% 70% / 65% 35% 75% 25%;
    }
    66% {
        border-radius: 75% 25% 65% 35% / 35% 75% 30% 70%;
    }
    100% {
        border-radius: 65% 35% 75% 25% / 30% 70% 35% 65%;
    }
}

@keyframes skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-120px * 10));
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(calc(-120px * 10));
    }
    100% {
        transform: translateX(0);
    }
}

/* ── Fade-in-up utility ── */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up:nth-child(1) {
    transition-delay: 0s;
}

.fade-in-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-in-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-in-up:nth-child(4) {
    transition-delay: 0.3s;
}

.fade-in-up:nth-child(5) {
    transition-delay: 0.4s;
}

.feature-row.fade-in-up {
    transition-delay: 0s;
}

/* ── Consent text (base styles only) ── */
#consent-text, #consent-text-bottom {
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--text-secondary);
    max-width: 100%;
    text-align: left;
    opacity: 0.9;
}

#consent-text-bottom {
    margin-bottom: 1rem;
    margin-top: 0.5rem !important;
}

#consent-text b, #consent-text-bottom b {
    color: var(--accent-lighter);
    font-weight: 600;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .hero-drag-cursor,
    .hero-drag-ghost,
    .hero-detail-overlay {
        display: none !important;
    }

    .best-value-badge {
        animation: none;
    }

    .pricing-cta-glow::after {
        animation: none;
    }

    .cta-lava-blob {
        animation: none !important;
    }
}

/* ── Responsive: CTA + Footer (768px) ── */
@media (max-width: 768px) {
    .cta-final {
        padding: 6rem 1.5rem 5rem;
    }

    .cta-final-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .cta-final-title br {
        display: none;
    }

    .cta-final-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .cta-final-form-card {
        padding: 1.5rem;
    }

    .cta-final-trust {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .cta-lava-blob {
        transform: scale(0.6) !important;
    }

    .cta-lava-blob--5,
    .cta-lava-blob--6 {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .footer-column a {
        font-size: 0.8rem;
    }

    .footer-column select {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }
}

/* ── Responsive: CTA + Footer (480px) ── */
@media (max-width: 480px) {
    .cta-final {
        padding: 4rem 1rem 3.5rem;
    }

    .cta-lava-blob {
        transform: scale(0.4) !important;
    }

    .cta-final-form-card {
        padding: 1.25rem;
    }

    .cta-final-trust {
        font-size: 0.8rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   Part 5 of 5 — Responsive Breakpoints + StatusFox Mockups
   Extracted from VoteFirst design system, adapted for StatusFox
   ══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────
   @media (min-width: 992px)
   ──────────────────────────────────────────────────────────── */
@media (min-width: 992px) {
    #how-it-works .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ────────────────────────────────────────────────────────────
   @media (max-width: 768px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* ── Nav ── */
    nav {
        width: 92% !important;
        padding: 0 1rem !important;
        top: 12px !important;
        border-radius: 16px;
        z-index: 800;
    }

    .nav-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0;
        height: 52px;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        position: relative;
        z-index: 1000;
    }

    .hamburger svg line {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        transform-box: fill-box;
        transform-origin: center;
    }

    .hamburger.menu-open svg line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.menu-open svg line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.menu-open svg line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* ── Mobile menu backdrop ── */
    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 789;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-backdrop.visible {
        opacity: 1;
        visibility: visible;
    }

    /* ── Nav menu panel ── */
    .nav-content ul {
        display: flex;
        position: fixed;
        top: 72px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(92% + 2rem);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: var(--bg-surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        z-index: 790;
        padding: 0.75rem;
        opacity: 0;
        visibility: hidden;
        clip-path: inset(0 0 100% 0 round 12px);
        transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-content ul.mobile-open {
        opacity: 1;
        visibility: visible;
        clip-path: inset(0 0 0 0 round 12px);
    }

    .nav-content ul li {
        list-style: none;
        width: 100%;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-content ul.mobile-open li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-content ul.mobile-open li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-content ul.mobile-open li:nth-child(2) {
        transition-delay: 0.08s;
    }

    .nav-content ul.mobile-open li:nth-child(3) {
        transition-delay: 0.11s;
    }

    .nav-content ul.mobile-open li:nth-child(4) {
        transition-delay: 0.14s;
    }

    .nav-content ul.mobile-open li:nth-child(5) {
        transition-delay: 0.17s;
    }

    .nav-content ul.mobile-open li:nth-child(6) {
        transition-delay: 0.20s;
    }

    .nav-content ul li a {
        display: block;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        font-weight: 400;
        border-radius: 8px;
        text-align: left;
        transition: background 0.2s ease;
    }

    .nav-content ul li a:hover {
        background: var(--accent-muted);
    }

    /* ── Hero ── */
    .hero {
        padding: 1.5rem 1rem;
        padding-top: 2rem;
    }

    .hero-container {
        max-width: 900px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        justify-content: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100svh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
        margin: 0.75rem auto 1.5rem;
        line-height: 1.4;
    }

    /* ── Section ── */
    .section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .section h2, .testimonials h2, .faq-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        left: auto;
        transform: none;
        text-align: left;
    }

    .section p {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0;
        margin-bottom: 1rem;
        left: auto;
        transform: none;
        text-align: left;
    }

    /* ── Feature showcase ── */
    .feature-showcase {
        gap: 3rem;
        margin-top: 1.5rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row-reversed {
        direction: ltr;
    }

    .feature-heading {
        font-size: 1.4rem;
    }

    .feature-showcase .feature-description {
        font-size: 0.95rem;
        max-width: none;
        padding: 0;
    }

    .feature-mockup > * {
        transform: none;
        box-shadow: 0 8px 24px rgba(245, 158, 11, 0.06), 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .feature-mockup-skeleton {
        aspect-ratio: 16 / 10;
    }

    /* ── Pricing ── */
    .pricing-table {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
        margin: 2rem auto 0;
        align-items: stretch;
        perspective: none;
    }

    .pricing-card {
        max-width: 100%;
        min-height: auto;
        padding: 1.5rem;
    }

    .pricing-card:hover {
        transform: translateY(-4px);
    }

    .pricing-card-featured {
        transform: none !important;
        order: -1;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px) !important;
    }

    .pricing-card:first-child {
        order: 1;
    }

    .price {
        font-size: 1.5rem;
        text-align: left !important;
        padding-left: 0 !important;
    }

    .pricing-card-featured .price {
        font-size: 1.5rem;
    }

    .billing-toggle {
        margin: 2rem auto 0;
    }

    .toggle-container {
        max-width: 100%;
    }

    /* ── How it works ── */
    #how-it-works .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    #how-it-works .step-card {
        padding: 36px 24px 32px;
    }

    #how-it-works .step-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    #how-it-works .step-icon svg {
        width: 22px;
        height: 22px;
    }

    #how-it-works .step-number {
        font-size: 3rem;
        top: 16px;
        right: 18px;
    }

    #how-it-works .step-title {
        font-size: 1.1rem;
        margin: 0 0 8px 0;
    }

    #how-it-works .step-description {
        font-size: 0.875rem;
        line-height: 1.6;
        padding: 0;
    }

    /* ── CTA Final ── */
    .cta-final {
        padding: 6rem 1.5rem 5rem;
    }

    .cta-final-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .cta-final-title br {
        display: none;
    }

    .cta-final-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .cta-final-form-card {
        padding: 1.5rem;
    }

    .cta-final-trust {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .cta-lava-blob {
        transform: scale(0.6) !important;
    }

    .cta-lava-blob--5,
    .cta-lava-blob--6 {
        display: none;
    }

    /* ── Footer ── */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }

    /* ── FAQ ── */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.65;
        border-top: none;
        padding-top: 0.875rem;
        margin-top: 0.25rem;
        position: relative;
    }

    .faq-answer p::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--border-subtle);
    }

    .faq-list {
        margin: 1.5rem auto 0;
        gap: 0.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-toggle svg {
        width: 16px;
        height: 16px;
    }

    .faq-footer {
        margin-top: 1.5rem;
    }

    .faq-view-all {
        font-size: 0.875rem;
    }

    /* ── Hero trust points ── */
    .hero-trust-points {
        gap: 1rem;
        font-size: 0.8rem;
    }

    /* ── Hero buttons ── */
    .hero-buttons {
        max-width: 100% !important;
        width: 100% !important;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: initial !important;
    }

    .hero-buttons div {
        width: 100%;
        flex-direction: row;
        gap: 0.75rem;
        display: flex;
        justify-content: center;
    }

    .hero-buttons div .cta-primary,
    .hero-buttons div .cta-secondary {
        flex: 1;
        width: auto;
        max-width: 45%;
        padding: 0.85rem 1rem !important;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* ── Waitlist input ── */
    .waitlist-input-group {
        flex-direction: column;
    }

    /* ── Hero mockup ── */
    .hero-mockup-wrapper {
        margin-top: 2rem;
        margin-bottom: -4rem;
    }

    .hero-mockup-col:nth-child(4) {
        display: none;
    }

    .hero-mockup-board {
        gap: 0.5rem;
        padding: 0.75rem;
    }

    /* ── Section content ── */
    .section-content {
        padding: 0;
    }
}

/* ────────────────────────────────────────────────────────────
   @media (max-width: 640px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .credits-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-made-with {
        padding: 1.5rem 0;
        margin-top: 1.5rem;
    }

    .footer-made-with p {
        font-size: 0.85rem;
    }

    .ampersand {
        display: none;
    }
}

/* ────────────────────────────────────────────────────────────
   @media (max-width: 480px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    /* ── CTA button full width ── */
    .cta-button {
        width: 100%;
    }

    /* ── Feature showcase tighter gap ── */
    .feature-showcase {
        gap: 2.5rem;
    }

    /* ── Hero mockup ── */
    .hero {
        padding-top: 2rem;
    }

    .hero-container {
        padding: 4rem 0 0;
    }

    .hero-mockup-col:nth-child(3),
    .hero-mockup-col:nth-child(4) {
        display: none;
    }

    .hero-mockup-frame {
        transform: none;
    }

    .hero-mockup-frame:hover {
        transform: none;
    }

    .hero-mockup-board .feature-card-title {
        font-size: 0.7rem;
    }

    .hero-mockup-board {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .hero-mockup-topbar {
        padding: 0.5rem 0.75rem;
    }

    .hero-mockup-wrapper {
        margin-bottom: -3rem;
    }

    /* ── CTA final ── */
    .cta-final {
        padding: 4rem 1rem 3.5rem;
    }

    .cta-lava-blob {
        transform: scale(0.4) !important;
    }

    .cta-final-form-card {
        padding: 1.25rem;
    }

    .cta-final-trust {
        font-size: 0.8rem;
    }
}

/* ────────────────────────────────────────────────────────────
   .hidden-mobile utility
   ──────────────────────────────────────────────────────────── */
.hidden-mobile {
    display: none !important;
}

/* ══════════════════════════════════════════════════════════════
   StatusFox-Specific Mockup Styles
   ══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────
   Dashboard Mockup
   ──────────────────────────────────────────────────────────── */
.pg-dashboard-mockup {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    font-size: 13px;
}

.pg-dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--glass-border);
    gap: 12px;
}

.pg-dashboard-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg-elevated);
    border-radius: 8px;
    color: var(--text-tertiary);
    flex: 1;
    max-width: 240px;
}

.pg-dashboard-add-btn {
    padding: 6px 14px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.pg-dashboard-filters {
    display: flex;
    gap: 6px;
}

.pg-dashboard-filter {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    background: var(--bg-elevated);
    color: var(--text-secondary);
}

.pg-dashboard-filter.active {
    background: var(--accent);
    color: #fff;
}

.pg-dashboard-body {
    display: flex;
    min-height: 280px;
}

.pg-dashboard-sidebar {
    width: 160px;
    border-right: 1px solid var(--glass-border);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pg-dashboard-sidebar-item {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pg-dashboard-sidebar-item.active {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-left: 2px solid var(--accent);
}

.pg-monitor-list {
    flex: 1;
    padding: 8px 0;
}

.pg-monitor-row {
    display: grid;
    grid-template-columns: 24px 1fr 80px 70px 80px 60px 60px;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 12px;
}

.pg-monitor-row:hover {
    background: var(--bg-elevated);
}

.pg-monitor-favicon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--bg-tertiary);
}

.pg-monitor-url {
    color: var(--text-primary);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pg-monitor-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 11px;
}

.pg-monitor-status.up {
    color: #22c55e;
}

.pg-monitor-status.down {
    color: #ef4444;
}

.pg-monitor-status.degraded {
    color: #f59e0b;
}

.pg-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.pg-status-dot.up {
    background: #22c55e;
}

.pg-status-dot.down {
    background: #ef4444;
}

.pg-status-dot.degraded {
    background: #f59e0b;
}

.pg-monitor-uptime {
    color: var(--text-secondary);
    font-size: 12px;
}

.pg-monitor-response {
    color: var(--text-secondary);
    font-size: 12px;
}

.pg-sparkline {
    width: 48px;
    height: 20px;
    display: flex;
    align-items: flex-end;
    gap: 1px;
}

.pg-sparkline-bar {
    width: 4px;
    border-radius: 1px;
    background: #22c55e;
    min-height: 2px;
}

.pg-sparkline-bar.warn {
    background: #f59e0b;
}

.pg-sparkline-bar.error {
    background: #ef4444;
}

.pg-monitor-interval {
    color: var(--text-tertiary);
    font-size: 11px;
}

/* ────────────────────────────────────────────────────────────
   Status Page Mockup
   ──────────────────────────────────────────────────────────── */
.pg-status-mockup {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.pg-status-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pg-status-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-primary);
}

.pg-status-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.pg-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pg-status-badge.operational {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.pg-status-badge.outage {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.pg-status-body {
    padding: 20px 24px;
}

.pg-uptime-bar-container {
    margin-bottom: 20px;
}

.pg-uptime-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-tertiary);
    margin-bottom: 6px;
}

.pg-uptime-bar {
    display: flex;
    gap: 1px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
}

.pg-uptime-segment {
    flex: 1;
    border-radius: 1px;
}

.pg-uptime-segment.up {
    background: #22c55e;
}

.pg-uptime-segment.down {
    background: #ef4444;
}

.pg-uptime-segment.degraded {
    background: #f59e0b;
}

.pg-uptime-segment.no-data {
    background: var(--bg-tertiary);
}

.pg-service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pg-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.pg-service-row:last-child {
    border-bottom: none;
}

.pg-service-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pg-service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pg-service-dot.up {
    background: #22c55e;
}

.pg-service-dot.down {
    background: #ef4444;
}

.pg-service-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.pg-service-uptime {
    color: var(--text-secondary);
    font-size: 13px;
}

.pg-incident-history {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.pg-incident-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pg-incident-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
}

.pg-incident-time {
    color: var(--text-tertiary);
    white-space: nowrap;
    min-width: 70px;
}

.pg-incident-desc {
    color: var(--text-secondary);
}

.pg-incident-resolved {
    color: #22c55e;
    font-weight: 500;
}

.pg-status-subscribe {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pg-status-subscribe-btn {
    padding: 6px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
}

/* ────────────────────────────────────────────────────────────
   World Map Mockup
   ──────────────────────────────────────────────────────────── */
.pg-worldmap-mockup {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.pg-worldmap-svg {
    width: 100%;
    height: 200px;
    position: relative;
}

.pg-worldmap-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
}

.pg-worldmap-dot.master {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.3);
}

.pg-worldmap-dot.worker {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

.pg-worldmap-label {
    position: absolute;
    font-size: 10px;
    color: var(--text-tertiary);
    white-space: nowrap;
}

@keyframes pg-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.pg-worldmap-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: pg-pulse-ring 2s ease-out infinite;
}

.pg-worldmap-dot.worker::after {
    border-color: #22c55e;
}

.pg-worldmap-legend {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    font-size: 12px;
}

.pg-worldmap-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.pg-worldmap-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pg-verification-flow {
    margin-top: 20px;
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: 8px;
    font-size: 12px;
}

.pg-verification-step {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.pg-verification-step:last-child {
    margin-bottom: 0;
}

.pg-verification-icon {
    font-size: 14px;
}

.pg-verification-icon.fail {
    color: #ef4444;
}

.pg-verification-icon.pass {
    color: #22c55e;
}

.pg-verification-alert {
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    color: #ef4444;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ────────────────────────────────────────────────────────────
   Alert Channels Mockup
   ──────────────────────────────────────────────────────────── */
.pg-alert-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pg-alert-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pg-alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pg-alert-icon.email {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

.pg-alert-icon.slack {
    background: rgba(74, 21, 75, 0.3);
    color: #e01e5a;
}

.pg-alert-icon.discord {
    background: rgba(88, 101, 242, 0.15);
    color: #5865f2;
}

.pg-alert-icon.webhook {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.pg-alert-icon.telegram {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
}

.pg-alert-icon.sms {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.pg-alert-info {
    flex: 1;
}

.pg-alert-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.pg-alert-desc {
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 2px;
}

.pg-alert-status {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.pg-alert-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* ────────────────────────────────────────────────────────────
   White-Label Mockup
   ──────────────────────────────────────────────────────────── */
.pg-whitelabel-mockup {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.pg-whitelabel-settings {
    padding: 20px;
}

.pg-whitelabel-group {
    margin-bottom: 16px;
}

.pg-whitelabel-group:last-child {
    margin-bottom: 0;
}

.pg-whitelabel-group-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    margin-bottom: 10px;
    font-weight: 600;
}

.pg-whitelabel-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--bg-elevated);
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 13px;
}

.pg-whitelabel-field-label {
    color: var(--text-secondary);
}

.pg-whitelabel-field-value {
    color: var(--text-primary);
    font-weight: 500;
}

.pg-whitelabel-colors {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.pg-whitelabel-color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid var(--glass-border);
}

.pg-whitelabel-preview {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.pg-whitelabel-preview-url {
    font-family: 'SF Mono', monospace;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 8px;
}

.pg-whitelabel-preview-status {
    font-size: 12px;
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ────────────────────────────────────────────────────────────
   Mockup Utilities
   ──────────────────────────────────────────────────────────── */
.pg-mockup-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.pg-mockup-badge.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.pg-mockup-badge.red {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.pg-mockup-badge.blue {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

.pg-mockup-badge.orange {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

/* ────────────────────────────────────────────────────────────
   V2: Phone Split-Screen Mockup
   ──────────────────────────────────────────────────────────── */
.phone-split {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    padding: 16px 0;
}

.phone-screen {
    flex: 1;
    max-width: 280px;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px 16px 16px;
    position: relative;
    overflow: hidden;
}

.phone-screen.chaos {
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.08);
}

.phone-screen.calm {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.08);
}

.phone-notch {
    width: 80px;
    height: 6px;
    background: var(--glass-border);
    border-radius: 3px;
    margin: 0 auto 16px;
}

.phone-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
}

.phone-alerts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-alert {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    line-height: 1.5;
}

.phone-alert.red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.phone-alert.green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.phone-alert.suppressed {
    background: var(--accent-subtle);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: var(--accent);
}

.phone-alert strong {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 2px;
}

.phone-label {
    margin-top: 12px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    padding-top: 8px;
    border-top: 1px solid var(--glass-border);
}

.phone-screen.chaos .phone-label {
    color: #ef4444;
}

.phone-screen.calm .phone-label {
    color: #22c55e;
}

/* ────────────────────────────────────────────────────────────
   V2: Problem Comparison Cards
   ──────────────────────────────────────────────────────────── */
.tt-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    margin: 2.5rem auto 0;
    max-width: 860px;
}

.tt-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.tt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.tt-card--bad {
    border-top: 2px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.06), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tt-card--good {
    border-top: 2px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.06), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tt-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.tt-card-badge {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tt-card-badge--bad {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

.tt-card-badge--good {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.tt-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
}

/* Steps */
.tt-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.tt-step {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    padding: 12px 0;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tt-card--bad .tt-step {
    transform: translateX(-8px);
}

.tt-card--good .tt-step {
    transform: translateX(8px);
}

.tt-anim-ready .tt-step {
    opacity: 1;
    transform: translateX(0);
}

.tt-anim-ready .tt-step[data-delay="0"] { transition-delay: 0.1s; }
.tt-anim-ready .tt-step[data-delay="1"] { transition-delay: 0.25s; }
.tt-anim-ready .tt-step[data-delay="2"] { transition-delay: 0.4s; }
.tt-anim-ready .tt-step[data-delay="3"] { transition-delay: 0.55s; }
.tt-anim-ready .tt-step[data-delay="4"] { transition-delay: 0.7s; }

/* Connecting line */
.tt-step-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.tt-card--bad .tt-step-line {
    background: rgba(239, 68, 68, 0.1);
}

.tt-card--good .tt-step-line {
    background: rgba(34, 197, 94, 0.15);
}

.tt-anim-ready .tt-step-line {
    transform: scaleY(1);
}

.tt-anim-ready .tt-step[data-delay="0"] .tt-step-line { transition-delay: 0.1s; }
.tt-anim-ready .tt-step[data-delay="1"] .tt-step-line { transition-delay: 0.25s; }
.tt-anim-ready .tt-step[data-delay="2"] .tt-step-line { transition-delay: 0.4s; }
.tt-anim-ready .tt-step[data-delay="3"] .tt-step-line { transition-delay: 0.55s; }
.tt-anim-ready .tt-step[data-delay="4"] .tt-step-line { transition-delay: 0.7s; }

.tt-step:first-child .tt-step-line {
    top: 50%;
}

.tt-step:last-child .tt-step-line {
    bottom: 50%;
}

/* Step icon */
.tt-step-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.tt-step-icon--alert {
    background: #271315;
    color: #ef4444;
}

.tt-step-icon--ignored {
    background: #1a1a1d;
    color: #9ca3af;
}

.tt-step-icon--muted {
    background: #161618;
    color: #6b7280;
}

.tt-step-icon--outage {
    background: #2f1518;
    color: #ef4444;
}

.tt-step-icon--active {
    background: #122018;
    color: #22c55e;
}

.tt-step-icon--verified {
    background: #132218;
    color: #22c55e;
}

.tt-step-icon--responds {
    background: #122018;
    color: #22c55e;
}

.tt-step-icon--resolved {
    background: #152a1c;
    color: #22c55e;
}

[data-theme="light"] .tt-step-icon--alert {
    background: #fef1f1;
}

[data-theme="light"] .tt-step-icon--ignored {
    background: #f5f5f5;
}

[data-theme="light"] .tt-step-icon--muted {
    background: #f3f4f6;
}

[data-theme="light"] .tt-step-icon--outage {
    background: #fde8e8;
}

[data-theme="light"] .tt-step-icon--active {
    background: #ecfdf5;
}

[data-theme="light"] .tt-step-icon--verified {
    background: #eafaf0;
}

[data-theme="light"] .tt-step-icon--responds {
    background: #ecfdf5;
}

[data-theme="light"] .tt-step-icon--resolved {
    background: #e4f9ed;
}

/* Step text */
.tt-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.tt-step-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.tt-step-title--danger {
    color: #ef4444;
    font-weight: 600;
}

.tt-step-title--success {
    color: #22c55e;
    font-weight: 600;
}

.tt-step-sub {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    line-height: 1.35;
}

/* Step dot (status indicator) */
.tt-step-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.tt-step-dot--alert { background: #ef4444; }
.tt-step-dot--ignored { background: #9ca3af; }
.tt-step-dot--muted { background: #4b5563; }
.tt-step-dot--active { background: #22c55e; }
.tt-step-dot--verified { background: #22c55e; }
.tt-step-dot--responds { background: #22c55e; }

/* Final step emphasis */
.tt-step-dot--outage {
    background: #ef4444;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
    animation: none;
}

.tt-step-dot--resolved {
    background: #22c55e;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
    animation: none;
}

.tt-anim-ready .tt-step--final .tt-step-dot--outage {
    animation: tt-pulse-red 2s ease-in-out infinite;
}

.tt-anim-ready .tt-step--final .tt-step-dot--resolved {
    animation: tt-pulse-green 2s ease-in-out infinite;
}

@keyframes tt-pulse-red {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

@keyframes tt-pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* VS Divider */
.tt-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.tt-vs span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.08);
}

/* Light theme overrides */
[data-theme="light"] .tt-card {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .tt-card::before {
    background: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .tt-card--bad {
    border-top-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.04), 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .tt-card--good {
    border-top-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.04), 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .tt-step-line {
    background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .tt-card--bad .tt-step-line {
    background: rgba(239, 68, 68, 0.08);
}

[data-theme="light"] .tt-card--good .tt-step-line {
    background: rgba(34, 197, 94, 0.1);
}

[data-theme="light"] .tt-vs span {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.06);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .tt-step,
    .tt-step-line,
    .tt-step-dot--outage,
    .tt-step-dot--resolved {
        transition: none !important;
        animation: none !important;
    }
    .tt-step {
        opacity: 1;
        transform: none;
    }
    .tt-step-line {
        transform: scaleY(1);
    }
}

/* ────────────────────────────────────────────────────────────
   V2: PDF Report Mockup
   ──────────────────────────────────────────────────────────── */
.pdf-report-mockup {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pdf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 12px;
}

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

.pdf-logo-placeholder {
    width: 36px;
    height: 36px;
    background: var(--accent-muted);
    border: 1px dashed rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
}

.pdf-company-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.pdf-report-title {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.pdf-date {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.pdf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px 24px;
}

.pdf-stat-card {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.pdf-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.pdf-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 4px;
}

.pdf-response-chart {
    padding: 0 24px 16px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    position: relative;
}

.pdf-bar {
    flex: 1;
    background: var(--accent-muted);
    border-radius: 3px 3px 0 0;
    min-width: 8px;
    transition: background 0.3s ease;
}

.pdf-bar:hover {
    background: var(--accent);
}

.pdf-chart-label {
    position: absolute;
    bottom: -4px;
    left: 0;
    font-size: 0.65rem;
    color: var(--text-tertiary);
    width: 100%;
    text-align: center;
}

.pdf-footer-note {
    padding: 12px 24px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.65rem;
    color: var(--text-tertiary);
    text-align: center;
    font-style: italic;
}

/* ────────────────────────────────────────────────────────────
   V2: Comparison Table
   ──────────────────────────────────────────────────────────── */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem auto;
    max-width: 900px;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    font-size: 0.85rem;
}

.comparison-table thead th {
    padding: 14px 16px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-tertiary);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    white-space: nowrap;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table thead th.highlight {
    color: var(--accent);
    background: var(--accent-subtle);
}

.comparison-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-secondary);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.comparison-table tbody td.highlight {
    color: var(--accent);
    font-weight: 600;
    background: var(--accent-subtle);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover td {
    background: var(--bg-card);
}

.comparison-table tbody tr:hover td.highlight {
    background: var(--accent-muted);
}

/* ────────────────────────────────────────────────────────────
   V2: Comparison Table — enhanced
   ──────────────────────────────────────────────────────────── */

.ct-logo-cell {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ct-logo {
    border-radius: 4px;
}

.ct-check {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.ct-cross {
    color: var(--text-tertiary);
    opacity: 0.4;
    font-size: 0.95rem;
}

.ct-dim {
    color: var(--text-tertiary);
    font-style: italic;
    opacity: 0.6;
}

.comparison-table thead th.highlight {
    position: relative;
}

.comparison-table thead th.highlight::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.comparison-table tbody td.highlight strong {
    color: var(--accent);
}

/* ────────────────────────────────────────────────────────────
   V2: Guarantee Card
   ──────────────────────────────────────────────────────────── */
.guarantee-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow:
        0 0 60px rgba(245, 158, 11, 0.06),
        var(--shadow-md);
}

.guarantee-shield {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    color: var(--accent);
}

.guarantee-shield svg {
    width: 100%;
    height: 100%;
}

.guarantee-headline {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.guarantee-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto;
}

/* ────────────────────────────────────────────────────────────
   V2: Pricing Persona Labels
   ──────────────────────────────────────────────────────────── */
.pricing-persona {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
    margin-top: -0.25rem;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.pricing-card-featured .pricing-persona {
    opacity: 1;
}

/* ────────────────────────────────────────────────────────────
   V2: Responsive
   ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .phone-split {
        flex-direction: column;
        align-items: center;
    }

    .phone-screen {
        max-width: 100%;
        width: 100%;
    }

    .tt-comparison {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tt-vs {
        align-self: center;
    }

    .tt-vs span {
        width: 40px;
        height: 40px;
    }

    .tt-card {
        padding: 20px;
    }

    .pdf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table-wrapper {
        margin: 1.5rem -1rem;
        padding: 0 1rem;
    }

    .guarantee-card {
        padding: 2rem 1.5rem;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table thead th {
        padding: 10px 8px;
        font-size: 0.7rem;
    }

    .comparison-table tbody td {
        padding: 10px 8px;
    }

    .comparison-table tbody td:first-child {
        white-space: normal;
    }

    .guarantee-headline {
        font-size: 1.2rem;
    }

    .guarantee-body {
        font-size: 0.9rem;
    }

    .guarantee-shield {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .tt-card {
        padding: 16px;
    }

    .tt-step-icon {
        width: 26px;
        height: 26px;
    }

    .tt-step-icon svg {
        width: 12px;
        height: 12px;
    }

    .tt-step-title {
        font-size: 0.78rem;
    }

    .tt-step-sub {
        font-size: 0.68rem;
    }

    .tt-card-header {
        margin-bottom: 18px;
    }

    .pdf-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .phone-alert {
        font-size: 0.7rem;
    }

    .guarantee-headline {
        font-size: 1.15rem;
    }

    .guarantee-body {
        font-size: 0.9rem;
    }

    .comparison-table {
        font-size: 0.7rem;
    }

    .comparison-table thead th {
        padding: 8px 6px;
        font-size: 0.65rem;
    }

    .comparison-table tbody td {
        padding: 8px 6px;
    }
}

/* ────────────────────────────────────────────────────────────
   Mockup Responsive
   ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .pg-dashboard-body {
        flex-direction: column;
    }

    .pg-dashboard-sidebar {
        display: none;
    }

    .pg-monitor-row {
        grid-template-columns: 20px 1fr 60px;
    }

    .pg-monitor-row > :nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 480px) {
    .pg-dashboard-filters {
        display: none;
    }

    .pg-dashboard-search {
        max-width: 100%;
    }

    .pg-dashboard-mockup {
        font-size: 12px;
    }

    .pg-dashboard-topbar {
        padding: 10px 12px;
        flex-wrap: wrap;
    }

    .pg-status-header {
        padding: 14px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .pg-status-body {
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .pg-dashboard-filters {
        display: none;
    }

    .pg-dashboard-search {
        max-width: 100%;
    }

    .pg-dashboard-mockup {
        font-size: 11px;
        border-radius: 8px;
    }

    .pg-status-mockup {
        border-radius: 8px;
    }

    .pg-alert-card {
        padding: 12px 14px;
        gap: 10px;
    }

    .pg-alert-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 8px;
    }

    .pg-alert-name {
        font-size: 13px;
    }

    .pg-alert-desc {
        font-size: 11px;
    }
}

/* ══════════════════════════════════════════
   Verification Section — Step Cards
   ══════════════════════════════════════════ */

#verification {
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#verification .section-content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* ══════════════════════════════════════════
   Verification Flow — Compact
   ══════════════════════════════════════════ */

/* Verification strip — minimal inline */
.vf-strip {
    max-width: 480px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vf-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease;
}

.vf-line:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .vf-line {
    background: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .vf-line:hover {
    border-color: rgba(0, 0, 0, 0.12);
}

.vf-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    min-width: 90px;
    flex-shrink: 0;
}

.vf-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.vf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vf-dot--fail {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

.vf-dot--pass {
    background: var(--success);
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

.vf-outcome {
    font-size: 13px;
    font-weight: 600;
    margin-left: auto;
    white-space: nowrap;
}

.vf-outcome--alert {
    color: #ef4444;
}

.vf-outcome--suppress {
    color: var(--success);
}
