:root {
    /* Color Palette - Neon Cyberpunk Vibes */
    --bg-dark: #050510;
    --bg-darker: #020205;
    --bg-card: rgba(255, 255, 255, 0.03);

    --accent-blue: #00d2ff;
    --accent-purple: #9d50bb;
    --accent-cyan: #00f2fe;
    --accent-green: #10b981;
    --accent-red: #f43f5e;
    --accent-yellow: #f59e0b;
    --accent-orange: #f97316;

    /* Traffic Lights */
    --traffic-red: #FF5F56;
    --traffic-yellow: #FFBD2E;
    --traffic-green: #27C93F;

    /* Brand Colors (Logos) */
    --brand-gpt: #10a37f;
    --brand-gemini: #4e8cff;
    --brand-claude: #d97757;

    /* SVG Fill Colors */
    --fill-white: #fff;
    --fill-dark: #0a0a0a;
    --fill-muted: #888;
    --fill-light-muted: #aaa;

    /* Functional Colors */
    --text-main: rgba(255, 255, 255, 0.95);
    --text-dim: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);

    /* Glassmorphism System */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --glass-blur: 16px;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;

    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-4 {
    gap: 2rem;
}

.relative {
    position: relative;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hidden-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .form {
        flex-direction: column;
        height: auto !important;
        padding: 0.5rem !important;
    }

    .form input {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid var(--glass-border);
        margin-bottom: 0.5rem;
    }

    .form button {
        width: 100% !important;
        justify-content: center;
    }

    .section {
        padding: 4rem 0 !important;
    }
}

/* Honeypot Spam Protection */
.hp-field {
    position: absolute;
    left: -5000px;
}

/* Background FX */
.glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 120vh;
    /* Extended to prevent cutoff */
    background: radial-gradient(circle at 50% 30%, rgba(0, 210, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.glow-side {
    position: absolute;
    top: 40%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(157, 80, 187, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Spacing & Layout System */
:root {
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 5rem;
    --space-2xl: 7rem;
    /* Heroes */

    --container-width: 1200px;
    --header-height: 80px;
    --header-offset: 1.5rem;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
}

/* Global Reset for strict rhythm */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Sections: Strict Vertical Rhythm */
.section {
    padding: var(--space-xl) 0;
    position: relative;
}

/* Typography Margins */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    font-family: 'Outfit', sans-serif;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-dim);
}

/* Section Titles: Centralized Control */
.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-lg) auto;
    /* Consistent bottom gap */
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.section-title p {
    font-size: 1.2rem;
}

/* Utility to force breaks */
.spacer-lg {
    height: var(--space-lg);
}

.spacer-xl {
    height: var(--space-xl);
}

/* Glass Card */
.glass-card {
    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-md);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 1.5rem;
    inset-inline: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.accent-text {
    color: var(--accent-blue);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 600;
}

.nav a:hover {
    color: white;
}

/* Dropdowns */
.dropdown-parent {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-parent>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-icon-sm {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.dropdown-parent:hover .nav-icon-sm {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dim);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.dropdown-menu i {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions .btn {
    border-radius: var(--radius-full);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.mobile-menu {
    position: absolute;
    top: 120%;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    display: none;
    /* JS toggles this */
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-nav-header {
    font-family: 'Outfit', sans-serif;
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.mobile-menu a {
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.mobile-menu a i {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: var(--transition-normal);
}

.btn-ghost {
    background: transparent;
    color: var(--text-dim);
}

.btn-ghost:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

/* High-End "Holographic" Button */
.btn-primary {
    position: relative;
    background: transparent;
    color: white;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 1. Solid Gradient Background */
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-bg, linear-gradient(135deg, var(--accent-blue), var(--accent-purple)));
    border-radius: inherit;
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

/* 2. Tech Border (Hidden by default, reveals on hover) */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    /* Border width */
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    background-size: 200% 100%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Hover State */
.btn-primary:hover::before {
    opacity: 0;
    /* Solid background vanishes */
    transform: scale(0.95);
    /* Slight "compression" into digital state */
}

.btn-primary:hover::after {
    opacity: 1;
    /* Animated border appears */
    animation: borderFlow 2s linear infinite;
}

.btn-primary:hover {
    color: var(--accent-blue);
    letter-spacing: 0.02em;
    /* Subtle tech expansion */
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
    /* Very clean, subtle glow */
    transform: translateY(0) !important;
}

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

    100% {
        background-position: 200% 50%;
    }
}

@keyframes flash {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    30% {
        opacity: 0.8;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 100px !important;
}

/* Ensure ::before/::after inherit specific border radius */
.btn-primary.btn-large::before,
.btn-primary.btn-large::after {
    border-radius: 100px !important;
}

/* Dashboard Preview (Browser Mockup) */
.browser-mockup {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    background: var(--bg-darker);
    margin-top: 4rem;
}

.browser-header {
    background: rgba(20, 20, 30, 0.9);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.dots {
    display: flex;
    gap: 6px;
}

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

.dot-red {
    background: var(--traffic-red);
}

.dot-yellow {
    background: var(--traffic-yellow);
}

.dot-green {
    background: var(--traffic-green);
}

.url-bar {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
    border: 1px solid var(--glass-border);
}

/* Removed redundant .section definition */

.hero {
    padding-top: calc(var(--header-height) + var(--header-offset) + var(--space-lg));
    padding-bottom: var(--space-xl);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Footer */
.footer {
    padding: 6rem 0 2rem;
    background: var(--bg-darker);
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-dim);
}

.social-links a:hover {
    color: var(--accent-blue);
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.link-group a {
    display: block;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
}

.link-group a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive Overrides */
@media (max-width: 968px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* Animations (Keep keyframes) */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Features & Cards */
.feature-card {
    padding: 2.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    /* Neutral 30% layer */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    color: var(--text-dim);
    /* Neutral icon color */
    transition: all 0.3s ease;
}

/* 10% Accent only on Hover/Active */
.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--card-color, white);
    /* Use the specific card color */
    color: var(--card-color, white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Pricing Page Specifics (Prep) */
.toggle-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 100px;
    display: inline-flex;
    position: relative;
    margin: 2rem auto;
}

.toggle-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: var(--transition-short);
}

.toggle-btn.active {
    background: white;
    color: black;
}

/* Pricing Page Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: flex-start;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
    z-index: 1;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.pricing-card:hover::after,
.pricing-card.featured::after {
    opacity: 1;
    animation: borderFlow 2s linear infinite;
}

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

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 210, 255, 0.02));
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.price {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-dim);
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    transition: opacity 0.2s ease;
}

.period {
    color: var(--text-dim);
    font-size: 1rem;
}

.features-list {
    flex: 1;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.features-list i {
    width: 20px;
    height: 20px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.features-list li strong {
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Pay Per Use Card */
.ppu-card {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2.5rem;
}

.ppu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.ppu-info h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ppu-info p {
    color: var(--text-dim);
    text-align: left;
}

.ppu-price {
    text-align: right;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.price-tag span {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 400;
}

@media (max-width: 768px) {
    .ppu-content {
        flex-direction: column;
        text-align: center;
    }

    .ppu-info p {
        text-align: center;
    }

    .ppu-price {
        text-align: center;
    }
}

/* --- Hero Form Polish --- */
.waitlist-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px;
    max-width: 500px;
    margin: 2.5rem auto 1rem;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.waitlist-card:focus-within {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 1px var(--accent-blue), 0 0 30px rgba(0, 210, 255, 0.2);
}

.form {
    display: flex;
    align-items: center;
    width: 100%;
}

.form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: white;
    outline: none;
}

.form input::placeholder {
    color: var(--text-muted);
}

.form button {
    border-radius: 100px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .waitlist-card {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }

    .form {
        flex-direction: column;
        gap: 1rem;
    }

    .form input {
        width: 100% !important;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border) !important;
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 0;
    }

    .form button {
        width: 100% !important;
        border-radius: 12px;
    }
}

/* --- Trust / Logo Strip --- */
.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.logo-item i {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
}

.logo-item:hover {
    opacity: 1;
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .logo-strip {
        gap: 1.5rem;
    }

    .logo-item {
        font-size: 0.9rem;
    }
}

/* --- Fixed Animations --- */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Standardized spacing system used instead of overrides */

/* --- Mobile Grid Fix --- */
@media (max-width: 968px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }
}

/* --- UI Polish: Steps, Features, FAQ --- */

/* 1. Steps to Dominance */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    border-left: 1px solid var(--glass-border);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-blue);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-blue), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.step-card p {
    color: var(--text-dim);
}

/* 2. Premium Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
    animation: borderFlow 2s linear infinite;
}

.feature-card:hover {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(0, 210, 255, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

/* 3. FAQ Accordion Look */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: default;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h4::before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.8rem;
    color: var(--accent-cyan);
}

.faq-item p {
    color: var(--text-dim);
    line-height: 1.6;
    padding-left: 2.25rem;
}

/* 4. Bottom CTA Polish */
.cta-box {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 210, 255, 0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-box h2,
.cta-box p,
.cta-box .btn {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

/* --- Fixed Tracking Section --- */
#tracking .container.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tracking-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.tracking-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.point h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: white;
}

.point p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Improved Chart Visual --- */
.tracking-visual {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
}

.flex-row {
    display: flex;
    gap: 0.5rem;
}

.visual-body {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    border-left: 1px solid var(--glass-border);
    padding-left: 1rem;
}

.bar-chart {
    display: flex;
    gap: 1rem;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    justify-content: space-around;
}

.bar {
    width: 12%;
    background: linear-gradient(180deg, var(--accent-blue), rgba(0, 210, 255, 0.2));
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s ease-out;
}

.bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px white;
}

/* --- Global Spacing Increase (User Request) --- */
/* Increased padding handled in main section definition */

@media (max-width: 968px) {
    #tracking .container.grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* --- Hero Redesign --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* More space for text */
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    text-align: left;
    max-width: 650px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.waitlist-card {
    margin: 2.5rem 0;
    max-width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.waitlist-card .form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    max-width: 480px;
}

.waitlist-card .form input {
    height: 3.5rem;
}

/* --- Browser Window Visual --- */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Disable interaction */
}

.browser-window {
    width: 100%;
    max-width: 550px;
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    /* Brighter top for light source */
    border-radius: 12px;
    box-shadow:
        0 0 0 1px rgba(0, 210, 255, 0.1),
        /* Subtle inner ring */
        0 0 20px rgba(0, 210, 255, 0.1),
        /* Close glow */
        0 0 60px rgba(0, 210, 255, 0.15),
        /* Wide ambient glow */
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
    /* Heavy drop shadow */
    overflow: hidden;
    position: relative;
}

.browser-window::before {
    /* Top edge gradient line */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent-blue) 20%,
            var(--accent-cyan) 50%,
            var(--accent-blue) 80%,
            transparent 100%);
    z-index: 10;
    opacity: 0.8;
}

/* Removed tilt transform for flat look */

.browser-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.traffic-lights {
    display: flex;
    gap: 6px;
}

.light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.light.red {
    background: var(--traffic-red);
}

.light.yellow {
    background: var(--traffic-yellow);
}

.light.green {
    background: var(--traffic-green);
}

.address-bar {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    font-family: monospace;
}

.browser-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Dashboard Items */
.dash-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dash-content {
    flex: 1;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.dash-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.dash-bar-fill {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 100px;
    width: 0;
    animation: fillBar 1.5s ease-out forwards;
}

/* Custom Colors for Icons/Bars */
.item-gpt .dash-icon {
    color: var(--brand-gpt);
    background: rgba(16, 163, 127, 0.1);
    /* Keep rgba for opacity or use calc if advanced */
}

.item-gpt .dash-bar-fill {
    background: var(--brand-gpt);
    animation-delay: 0.5s;
    width: 0;
    --target-width: 92%;
}

.item-gemini .dash-icon {
    color: var(--brand-gemini);
    background: rgba(78, 140, 255, 0.1);
}

.item-gemini .dash-bar-fill {
    background: var(--brand-gemini);
    animation-delay: 0.7s;
    width: 0;
    --target-width: 85%;
}

.item-claude .dash-icon {
    color: var(--brand-claude);
    background: rgba(217, 119, 87, 0.1);
}

.item-claude .dash-bar-fill {
    background: var(--brand-claude);
    animation-delay: 0.9s;
    width: 0;
    --target-width: 78%;
}

@keyframes fillBar {
    to {
        width: var(--target-width);
    }
}

@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 4rem 0 !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .browser-window {
        transform: none;
        margin-top: 2rem;
    }
}

.orbit-ring {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1;
}

.pulse-ring {
    fill: none;
    stroke: var(--accent-blue);
    stroke-width: 2;
    opacity: 0.3;
    transform-origin: center;
    animation: ringPulse 3s infinite ease-out;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 2rem;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .waitlist-card {
        margin: 2rem auto;
    }

    .trust-mini {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        /* Visualize first on mobile? Or last? Text first usually better for SEO/UX. Let's keep text first */
        order: 1;
    }
}

/* --- 3D Dashboard Visual --- */
.tilt-wrapper {
    perspective: 1000px;
    display: inline-block;
    padding: 20px;
    /* Reduced padding for fit */
    width: 100%;
    max-width: 600px;
}

#main-svg {
    width: 100%;
    height: auto;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(22, 22, 24, 0.8);
    /* Slight dark backing */
    backdrop-filter: blur(10px);
}

.tilt-wrapper:hover #main-svg {
    transform:
        rotateX(var(--rotateX)) rotateY(var(--rotateY)) scale(1.02);

    box-shadow:
        calc(var(--rotateY) * -1.5px) calc(var(--rotateX) * 1.5px + 20px) 40px rgba(0, 210, 255, 0.15);
    /* Blue glow on hover */
}

/* Animation Overrides for SVG */
#Ebene_2,
#Balken {
    transform-origin: center center;
    animation: mainScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mainScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.chart-bar {
    transform-box: fill-box;
    transform-origin: bottom;
    transform: scaleY(0);
    animation: barGrow 0.8s ease-out forwards;
}

@keyframes barGrow {
    to {
        transform: scaleY(1);
    }
}

#bar-1 {
    animation-delay: 0.2s;
}

#bar-2 {
    animation-delay: 0.3s;
}

#bar-3 {
    animation-delay: 0.4s;
}

#bar-4 {
    animation-delay: 0.5s;
}

#bar-5 {
    animation-delay: 0.6s;
}

#bar-6 {
    animation-delay: 0.7s;
}

#bar-7 {
    animation-delay: 0.8s;
}

#bar-8 {
    animation-delay: 0.9s;
}

#bar-9 {
    animation-delay: 1.0s;
}

.feature-group {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInFeature 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInFeature {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#feature-traffic {
    animation-delay: 1.2s;
}

#feature-ki {
    animation-delay: 1.4s;
}

#feature-rankings {
    animation-delay: 1.6s;
}

/* SVG Text Styles */
.cls-1 {
    fill: #e94546;
}

.cls-2 {
    fill: #11acd9;
}

.cls-3 {
    font-family: 'Inter', sans-serif;
    fill: #40ae5b;
    font-size: 12px;
    font-weight: 600;
}

.cls-4 {
    fill: #40ae5b;
    stroke: #aed4aa;
    stroke-miterlimit: 10;
    fill: none;
}

.cls-5 {
    fill: #40ae5b;
}

.cls-6 {
    font-size: 12px;
    fill: #fff;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.cls-7 {
    font-size: 12px;
    fill: #00d2ff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.cls-8 {
    font-size: 8px;
    fill: #888;
    font-family: 'Inter', sans-serif;
}

.cls-9 {
    fill: #aaa;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
}

.cls-10 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    fill: #fff;
    font-weight: 500;
}

.cls-12 {
    fill: #fff;
}

.cls-13 {
    fill: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.cls-14 {
    fill: #fff;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
}

.cls-15 {
    fill: #0a0a0a;
    stroke: #333;
    stroke-width: 1px;
}

/* Main Card BG */
.cls-16 {
    fill: none;
    stroke: #aed4aa;
    stroke-miterlimit: 10;
}

.cls-20 {
    fill: #87cfe7;
}

.cls-21 {
    fill: #87cfe7;
    fill-rule: evenodd;
}

.cls-24 {
    fill: #161b22;
}

/* Inner Row BG */
.cls-26 {
    fill: #111;
}

/* Header BG */
.cls-27 {
    fill: #7d5bc6;
}

/* Purple Badge */
.cls-29 {
    fill: #111;
    stroke: #333;
    stroke-width: 0.5px;
}

/* Search Bar */
.cls-30 {
    fill: #e0ac0f;
}

.cls-31 {
    fill: url(#barGradient);
}

/* Gradient Bars */
/* --- Fix Submenu Readability --- */
.dropdown-menu {
    background: rgba(10, 10, 15, 0.95) !important;
    /* Almost opaque */
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 1rem;
    min-width: 220px;
}

.dropdown-menu a {
    color: var(--text-dim);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.dropdown-menu i {
    color: var(--accent-blue);
    width: 18px;
    height: 18px;
}

/* --- Fix Hero Form Styling --- */
.waitlist-card .form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0;
    /* Removed padding to merge input and button */
    display: flex;
    align-items: center;
    max-width: 480px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
    overflow: hidden;
    /* Ensure button doesn't overflow corners */
    position: relative;
    z-index: 1;
}

.waitlist-card .form::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.waitlist-card .form:focus-within::after,
.waitlist-card .form:has(button:hover)::after {
    opacity: 1;
    animation: borderFlow 2s linear infinite;
}

.waitlist-card .form:focus-within,
.waitlist-card .form:has(button:hover) {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.waitlist-card .form input {
    flex: 1;
    /* Take up remaining space */
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 1.5rem;
    height: 3.5rem;
    font-size: 1rem;
    color: white;
    border-radius: 100px 0 0 100px !important;
    /* Only round left side */
}

.waitlist-card .form input:focus {
    outline: none;
    box-shadow: none;
}

/* Fix browser autofill styling */
.waitlist-card .form input:-webkit-autofill,
.waitlist-card .form input:-webkit-autofill:hover,
.waitlist-card .form input:-webkit-autofill:focus,
.waitlist-card .form input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: white !important;
    border-radius: 100px 0 0 100px !important;
    caret-color: white;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}

.waitlist-card .form button {
    border-radius: 0 100px 100px 0 !important;
    padding: 0 2rem !important;
    height: 3.5rem !important;
    /* Full height match */
    margin: 0 !important;
    /* No gaps */
    box-shadow: none !important;
    /* Clean flush look */
}

.waitlist-card .form button:hover::after {
    opacity: 0 !important;
}

.waitlist-card .form button:hover {
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .waitlist-card .form {
        border-radius: 16px;
        /* Boxier on mobile if stacked */
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .waitlist-card .form input {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 0;
    }

    .waitlist-card .form button {
        width: 100%;
        height: 3.5rem !important;
        border-radius: 12px !important;
    }
}

/* --- Blog Single Page --- */
.blog-single-page {
    padding-top: calc(var(--header-height) + 5rem);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breadcrumbs a {
    color: var(--text-dim);
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs i {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.blog-post-hero {
    margin-bottom: 3.5rem;
}

.blog-post-hero .badge {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.blog-post-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    max-width: 1000px;
    line-height: 1.1;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta i {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
}

.blog-content-card {
    padding: 4rem;
    width: 100%;
}

.text-white {
    color: var(--text-main) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-dim {
    color: var(--text-dim) !important;
}

/* --- Browser Tabs & Content --- */
.browser-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 1rem;
    gap: 1rem;
}

.browser-tab {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.browser-tab:hover {
    color: white;
}

.browser-tab.active {
    color: white;
    border-bottom-color: var(--accent-blue);
}

.browser-tab.active.tab-gpt {
    border-bottom-color: var(--brand-gpt);
}

.browser-tab.active.tab-gemini {
    border-bottom-color: var(--brand-gemini);
}

.browser-tab.active.tab-claude {
    border-bottom-color: var(--brand-claude);
}

.tab-icon {
    width: 16px;
    height: 16px;
}

/* Prompt List */
.browser-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ranking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: transform 0.2s;
}

.ranking-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.rank-info {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.rank-position {
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dim);
}

/* Rankings: Uniform simple colors */
.rank-number {
    font-size: 1.2rem;
    color: var(--text-dim);
    /* Default dim */
}

/* Rank 1 is white/bright, others remain dim. No rainbow colors. */
.rank-1 .rank-number {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.rank-2 .rank-number,
.rank-3 .rank-number {
    color: var(--text-muted);
}

/* --- Animated Analytics Logo --- */
.analytics-logo-icon {
    width: 24px;
    height: 24px;
    color: white;
}

/* Bars: Start invisible, grow on load */
.analytics-logo-icon .bar {
    transform-box: fill-box;
    transform-origin: center bottom;
    transform: scaleY(0);
}

.analytics-logo-icon .bar-1 {
    animation: barGrowIn 0.4s ease-out 0.1s forwards;
}

.analytics-logo-icon .bar-2 {
    animation: barGrowIn 0.4s ease-out 0.25s forwards;
}

.analytics-logo-icon .bar-3 {
    animation: barGrowIn 0.4s ease-out 0.4s forwards;
}

/* Hover: Pulse animation */
.logo:hover .analytics-logo-icon .bar,
.footer-logo:hover .analytics-logo-icon .bar {
    animation: barPulse 0.8s ease-in-out infinite;
}

@keyframes barGrowIn {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

@keyframes barPulse {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.7);
    }
}

/* ============================================
   AI COST CALCULATOR STYLES
   ============================================ */

.calculator-wrapper {
    padding: 2rem;
    margin-top: 2rem;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.calculator-providers h4,
.calculator-results h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

/* Provider Groups */
.provider-group {
    margin-bottom: 0.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.provider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.provider-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.provider-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.provider-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.provider-icon svg {
    width: 20px;
    height: 20px;
}

.provider-header span {
    font-weight: 600;
    color: white;
}

.expand-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.provider-group.expanded .expand-icon {
    transform: rotate(180deg);
}

/* Model List */
.model-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.provider-group.expanded .model-list {
    max-height: 300px;
}

.model-item {
    display: flex;
    align-items: center;
    padding: 0.7rem 1rem 0.7rem 3.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.model-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.model-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    accent-color: var(--accent-blue);
    cursor: pointer;
}

.model-name {
    flex: 1;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.model-item input:checked+.model-name {
    color: white;
}

.model-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
}

/* Calculator Results */
.calculator-results {
    padding: 1.5rem;
}

/* Frequency Options */
.frequency-options {
    display: flex;
    gap: 0.75rem;
}

.frequency-option {
    flex: 1;
    cursor: pointer;
}

.frequency-option input {
    display: none;
}

.frequency-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    text-align: center;
}

.frequency-option:hover .frequency-card {
    border-color: rgba(255, 255, 255, 0.2);
}

.frequency-option input:checked+.frequency-card {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.frequency-card strong {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.frequency-option input:checked+.frequency-card strong {
    color: white;
}

.frequency-card span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.calc-input-group {
    margin-bottom: 1.5rem;
}

.calc-input-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.calc-input-group input[type="number"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

.calc-input-group input[type="number"]::-webkit-outer-spin-button,
.calc-input-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.calc-input-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.token-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.token-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

/* Selected Models List */
.selected-models {
    margin-bottom: 1.5rem;
}

.selected-models h5 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

#selected-models-list {
    min-height: 60px;
    max-height: 150px;
    overflow-y: auto;
}

.no-selection {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

.selected-model-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    margin: 0.25rem;
}

/* Cost Breakdown */
.cost-breakdown {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-dim);
}

.cost-row span:last-child {
    font-family: monospace;
    font-size: 1.1rem;
}

.cost-row.total span:first-child {
    font-weight: 600;
    color: white;
}

.cost-row.total span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Savings Note */
.savings-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem !important;
    background: rgba(245, 158, 11, 0.1) !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.savings-note i {
    flex-shrink: 0;
    margin-top: 2px;
}

.savings-note p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.5;
}

.savings-note strong {
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calculator-wrapper {
        padding: 1.5rem;
    }
}

/* History Options */
.history-options {
    display: flex;
    gap: 0.75rem;
}

.history-option {
    flex: 1;
    cursor: pointer;
}

.history-option input {
    display: none;
}

.history-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    text-align: center;
}

.history-option:hover .history-card {
    border-color: rgba(255, 255, 255, 0.2);
}

.history-option input:checked+.history-card {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.history-card strong {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.history-option input:checked+.history-card strong {
    color: white;
}

.history-price {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: monospace;
}

@media (max-width: 600px) {
    .history-options {
        flex-direction: column;
    }

    .history-card {
        padding: 0.6rem;
    }
}

/* ============================================
   2-STEP CALCULATOR STYLES
   ============================================ */

.calculator-step {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Header */
.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.step-number {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.step-header h3 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

.step-subtitle {
    width: 100%;
    color: var(--text-dim);
    margin: 0.5rem 0 0 0;
    font-size: 0.95rem;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dim);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.provider-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
}

.provider-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.provider-title .provider-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.provider-title span {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

/* Coming Soon Provider */
.provider-section.coming-soon {
    opacity: 0.5;
    pointer-events: none;
}

.coming-soon-badge {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
}

.model-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.model-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Model Card - Hidden Checkbox, Active State Only */
.model-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.model-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

/* Hide the checkbox */
.model-card input[type="checkbox"] {
    display: none;
}

/* Active state when checked */
.model-card:has(input:checked) {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.model-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.model-card-name {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: color 0.2s;
}

.model-card:has(input:checked) .model-card-name {
    color: white;
}

.model-card-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.selected-count {
    color: var(--text-dim);
    font-size: 0.95rem;
}

#next-step-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Billing Toggle in Step 2 */
.billing-toggle {
    margin-bottom: 1.5rem;
}

.billing-toggle.centered {
    display: flex;
    justify-content: center;
}

.billing-toggle .toggle-container {
    justify-content: center;
}

/* Centered Step Header */
.step-header.centered {
    justify-content: center;
    position: relative;
}

.step-header.centered .back-btn {
    position: absolute;
    left: 0;
}

.step-header-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Step 2 Two-Column Layout */
.step2-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

.config-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-column {
    position: relative;
}

.order-summary.sticky {
    position: sticky;
    top: 2rem;
}

/* Frequency Options */
.frequency-options {
    display: flex;
    gap: 0.75rem;
}

.frequency-option {
    flex: 1;
    cursor: pointer;
}

.frequency-option input {
    display: none;
}

.frequency-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    text-align: center;
}

.frequency-option:hover .frequency-card {
    border-color: rgba(255, 255, 255, 0.2);
}

.frequency-option input:checked+.frequency-card {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.frequency-card strong {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.frequency-option input:checked+.frequency-card strong {
    color: white;
}

.frequency-card span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Config Grid (fallback) */
.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.config-section {
    padding: 1.5rem;
}

.config-section h4 {
    font-size: 1.1rem;
    color: white;
    margin: 0 0 0.5rem 0;
}

.config-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 1rem 0;
}

/* Prompts Options */
.prompts-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.prompts-option {
    cursor: pointer;
}

.prompts-option input {
    display: none;
}

.prompts-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    text-align: center;
}

.prompts-option:hover .prompts-card {
    border-color: rgba(255, 255, 255, 0.2);
}

.prompts-option input:checked+.prompts-card {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.prompts-card strong {
    font-size: 1.2rem;
    color: var(--text-dim);
}

.prompts-option input:checked+.prompts-card strong {
    color: white;
}

.prompts-card span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Order Summary */
.order-summary {
    padding: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.order-summary h4 {
    font-size: 1.1rem;
    color: white;
    margin: 0 0 1rem 0;
    text-align: center;
}

.summary-models {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-model-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-total span:first-child {
    font-weight: 600;
    color: white;
}

.summary-total span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step2-layout {
        grid-template-columns: 1fr;
    }

    .order-summary.sticky {
        position: static;
    }
}

@media (max-width: 600px) {
    .models-grid {
        grid-template-columns: 1fr;
    }

    .prompts-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .frequency-options {
        flex-direction: column;
    }

    .step-header h3 {
        font-size: 1.2rem;
    }

    .step-header.centered .back-btn {
        position: static;
        margin-bottom: 1rem;
    }

    .step-header.centered {
        flex-direction: column;
    }
}