/* CSS Reset & Developer Blueprint Variables */
:root {
    --bg-dark: #07080c;
    --panel-bg: #0d0f15;
    --panel-raised: #141721;
    --border-color: #1e2330;
    --border-highlight: #2f374c;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Neon & Developer Accents */
    --accent: #f59e0b;
    --accent-purple: #8b5cf6;
    /* Amber */
    --accent-glow: rgba(245, 158, 11, 0.4);
    --accent-green: #10b981;
    /* Success Green */
    --accent-red: #f43f5e;
    /* Danger/Alert Red */
    --accent-blue: #3b82f6;
    /* Info Blue */
    --glass-bg: rgba(7, 8, 12, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);

    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-heading: 'Bricolage Grotesque', 'Space Grotesque', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation Bar */
header {
    background-color: rgba(7, 8, 12, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

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

.logo-icon {
    font-size: 20px;
    color: var(--accent);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: #fbbf24;
    border-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--border-highlight);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

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

/* Hero Section / Split Playground Dashboard */
.hero-dashboard {
    position: relative;
    z-index: 2;
    padding: 140px 0 90px 0;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    z-index: 1;
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(245, 158, 11, 0.07);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-mono);
    margin-bottom: 20px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.shiny-text {
    background: linear-gradient(110deg, var(--accent) 30%, #fff 50%, var(--accent) 70%);
    background-size: 200% auto;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    animation: shine 3s linear infinite;
}

.subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}

/* Terminal Installation Widget */
.terminal-widget {
    background-color: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
}

.terminal-header {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.terminal-title {
    color: var(--text-muted);
    font-size: 11px;
    font-family: var(--font-mono);
    margin-left: 8px;
}

.terminal-body {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-body code {
    font-family: var(--font-mono);
    color: #e2e8f0;
    font-size: 13.5px;
}

.prompt {
    color: var(--accent);
    font-family: var(--font-mono);
    margin-right: 6px;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.copy-btn:hover {
    color: var(--text-primary);
}

/* Hero Right: Playground Window */
.playground-window {
    background-color: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    height: 380px;
    display: flex;
    flex-direction: column;
}

.window-header {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border-color);
}

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

.window-dot.red {
    background-color: rgba(244, 63, 94, 0.4);
}

.window-dot.yellow {
    background-color: rgba(245, 158, 11, 0.4);
}

.window-dot.green {
    background-color: rgba(16, 185, 129, 0.4);
}

.window-title {
    color: var(--text-secondary);
    font-size: 11px;
    font-family: var(--font-mono);
    margin-left: 8px;
}

.playground-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    flex: 1;
    overflow: hidden;
}

/* Playground Left Panel: Control */
.playground-control {
    border-right: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: rgba(0, 0, 0, 0.1);
}

.control-header {
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.symbol-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.symbol-btn {
    text-align: left;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 12px;
    transition: var(--transition-smooth);
}

.symbol-btn:hover {
    border-color: var(--border-highlight);
    background-color: rgba(255, 255, 255, 0.04);
}

.symbol-btn.active {
    border-color: var(--accent);
    background-color: rgba(245, 158, 11, 0.05);
    color: var(--text-primary);
}

.telemetry-box {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
}

.telemetry-header {
    font-family: var(--font-heading);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 4px;
}

.telemetry-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.telemetry-row strong {
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.severity-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: var(--font-mono);
}

.severity-badge.high {
    background-color: rgba(244, 63, 94, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.severity-badge.medium {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.severity-badge.low {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Playground Right Panel: Canvas */
.playground-graph {
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.graph-canvas {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-node {
    width: 80px;
    height: 80px;
    background-color: rgba(245, 158, 11, 0.05);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    font-size: 10px;
    font-weight: bold;
    font-family: var(--font-mono);
    color: var(--text-primary);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}

.orbit-path {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-path.r1 {
    width: 140px;
    height: 140px;
    animation: spin 45s linear infinite;
}

.orbit-path.r2 {
    width: 210px;
    height: 210px;
    animation: spin-reverse 60s linear infinite;
}

.orbit-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--panel-raised);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    /* Hide text, only display circle dot */
    cursor: pointer;
    transform: rotate(var(--angle)) translate(70px) rotate(calc(-1 * var(--angle)));
    transition: var(--transition-smooth);
}

.orbit-node.inactive {
    opacity: 0.15;
}

.orbit-path.r1 .orbit-node {
    border-color: var(--accent-blue);
}

.orbit-path.r2 .orbit-node {
    border-color: var(--accent-green);
    transform: rotate(var(--angle)) translate(105px) rotate(calc(-1 * var(--angle)));
}

.orbit-node:hover {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    box-shadow: 0 0 10px #ffffff;
}

/* Tooltip on hover */
.orbit-node::after {
    content: attr(data-name);
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--panel-raised);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 8px;
    padding: 3px 6px;
    border-radius: 3px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.orbit-node:hover::after {
    opacity: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Bento Grid Features Section */
.features {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 34px;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    max-width: 580px;
    margin: 0 auto 52px auto;
    font-size: 15px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(260px, auto);
    gap: 24px;
}

.bento-card {
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
}

.bento-card::before, .price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(245, 158, 11, 0.12), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

.bento-card:hover::before, .price-card:hover::before {
    opacity: 1;
}

.bento-body, .price-header, .price-features, .feature-header {
    position: relative;
    z-index: 1;
}

.bento-card:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.12), inset 0 0 20px rgba(245, 158, 11, 0.05), 0 0 20px rgba(245, 158, 11, 0.3);
    transform: translateY(-4px);
}

.bento-card.col-span-2 {
    grid-column: span 2;
}

.bento-card.col-span-1 {
    grid-column: span 1;
}

.bento-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-body p {
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 24px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-icon {
    font-size: 20px;
    color: var(--accent);
}

.feature-header h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
}

/* Bento telemetric elements styling */
.bento-telemetry-demo {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    margin-top: auto;
}

.telemetry-bar {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    display: flex;
    gap: 16px;
}

.telemetry-bar .text-orange {
    color: var(--accent);
}

.telemetry-bar .text-green {
    color: var(--accent-green);
}

.telemetry-code {
    padding: 12px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    line-height: 1.5;
}

.t-keyword {
    color: #f472b6;
}

.t-string {
    color: #34d399;
}

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

/* Language Cloud inside Bento Card */
.language-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.lang-tag {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 11.5px;
}

/* MCP Status Badge */
.mcp-badge {
    background-color: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    padding: 10px 14px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* PR comment preview module */
.pr-preview-box {
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    margin-top: auto;
}

.pr-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 12px;
    font-size: 11.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bot-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 9px;
    color: var(--text-muted);
}

.pr-body {
    padding: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pr-body code {
    font-family: var(--font-mono);
    color: var(--accent);
}

/* Pricing Grid */
.pricing {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.15);
    transform: translateY(-6px);
}

.price-card.featured {
    border: 1.5px solid var(--accent);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, rgba(0, 0, 0, 0) 100%), var(--glass-bg);
}

.price-card.featured:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.25);
    transform: translateY(-6px);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    z-index: 2;
}

.price-header {
    margin-bottom: 24px;
}

.price-header h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    white-space: nowrap;
}

.price-amount span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.price-header p {
    font-size: 12.5px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 14px;
    color: var(--text-secondary);
}

.price-features li i {
    color: var(--accent-green);
    font-size: 11px;
    margin-top: 3px;
}

/* CLI & Docs Section */
.docs-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.step-item {
    margin-bottom: 28px;
}

.step-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 6px;
}

.step-item p {
    color: var(--text-secondary);
    font-size: 13.5px;
    margin-bottom: 10px;
}

.step-item pre {
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 4px;
    overflow-x: auto;
}

.step-item pre code {
    font-family: var(--font-mono);
    color: #e2e8f0;
    font-size: 13px;
}

/* Code Preview Terminal */
.code-terminal {
    background-color: #08090d;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.code-header {
    background-color: rgba(255, 255, 255, 0.01);
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.code-body {
    padding: 18px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.5;
    color: #cbd5e1;
    overflow-x: auto;
}

.c-blue {
    color: #60a5fa;
}

.c-yellow {
    color: #fbbf24;
}

.c-green {
    color: #34d399;
}

.c-purple {
    color: #c084fc;
}

/* Privacy and Code Governance Section */
.privacy-section {
    padding: 80px 0;
}

.privacy-card {
    background-color: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 44px;
}

.privacy-card h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 12px;
}

.privacy-card p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 14.5px;
}

.privacy-grid-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
}

.p-item h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 6px;
}

.p-item p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.p-link-container {
    font-size: 13px;
    color: var(--text-secondary);
}

.p-link-container a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.p-link-container a:hover {
    color: #fbbf24;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    padding: 36px 0;
    background-color: #040507;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: var(--text-muted);
}

.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-right a:hover {
    color: var(--text-secondary);
}

/* Custom Section Layouts */
.audience-grid {
    grid-template-columns: repeat(3, 1fr);
}

.step-card {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.step-number {
    font-size: 32px;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 38px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .bento-grid, .audience-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.col-span-2 {
        grid-column: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
        gap: 32px;
    }

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

    nav {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 30px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .privacy-grid-details {
        grid-template-columns: 1fr;
    }

    .step-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .step-number {
        text-align: left;
    }
}

/* Fade Up Reveals (for cards and containers) */
.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-fade.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1.reveal-fade {
    transition-delay: 0.1s;
}

.reveal-delay-2.reveal-fade {
    transition-delay: 0.2s;
}

.reveal-delay-3.reveal-fade {
    transition-delay: 0.3s;
}

/* Cinematic Scroll Reveals (for text) */
.reveal-text {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    background: transparent;
}

.reveal-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.reveal-text.active .reveal-inner {
    transform: translateY(0);
}

.reveal-delay-1 .reveal-inner {
    transition-delay: 0.1s;
}

.reveal-delay-2 .reveal-inner {
    transition-delay: 0.2s;
}

.reveal-delay-3 .reveal-inner {
    transition-delay: 0.3s;
}

/* Mouse Tracker Glow */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(calc(var(--mouse-x, 0) * 1px - 50%), calc(var(--mouse-y, 0) * 1px - 50%)) scale(var(--glow-scale, 1));
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
    will-change: transform;
}

.cursor-glow.glow-active {
    --glow-scale: 0.5;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
}

/* Custom Cursor Dot */
.cur-dot {
    position: fixed;
    top: 0; left: 0;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #fff;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, background 0.25s;
    will-change: width, height, transform;
}
.cur-dot.big {
    width: 48px; height: 48px;
    background: rgba(245, 158, 11, 0.15);
    border: 2px solid var(--accent);
}

/* Animated Gradient Field */
#ambient-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    filter: blur(80px) saturate(140%);
    pointer-events: none;
    will-change: transform;
}

.orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.15), transparent 60%);
}

.orb-1 {
    width: 45vw;
    height: 45vw;
    top: -10%;
    left: 10%;
    animation: lava1 12s ease-in-out infinite alternate;
}

.orb-2 {
    width: 40vw;
    height: 50vw;
    bottom: -20%;
    right: 10%;
    animation: lava2 15s ease-in-out infinite alternate;
}

.orb-3 {
    width: 50vw;
    height: 35vw;
    top: 40%;
    left: 30%;
    animation: lava3 18s ease-in-out infinite alternate;
}

.orb-4 {
    width: 35vw;
    height: 35vw;
    bottom: 10%;
    left: -10%;
    animation: lava1 14s ease-in-out infinite alternate-reverse;
}

@keyframes lava1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(15vw, 20vh) scale(1.2, 0.9);
    }

    66% {
        transform: translate(-10vw, 40vh) scale(0.9, 1.2);
    }

    100% {
        transform: translate(10vw, 10vh) scale(1.1, 1.1);
    }
}

@keyframes lava2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-20vw, -20vh) scale(0.8, 1.2);
    }

    66% {
        transform: translate(15vw, -35vh) scale(1.3, 0.9);
    }

    100% {
        transform: translate(-10vw, -10vh) scale(1, 1);
    }
}

@keyframes lava3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(25vw, -15vh) scale(1.1, 1.1);
    }

    66% {
        transform: translate(5vw, 25vh) scale(0.9, 1.3);
    }

    100% {
        transform: translate(-15vw, -5vh) scale(1.2, 0.8);
    }
}

/* Grain Overlay */
#grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Site Footer Styles */
.site-footer {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--primary-color);
}
.footer-socials {
    display: flex;
    gap: 24px;
    justify-content: center;
}
.footer-socials a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
}
.footer-socials a:hover {
    color: var(--primary-color);
}
.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
}
