/* ═══════════════════════════════════════════
   CODEXIAN AI — Premium Landing Page
   Igloo-grade immersive design
   ═══════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

:root {
    --bg: #060608;
    --bg-s: #0b0b10;
    --bg-c: #0e0e14;
    --bg-e: #141420;
    --border: rgba(255,255,255,0.06);
    --border-h: rgba(255,255,255,0.1);
    --t1: #f0f0f5;
    --t2: #8a8a9a;
    --t3: #4a4a5a;
    --accent: #00ff88;
    --accent-dim: rgba(0,255,136,0.12);
    --accent-glow: rgba(0,255,136,0.06);
    --cyan: #00d4ff;
    --cyan-dim: rgba(0,212,255,0.1);
    --font: 'Space Grotesk', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', 'Consolas', monospace;
    --ease: cubic-bezier(0.16,1,0.3,1);
}

html { scroll-behavior: smooth; background: var(--bg); }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--t1);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: default;
}

::selection { background: rgba(0,255,136,0.15); color: #fff; }

/* ── Vignette ── */
.vignette {
    position: fixed; inset: 0; z-index: 9998;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.6) 100%);
}

/* ── Film Grain ── */
.grain {
    position: fixed; inset: 0; z-index: 9997;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    mix-blend-mode: overlay;
}

/* ── Mouse Fluorescent Trail ── */
.mouse-trail {
    --trail-hue: 160;
    --trail-opacity: 1;
    position: fixed;
    top: 0; left: 0;
    width: 400px; height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        circle at center,
        hsla(var(--trail-hue), 100%, 60%, calc(0.18 * var(--trail-opacity))) 0%,
        hsla(var(--trail-hue), 100%, 50%, calc(0.10 * var(--trail-opacity))) 30%,
        hsla(var(--trail-hue), 100%, 45%, calc(0.04 * var(--trail-opacity))) 55%,
        transparent 70%
    );
    filter: blur(35px);
    will-change: transform;
    mix-blend-mode: screen;
}

/* ── HUD (Corner-Anchored Nav) ── */
.hud {
    position: fixed; z-index: 10000;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    mix-blend-mode: difference;
}

.hud-tl { top: 28px; left: 32px; }
.hud-tr { top: 28px; right: 32px; display: flex; gap: 28px; }
.hud-bl { bottom: 28px; left: 32px; display: flex; flex-direction: column; gap: 4px; }
.hud-br { bottom: 28px; right: 32px; }

.logo-mark {
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    color: #fff;
}

.logo-img {
    height: 96px;
    width: auto;
    transition: opacity 0.3s;
}

.logo-mark:hover .logo-img {
    opacity: 0.8;
}

.logo-img--sm {
    height: 64px;
}

.logo-hex {
    font-size: 20px;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(0,255,136,0.4));
}

.logo-name {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 4px;
    color: #fff;
}

.hud-link {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
}

.hud-link:hover { color: #fff; }

.hud-link--accent {
    color: var(--accent);
    opacity: 0.8;
}

.hud-link--accent:hover { opacity: 1; }

.hud-meta {
    color: rgba(255,255,255,0.25);
    font-size: 10px;
    letter-spacing: 1px;
}

.hud-scroll-hint {
    animation: pulse-hint 2s infinite;
}

@keyframes pulse-hint {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.6; }
}

/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 24px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%; left: 50%; transform: translateX(-50%);
    width: 1200px; height: 1200px;
    background: radial-gradient(circle, rgba(0,255,136,0.04) 0%, rgba(0,212,255,0.02) 40%, transparent 65%);
    pointer-events: none;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px; font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(0,255,136,0.15);
    background: rgba(0,255,136,0.04);
    margin-bottom: 40px;
    animation: fadeUp 1s var(--ease) 0.1s both;
}

.tag-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    animation: blink-dot 2s infinite;
}

@keyframes blink-dot {
    0%,100% { opacity: 1; box-shadow: 0 0 6px var(--accent); }
    50% { opacity: 0.3; box-shadow: none; }
}

.hero-title {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 28px;
}

.hero-line {
    display: block;
    animation: fadeUp 0.9s var(--ease) both;
}

.hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero-line:nth-child(2) { animation-delay: 0.35s; }

.hero-line--glow {
    background: linear-gradient(135deg, #00ff88, #00d4ff 60%, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(0,255,136,0.15));
}

.hero-sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--t2);
    margin-bottom: 44px;
    animation: fadeUp 0.9s var(--ease) 0.5s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeUp 0.9s var(--ease) 0.65s both;
}

.cta-main {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 14px; font-weight: 600; font-family: var(--font);
    text-decoration: none;
    background: var(--accent);
    color: #000;
    border: none; cursor: pointer;
    transition: all 0.35s var(--ease);
    box-shadow: 0 0 40px rgba(0,255,136,0.15), 0 2px 10px rgba(0,0,0,0.3);
}

.cta-main:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 60px rgba(0,255,136,0.25), 0 4px 20px rgba(0,0,0,0.3);
}

.cta-arrow { transition: transform 0.3s; }
.cta-main:hover .cta-arrow { transform: translateX(4px); }

.cta-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 14px; font-weight: 500; font-family: var(--font);
    text-decoration: none;
    color: var(--t2);
    border: 1px solid var(--border);
    background: transparent;
    transition: all 0.35s var(--ease);
}

.cta-ghost:hover {
    border-color: var(--border-h);
    color: var(--t1);
    transform: translateY(-2px);
}

.hero-fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(transparent, var(--bg));
    pointer-events: none;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════
   SCROLL SEQUENCE
   ════════════════════════════════════ */
.scroll-sequence {
    height: 400vh;
    position: relative;
    background: #000;
}

.sequence-sticky {
    position: sticky; top: 0;
    height: 100vh; width: 100%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

#scrollCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    image-rendering: auto;
    image-rendering: high-quality;
}

.sequence-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; z-index: 10;
}

.seq-text {
    position: absolute;
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: all 0.7s var(--ease);
    max-width: 700px;
    padding: 0 24px;
}

.seq-text.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.seq-label {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 5px 14px;
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: 4px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

.seq-text h2 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 4px 60px rgba(0,0,0,0.8),
                 0 0 120px rgba(0,0,0,0.6);
}

/* Scroll progress bar */
.seq-progress {
    position: absolute;
    left: 32px; top: 50%; transform: translateY(-50%);
    width: 2px; height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    z-index: 20;
}

.seq-progress-fill {
    width: 100%; height: 0%;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0,255,136,0.5);
    transition: height 0.1s linear;
}

/* Frame counter */
.seq-counter {
    position: absolute;
    bottom: 32px; left: 32px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.2);
    z-index: 20;
}

/* ════════════════════════════════════
   SECTIONS (shared)
   ════════════════════════════════════ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section--dark {
    background: var(--bg-s);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-head {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.section-sub {
    font-size: 15px;
    color: var(--t2);
    line-height: 1.8;
    margin-top: 16px;
}

.glow-text {
    background: linear-gradient(135deg, #00ff88, #00d4ff 70%, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.8s var(--ease);
}

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* ════════════════════════════════════
   FEATURES
   ════════════════════════════════════ */
.feature-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 2px;
    border-radius: 20px;
    overflow: hidden;
}

.fh-left, .fh-right {
    background: var(--bg-c);
    padding: 48px;
}

.fh-left h3 {
    font-size: 22px; font-weight: 700;
    margin-bottom: 14px;
}

.fh-left p {
    font-size: 14px; line-height: 1.7;
    color: var(--t2);
}

.code-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    font-family: var(--mono);
    font-size: 12.5px;
    line-height: 1.9;
    color: var(--t2);
}

.code-dim { color: var(--t3); }
.code-green { color: var(--accent); }
.code-cyan { color: var(--cyan); }

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

.f-card {
    background: var(--bg-c);
    padding: 36px 28px;
    position: relative;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.f-card:first-child { border-radius: 0 0 0 20px; }
.f-card:last-child { border-radius: 0 0 20px 0; }

.f-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.f-card:hover { background: var(--bg-e); }
.f-card:hover::after { opacity: 1; }

.f-num {
    font-family: var(--mono);
    font-size: 36px; font-weight: 800;
    color: rgba(255,255,255,0.04);
    margin-bottom: 20px;
    line-height: 1;
}

.f-card h4 {
    font-size: 15px; font-weight: 700;
    margin-bottom: 8px;
    color: var(--t1);
}

.f-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--t3);
}

/* ════════════════════════════════════
   BRAIN LAYER
   ════════════════════════════════════ */
.brain-stack {
    max-width: 900px;
    margin: 0 auto;
}

.brain-tier {
    border-radius: 16px;
    padding: 36px;
    position: relative;
}

.brain-tier--top {
    background: rgba(0,255,136,0.02);
    border: 1px solid rgba(0,255,136,0.1);
}

.brain-tier--top::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: 16px; padding: 1px;
    background: linear-gradient(135deg, rgba(0,255,136,0.2), transparent 50%, rgba(0,212,255,0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.brain-tier--bottom {
    background: rgba(0,212,255,0.02);
    border: 1px solid rgba(0,212,255,0.08);
}

.tier-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px;
}

.tier-name {
    font-family: var(--mono);
    font-size: 12px; font-weight: 700;
    letter-spacing: 2px;
    color: var(--t1);
}

.tier-badge {
    font-family: var(--mono);
    font-size: 9px; font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
    background: var(--accent);
    color: #000;
}

.tier-badge--cyan { background: var(--cyan); }

.tier-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tier-mod {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.3s;
}

.tier-mod:hover { border-color: rgba(0,255,136,0.15); }

.mod-label {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.tier-mod h4 {
    font-size: 14px; font-weight: 700;
    color: var(--t1);
    margin-bottom: 6px;
}

.tier-mod p {
    font-size: 11px;
    color: var(--t3);
    line-height: 1.5;
}

.brain-connector {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 0;
}

.connector-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-h), transparent);
}

.connector-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--t3);
    white-space: nowrap;
}

.tier-desc {
    font-size: 14px;
    color: var(--t2);
}

/* ════════════════════════════════════
   PIPELINE
   ════════════════════════════════════ */
.pipeline {
    max-width: 700px;
    margin: 0 auto;
}

.pipe-step {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}

.pipe-step:last-child { border-bottom: none; }
.pipe-step:hover { border-color: rgba(0,255,136,0.1); }

.pipe-num {
    font-family: var(--mono);
    font-size: 32px; font-weight: 800;
    color: rgba(0,255,136,0.08);
    min-width: 56px;
    line-height: 1;
    transition: color 0.4s;
}

.pipe-step:hover .pipe-num { color: rgba(0,255,136,0.25); }

.pipe-body h4 {
    font-size: 17px; font-weight: 700;
    margin-bottom: 6px;
    color: var(--t1);
}

.pipe-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--t2);
}

/* ════════════════════════════════════
   COMPARISON
   ════════════════════════════════════ */
.cmp-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg-c);
}

.cmp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.cmp-table th, .cmp-table td {
    padding: 16px 22px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.cmp-table th {
    font-family: var(--mono);
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--t3);
    background: rgba(0,0,0,0.3);
}

.cmp-table td { color: var(--t2); }
.cmp-table tr:last-child td { border-bottom: none; }

.cmp-hl {
    background: rgba(0,255,136,0.02) !important;
    color: var(--t1) !important;
    border-left: 1px solid rgba(0,255,136,0.06);
    border-right: 1px solid rgba(0,255,136,0.06);
}

.cmp-table th.cmp-hl {
    color: var(--accent) !important;
    background: rgba(0,255,136,0.04) !important;
}

.yes { color: var(--accent); font-weight: 700; }
.no { color: #ff4455; opacity: 0.5; }
.mid { color: #ffaa22; }

/* ════════════════════════════════════
   TERMINAL
   ════════════════════════════════════ */
.terminal {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
}

.term-bar {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 20px;
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid var(--border);
}

.term-dots {
    display: flex; gap: 6px;
}

.term-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.term-dots span:nth-child(1) { background: #ff5f57; }
.term-dots span:nth-child(2) { background: #febc2e; }
.term-dots span:nth-child(3) { background: #28c840; }

.term-title {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--t3);
    letter-spacing: 0.5px;
}

.term-body {
    padding: 24px;
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.8;
    color: var(--t2);
    max-height: 500px;
    overflow-y: auto;
}

.term-line { white-space: nowrap; }

.term-prompt {
    color: var(--accent);
    margin-right: 10px;
}

.term-cursor {
    color: var(--accent);
    animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
    50% { opacity: 0; }
}

.term-body .output-line { padding: 1px 0; }
.term-body .header { color: var(--cyan); font-weight: 600; }
.term-body .phase { color: var(--accent); }
.term-body .success { color: var(--accent); }
.term-body .output { color: var(--t2); }

/* ════════════════════════════════════
   CTA / WAITLIST
   ════════════════════════════════════ */
.section--cta {
    background: var(--bg);
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta-block {
    max-width: 560px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-top: 20px;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 15px;
    color: var(--t2);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-form {
    display: flex;
    gap: 8px;
    max-width: 440px;
    margin: 0 auto 16px;
}

.cta-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-c);
    color: var(--t1);
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.3s;
}

.cta-input:focus { border-color: rgba(0,255,136,0.3); }

.cta-input::placeholder { color: var(--t3); }

.cta-submit {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px; font-weight: 600; font-family: var(--font);
    background: var(--accent);
    color: #000;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.cta-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(0,255,136,0.2);
}

.cta-fine {
    font-size: 12px;
    color: var(--t3);
}

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex; align-items: center; gap: 12px;
}

.footer-left .logo-hex { font-size: 16px; }
.footer-left .logo-name { font-size: 11px; }

.footer-copy {
    font-size: 11px;
    color: var(--t3);
    font-family: var(--mono);
    margin-left: 8px;
}

.footer-right {
    display: flex; gap: 24px;
}

.footer-right a {
    text-decoration: none;
    font-size: 12px;
    color: var(--t3);
    font-family: var(--mono);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-right a:hover { color: var(--t2); }

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 900px) {
    .feature-hero { grid-template-columns: 1fr; }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .f-card:first-child { border-radius: 0; }
    .f-card:last-child { border-radius: 0 0 20px 20px; }
    .tier-modules { grid-template-columns: 1fr; }
    .hud-tr { display: none; }
}

@media (max-width: 600px) {
    .feature-grid { grid-template-columns: 1fr; }
    .cta-form { flex-direction: column; }
    .hud-bl { display: none; }
    .hud-br { display: none; }
    .hero-title { letter-spacing: -1.5px; }
    .section { padding: 100px 0; }
}
