/* ============================================
   wonderable.ai v2 — good-fella.com inspired
   ============================================ */

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

:root {
    /* Colors - Light (default) */
    --bg: #eeeeee;
    --fg: #141314;
    --fg-dim: #6b6b6b;
    --fg-muted: #9a9a9a;
    --accent: #FFD600;
    --accent-soft: rgba(255, 214, 0, 0.1);
    --border: rgba(0, 0, 0, 0.08);
    --card-bg: rgba(255, 255, 255, 0.6);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --section-pad: clamp(80px, 12vw, 160px);
    --container-max: 1280px;
    --gap: 24px;

    /* Easing */
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Cursor */
    --cursor-size: 12px;
    --cursor-ring-size: 40px;
}

/* --- Theme Variants --- */
[data-theme="dark"] {
    --bg: #0a0a0f;
    --fg: #ffffff;
    --fg-dim: #ffffff;
    --fg-muted: rgba(255, 255, 255, 0.6);
    --accent: #FFD600;
    --accent-soft: rgba(255, 214, 0, 0.1);
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.04);
}

[data-theme="brand"] {
    --bg: #FFD600;
    --fg: #000000;
    --fg-dim: #000000;
    --fg-muted: #000000;
    --accent: #000000;
    --accent-soft: rgba(0, 0, 0, 0.08);
    --border: rgba(0, 0, 0, 0.12);
    --card-bg: rgba(255, 255, 255, 0.3);
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
    height: auto;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a { color: inherit; text-decoration: none; cursor: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: none; }

::selection {
    background: var(--accent);
    color: #fff;
}

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: #fff;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out);
}

.cursor-ring {
    width: var(--cursor-ring-size);
    height: var(--cursor-ring-size);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}

.cursor.hovering .cursor-dot {
    width: 6px;
    height: 6px;
}

.cursor.hovering .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px clamp(24px, 4vw, 48px);
    transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
    background: rgba(238, 238, 238, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav.scrolled.nav-dark {
    background: rgba(10, 10, 15, 0.85);
}

.nav.scrolled.nav-brand {
    background: rgba(255, 214, 0, 0.9);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--fg);
    transition: color 0.4s;
}

.nav.nav-dark .nav-logo { color: #ffffff; }
.nav.nav-light .nav-logo { color: #141314; }
.nav.nav-brand .nav-logo { color: #000; }

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fg-dim);
    transition: color 0.3s;
    position: relative;
}

.nav.nav-dark .nav-links a { color: #ffffff; }
.nav.nav-light .nav-links a { color: #6b6b6b; }
.nav.nav-brand .nav-links a { color: #000; }
.nav-links a:hover { color: var(--fg); }
.nav.nav-dark .nav-links a:hover { color: #ffffff; }
.nav.nav-light .nav-links a:hover { color: #141314; }
.nav.nav-brand .nav-links a:hover { color: #000; }

.nav-cta {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 100px;
    border: 2.5px solid var(--border);
    transition: all 0.3s var(--ease-out);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background: #FFD600;
    color: #0a0a0f;
    border-color: #FFD600;
}

.nav.nav-dark .nav-cta { color: #ffffff; border-color: #ffffff; }
.nav.nav-light .nav-cta { color: #141314; border-color: rgba(0,0,0,0.12); }
.nav.nav-brand .nav-cta { color: #000; border-color: #000; }

/* --- Layout --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
}

.section {
    padding: var(--section-pad) 0;
    background: var(--bg);
    color: var(--fg);
    position: relative;
}

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--fg);
    margin-bottom: 28px;
}

.section-title em {
    font-style: normal;
    color: var(--accent);
}

.section-title .line,
.hero-title .line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.1em;
}

.section-title .line-inner,
.hero-title .line-inner {
    display: block;
    transform: translateY(110%);
}

.section-title .line-inner.revealed,
.hero-title .line-inner.revealed {
    transform: translateY(0);
    transition: transform 0.7s var(--ease-out);
}

.section-desc {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    font-weight: 500;
    color: var(--fg-dim);
    max-width: 680px;
    line-height: 1.65;
    margin-bottom: 56px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    background: #0a0a0f;
    overflow: hidden;
}

.hero-left {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay: black fades into ASCII art */
.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, #0a0a0f 0%, rgba(10,10,15,0.5) 15%, transparent 35%),
        linear-gradient(to left, #0a0a0f 0%, transparent 25%),
        linear-gradient(to top, #0a0a0f 0%, transparent 25%),
        linear-gradient(to bottom, #0a0a0f 0%, transparent 25%);
    pointer-events: none;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

#hero-ascii {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    padding: 0 clamp(40px, 6vw, 80px);
    margin-right: 40px;
    text-align: left;
    max-width: 620px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: var(--font-mono);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 28px;
}

.hero-title em {
    font-style: normal;
    color: #FFD600;
    -webkit-text-fill-color: #FFD600;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}
.hero-title .line.anim-done {
    overflow: visible;
}

.hero-title .line-inner {
    display: block;
    transform: translateY(110%);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 440px;
    margin: 0 0 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: #FFD600;
    color: #0a0a0f;
    font-weight: 700;
}

[data-theme="brand"] .btn-primary {
    background: #0a0a0f;
    color: #FFD600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.3);
}

[data-theme="brand"] .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-ghost:hover {
    border-color: #ffffff;
    color: #fff;
}

/* --- Stats --- */
.stats-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.stat {
    text-align: center;
    padding: 32px 16px;
    opacity: 0;
    transform: translateY(30px);
}

.stat.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stat-value {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--fg);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--fg-muted);
    white-space: nowrap;
}

/* Roller Number */
.roller {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1em;
    line-height: 1;
    vertical-align: baseline;
}

.roller-digits {
    display: flex;
    flex-direction: column;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.roller-digit {
    height: 1em;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Vision --- */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.vision-grid.vision-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
}

.vision-card {
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card-bg);
    transition: all 0.3s var(--ease-out);
    opacity: 0;
    transform: translateY(30px);
}

.vision-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.vision-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.vision-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 18px;
}

.vision-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 214, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #FFD600;
    margin-bottom: 14px;
}


.vision-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.vision-card p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--fg-dim);
    line-height: 1.55;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 16px;
}

.feature-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card-bg);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s var(--ease-out);
}

.feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-dim);
    line-height: 1.65;
}

/* --- Team --- */
.team-block {
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(30px);
}

.team-block.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.team-block:last-child { margin-bottom: 0; }

.team-block-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--fg-dim);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.team-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card-bg);
    transition: all 0.3s var(--ease-out);
}

.team-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.team-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.team-info h4 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.team-info p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--fg-muted);
    font-family: var(--font-mono);
}

/* --- Comparison --- */
.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(30px);
}

.comparison.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.comp-col {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card-bg);
}

.comp-col h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comp-item {
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-dim);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.comp-item:last-child { border-bottom: none; }

.comp-bigco .comp-item i { color: #ef4444; font-size: 0.7rem; }
.comp-us .comp-item i { color: #10b981; }

.comp-vs {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--fg-muted);
    padding-top: 80px;
    text-align: center;
}

/* --- Jobs --- */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card-bg);
    transition: all 0.3s var(--ease-out);
    opacity: 0;
    transform: translateY(20px);
}

.job-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.job-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.job-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.job-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.job-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.job-info p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-dim);
    line-height: 1.5;
}

.job-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.tag {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
}

.tag-intern {
    background: var(--accent-soft);
    color: var(--accent);
}

.tag-hot {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.job-arrow {
    font-size: 0.9rem;
    color: var(--fg-muted);
    transition: transform 0.3s var(--ease-out), color 0.3s;
    margin-left: 8px;
}

.job-card:hover .job-arrow {
    transform: translateX(4px);
    color: var(--accent);
}

/* --- Benefits --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 48px;
}

.benefit-card {
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card-bg);
    transition: all 0.3s var(--ease-out);
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.benefit-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 18px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.benefit-card p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-dim);
    line-height: 1.6;
}

/* --- Contact --- */
.contact-section {
    text-align: center;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section .section-title { color: #ffffff; }
.contact-section .section-desc { color: #ffffff; margin-left: auto; margin-right: auto; }

.contact-body {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 24px;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--card-bg);
    opacity: 0;
    transform: translateY(20px);
}

.contact-body.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.contact-left, .contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-divider-v {
    width: 1px;
    height: 140px;
    background: var(--border);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD600;
    transition: opacity 0.3s;
}

.contact-email:hover { opacity: 0.8; }

.contact-hint {
    font-size: 0.82rem;
    color: var(--fg-muted);
}

.contact-wechat {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFD600;
}

.qr-code {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    border: 2px solid var(--border);
}

.contact-location {
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--fg-muted);
    opacity: 0;
    transform: translateY(10px);
}

.contact-location.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

/* --- Footer --- */
footer {
    background: #0a0a0f;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 0 0 40px;
}

.footer-ascii-wrap {
    position: relative;
    height: 320px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.footer-ascii-wrap canvas {
    width: 45%;
    height: 100%;
}

.footer-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-size: 1.15rem;
    font-weight: 900;
    color: #eee;
    letter-spacing: -0.03em;
}

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

.footer-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #ffffff;
}

.footer-icp a {
    color: #ffffff;
    transition: color 0.3s;
}

.footer-icp a:hover { color: rgba(255, 255, 255, 0.6); }

/* --- Reveal animations (base state) --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .vision-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison { grid-template-columns: 1fr; gap: 16px; }
    .comp-vs { padding-top: 0; }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

    body { cursor: auto; }
    .cursor { display: none; }
    a, button { cursor: auto; }

    .nav-links { display: none; }
    .nav-cta { font-size: 0.8rem; padding: 8px 18px; }

    .hero { flex-direction: column; }
    .hero-left { flex: none; min-height: auto; padding-top: 120px; padding-bottom: 40px; justify-content: center; }
    .hero-content { margin-right: 0; padding: 0 24px; }
    .hero-right { flex: none; height: 50vh; }
    .hero-right::before {
        background:
            linear-gradient(to bottom, #0a0a0f 0%, transparent 30%),
            linear-gradient(to top, #0a0a0f 0%, transparent 20%);
    }
    .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .hero-title .line-inner { white-space: normal !important; }
    .hero-actions { flex-direction: row; }
    .hero-actions .btn { width: auto; }

    .section-eyebrow { font-size: 1.2rem; }
    .section-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .section-desc { font-size: 1rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-desc { white-space: normal; }
    .vision-grid, .vision-grid.vision-grid-2x2 { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }

    .job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
    .job-right { width: 100%; justify-content: flex-start; }

    .contact-body { flex-direction: column; padding: 32px 24px; }
    .contact-divider-v { width: 80%; height: 1px; }

    .footer-ascii-wrap { height: 200px; }
    .footer-top, .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}
