:root {
    /* --- Core Palette: Industrial Dark --- */
    --bg-void: #030303;
    --bg-panel: #0a0a0a;
    --bg-surface: #111111;
    
    /* --- Accents: High Voltage --- */
    --accent-primary: #00ff9d; /* Electric Mint */
    --accent-secondary: #00b8ff; /* Cyber Blue */
    --accent-alert: #ff3333;
    --accent-warn: #ffcc00;

    /* --- Typography --- */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-display: 'Space Grotesk', sans-serif;

    /* --- UI Elements --- */
    --border-dim: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    --glass: rgba(10, 10, 10, 0.7);
    --blur: 12px;
    
    --container: 1280px;
    --header-h: 80px;
    
    /* --- Effects --- */
    --glow-primary: 0 0 20px rgba(0, 255, 157, 0.3);
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default; /* Custom cursor handling later if needed */
}

::selection {
    background: var(--accent-primary);
    color: #000;
}

body {
    background-color: var(--bg-void);
    color: #ffffff;
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.5;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-primary); }

/* --- Ambient Effects (The "Industrial Tech" Feel) --- */
.ambient-light {
    position: fixed;
    top: -20%; left: 50%;
    width: 80vw; height: 80vh;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.05) 0%, transparent 60%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.grid-floor {
    position: fixed;
    bottom: 0; left: 0; width: 100%; height: 40vh;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    perspective: 500px;
    transform: perspective(500px) rotateX(60deg) translateY(100px) scale(2);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
    mask-image: linear-gradient(to top, black, transparent);
}

.scanlines {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
}

/* --- UI Frames (Corners) --- */
.ui-frame {
    position: fixed;
    width: 20px; height: 20px;
    border: 2px solid var(--border-light);
    z-index: 9990;
    pointer-events: none;
    transition: all 0.5s var(--transition);
}
.top-left { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.top-right { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.bottom-left { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.bottom-right { bottom: 20px; right: 20px; border-left: none; border-top: none; }

/* --- Loading Screen --- */
.loading .loader-screen {
    opacity: 1; pointer-events: all;
}
.loader-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.loader-content { width: 300px; font-family: var(--font-mono); }
.loader-bar { height: 2px; background: #333; margin-bottom: 10px; position: relative; overflow: hidden; }
.bar-fill {
    position: absolute; top: 0; left: 0; height: 100%; background: var(--accent-primary);
    width: 0%;
    animation: loadProgress 2s ease-in-out forwards;
}
.loader-text { font-size: 0.8rem; letter-spacing: 2px; color: var(--accent-primary); margin-bottom: 5px; }
.loader-data { display: flex; justify-content: space-between; font-size: 0.7rem; color: #666; }

@keyframes loadProgress { 0% { width: 0; } 50% { width: 40%; } 100% { width: 100%; } }

/* --- Typography Utilities --- */
h1, h2, h3 { font-weight: 700; color: #fff; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.highlight { color: var(--accent-primary); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    height: 48px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--transition);
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent-primary);
    color: #000;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--glow-primary);
}

.btn-glare {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}
.btn-primary:hover .btn-glare { left: 200%; transition: 0.5s; }

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border-light);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}
.btn-outline:hover { background: rgba(0, 255, 157, 0.1); }
.full-width { width: 100%; }

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border-dim);
    color: #888;
    font-size: 0.75rem;
    padding: 10px 16px;
}
.btn-ghost:hover { border-color: var(--accent-secondary); color: var(--accent-secondary); background: rgba(0,184,255,0.04); }
.btn-endpoints { margin-top: 10px; letter-spacing: 1.5px; }

/* Login Dropdown */
.login-dropdown { position: relative; display: inline-block; }
.login-dropdown #login-trigger { display: inline-flex; align-items: center; cursor: pointer; }

.login-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 260px;
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,255,157,0.05);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s var(--transition);
    z-index: 1000;
}

.login-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 22px;
    width: 12px;
    height: 12px;
    background: var(--bg-panel);
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    transform: rotate(45deg);
}

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

.login-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}

.login-menu a:hover { background: rgba(0,255,157,0.06); }

.login-menu strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    color: #fff;
    margin-bottom: 2px;
}

.login-menu small {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 0.5px;
}

.lm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px currentColor;
}
.lm-dot.start    { background: #00b8ff; color: #00b8ff; }
.lm-dot.business { background: #00ff9d; color: #00ff9d; }
.lm-dot.nocode   { background: #ffcc00; color: #ffcc00; }

/* WhatsApp Floating Action Button */
.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6);
    z-index: 9998;
    transition: transform 0.3s var(--transition), box-shadow 0.3s;
    text-decoration: none;
    animation: waPulse 2.2s ease-out infinite;
}
.wa-fab svg { width: 32px; height: 32px; }
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6); animation: none; }
.wa-fab:hover .wa-fab-tip { opacity: 1; transform: translateX(0); pointer-events: auto; }

.wa-fab-tip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translate(8px, -50%);
    background: #0a0a0a;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--transition);
}
.wa-fab-tip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #0a0a0a;
    border-right: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}

@keyframes waPulse {
    0%   { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.6); }
    70%  { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 640px) {
    .wa-fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
    .wa-fab svg { width: 28px; height: 28px; }
    .wa-fab-tip { display: none; }
}

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; width: 100%; height: var(--header-h);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-glass {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--glass); backdrop-filter: blur(var(--blur));
    z-index: -1;
}
.nav-container { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 38px; height: 38px; object-fit: contain; display: block; filter: drop-shadow(0 0 12px rgba(0, 255, 157, 0.25)); }
.logo-type { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.04em; display: flex; align-items: center; gap: 0;}
.logo-mega { color: #fff; }
.logo-type .version-tag { margin-left: 10px; }
.version-tag { font-family: var(--font-mono); font-size: 0.7rem; color: #666; font-weight: 400; padding-top: 4px; }

.nav-links { display: flex; gap: 40px; }
.nav-item {
    font-family: var(--font-sans); font-size: 0.9rem; color: #888;
    position: relative; overflow: hidden; transition: color 0.3s;
}
.nav-item::before {
    content: attr(data-text); position: absolute; top: 100%; left: 0; color: var(--accent-primary);
    transition: top 0.3s var(--transition);
}
.nav-item:hover { color: transparent; }
.nav-item:hover::before { top: 0; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.link-tech { font-family: var(--font-mono); font-size: 0.8rem; color: #666; letter-spacing: 0.05em; }
.link-tech:hover { color: #fff; }
.icon-brackets { color: var(--accent-primary); opacity: 0.5; }

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding-top: var(--header-h);
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute; right: -10%; top: 20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 184, 255, 0.1) 0%, transparent 70%);
    filter: blur(80px); z-index: 0;
}

.hero-container {
    display: grid; grid-template-columns: 2fr 0.55fr; gap: 30px;
    align-items: center;
    width: 100%;
}

.status-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--border-light); padding: 6px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.02);
}
.status-dot { width: 6px; height: 6px; background: var(--accent-primary); border-radius: 50%; box-shadow: 0 0 8px var(--accent-primary); animation: blink 2s infinite; }
.status-text { font-family: var(--font-mono); font-size: 0.75rem; color: #aaa; letter-spacing: 0.05em; }

.hero-badges { display: flex; flex-direction: row; align-items: center; gap: 12px; margin-bottom: 30px; flex-wrap: nowrap; }
.hero-badges .status-badge { margin-bottom: 0; flex-shrink: 0; }
.hero-badges .status-text { font-size: 0.7rem; }
.meta-badge {
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    transition: all 0.3s var(--transition);
    flex-shrink: 0;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: #fff;
    border-radius: 100px;
}
.meta-badge:hover { transform: translateY(-1px); box-shadow: 0 0 18px rgba(0,132,255,0.4); }
.meta-badge img { height: 15px; width: auto; display: block; }
.meta-badge span { font-family: var(--font-mono); font-size: 0.75rem; color: #0a0a0a; letter-spacing: 0.05em; font-weight: 600; white-space: nowrap; }

@media (max-width: 640px) {
    .hero-badges { flex-wrap: wrap; }
}

.btn-meta { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.btn-meta-icon { width: 18px; height: 18px; flex-shrink: 0; }

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem; line-height: 1.05; text-transform: uppercase;
    margin-bottom: 24px;
}
.line-1 { display: block; color: #fff; }
.line-2 {
    display: block; 
    background: linear-gradient(to right, #888, #fff, #888); 
    background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

.hero-desc {
    font-size: 1.15rem; color: #888; max-width: 540px; margin-bottom: 40px;
}

.hero-cta-group { display: flex; flex-direction: row; align-items: center; gap: 14px; margin-bottom: 60px; flex-wrap: nowrap; }
.hero-cta-group .btn { flex-shrink: 0; }
@media (max-width: 640px) {
    .hero-cta-group { flex-wrap: wrap; }
}

.cli-command {
    background: #000; border: 1px solid var(--border-light);
    height: 48px; padding: 0 20px; display: flex; align-items: center; gap: 12px;
    font-family: var(--font-mono); color: #aaa; font-size: 0.9rem;
    cursor: pointer; transition: 0.2s;
}
.cli-command:hover { border-color: #666; color: #fff; }
.cli-prompt { color: var(--accent-secondary); }
.cli-copy-icon { opacity: 0.5; }

.hero-stats {
    display: flex; gap: 30px; border-top: 1px solid var(--border-dim); padding-top: 30px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: #fff; }
.stat-label { font-size: 0.75rem; color: #555; letter-spacing: 0.1em; margin-top: 4px; }
.stat-separator { width: 1px; height: 40px; background: var(--border-dim); }

/* --- Hero Visual (Interface Panel) --- */
.hero-visual { position: relative; perspective: 1000px; }
.interface-panel {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.1s;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.panel-header {
    background: #151515; padding: 12px 20px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border-dim);
}
.panel-title { font-family: var(--font-mono); font-size: 0.8rem; color: #666; }
.panel-controls { display: flex; gap: 10px; color: #444; font-size: 0.8rem; }

.panel-body { padding: 12px; font-family: var(--font-mono); font-size: 0.5rem; line-height: 1.45; background: #050505; }
.code-line { white-space: pre; }
/* Syntax Highlighting */
.c-dim { color: #444; user-select: none; margin-right: 15px; }
.c-purple { color: #c678dd; }
.c-blue { color: #61afef; }
.c-yellow { color: #e5c07b; }
.c-green { color: #98c379; }
.c-orange { color: #d19a66; }
.c-comment { color: #5c6370; font-style: italic; }

.typing-cursor { display: inline-block; width: 8px; height: 16px; background: var(--accent-primary); animation: blink 1s step-end infinite; vertical-align: middle; }

.panel-footer {
    background: #111; padding: 8px 20px; border-top: 1px solid var(--border-dim);
    display: flex; gap: 20px; font-family: var(--font-mono); font-size: 0.7rem; color: #555;
}
.p-stat.active { color: var(--accent-primary); }

/* --- Tech Stack Marquee (Animated) --- */
.marquee-section {
    padding: 40px 0; 
    background: #000; 
    border-top: 1px solid var(--border-dim); 
    border-bottom: 1px solid var(--border-dim);
    overflow: hidden; /* Hide overflow */
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 80px; /* Space between items */
    width: max-content; /* Allow track to be as wide as needed */
    animation: marquee 30s linear infinite; /* Smooth continuous scroll */
}

.marquee-item {
    font-family: var(--font-display); 
    font-size: 1.5rem; 
    font-weight: 700;
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
    -webkit-text-stroke: 0;
    white-space: nowrap; /* Prevent line breaks */
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); } /* Move 1/3 because we have 3 sets */
}

/* --- Features (Capabilities) --- */
.features-section { padding: 120px 0; }
.section-header { margin-bottom: 80px; max-width: 600px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 15px; font-family: var(--font-display); }
.section-subtitle { color: #888; font-size: 1.1rem; }

.grid-layout {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}

.tech-card {
    background: var(--bg-surface); position: relative; padding: 40px 30px;
    transition: transform 0.3s;
}

.link-wablast {
    color: var(--accent-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 157, 0.4);
    padding-bottom: 1px;
    white-space: nowrap;
    transition: all 0.2s var(--transition);
}
.link-wablast:hover {
    color: #fff;
    border-bottom-color: var(--accent-primary);
    text-shadow: 0 0 12px rgba(0, 255, 157, 0.5);
}
.tech-card:hover { transform: translateY(-5px); }

.card-border {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: 1px solid var(--border-dim);
    transition: border-color 0.3s; pointer-events: none;
}
.tech-card:hover .card-border { border-color: var(--accent-primary); }

.icon-box {
    width: 50px; height: 50px; background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-primary); margin-bottom: 25px;
    border: 1px solid var(--border-dim);
}
.tech-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 15px; }
.tech-card p { color: #888; font-size: 0.95rem; margin-bottom: 30px; line-height: 1.6; }

.card-meta { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border-dim); }
.card-meta span { font-family: var(--font-mono); font-size: 0.7rem; color: #666; display: block; margin-bottom: 8px; }
.meta-bar { height: 2px; background: #222; width: 100%; }
.meta-bar .fill { height: 100%; background: var(--accent-primary); }

/* --- Integration --- */
.integration-section { padding: 100px 0; border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim); background: radial-gradient(circle at right, rgba(20,20,20,1) 0%, #000 50%); }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-desc { font-size: 1.1rem; color: #999; margin-bottom: 40px; }

.tech-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.tech-list li { display: flex; gap: 15px; align-items: flex-start; }
.check-icon {
    width: 20px; height: 20px; border: 1px solid var(--accent-primary);
    position: relative; margin-top: 4px;
}
.check-icon::after {
    content: ''; position: absolute; top: 3px; left: 3px; width: 12px; height: 12px; background: var(--accent-primary);
}
.li-content strong { display: block; color: #fff; margin-bottom: 4px; font-family: var(--font-display); }
.li-content span { color: #666; font-size: 0.9rem; }

/* Visual Integration Grid */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.logo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dim);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.logo-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.1);
    transform: translateY(-5px);
}

.logo-card img {
    max-width: 60%;
    max-height: 60%;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.logo-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Floating Animation for Grid */
.logo-card:nth-child(2) { transform: translateY(-10px); }
.logo-card:nth-child(5) { transform: translateY(10px); }
.logo-card:nth-child(8) { transform: translateY(-5px); }

/* --- Pricing --- */
.pricing-section { padding: 120px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: flex-end; }

.price-card {
    background: var(--bg-surface); border: 1px solid var(--border-dim); padding: 40px;
    position: relative;
}
.price-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 50px rgba(0,255,157,0.05);
    transform: scale(1.05);
}
.featured-label {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent-primary); color: #000;
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; padding: 4px 12px;
}

.plan-name { font-family: var(--font-mono); color: #666; font-size: 0.9rem; margin-bottom: 20px; }
.plan-price { display: flex; align-items: baseline; color: #fff; }
.currency { font-size: 1.5rem; margin-right: 4px; font-weight: 400; color: #666; }
.amount { font-size: 3.5rem; font-weight: 700; font-family: var(--font-display); line-height: 1; }
.cents { font-size: 1.5rem; color: #888; }
.plan-period { color: #555; font-family: var(--font-mono); font-size: 0.8rem; margin-top: 10px; }
.plan-unit { color: var(--accent-primary); font-family: var(--font-mono); font-size: 0.75rem; margin-top: 8px; letter-spacing: 0.5px; opacity: 0.85; }

.price-body { margin-top: 40px; }
.plan-features { list-style: none; margin-bottom: 40px; }
.plan-features li {
    padding: 12px 0; border-bottom: 1px solid var(--border-dim);
    color: #aaa; font-size: 0.95rem; display: flex; gap: 10px;
}
.plan-features li span { font-family: var(--font-mono); color: #fff; min-width: 30px; }

/* --- Footer --- */
.footer { background: #000; border-top: 1px solid var(--border-dim); margin-top: 100px; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }

.footer-brand p { color: #666; margin: 20px 0; max-width: 300px; }
.footer-socials { display: flex; gap: 20px; font-family: var(--font-mono); font-size: 0.8rem; }
.social-link { color: #fff; text-decoration: underline; text-decoration-color: #333; }
.social-link:hover { text-decoration-color: var(--accent-primary); color: var(--accent-primary); }

.footer-links h4 { font-family: var(--font-mono); font-size: 0.8rem; color: #444; margin-bottom: 25px; }
.footer-links a { display: block; color: #888; margin-bottom: 15px; font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-bar { border-top: 1px solid var(--border-dim); padding: 30px 0; font-family: var(--font-mono); font-size: 0.75rem; color: #444; }
.bar-content { display: flex; justify-content: space-between; }

/* --- Animations --- */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes shine { to { background-position: 200% center; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Responsive overrides moved to css/responsive.css */
