:root {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #e2e8f0;
    --primary-gold: #FFD700;
    --primary-cyan: #00f2ff;
    --primary-purple: #bd00ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-color: rgba(0, 242, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(93, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 242, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1 {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Components */
.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--glass-bg);
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge {
    background: var(--glass-bg);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Sections */
.hero {
    padding: 8rem 5% 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 500px;
    height: 400px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.code-block {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e5e5e5;
}

.code-block.large {
    font-size: 1rem;
}

.comment { color: #6a6a6a; }
.keyword { color: #ff79c6; }
.string { color: #f1fa8c; }

.status-indicator {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-cyan);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: inline-block;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 242, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); }
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.icon-box {
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

/* Deep Dive Sections */
.deep-dive {
    padding: 8rem 5%;
}

.deep-dive.alt-bg {
    background: rgba(255,255,255,0.01);
}

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

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.visual-content {
    flex: 1;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* New: Feature Lists in Deep Dives */
.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.feature-list li strong {
    color: var(--text-main);
}

.feature-list i {
    color: var(--primary-gold);
    width: 20px;
}

/* Chat Interface Visual */
.chat-interface {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    max-width: 80%;
}

.chat-message.user {
    background: rgba(255,255,255,0.05);
    align-self: flex-end;
    border-radius: 10px 10px 0 10px;
}

.chat-message.system {
    background: rgba(0, 242, 255, 0.1);
    align-self: flex-start;
    border-radius: 10px 10px 10px 0;
    color: var(--primary-cyan);
}

/* Asset Card Visual */
.asset-card {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    padding: 1.5rem;
}

.asset-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.icon-gold {
    color: var(--primary-gold);
}

.status-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

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

.value {
    color: var(--text-main);
    font-weight: 500;
}

.value.valid { color: #00ff9d; }
.value.pending { color: #ffbd00; }

/* Comparison Table */
.comparison {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.table-container {
    overflow-x: auto;
    padding: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

th {
    background: rgba(255,255,255,0.02);
    color: var(--text-main);
}

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

.highlight {
    background: rgba(0, 242, 255, 0.03);
    color: var(--text-main);
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: 5rem 5%;
    display: flex;
    justify-content: center;
}

.pricing-card {
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
    padding: 3rem;
}

.glow-border {
    border: 1px solid var(--primary-cyan);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.tier {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--primary-cyan);
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.period {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
}

.retainer {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.benefits li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    align-items: center;
}

.benefits i {
    color: var(--primary-cyan);
    width: 20px;
}

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

.micro-copy {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.7;
}

footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

/* New Layout Utilities */
.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.three-col {
    grid-template-columns: repeat(3, 1fr) !important;
}

.asset-image.small {
    height: 120px;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .three-col {
        grid-template-columns: 1fr !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding-top: 6rem;
    }
    
    .split-layout {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    h1 { font-size: 3rem; }
    
    .hero-visual {
        width: 100%;
        height: auto;
        margin-top: 3rem;
    }
    
    .glass-nav .nav-links {
        display: none; /* Simple hiding for mobile for now */
    }
}

/* Images & Backgrounds */
.background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.background-image-container .overlay {
    display: none; /* Removed - using image opacity only */
}

.asset-bg {
    position: relative;
    padding: 8rem 5%; /* Explicitly set padding to match .deep-dive */
    overflow: hidden;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Ensure content is above background images */
.container, .hero-content, .hero-visual, .pricing-card, h2, .table-container {
    position: relative;
    z-index: 2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #050505 0%, rgba(5,5,5,0.8) 50%, #050505 100%);
}

.deep-dive {
    position: relative;
    padding: 10rem 5%;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.asset-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.asset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.asset-card:hover .asset-image img {
    transform: scale(1.05);
}

.pill.gold {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}
