/* ================================================
   VASAD GROUP — STYLESHEET v2
   Dark + Champagne · AI-Powered Holding
================================================ */

:root {
    --bg: #0a0e1a;
    --bg-2: #0d1320;
    --bg-3: #111728;
    --bg-card: #141b2e;
    --bg-elevated: #18213a;
    --line: rgba(201, 169, 97, 0.10);
    --line-strong: rgba(201, 169, 97, 0.26);
    --line-soft: rgba(255, 255, 255, 0.05);
    --gold: #c9a961;
    --gold-bright: #e0c179;
    --gold-deep: #a8893f;
    --gold-glow: rgba(201, 169, 97, 0.4);
    --text: #ebe9e3;
    --text-soft: #b3b1a9;
    --text-muted: #7a7870;
    --white: #ffffff;
    --red: #ff4d4d;
    --green: #4ade80;
    --radius: 4px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 24px 60px rgba(201, 169, 97, 0.20);
    --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

::selection { background: var(--gold); color: var(--bg); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.018em;
    color: var(--white);
}

h1 { font-size: clamp(3rem, 7.5vw, 6.5rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.8vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.35rem; }

p { color: var(--text-soft); font-size: 1.05rem; line-height: 1.75; }

.accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 26px;
}

.eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.section-title { margin-bottom: 24px; }
.section-lead { font-size: 1.18rem; max-width: 680px; line-height: 1.7; }

.section-header { margin-bottom: 72px; max-width: 760px; }
.section-header.center { text-align: center; margin: 0 auto 72px; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .eyebrow::before { display: none; }
.section-header.center .eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.section { padding: 140px 0; position: relative; }

@media (max-width: 768px) {
    .section { padding: 90px 0; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 34px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-lg { padding: 20px 40px; font-size: 0.85rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    color: var(--bg);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.18);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201, 169, 97, 0.32); }
.btn-primary:hover::after { left: 100%; }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-strong);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 97, 0.04);
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.22em;
    font-size: 0.92rem;
}

.logo-emblem {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.3));
}

.logo-text { color: var(--white); }
.logo-sub { color: var(--gold); font-weight: 300; opacity: 0.85; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 34px;
    margin-left: auto;
    margin-right: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-soft);
    position: relative;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-links .badge {
    background: var(--gold);
    color: var(--bg);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.nav-cta { padding: 12px 22px; font-size: 0.75rem; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all var(--transition);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 50% at 50% 0%, rgba(201, 169, 97, 0.12), transparent 70%),
        radial-gradient(ellipse 70% 80% at 100% 100%, rgba(201, 169, 97, 0.06), transparent 60%),
        radial-gradient(ellipse 60% 70% at 0% 50%, rgba(201, 169, 97, 0.05), transparent 60%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1080px;
}

/* LIVE badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--text-soft);
    margin-bottom: 36px;
    background: rgba(20, 27, 46, 0.6);
    backdrop-filter: blur(8px);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px #4ade80;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

.live-text {
    color: #4ade80;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.live-sep { color: var(--text-muted); opacity: 0.5; }

.hero-title {
    margin-bottom: 36px;
    line-height: 1;
    display: block;
    font-weight: 400;
}

.title-line-1 {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 4px;
    letter-spacing: -0.018em;
}

.title-line-2 {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(4rem, 10.5vw, 9rem);
    color: var(--gold);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-shadow: 0 0 60px rgba(201, 169, 97, 0.18);
}

.title-period {
    color: var(--white);
    font-style: normal;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    max-width: 820px;
    margin: 0 auto 52px;
    color: var(--text-soft);
    line-height: 1.65;
}

.hero-subtitle strong { color: var(--gold); font-weight: 500; }
.hero-emph { color: var(--white); font-weight: 500; }

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

.hero-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 80px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-meta strong { color: var(--gold); font-weight: 600; }

.meta-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: live-pulse 2s ease-in-out infinite;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 56px;
    border-top: 1px solid var(--line);
}

.stat { text-align: center; min-width: 0; }
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.3);
    white-space: nowrap;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: var(--line);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: var(--line-strong);
    overflow: hidden;
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 22px;
    background: var(--gold);
    animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
    overflow: hidden;
}

.marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 48px;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-soft);
    font-weight: 400;
}

.marquee-item strong {
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
}

.marquee-dot {
    color: var(--gold);
    opacity: 0.5;
}

/* ===== STATEMENT ===== */
.statement {
    padding: 140px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.statement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.06), transparent 60%);
    pointer-events: none;
}

.statement .container {
    position: relative;
    text-align: center;
    max-width: 1080px;
}

.statement-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 32px;
    line-height: 1;
}

.statement-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.2vw, 2.75rem);
    line-height: 1.35;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.statement-signature {
    font-size: 0.74rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ===== AURORA SECTION (AI) ===== */
.aurora {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.aurora::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.08), transparent 60%);
    pointer-events: none;
}

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

.aurora-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: rgba(201, 169, 97, 0.06);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 32px;
}

.aurora-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    animation: live-pulse 1.6s ease-in-out infinite;
}

.aurora-text h2 { margin-bottom: 24px; }
.aurora-text .section-lead { margin-bottom: 40px; }

.aurora-list {
    list-style: none;
    border-top: 1px solid var(--line);
    margin-bottom: 36px;
}

.aurora-list li {
    display: flex;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.aurora-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    padding-top: 4px;
    min-width: 28px;
}

.aurora-list li strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.aurora-list li span {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

.aurora-cta {
    display: inline-block;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    transition: all var(--transition);
}

.aurora-cta:hover {
    color: var(--gold-bright);
    transform: translateX(4px);
}

/* Terminal */
.aurora-visual {
    position: relative;
}

.terminal {
    background: #050810;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
}

.terminal-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--line);
}

.terminal-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.terminal-dot-r { background: #ff5f56; }
.terminal-dot-y { background: #ffbd2e; }
.terminal-dot-g { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
}

.terminal-body {
    padding: 24px 22px;
    color: var(--text-soft);
    line-height: 1.85;
    min-height: 380px;
}

.t-prompt { color: var(--gold); font-weight: 600; margin-right: 6px; }
.t-muted { color: var(--text-muted); padding-left: 14px; font-size: 0.78rem; }
.t-gold { color: var(--gold-bright); font-weight: 500; }

.t-cursor {
    display: inline-block;
    width: 8px;
    background: var(--gold);
    color: var(--gold);
    animation: cursor-blink 1s steps(1) infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.aurora-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.aurora-tag-sm {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    padding: 5px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    background: rgba(201, 169, 97, 0.04);
}

/* ===== PERFORMANCE / CHART ===== */
.performance {
    background: var(--bg);
}

.chart-card {
    background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    padding: 56px;
    position: relative;
    overflow: hidden;
}

.chart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.chart-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.chart-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 500;
}

.chart-headline span {
    font-size: 1rem;
    color: var(--text-soft);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-left: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.chart-stats {
    display: flex;
    gap: 40px;
}

.chart-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 500;
}

.chart-stat-label {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.chart-svg-wrap {
    position: relative;
    margin: 20px 0 16px;
}

.chart-svg {
    width: 100%;
    height: 360px;
    display: block;
}

.chart-area {
    animation: chart-rise 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.chart-line {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: chart-draw 2.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}

@keyframes chart-rise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes chart-draw {
    to { stroke-dashoffset: 0; }
}

.chart-axis {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    padding: 0 8px;
}

.chart-footnote {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== CAPABILITIES ===== */
.capabilities { background: var(--bg-2); }

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

.capability-card {
    position: relative;
    padding: 44px 36px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.capability-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.capability-card:hover::before { opacity: 1; }

.capability-card-featured {
    background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border-color: var(--line-strong);
}

.capability-card-featured::before { opacity: 0.6; }

.capability-tag {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    color: var(--bg);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    padding: 5px 14px;
    border-radius: 100px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.35);
    z-index: 2;
}

.capability-card-featured .capability-head {
    margin-top: 28px;
}

.capability-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.capability-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.18em;
}

.capability-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
}
.capability-icon svg { width: 100%; height: 100%; }

.capability-card h3 { margin-bottom: 14px; }
.capability-lead { font-size: 0.98rem; margin-bottom: 28px; }

.capability-list {
    list-style: none;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.capability-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.capability-list li:last-child { border-bottom: none; }

.capability-list li strong {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 500;
}

.capability-list li span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== RESULTS ===== */
.results { background: var(--bg); }

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

.result-card {
    padding: 44px 40px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 169, 97, 0.10), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.result-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.result-card:hover::before { opacity: 1; }

.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.result-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--gold);
}

.result-period {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    padding: 4px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
}

.result-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.result-arrow {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
    opacity: 0.7;
}

.result-label {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.result-note {
    font-size: 0.93rem;
    line-height: 1.7;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
}

/* ===== PROCESS ===== */
.process { background: var(--bg-2); }

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 56px;
}

.process-step {
    padding: 44px 32px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.process-step:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.process-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}

.process-step h4 { font-size: 1.5rem; margin-bottom: 14px; }
.process-step p { font-size: 0.95rem; margin-bottom: 28px; }

.process-time {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    padding: 6px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
}

.process-divider {
    width: 60px;
    align-self: center;
    height: 1px;
    background: linear-gradient(90deg, var(--line-strong), var(--gold), var(--line-strong));
    position: relative;
}

.process-divider::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 1.2rem;
    background: var(--bg-2);
    padding: 0 8px;
}

/* Scarcity bar */
.scarcity-bar {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.10), rgba(201, 169, 97, 0.02));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.scarcity-left {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.scarcity-left strong { color: var(--gold); letter-spacing: 0.04em; }

.scarcity-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    animation: live-pulse 1.6s ease-in-out infinite;
}

.scarcity-meter {
    flex: 1;
    min-width: 220px;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
    overflow: hidden;
}

.scarcity-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
    border-radius: 100px;
    box-shadow: 0 0 12px var(--gold);
    animation: fill-grow 2s cubic-bezier(0.2,0.8,0.2,1) forwards;
    transform-origin: left;
}

@keyframes fill-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.scarcity-right {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: var(--text-soft);
    letter-spacing: 0.05em;
}

/* ===== MANIFESTO ===== */
.manifesto {
    background: var(--bg);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(201, 169, 97, 0.08), transparent 60%);
    pointer-events: none;
}

.manifesto-inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--gold);
    line-height: 0.6;
    margin-bottom: 32px;
    opacity: 0.4;
}

.manifesto blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.8vw, 2.35rem);
    line-height: 1.45;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.manifesto blockquote em { color: var(--gold); font-style: italic; }

.manifesto-author {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.manifesto-line { width: 60px; height: 1px; background: var(--gold); }

.manifesto-author strong {
    display: block;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.manifesto-author span {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 169, 97, 0.10), transparent 60%);
    pointer-events: none;
}

.contact-inner {
    position: relative;
    text-align: center;
    max-width: 1180px;
    margin: 0 auto;
}

.contact-inner .eyebrow { justify-content: center; }
.contact-inner .eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.contact-lead {
    font-size: 1.18rem;
    max-width: 700px;
    margin: 0 auto 64px;
}

.contact-lead strong { color: var(--gold); }

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.contact-card {
    padding: 44px 32px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.contact-card-static { cursor: default; }
.contact-card-static:hover {
    border-color: var(--line-strong);
    transform: none;
    box-shadow: none;
}

.contact-card-accent {
    background: linear-gradient(160deg, rgba(201, 169, 97, 0.14), rgba(201, 169, 97, 0.02));
    border-color: var(--line-strong);
    position: relative;
}

.contact-card-accent::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    color: var(--bg);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    padding: 5px 14px;
    border-radius: 100px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.35);
    z-index: 2;
}

.contact-card-accent { padding-top: 64px; }

.contact-icon {
    width: 52px;
    height: 52px;
    color: var(--gold);
    margin-bottom: 28px;
}
.contact-icon svg { width: 100%; height: 100%; }

.contact-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.25;
}

.contact-cta {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

.contact-footer {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 80px 0 36px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 80px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--line);
}

.footer-tag {
    margin-top: 28px;
    font-size: 0.95rem;
    color: var(--text-soft);
    max-width: 420px;
    line-height: 1.7;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 500;
}

.footer-col a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-soft);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 36px;
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .aurora-grid { grid-template-columns: 1fr; gap: 56px; }
    .chart-card { padding: 36px 24px; }
    .chart-headline { font-size: 2.5rem; }
    .chart-stats { gap: 24px; flex-wrap: wrap; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 24px; }
    .process-divider { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 768px) {
    .container { padding: 0 22px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-2);
        flex-direction: column;
        padding: 32px;
        gap: 18px;
        border-bottom: 1px solid var(--line);
        margin: 0;
    }
    .nav-links.open { display: flex; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero { padding: 130px 0 60px; min-height: auto; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 320px; }
    .hero-stats { gap: 28px; flex-direction: column; }
    .stat-divider { display: none; }
    .hero-scroll { display: none; }
    .live-badge { flex-wrap: wrap; justify-content: center; padding: 10px 16px; font-size: 0.62rem; }

    .marquee-item { font-size: 1.1rem; }

    .statement { padding: 90px 0; }
    .statement-mark { font-size: 3rem; }

    .terminal { font-size: 0.7rem; }
    .terminal-body { padding: 18px 14px; min-height: 320px; }

    .chart-card { padding: 28px 18px; }
    .chart-svg { height: 240px; }
    .chart-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .chart-stats { gap: 20px; }

    .contact-methods { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .manifesto { padding: 90px 0; }
    .manifesto-quote { font-size: 5rem; }

    .capability-card { padding: 36px 28px; }
    .process-step { padding: 36px 28px; }
    .result-card { padding: 36px 28px; }
    .result-big { font-size: 2.2rem; }

    .scarcity-bar { flex-direction: column; align-items: stretch; text-align: center; }
}
