:root {
    /* Base Colors - Deep Dark Developer Theme (Supabase inspired) */
    --bg-base: #0F1115;
    --bg-surface: #181C24;
    --bg-surface-glass: rgba(24, 28, 36, 0.6);
    --border-dim: rgba(255, 255, 255, 0.08);
    --border-bright: rgba(255, 255, 255, 0.15);
    
    /* Brand Accents - Tech & Math (Pinecone/Qdrant inspired) */
    --cube-cyan: #00F0FF;
    --cube-cyan-dim: rgba(0, 240, 255, 0.15);
    --cube-purple: #8A2BE2;
    --cube-purple-dim: rgba(138, 43, 226, 0.15);
    
    /* Typography */
    --text-primary: #FFFFFF;
    --text-secondary: #9BA1B0;
    --text-muted: #646A7A;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Typography Base */
h1, h2, h3, h4 {
    letter-spacing: -0.03em;
    font-weight: 700;
    line-height: 1.2;
}

.text-cyan { color: var(--cube-cyan); }
.text-purple { color: var(--cube-purple); }
.text-white { color: var(--text-primary); }
.text-sm { font-size: 0.875rem; color: var(--text-secondary); }
.font-mono { font-family: 'Fira Code', monospace; }

.text-gradient {
    background: linear-gradient(135deg, var(--cube-cyan), var(--cube-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Ambient Effects */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}
.glow-primary {
    top: -100px;
    left: -200px;
    background: radial-gradient(circle, var(--cube-cyan-dim), transparent 60%);
}
.glow-secondary {
    top: 300px;
    right: -200px;
    background: radial-gradient(circle, var(--cube-purple-dim), transparent 60%);
}
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, var(--border-dim) 1px, transparent 1px),
        linear-gradient(to bottom, var(--border-dim) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: -2;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0) 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0) 80%);
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 100px 0;
}
.alt-bg {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}
.section-header {
    margin-bottom: 48px;
    max-width: 600px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}
.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-base);
    border: 1px solid transparent;
}
.btn-primary:hover {
    background: #E0E0E0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}
.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-dim);
}
.btn-secondary:hover {
    border-color: var(--border-bright);
    background: rgba(255,255,255,0.05);
}
.w-100 {
    width: 100%;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-dim);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}
.logo-cube-small {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--cube-cyan), var(--cube-purple));
    border-radius: 6px;
    box-shadow: 0 0 15px var(--cube-cyan-dim);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    margin-bottom: 64px;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}
.hero-subtitle strong {
    color: var(--text-primary);
    display: block;
    margin-top: 12px;
}
.hero-actions {
    display: flex;
    gap: 16px;
}

/* CSS 3D Cube (3x3x3 Representation) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}
.cube-container {
    perspective: 1200px;
    width: 240px;
    height: 240px;
}
.cube-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}
@keyframes rotateCube {
    0% { transform: rotateX(-20deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(340deg) rotateY(360deg) rotateZ(360deg); }
}
.cube-face {
    position: absolute;
    width: 240px;
    height: 240px;
    border: 2px solid rgba(0, 240, 255, 0.4);
    background: rgba(15, 17, 21, 0.7);
    backdrop-filter: blur(4px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
    padding: 4px;
}
.cube-face div {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 2px;
    transition: var(--transition);
}
.cube-face .active-node {
    background: rgba(138, 43, 226, 0.8);
    border-color: var(--cube-cyan);
    box-shadow: 0 0 15px var(--cube-purple);
}
.face-front  { transform: translateZ(120px); }
.face-back   { transform: rotateY(180deg) translateZ(120px); }
.face-right  { transform: rotateY(90deg) translateZ(120px); }
.face-left   { transform: rotateY(-90deg) translateZ(120px); }
.face-top    { transform: rotateX(90deg) translateZ(120px); }
.face-bottom { transform: rotateX(-90deg) translateZ(120px); }


/* Metrics Section */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}
.metric-card {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-dim);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.metric-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-2px);
}
.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}
.metric-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Fira Code', monospace;
    letter-spacing: -0.02em;
}
.metric-value small {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.7;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.col-span-2 {
    grid-column: span 2;
}
.card {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-dim);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.card-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-dim);
    display: flex;
    align-items: center;
    gap: 12px;
}
.card-icon {
    font-size: 1.5rem;
}
.card-header h3 {
    font-size: 1.125rem;
}
.card-body {
    padding: 24px;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th, .data-table td {
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-dim);
}
.data-table th {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.data-table tr:last-child td {
    border-bottom: none;
}
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}
.badge-win {
    background: var(--cube-cyan-dim);
    color: var(--cube-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

/* Ranking List */
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ranking-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    border: 1px solid var(--border-dim);
}
.ranking-item.first {
    background: var(--cube-cyan-dim);
    border-color: rgba(0, 240, 255, 0.3);
}
.rank-pos {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
}
.ranking-item.first .rank-pos {
    color: var(--cube-cyan);
}
.rank-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rank-details strong {
    font-size: 1rem;
    margin-bottom: 4px;
}
.rank-details span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-family: 'Fira Code', monospace;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    border-color: var(--cube-cyan);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(138,43,226,0.05), transparent 60%);
    pointer-events: none;
}
.feature-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-dim);
}
.feature-icon.icon-cyan {
    border-color: var(--cube-cyan-dim);
    box-shadow: inset 0 0 15px var(--cube-cyan-dim);
}
.feature-icon.icon-purple {
    border-color: var(--cube-purple-dim);
    box-shadow: inset 0 0 15px var(--cube-purple-dim);
}
.feature-icon.icon-white {
    border-color: rgba(255,255,255,0.1);
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.feature-card.wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 32px;
}
.feature-card.wide .feature-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* API Console */
.api-console {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--border-radius);
    padding: 32px;
}
.api-input textarea {
    width: 100%;
    height: 150px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-bright);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
    resize: none;
    outline: none;
}
.api-input textarea:focus {
    border-color: var(--cube-cyan);
}
.api-window {
    background: #0A0C10;
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.api-header {
    background: #111317;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}
.api-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }
.api-title {
    margin-left: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Fira Code', monospace;
}
.api-window pre {
    padding: 16px;
    margin: 0;
    font-size: 0.875rem;
    overflow-x: auto;
    flex-grow: 1;
}

/* =========================================
   Interactive Playground Panels
   ========================================= */
.cube-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.cube-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--border-radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cube-panel-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dim);
}
.cube-3d-wrapper {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
    width: 240px;
    margin: auto auto 0 auto; /* Pushes it to the bottom, centers horizontally */
    transform: scale(0.65); /* Scale down the 240px faces to fit perfectly */
}
.cube-3d-wrapper .cube-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCubeRandom 24s infinite alternate ease-in-out;
}
@keyframes rotateCubeRandom {
    0%   { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    20%  { transform: rotateX(-45deg) rotateY(120deg) rotateZ(20deg); }
    40%  { transform: rotateX(60deg) rotateY(240deg) rotateZ(-30deg); }
    60%  { transform: rotateX(120deg) rotateY(40deg) rotateZ(90deg); }
    80%  { transform: rotateX(-90deg) rotateY(-180deg) rotateZ(-120deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}
.dot-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cube-cyan);
    box-shadow: 0 0 8px var(--cube-cyan);
    animation: pulseLive 2s infinite;
}
@keyframes pulseLive {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.demo-input {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-bright);
    color: var(--text-primary);
    padding: 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Fira Code', monospace;
    outline: none;
    transition: var(--transition);
}
.demo-input:focus {
    border-color: var(--cube-cyan);
    box-shadow: 0 0 10px var(--cube-cyan-dim);
}
.demo-stats {
    margin-top: 24px;
    background: rgba(0,0,0,0.2);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-dim);
}
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}
.addr-hex {
    font-family: 'Fira Code', monospace;
    color: var(--cube-cyan);
    background: rgba(0, 240, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--cube-cyan-dim);
}

.honeypot-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    padding: 24px;
}
.honeypot-header {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.hp-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 4px;
}
.hp-bit {
    aspect-ratio: 1;
    border-radius: 2px;
    transition: all 0.2s;
}
.hp-active {
    background: var(--cube-purple);
    box-shadow: 0 0 5px var(--cube-purple);
}
.hp-sentinel {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    cursor: crosshair;
}
.hp-sentinel:hover {
    background: rgba(239, 68, 68, 0.5);
}
.hp-triggered {
    background: #ef4444 !important;
    box-shadow: 0 0 15px #ef4444 !important;
    transform: scale(1.2);
}

.detect-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.detect-card {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-dim);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}
.detect-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Fira Code', monospace;
}
.detect-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.pricing-card:hover {
    border-color: var(--border-bright);
}
.pricing-card.highlight {
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid var(--cube-purple);
    box-shadow: 0 10px 40px var(--cube-purple-dim);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cube-purple);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}
.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}
.pricing-card .price .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.price-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
    min-height: 48px;
}
.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}
.pricing-features .check {
    color: var(--cube-cyan);
    font-weight: 800;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 3rem; }
    .hero-actions { justify-content: center; }
    .hero-metrics { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: 1fr; }
    .col-span-2 { grid-column: span 1; }
    .api-console { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    /* Seção do cubo: colapsa 2 colunas */
    .tsx-gen-8 { grid-template-columns: 1fr !important; }
    .tsx-gen-14 { grid-template-columns: 1fr 1fr !important; }
    .tsx-gen-41 { grid-template-columns: 1fr !important; }
}

/* Mobile CTA: escondido no desktop */
.nav-mobile-cta { display: none; }

@media (max-width: 768px) {
    .nav-container { height: auto; flex-wrap: nowrap; justify-content: space-between; padding: 12px 16px; }
    .nav-links { display: none; }
    .nav-mobile-cta { display: flex; gap: 8px; align-items: center; }
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cube-demo-grid { grid-template-columns: 1fr; }
    /* Tabelas: scroll horizontal */
    .data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; border: 0; }
    .data-table td, .data-table th { padding: 10px 8px; font-size: 0.8rem; }
    /* Seção cubo e stats */
    .tsx-gen-8 { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .tsx-gen-14 { grid-template-columns: 1fr !important; }
    .tsx-gen-41 { grid-template-columns: 1fr !important; }
    /* Pipeline de arquitetura: wrap */
    .tsx-gen-36 { font-size: 0.72rem; overflow-x: auto; white-space: nowrap; }
    /* Cards de pricing */
    .tsx-gen-65 { grid-template-columns: 1fr !important; }
    /* Seção features */
    .features-grid { grid-template-columns: 1fr !important; }
    /* Títulos de seção */
    .section-header h2 { font-size: 1.8rem; }
    /* Container: padding lateral menor */
    .container { padding-left: 16px; padding-right: 16px; }
    /* Bento: força 1 coluna */
    .bento-grid, .tsx-gen-41 { grid-template-columns: 1fr !important; }
    .col-span-2 { grid-column: span 1 !important; }
    /* API console */
    .api-console { grid-template-columns: 1fr; }
    /* Cube 3D: centraliza */
    .hero-visual { display: flex; justify-content: center; margin-top: 2rem; }
    .cube-container { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .hero-metrics { grid-template-columns: 1fr 1fr; gap: 8px; }
    .metric-value { font-size: 1.8rem; }
    .hero-badge { font-size: 0.72rem; padding: 6px 12px; }
    .section-header h2 { font-size: 1.6rem; }
    .card { padding: 1rem; }
    .tsx-gen-14 { grid-template-columns: 1fr !important; }
}


/* --- Extracted TSX Inline Styles --- */
.tsx-gen-1 { text-decoration: none; color: inherit; }
.tsx-gen-2 { margin-right: 0.5rem; border: 1px solid var(--cube-cyan); color: var(--cube-cyan); }
.tsx-gen-3 { margin-top: 1.5rem; padding: 1rem; background: rgba(0,240,255,0.05); border: 1px solid rgba(0,240,255,0.15); border-radius: 12px; font-size: 0.8rem; color: #9BA1B0; }
.tsx-gen-4 { color: var(--cube-cyan); font-weight: 600; }
.tsx-gen-5 { color: #e5e7eb; }
.tsx-gen-6 { color: var(--cube-cyan); }
.tsx-gen-7 { padding-top: 2rem; padding-bottom: 2rem; }
.tsx-gen-8 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.tsx-gen-9 { color: var(--cube-cyan); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.tsx-gen-10 { font-size: 1.8rem; line-height: 1.3; margin-bottom: 1rem; }
.tsx-gen-11 { background: linear-gradient(135deg,#00F0FF,#8A2BE2); webkit-background-clip: text; webkit-text-fill-color: transparent; }
.tsx-gen-12 { color: #9BA1B0; margin-bottom: 1rem; line-height: 1.7; }
.tsx-gen-13 { color: #9BA1B0; margin-bottom: 1.5rem; line-height: 1.7; }
.tsx-gen-14 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.tsx-gen-15 { background: rgba(0,240,255,0.05); border: 1px solid rgba(0,240,255,0.15); border-radius: 10px; padding: 0.75rem; font-size: 0.78rem; }
.tsx-gen-16 { color: #9BA1B0; margin-bottom: 0.25rem; }
.tsx-gen-17 { color: #e5e7eb; font-weight: 600; }
.tsx-gen-18 { background: rgba(138,43,226,0.05); border: 1px solid rgba(138,43,226,0.2); border-radius: 10px; padding: 0.75rem; font-size: 0.78rem; }
.tsx-gen-19 { background: var(--bg-surface); border: 1px solid var(--border-dim); border-radius: 16px; padding: 1.5rem; }
.tsx-gen-20 { color: var(--cube-cyan); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.tsx-gen-21 { font-size: 0.8rem; line-height: 2.2; }
.tsx-gen-22 { color: #6b7280; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.tsx-gen-23 { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.tsx-gen-24 { background: rgba(0,240,255,0.1); border: 1px solid rgba(0,240,255,0.3); border-radius: 6px; padding: 0.2rem 0.6rem; color: var(--cube-cyan); font-weight: 700; }
.tsx-gen-25 { color: #6b7280; }
.tsx-gen-26 { background: rgba(138,43,226,0.1); border: 1px solid rgba(138,43,226,0.3); border-radius: 6px; padding: 0.2rem 0.6rem; color: var(--cube-purple); font-weight: 700; }
.tsx-gen-27 { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: 6px; padding: 0.2rem 0.6rem; color: #22c55e; font-weight: 700; }
.tsx-gen-28 { border-left: 2px solid rgba(0,240,255,0.3); padding-left: 0.75rem; margin-bottom: 0.75rem; }
.tsx-gen-29 { font-size: 0.7rem; color: #6b7280; margin-left: 1rem; }
.tsx-gen-30 { border-left: 2px solid rgba(138,43,226,0.3); padding-left: 0.75rem; margin-bottom: 0.75rem; }
.tsx-gen-31 { color: var(--cube-purple); }
.tsx-gen-32 { border-left: 2px solid rgba(34,197,94,0.3); padding-left: 0.75rem; }
.tsx-gen-33 { color: #22c55e; }
.tsx-gen-34 { margin-top: 1.25rem; padding: 0.85rem; background: rgba(0,240,255,0.04); border: 1px solid rgba(0,240,255,0.15); border-radius: 10px; font-size: 0.75rem; }
.tsx-gen-35 { color: #9BA1B0; }
.tsx-gen-36 { background: var(--bg-surface); border: 1px solid var(--border-dim); border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; font-size: 0.78rem; color: #9BA1B0; }
.tsx-gen-37 { color: var(--cube-cyan); margin-bottom: 0.75rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.tsx-gen-38 { color: #fbbf24; }
.tsx-gen-39 { color: #f87171; }
.tsx-gen-40 { margin-top: 0.75rem; color: #6b7280; }
.tsx-gen-41 { grid-template-columns: repeat(2,1fr); }
.tsx-gen-42 { margin-bottom: 1rem; }
.tsx-gen-43 { margin-top: 0.75rem; font-size: 0.7rem; color: #6b7280; }
.tsx-gen-44 { border-color: rgba(0,240,255,0.2); }
.tsx-gen-45 { background: var(--bg-surface); border: 1px solid var(--border-dim); border-radius: 16px; padding: 1.5rem; margin-top: 1.5rem; }
.tsx-gen-46 { color: var(--cube-purple); font-weight: 700; margin-bottom: 1rem; font-size: 0.85rem; }
.tsx-gen-47 { overflow-x: auto; }
.tsx-gen-48 { background: rgba(0,240,255,0.05); }
.tsx-gen-49 { background: rgba(0,240,255,0.08); }
.tsx-gen-50 { display: flex; gap: 8px; }
.tsx-gen-51 { border-radius: 8px; white-space: nowrap; padding: 0 24px; font-weight: 700; }
.tsx-gen-52 { margin-top: 16px; }
.tsx-gen-53 { color: #ef4444; }
.tsx-gen-54 { margin-top: 16px; padding: 12px; background: rgba(0, 240, 255, 0.05); border: 1px solid rgba(0, 240, 255, 0.2); border-radius: 8px; font-size: 0.8rem; color: #e5e7eb; min-height: 80px; display: flex; flex-direction: column; gap: 8px; }
.tsx-gen-55 { color: #6b7280; font-style: italic; }
.tsx-gen-56 { margin-top: 32px; }
.tsx-gen-57 { font-size: 0.5rem; color: var(--text-muted); }
.tsx-gen-58 { background: #ef4444; }
.tsx-gen-59 { margin-bottom: 24px; }
.tsx-gen-60 { margin-top: 24px; background: rgba(0,0,0,0.4); }
.tsx-gen-61 { margin-bottom: 8px; }
.tsx-gen-62 { margin-bottom: 16px; }
.tsx-gen-63 { max-width: 1200px; }
.tsx-gen-64 { margin-bottom: 3rem; }
.tsx-gen-65 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.tsx-gen-66 { background: var(--bg-surface); border: 1px solid var(--border-dim); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; }
.tsx-gen-67 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
.tsx-gen-68 { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.tsx-gen-69 { font-size: 1rem; color: #9ba1b0; font-weight: 400; }
.tsx-gen-70 { color: #9ba1b0; font-size: 0.85rem; line-height: 1.5; margin-bottom: 2rem; min-height: 4rem; }
.tsx-gen-71 { list-style: none; padding: 0; margin: 0 0 2rem 0; font-size: 0.85rem; color: #d1d5db; display: flex; flex-direction: column; gap: 1rem; flex-grow: 1; }
.tsx-gen-72 { display: flex; gap: 0.5rem; }
.tsx-gen-73 { display: flex; gap: 0.5rem; color: #6b7280; }
.tsx-gen-74 { background: #16a34a; color: #fff; border: 1px solid #15803d; width: 100%; text-align: center; border-radius: 8px; padding: 0.75rem; text-decoration: none; font-weight: 600; transition: background 150ms; }
.tsx-gen-74:hover { background: #15803d; }
.tsx-gen-75 { background: var(--bg-surface); border: 1px solid rgba(0, 240, 255, 0.4); box-shadow: 0 0 20px rgba(0, 240, 255, 0.1); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; position: relative; }
.tsx-gen-76 { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #00F0FF, #3b82f6); color: #000; font-size: 0.65rem; font-weight: 800; padding: 4px 12px; border-radius: 12px; letter-spacing: 0.05em; box-shadow: 0 4px 10px rgba(0,240,255,0.3); }
.tsx-gen-77 { background: linear-gradient(135deg, #a855f7, #0ea5e9); color: #fff; width: 100%; text-align: center; border-radius: 8px; padding: 0.75rem; border: none; font-weight: 600; text-decoration: none; }
.tsx-gen-78 { background: linear-gradient(135deg, #a855f7, #38bdf8); color: #fff; width: 100%; text-align: center; border-radius: 8px; padding: 0.75rem; border: none; font-weight: 600; text-decoration: none; }
.tsx-gen-79 { background: linear-gradient(135deg, #818cf8, #38bdf8); color: #fff; width: 100%; text-align: center; border-radius: 8px; padding: 0.75rem; border: none; font-weight: 600; text-decoration: none; }
