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

:root {
    --bg-dark: #0f1419;
    --bg-darker: #0b1729;
    --bg-card: #1c2d44;
    --bg-card-hover: #243550;
    --orange: #f5a623;
    --orange-bright: #ffb84d;
    --blue-accent: #3b82f6;
    --blue-glow: rgba(59, 130, 246, 0.15);
    --cyan: #06b6d4;
    --text-primary: #f0f2f5;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient-orange: linear-gradient(135deg, #f5a623, #ff6b35);
    --gradient-blue: linear-gradient(135deg, #3b82f6, #06b6d4);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #0b1729;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* centers logo within its area */
    margin-right: 32px;
    /* space from nav links */
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo-img {
    width: 280px;
    /* adjust as needed */
    height: auto;
    display: block;
}

.nav-logo .dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

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

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
    color: var(--orange);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 190px;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

/* Invisible bridge covers the gap so hover isn't lost when moving to the menu */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px !important;
    color: var(--text-secondary) !important;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary) !important;
}

.btn-cta {
    background: var(--gradient-orange);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.hero-text h1 .highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 20px;
    font-weight: 500;
    color: var(--orange);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.hero-text p {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    background: transparent;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-primary {
    background: var(--gradient-orange);
    color: #000;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

/* Hero visual */
/* Hero visual - PRISM Research Card */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.prism-research-card {
    background: rgba(15, 20, 25, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.prism-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--orange);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.prism-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.prism-header p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.prism-stats-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.prism-main-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prism-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.prism-stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.prism-stat-card.highlight {
    border-left: 3px solid var(--orange);
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.prism-stat-card.highlight .stat-value {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-detail {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.prism-sub-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.prism-sub-stat {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.sub-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--cyan);
}

.sub-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.prism-paper-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--gradient-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.prism-paper-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.hero-visual-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* Floating stats on hero */
.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 32px;
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat .label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 48px;
}

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

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ===== WHY NOW / WORLD MODELS ===== */
.why-now {
    background: var(--bg-darker);
}

.why-now-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.why-now-narrative h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-now-narrative p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}

.quote-block {
    border-left: 2px solid rgba(245, 166, 35, 0.4);
    padding: 12px 16px;
    margin: 16px 0;
    background: transparent;
    border-radius: 0;
}

.quote-block p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 6px;
}

.quote-block .attribution {
    font-size: 12px;
    font-style: normal;
    color: var(--text-muted);
    font-weight: 500;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.insight-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: var(--bg-card-hover);
}

.insight-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.insight-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.insight-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    margin-bottom: 0;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-accent);
}

.icon-orange {
    background: rgba(245, 166, 35, 0.15);
    color: var(--orange);
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
}

/* ===== THE PROBLEM ===== */
.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.problem-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.problem-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== HOW IT WORKS / PIPELINE ===== */
.pipeline-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-top: 20px;
}

.pipeline-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.pipeline-step::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 24px;
}

.pipeline-step:last-child::after {
    display: none;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 18px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.pipeline-step h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pipeline-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== DATA STREAMS ===== */
.streams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stream-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stream-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--orange);
}

.stream-card ul {
    list-style: none;
    padding: 0;
}

.stream-card ul li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.stream-card ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* ===== SHOWCASE DATASET ===== */
.showcase {
    background: var(--bg-darker);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.dataset-hero-card {
    background: linear-gradient(145deg, #1c2d44, #1a2a40);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.dataset-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1), transparent);
}

.dataset-hero-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dataset-hero-card .hours {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin: 20px 0 8px;
}

.dataset-hero-card .hours-label {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.dataset-specs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
}

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

.spec-row .spec-value {
    color: var(--text-primary);
    font-weight: 500;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: 8px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== DATA FORMATS ===== */
.formats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.format-badge {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.format-badge .icon {
    font-size: 18px;
}

.format-badge span {
    color: var(--text-primary);
}

.format-badge .sub {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 12px;
    margin-left: 4px;
}

/* ===== TECHNOLOGY ===== */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.camera-specs-card {
    background: linear-gradient(145deg, #1c2d44, #1a2a40);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.camera-specs-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.camera-specs-card .camera-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.spec-group {
    margin-bottom: 20px;
}

.spec-group-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.camera-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.camera-stat {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.camera-stat .val {
    font-size: 24px;
    font-weight: 800;
    color: var(--orange);
}

.camera-stat .lbl {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tech-narrative h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.tech-narrative p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.tech-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.tech-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.tech-feature h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.tech-feature p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== RESEARCH PAPERS ===== */
.research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.paper-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    position: relative;
}

.paper-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
    transform: translateY(-2px);
}

.paper-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.paper-badge-nvidia-cosmos {
    background: rgba(245, 166, 35, 0.15);
    color: var(--orange);
}

.paper-badge-nvidia-groot {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-accent);
}

.paper-badge-meta {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.paper-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.paper-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 16px;
}

.paper-abstract {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.paper-link {
    display: inline-block;
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.paper-link:hover {
    color: var(--orange-bright);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--orange);
    background: linear-gradient(145deg, var(--bg-card), rgba(245, 166, 35, 0.05));
}

.pricing-card.featured::before {
    content: 'GET STARTED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 20px;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 40px;
    font-weight: 800;
    margin: 16px 0 4px;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card .desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.pricing-btn-primary {
    background: var(--gradient-orange);
    color: #000;
    border: none;
}

.pricing-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.pricing-btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ===== ECOSYSTEM ===== */
.ecosystem {
    background: var(--bg-darker);
}

.eco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.eco-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.eco-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-4px);
}

.eco-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.eco-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CUSTOMERS ===== */
.customers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.customer-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.customer-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
    transform: translateY(-2px);
}

.customer-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--orange);
}

.customer-card .company-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.customer-card .funding-row {
    font-size: 12px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.customer-card .funding-row:last-child {
    border-bottom: none;
}

.customer-card .funding-label {
    color: var(--text-muted);
}

.customer-card .funding-value {
    color: var(--text-primary);
    font-weight: 600;
}

.competitors-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.competitors-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 36px;
    text-align: center;
}

.competitors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.competitor-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.competitor-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.competitor-card .company-size {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.competitor-card .advantage {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* ===== DATA PARTNER SECTION ===== */
.partners-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    padding: 60px;
    margin: 100px 0;
}

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

.partners-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.partners-content h2 .highlight {
    color: var(--blue-accent);
}

.partners-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

.partners-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.partner-stat {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-stat .stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--orange);
}

.partner-stat .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.partners-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.partner-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-orange);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.partner-step-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

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

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.team-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(245, 166, 35, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
}

.team-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.team-card .role {
    font-size: 13px;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== INVESTORS ===== */
.investors-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.investor-badge {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px 36px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #1a2a4a, #0f1f3a);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(245, 166, 35, 0.08), transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(59, 130, 246, 0.08), transparent 60%);
}

.cta-banner h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

/* ===== Hiring Form ===== */
.hiring-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50 / 50 */
    gap: 40px;
    align-items: stretch;
    /* both columns same height */
    justify-items: stretch;
    margin-top: 32px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.hiring-roles h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.hiring-form-card .form-row:first-of-type {
    margin-top: 0;
}

.hiring-roles h4 {
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.hiring-roles ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.hiring-form-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 18px 45px rgba(15, 20, 25, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.24);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.hiring-form-card h3 {
    font-size: 20px;
    margin-bottom: 0 0 16px;
}

.hiring-form-card .form-row:first-of-type {
    margin-top: 0;
}

/* Make inputs and selects shrink properly */
.hiring-form-card .form-row input,
.hiring-form-card .form-row select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-row label {
    font-size: 13px;
    color: var(--text-secondary);
}

.form-row input,
.form-row select {
    background: #020617;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 10px 12px;
    color: var(--text-primary);
    font-size: 14px;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5);
}

.hiring-form-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

/* Form Success & Error Messages */
.form-success-message,
.form-error-message {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-success-message h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-success-message p,
.form-error-message p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.success-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-orange);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

.form-error-message {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
    margin-bottom: 24px;
}

.form-error-message h3 {
    color: #ef4444;
    font-size: 18px;
    margin-bottom: 8px;
}

.form-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.phone-row {
    display: flex;
    gap: 8px;
}

.phone-row select {
    max-width: 140px;
}

/* Stack on small screens */
@media (max-width: 768px) {
    .hiring-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hiring-form-card {
        padding: 24px 20px;
        max-width: 100%;
    }

    .phone-row {
        flex-direction: column;
        align-items: stretch;
    }

    .phone-row select {
        max-width: 100%;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-darker);
    padding: 60px 48px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 320px;
    line-height: 1.6;
}

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

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
/* ===== HAMBURGER MENU ===== */
.nav-mobile-right {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-cta {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--orange);
}

.mobile-menu .btn-cta {
    font-size: 16px;
    padding: 14px 32px;
    margin-top: 8px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero {
        padding: 100px 32px 60px;
    }

    .why-now-grid {
        grid-template-columns: 1fr;
    }

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

    .try-dataset-grid {
        grid-template-columns: 1fr !important;
    }

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

    .problem-cards {
        grid-template-columns: 1fr;
    }

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

    .pipeline-steps {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .pipeline-step::after {
        display: none;
    }

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

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

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

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

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

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

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #offerings div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    nav {
        padding: 0 24px;
    }

    section {
        padding: 60px 24px;
    }

    .cta-banner {
        padding: 60px 24px;
    }

    .cta-banner h2 {
        font-size: 36px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-buttons {
        display: none !important;
    }

    .nav-mobile-right {
        display: flex;
    }

    .mobile-cta {
        display: inline-block;
        font-size: 13px;
        padding: 8px 16px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 96px 20px 48px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .tagline {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stat .number {
        font-size: 28px;
    }

    .pipeline-steps {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }

    .partners-section {
        padding: 36px 20px !important;
        margin: 40px 0 !important;
    }

    .partners-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .partners-content h2 {
        font-size: 28px;
    }

    .cta-banner {
        padding: 48px 20px !important;
    }

    .cta-banner h2 {
        font-size: 28px !important;
    }

    .cta-banner p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        text-align: center;
    }

    .camera-specs-card {
        padding: 28px 20px;
    }

    .camera-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .dataset-hero-card {
        padding: 32px 24px;
    }

    .dataset-hero-card .hours {
        font-size: 48px;
    }

    .formats-row {
        gap: 12px;
    }

    .format-badge {
        padding: 12px 16px;
        font-size: 13px;
    }

    .investor-badge {
        padding: 14px 20px;
        font-size: 14px;
    }

    footer {
        padding: 40px 20px 24px;
    }

    /* FAQ section override inline styles */
    #faq {
        padding: 60px 20px !important;
    }

    #faq h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 88px 16px 40px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
        max-width: 100%;
    }

    .tagline {
        font-size: 15px;
    }

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

    .hero-buttons a {
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat .number {
        font-size: 24px;
    }

    section {
        padding: 48px 16px;
    }

    nav {
        padding: 0 16px;
        height: 64px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .nav-logo .dot {
        width: 26px;
        height: 26px;
    }

    .mobile-menu {
        top: 64px;
        gap: 24px;
        padding: 32px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .section-label {
        font-size: 12px;
    }

    .problem-card {
        padding: 24px;
    }

    .problem-card h3 {
        font-size: 18px;
    }

    .stream-card {
        padding: 24px;
    }

    .paper-card {
        padding: 24px;
    }

    .pricing-card {
        padding: 28px;
    }

    .pricing-card .price {
        font-size: 32px;
    }

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

    .team-card {
        padding: 24px;
    }

    .partners-stats {
        grid-template-columns: 1fr;
    }

    .partner-stat .stat-value {
        font-size: 20px;
    }

    .cta-banner h2 {
        font-size: 24px !important;
    }

    .footer-links {
        flex-direction: column;
        gap: 28px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .why-now-narrative h3 {
        font-size: 22px;
    }

    .quote-block {
        padding: 16px 18px;
    }

    .quote-block p {
        font-size: 14px;
    }

    .tech-narrative h3 {
        font-size: 22px;
    }

    .insight-card {
        padding: 20px;
    }

    .eco-card {
        padding: 24px;
    }

    .competitor-card {
        padding: 20px;
    }

    .customer-card {
        padding: 20px;
    }

    .competitors-section {
        margin-top: 40px;
        padding-top: 40px;
    }

    .competitors-section h3 {
        font-size: 20px;
    }

    #faq {
        padding: 48px 16px !important;
    }

    #faq details {
        padding: 18px !important;
    }

    #faq summary {
        font-size: 15px !important;
    }
}

/* Tablet / small laptop: 769–1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    nav {
        padding: 0 20px;
        gap: 16px;
    }

    .nav-logo-img {
        min-width: 150px;
        /* smaller logo so it fits */
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .nav-buttons .btn-primary,
    .nav-buttons .btn-outline {
        padding: 8px 14px;
        font-size: 13px;
    }

    .btn-cta {
        padding: 4px;
    }
}

/* Additional extracted styles */
@media (max-width: 640px) {
    [style*="grid-template-columns: 1fr 1fr; gap: 40px;"] {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #offerings div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    #offerings div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    #partnerships .section-inner {
        display: grid;
        grid-template-columns: 1fr;
    }

    #partnerships>div>div {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}
/* ===== PRISM PAGE ===== */

/* Tighter section padding for PRISM page */
#problem, #stats, #pillars, #findings, #technical, #community {
    padding: 64px 48px;
}

/* Stat blocks */
.prism-stat-block {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.prism-stat-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
}
.prism-stat-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.prism-stat-block.orange::before { background: var(--gradient-orange); }
.prism-stat-block.cyan::before { background: linear-gradient(90deg, var(--cyan), #0ea5e9); }
.prism-stat-block.blue::before { background: linear-gradient(90deg, var(--blue-accent), #818cf8); }
.psb-value {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}
.prism-stat-block.orange .psb-value { color: var(--orange); }
.prism-stat-block.cyan .psb-value { color: var(--cyan); }
.prism-stat-block.blue .psb-value { color: var(--blue-accent); }
.psb-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pillar cards */
.pillar-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s;
}
.pillar-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}
.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pillar-body h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.pillar-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Finding cards */
.finding-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}
.finding-card:hover {
    border-color: rgba(245, 166, 35, 0.15);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}
.finding-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}
.finding-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}
.finding-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Resource cards */
.resource-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.resource-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}
.resource-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.resource-info {
    flex: 1;
    text-align: left;
}
.resource-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px;
}
.resource-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}
.resource-arrow {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: color 0.3s;
}
.resource-card:hover .resource-arrow {
    color: var(--orange);
}

.prism-page-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 48px 60px;
    position: relative;
    overflow: hidden;
}

.prism-bg-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: 1;
    animation: orbFloat 10s infinite alternate ease-in-out;
}

@keyframes orbFloat {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-45%, -55%) scale(1.1); }
}

.prism-hero-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 100px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.coming-soon-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.paper-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.paper-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.premium-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    margin-top: 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.05), transparent 50%);
    pointer-events: none;
}

.card-label {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.abstract-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px 24px;
}

.metric-item .val {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.metric-item .lab {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .paper-title { font-size: 36px !important; }
    .prism-hero-content[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 40px !important; }
    .metrics-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .premium-card { padding: 24px; }
    #problem, #stats, #pillars, #findings, #technical, #community { padding: 48px 24px; }
    .pillar-card { flex-direction: column; gap: 12px; }
    .finding-card { padding: 20px; }
    #findings > .section-inner > div,
    #community > .section-inner > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    .resource-card[style*="grid-column"] { max-width: 100% !important; }
}
