/* HilEX Landing Page - Global Styles */


:root {
    --bg-dark: #020617;
    /* Deep space navy */
    --accent-cyan: #00D8FF;
    --accent-cyan-hover: #00BFEB;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    /* slate-400 */
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    /* 5% white opacity */
    --glass-strong: rgba(255, 255, 255, 0.07);
}


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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-dark);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ---------------- Navbar ---------------- */
.navbar {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 8, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 16px;
    gap: 10px;
    width: 250px;
}

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

.search-bar input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: monospace;
    font-size: 0.85rem;
    width: 100%;
}

.search-bar input:focus {
    outline: none;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* ---------------- Hero Section ---------------- */
.hero {
    position: relative;
    padding: 80px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.hero-title .arrow {
    font-weight: 300;
    color: var(--text-muted);
    padding: 0 10px;
}

.text-glow {
    color: var(--accent-cyan);
    text-shadow: 0 0 25px var(--accent-cyan-glow);
    font-style: italic;
    padding-right: 8px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 700px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-cyan);
    color: #000000;
    border: none;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-cyan-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trial-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: monospace;
    letter-spacing: 0.5px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* ---------------- Definition Section ---------------- */
.definition-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.definition-content {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 50px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.definition-content .section-title {
    margin-bottom: 16px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.definition-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.definition-content p:last-child {
    margin-bottom: 0;
    color: var(--text-main);
    font-weight: 500;
}

/* ---------------- Use Cases Cards ---------------- */
.use-cases {
    padding: 40px 0 100px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.1);
}

.card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.card ul {
    list-style: none;
}

.card ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.card ul li::before {
    content: "→";
    color: var(--accent-cyan);
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* ---------------- Proof Section ---------------- */
.proof-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.proof-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-top: -10px;
}

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

.proof-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
}

.proof-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    border-bottom: 2px dotted rgba(34, 197, 94, 0.3);
    display: inline-block;
    padding-bottom: 8px;
    transition: all 0.3s ease;
}

.proof-label {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.proof-asset {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 24px;
}

.proof-asset strong {
    font-weight: 800;
    margin-right: 6px;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #22c55e;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    transition: all 0.3s ease;
}

.proof-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: monospace;
    font-size: 0.75rem;
}

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

.blueprint-value {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Dynamic Hover Colors for Proof Cards */
.card-copper {
    --hover-color: #f97316;
}

.card-lightspeed {
    --hover-color: #3b82f6;
}

.card-constellation {
    --hover-color: #a855f7;
}

.proof-card:hover {
    border-color: var(--hover-color);
}

.proof-card:hover .proof-score {
    color: var(--hover-color);
    border-bottom-color: var(--hover-color);
}

.proof-card:hover .progress-bar-fill {
    background: var(--hover-color);
    box-shadow: 0 0 15px var(--hover-color);
}

/* ---------------- How It Works Section ---------------- */
.how-it-works {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(10px);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.step-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ---------------- Core Features Section ---------------- */
.features-section {
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-box h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------------- Bespoke Section ---------------- */
.bespoke-section {
    padding: 60px 0 80px;
    background: rgba(0, 212, 255, 0.02);
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.bespoke-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bespoke-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.bespoke-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
    text-align: left;
}

.bespoke-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 10px;
}

.bespoke-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bespoke-card h3::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
}

.bespoke-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.bespoke-cta {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 900px) {

    .nav-links,
    .search-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .btn {
        width: 100%;
    }
}

/* Hero Stats Grid */
.hero-stats {
    padding: 20px 0 60px;
    position: relative;
    z-index: 10;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(15, 16, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-value {
    color: var(--accent-cyan);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Massive Glow text for hero */
.hero-title br {
    display: none;
    /* Hide on large screens by default, but let's just make it flow naturally */
}

.hero-title .text-glow-massive {
    color: var(--accent-cyan);
    text-shadow: 0 0 30px var(--accent-cyan-glow), 0 0 60px var(--accent-cyan-glow);
    font-style: italic;
    font-size: 5.5rem;
    display: block;
    line-height: 1;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-title .text-glow-massive {
        font-size: 3.5rem;
    }
}

/* Definition Grid */
.definition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.def-column {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: background 0.3s;
}

.def-column:hover {
    background: rgba(255, 255, 255, 0.03);
}

.def-column p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Elite Performers Enhancements */
.proof-card {
    text-align: left;
    padding: 40px 30px 24px;
}

.proof-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.7rem;
    padding: 6px 16px;
    border-bottom-right-radius: 10px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-family: monospace;
}

.proof-badge:empty {
    display: none;
}

.proof-score-wrapper {
    margin-bottom: 8px;
    margin-top: 10px;
}

.proof-score {
    border-bottom: 2px dotted rgba(34, 197, 94, 0.3);
    display: inline-block;
    padding-bottom: 4px;
}

/* Active glowing border effect */
.card-copper {
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1) inset, 0 0 20px rgba(0, 212, 255, 0.1);
}

.card-copper .proof-score {
    color: var(--accent-cyan);
    border-bottom-color: rgba(0, 212, 255, 0.3);
}

.card-copper .progress-bar-fill {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan-glow);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}





/* Compact Features Layout */
.features-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px;
}

.feature-icon-small {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-text h3 {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* FAQ Collapsible Enhancements */
.faq-grid details {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 30px;
    transition: background 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.faq-grid details:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(0, 212, 255, 0.2);
}

.faq-grid details[open] {
    padding-bottom: 24px;
}

.faq-grid summary {
    color: var(--accent-cyan);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    padding-right: 30px;
}

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

.faq-grid summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-grid details[open] summary::after {
    content: '−';
}

.faq-grid details p {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Remove old FAQ card non-collapsible styles */

/* Daily Insights Section */
.insights-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
    border-top: 1px solid var(--border-color);
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.insights-header .section-title {
    margin-bottom: 0;
    text-align: left;
}

.insights-badge {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    padding: 6px 12px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.insights-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.insight-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.insight-card.highlight {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.insight-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.insight-tag.watch {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.insight-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.insight-card h4 strong {
    color: #fff;
    margin-right: 6px;
}

.insight-stat {
    font-size: 1.8rem;
    font-weight: 800;
}

.insight-stat.green {
    color: #22c55e;
}

.insight-footer,
.insight-reason {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card-popular {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tier {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
}

.price-amount span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 8px;
}

.price-subheader {
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 800;
}

.bespoke-price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-full {
    width: 100%;
}

@media (max-width: 900px) {
    .price-card-popular {
        transform: translateY(0);
    }
}

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

.tracking-tighter {
    letter-spacing: -0.05em;
    font-weight: 900;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.glass-card-strong {
    background: var(--glass-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.glow-cyan {
    box-shadow: 0 0 20px rgba(0, 216, 255, 0.3), 0 0 40px rgba(0, 216, 255, 0.15);
}

.glow-cyan-sm {
    box-shadow: 0 0 10px rgba(0, 216, 255, 0.3), 0 0 20px rgba(0, 216, 255, 0.15);
}

.text-glow {
    text-shadow: 0 0 10px rgba(0, 216, 255, 0.5);
}

/* Background Grid Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(0, 216, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 216, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at top center, rgba(0, 216, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom center, rgba(0, 216, 255, 0.02) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Smooth transitions */
a,
button,
.glass-card,
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 216, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 216, 255, 0.1);
}

/* Footer Fixes */
.footer {
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 216, 255, 0.5);
}

.text-sm {
    font-size: 0.85rem;
    line-height: 1.5;
}

.text-slate-500 {
    color: #64748b;
}

.mt-2 {
    margin-top: 8px;
}

/* Pricing Card Override */
.price-card {
    background: var(--glass-bg);
}

/* Base override for backgrounds previously hardcoded to #0B0F19 */

/* Multi-color glows for Glass Cards */
.definition-grid .def-column:nth-child(1),
.features-compact-grid .feature-item:nth-child(1),
.bespoke-examples .bespoke-card:nth-child(1) {
    --glow-color: rgba(0, 216, 255, 0.3);
    /* Cyan */
    --border-hover: #00D8FF;
}

.definition-grid .def-column:nth-child(2),
.features-compact-grid .feature-item:nth-child(2),
.bespoke-examples .bespoke-card:nth-child(2) {
    --glow-color: rgba(168, 85, 247, 0.3);
    /* Purple */
    --border-hover: #a855f7;
}

.definition-grid .def-column:nth-child(3),
.features-compact-grid .feature-item:nth-child(3),
.bespoke-examples .bespoke-card:nth-child(3) {
    --glow-color: rgba(34, 197, 94, 0.3);
    /* Green */
    --border-hover: #22c55e;
}

.def-column:hover,
.feature-item:hover,
.bespoke-card:hover {
    border-color: var(--border-hover, #00D8FF) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color, rgba(0, 216, 255, 0.1)) !important;
}

.feature-item:hover .feature-icon-small {
    color: var(--border-hover, #00D8FF) !important;
    border-color: var(--glow-color, rgba(0, 216, 255, 0.3)) !important;
    box-shadow: 0 0 15px var(--glow-color, rgba(0, 216, 255, 0.3)) !important;
}