/* ========================================
   Resume Geni Homepage V3
   "They Never Read Your Name"

   Design Philosophy:
   - Rick Rubin: Strip to essence
   - Steve Jobs: Obsess invisible details
   - Don Draper: Emotional truth
   - Dieter Rams: Less but better
   - Paula Scher: Typography as hero
   ======================================== */

/* ========================================
   DESIGN TOKENS
   ======================================== */

:root {
    /* Core palette */
    --v3-black: #000000;
    --v3-white: #ffffff;
    --v3-accent: #FF8A4C;
    --v3-accent-light: #FFB870;
    --v3-accent-glow: rgba(255, 138, 76, 0.4);

    /* Surfaces - deeper than v2 */
    --v3-surface-0: #000000;
    --v3-surface-1: #0a0a0a;
    --v3-surface-2: #111111;
    --v3-surface-3: #1a1a1a;

    /* Text hierarchy - sharper contrast */
    --v3-text-hero: #ffffff;
    --v3-text-primary: rgba(255, 255, 255, 0.95);
    --v3-text-secondary: rgba(255, 255, 255, 0.70);
    --v3-text-muted: rgba(255, 255, 255, 0.45);

    /* Borders */
    --v3-border: rgba(255, 255, 255, 0.08);
    --v3-border-accent: rgba(255, 138, 76, 0.3);

    /* Typography - dramatic scale */
    --v3-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    --v3-font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;

    /* Spacing - 8px grid, generous */
    --v3-space-xs: 8px;
    --v3-space-sm: 16px;
    --v3-space-1-5x: 12px;
    --v3-space-md: 24px;
    --v3-space-lg: 48px;
    --v3-space-xl: 80px;
    --v3-space-2xl: 120px;
    --v3-space-3xl: 200px;

    /* Motion - intentional, not decorative */
    --v3-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --v3-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --v3-duration-fast: 200ms;
    --v3-duration-base: 400ms;
    --v3-duration-slow: 800ms;
    --v3-duration-dramatic: 1200ms;

    /* Layout */
    --v3-max-width: 1400px;
    --v3-content-width: 900px;
    --v3-narrow-width: 680px;

    /* Grade color scale */
    --v3-grade-fail: #ef4444;
    --v3-grade-fail-dark: #dc2626;
    --v3-grade-fail-darker: #b91c1c;
    --v3-grade-warn: #f97316;
    --v3-grade-warn-dark: #c2410c;
    --v3-grade-caution: #eab308;
    --v3-grade-caution-dark: #a16207;
    --v3-grade-good: #84cc16;
    --v3-grade-good-dark: #4d7c0f;
    --v3-grade-pass: #10b981;
    --v3-grade-pass-dark: #059669;

    /* Border radius scale */
    --v3-radius-xs: 4px;
    --v3-radius-sm: 8px;
    --v3-radius-md: 12px;
    --v3-radius-lg: 16px;
    --v3-radius-xl: 20px;
    --v3-radius-2xl: 24px;
    --v3-radius-pill: 100px;

    /* Semantic text */
    --v3-text-on-accent: #1a0d06;

    /* Avatar gradients */
    --v3-avatar-1: linear-gradient(135deg, #667eea, #764ba2);
    --v3-avatar-2: linear-gradient(135deg, var(--v3-accent), var(--v3-accent-light));
    --v3-avatar-3: linear-gradient(135deg, #4facfe, #00f2fe);
    --v3-avatar-4: linear-gradient(135deg, #f093fb, #f5576c);
}

/* ========================================
   BASE RESET
   ======================================== */

.v3-page {
    background: var(--v3-black);
    color: var(--v3-text-primary);
    font-family: var(--v3-font);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.v3-page * {
    box-sizing: border-box;
}

/* Subtle noise texture for depth - Apple-style */
.v3-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 9999;
}

/* ========================================
   TYPOGRAPHY - Paula Scher Would Approve
   ======================================== */

.v3-headline-massive {
    font-family: var(--v3-font-display);
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--v3-text-hero);
    margin: 0;
}

.v3-headline-lg {
    font-family: var(--v3-font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--v3-text-hero);
    margin: 0;
}

.v3-headline-md {
    font-family: var(--v3-font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--v3-text-primary);
    margin: 0;
}

.v3-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--v3-text-secondary);
    max-width: 540px;
}

.v3-body-lg {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--v3-text-secondary);
}

.v3-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-accent);
}

.v3-accent {
    color: var(--v3-accent);
}

.v3-gradient-text {
    background: linear-gradient(135deg, var(--v3-accent) 0%, var(--v3-accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v3-dim {
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

.v3-container {
    width: 100%;
    max-width: var(--v3-max-width);
    margin: 0 auto;
    padding: 0 var(--v3-space-md);
}

.v3-container--content {
    max-width: var(--v3-content-width);
}

.v3-container--narrow {
    max-width: var(--v3-narrow-width);
}

/* ========================================
   NAVIGATION - Minimal, confident
   ======================================== */

.v3-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--v3-space-md) var(--v3-space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
}

.v3-nav__logo {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--v3-white);
    text-decoration: none;
}

.v3-nav__actions {
    display: flex;
    align-items: center;
    gap: var(--v3-space-sm);
}

.v3-nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v3-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--v3-duration-fast) ease;
}

.v3-nav__link:hover {
    opacity: 1;
}

/* ========================================
   SECTION 1: HERO - The Opening Statement
   "They Never Read Your Name"
   ======================================== */

.v3-hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.v3-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--v3-space-md);
}

.v3-hero__headline {
    margin-bottom: var(--v3-space-lg);
    opacity: 0;
    transform: translateY(60px);
    animation: v3-hero-reveal 1.2s var(--v3-ease-out) 0.3s forwards;
}

.v3-hero__headline span {
    display: block;
}

.v3-hero__line {
    display: block;
}

.v3-hero__line-inner {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: v3-line-reveal 0.8s var(--v3-ease-out) forwards;
}

.v3-hero__line:nth-child(1) .v3-hero__line-inner { animation-delay: 0.4s; }
.v3-hero__line:nth-child(2) .v3-hero__line-inner { animation-delay: 0.55s; }
.v3-hero__line:nth-child(3) .v3-hero__line-inner { animation-delay: 0.7s; }

@keyframes v3-line-reveal {
    to { opacity: 1; transform: translateY(0); }
}

.v3-hero__subhead {
    max-width: 600px;
    margin: 0 auto var(--v3-space-lg);
    opacity: 0;
    animation: v3-fade-up 0.8s var(--v3-ease-out) 1s forwards;
}

.v3-hero__cta {
    opacity: 0;
    animation: v3-fade-up 0.8s var(--v3-ease-out) 1.2s forwards;
}

.v3-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: v3-scroll-reveal 0.8s var(--v3-ease-out) 1.5s forwards;
    transition: opacity 0.3s ease;
}

@keyframes v3-scroll-reveal {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.v3-hero__scroll-text {
    display: none;
}

.v3-hero__scroll-chevron {
    animation: v3-chevron-bob 2s ease-in-out infinite;
}

.v3-chev--1 {
    opacity: 0.3;
    animation: v3-chev-cascade-1 2s ease-in-out infinite;
}

.v3-chev--2 {
    opacity: 0.9;
    animation: v3-chev-cascade-2 2s ease-in-out infinite;
}

@keyframes v3-chevron-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes v3-chev-cascade-1 {
    0%, 100% { opacity: 0.3; }
    35% { opacity: 0.8; }
    65% { opacity: 0.3; }
}

@keyframes v3-chev-cascade-2 {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.v3-hero__scroll-line {
    display: none;
}

.v3-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--v3-space-xs);
    padding: var(--v3-space-xs) var(--v3-space-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--v3-radius-pill);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--v3-text-secondary);
    margin-bottom: var(--v3-space-lg);
    opacity: 0;
    animation: v3-fade-up 0.8s var(--v3-ease-out) 0.2s forwards;
}

.v3-hero__badge img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.v3-hero__glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    max-width: 1200px;
    max-height: 1200px;
    background: radial-gradient(
        circle,
        rgba(255, 138, 76, 0.08) 0%,
        rgba(255, 138, 76, 0.03) 30%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 1;
}

@keyframes v3-hero-reveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes v3-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   SECTION 2: PROBLEM + TRANSFORMATION
   The stark truth and the before/after moment
   ======================================== */

.v3-problem {
    padding: var(--v3-space-2xl) 0;
    position: relative;
}

.v3-problem__stat {
    text-align: center;
    margin-bottom: var(--v3-space-xl);
}

.v3-problem__number {
    font-family: var(--v3-font-display);
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--v3-accent);
    opacity: 0.9;
}

.v3-problem__unit {
    font-size: 0.4em;
    vertical-align: super;
    opacity: 0.8;
}

.v3-problem__context {
    max-width: 500px;
    margin: var(--v3-space-md) auto 0;
    text-align: center;
}

/* Transformation bridge */
.v3-problem__transform {
    text-align: center;
    margin-top: var(--v3-space-xl);
    padding-top: var(--v3-space-xl);
    border-top: 1px solid var(--v3-border);
}

.v3-problem__transform .v3-label {
    display: inline-block;
    margin-bottom: var(--v3-space-md);
}

.v3-problem__transform .v3-headline-lg {
    margin-bottom: var(--v3-space-lg);
}

/* Score pair layout */
.v3-score-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--v3-space-lg);
    max-width: 700px;
    margin: 0 auto;
}

.v3-score-pair__divider {
    color: var(--v3-accent);
    flex-shrink: 0;
}

/* Score cards */
.v3-score-card {
    background: var(--v3-surface-2);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-2xl);
    padding: var(--v3-space-lg);
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 280px;
    transition: all var(--v3-duration-base) var(--v3-ease-out);
}

.v3-score-card--before.is-animated {
    opacity: 0.5;
}

.v3-score-card--after.is-animated {
    border-color: var(--v3-border-accent);
    box-shadow:
        0 0 60px rgba(255, 138, 76, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.3);
}

.v3-score-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--v3-text-muted);
    margin-bottom: var(--v3-space-sm);
}

.v3-score-card__grade {
    font-family: var(--v3-font-display);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.v3-score-card--before .v3-score-card__grade {
    color: var(--v3-grade-fail);
}

.v3-score-card--after .v3-score-card__grade {
    color: var(--v3-grade-pass);
}

.v3-score-card__score {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--v3-text-secondary);
    margin-top: var(--v3-space-xs);
    font-variant-numeric: tabular-nums;
}

/* Score card progress bar */
.v3-score-card__bar {
    height: var(--v3-space-xs);
    background: var(--v3-surface-3);
    border-radius: var(--v3-radius-xs);
    margin-top: var(--v3-space-sm);
    overflow: hidden;
}

.v3-score-card__bar-fill {
    height: 100%;
    width: 0%;
    border-radius: var(--v3-radius-xs);
    transition: width 1.2s var(--v3-ease-out);
}

.v3-score-card--before .v3-score-card__bar-fill {
    background: linear-gradient(90deg, var(--v3-grade-fail), var(--v3-grade-fail-dark));
}

.v3-score-card--after .v3-score-card__bar-fill {
    background: linear-gradient(90deg, var(--v3-grade-pass), var(--v3-grade-pass-dark));
}

/* Truth cards - individual rounded containers */
.v3-truths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v3-space-sm);
    margin-top: var(--v3-space-xl);
}

.v3-truth {
    background: var(--v3-surface-2);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-lg);
    padding: var(--v3-space-lg);
    text-align: center;
    /* Staggered float-up entrance */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--v3-duration-slow) var(--v3-ease-out),
                transform var(--v3-duration-slow) var(--v3-ease-out),
                background var(--v3-duration-base) var(--v3-ease-out);
}

.v3-truth__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--v3-space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.2));
    transition: transform var(--v3-duration-base) var(--v3-ease-out),
                filter var(--v3-duration-base) var(--v3-ease-out);
}

.v3-truth:hover .v3-truth__icon {
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.35));
    transform: scale(1.08);
}

.v3-truth__icon svg {
    width: 44px;
    height: 44px;
}

.v3-truth:hover .v3-truth__icon {
    transform: scale(1.1);
    color: var(--v3-text-primary);
}

.v3-stagger.is-visible .v3-truth {
    opacity: 1;
    transform: translateY(0);
}

.v3-stagger.is-visible .v3-truth:nth-child(1) { transition-delay: 0ms; }
.v3-stagger.is-visible .v3-truth:nth-child(2) { transition-delay: 150ms; }
.v3-stagger.is-visible .v3-truth:nth-child(3) { transition-delay: 300ms; }

.v3-truth__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--v3-text-primary);
    margin-bottom: var(--v3-space-xs);
}

.v3-truth__desc {
    font-size: 0.875rem;
    color: var(--v3-text-muted);
    line-height: 1.5;
}

/* ========================================
   SECTION 3: FEATURES
   What you can actually do
   ======================================== */

.v3-features {
    padding: var(--v3-space-2xl) 0;
    position: relative;
    border-top: 1px solid var(--v3-border);
}

.v3-features__header {
    text-align: center;
    margin-bottom: var(--v3-space-xl);
}

/* Three Pillars Layout */
.v3-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--v3-border);
    border: 1px solid var(--v3-border);
}

.v3-pillar {
    background: var(--v3-surface-1);
    padding: var(--v3-space-lg) var(--v3-space-lg) var(--v3-space-md);
    display: flex;
    flex-direction: column;
    opacity: 0.4;
    filter: blur(0.5px);
    transition: opacity 0.5s ease, background 0.5s ease, filter 0.5s ease;
}

.v3-pillar.is-featured {
    opacity: 1;
    filter: blur(0);
    background: var(--v3-surface-3);
}

.v3-pillar.is-featured .v3-pillar__number {
    color: var(--v3-accent);
    opacity: 0.6;
}

.v3-pillar__number {
    font-family: var(--v3-font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--v3-surface-3);
    margin-bottom: var(--v3-space-sm);
    transition: color var(--v3-duration-base) ease;
}

.v3-pillar__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--v3-accent);
    background: rgba(255, 138, 76, 0.08);
    border-radius: var(--v3-radius-md);
    margin-bottom: var(--v3-space-md);
}

.v3-pillar__title {
    font-family: var(--v3-font-display);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--v3-text-hero);
    margin-bottom: var(--v3-space-xs);
}

.v3-pillar__desc {
    font-size: 1rem;
    color: var(--v3-text-secondary);
    line-height: 1.65;
    margin-bottom: var(--v3-space-md);
}

/* Pillar visuals */
.v3-pillar__visual {
    margin: auto 0 var(--v3-space-md);
    padding: var(--v3-space-md) 0;
}

.v3-score-status {
    font-size: 0.75rem;
    color: var(--v3-text-muted);
    text-align: center;
    margin-bottom: var(--v3-space-1-5x);
    min-height: 18px;
    transition: opacity 0.3s ease;
}

.v3-mini-score {
    display: flex;
    align-items: center;
    gap: var(--v3-space-md);
    padding: var(--v3-space-md);
    background: var(--v3-surface-0);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-lg);
}

.v3-mini-score__grade {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--v3-grade-fail) 0%, var(--v3-grade-fail-dark) 100%);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--v3-white);
    flex-shrink: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.v3-mini-score__grade.is-complete {
    background: linear-gradient(135deg, var(--v3-grade-pass) 0%, var(--v3-grade-pass-dark) 100%);
    animation: v3-score-pulse 2s ease-in-out infinite;
}

@keyframes v3-score-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(16, 185, 129, 0.3); }
}

.v3-mini-score__bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--v3-space-xs);
}

.v3-mini-score__bar {
    height: var(--v3-space-xs);
    background: var(--v3-surface-3);
    border-radius: var(--v3-radius-xs);
    position: relative;
    overflow: hidden;
}

.v3-mini-score__bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--width, 15%);
    background: linear-gradient(90deg, var(--v3-accent) 0%, var(--v3-accent-light) 100%);
    border-radius: var(--v3-radius-xs);
    transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Venn diagram visual (Tailor pillar) */
.v3-venn {
    position: relative;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-venn__circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.6s ease;
}

.v3-venn__circle--you {
    background: rgba(255, 138, 76, 0.15);
    border: 1px solid rgba(255, 138, 76, 0.3);
    color: var(--v3-accent);
    transform: translateX(-40px);
    z-index: 1;
}

.v3-venn__circle--job {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--v3-grade-pass);
    transform: translateX(40px);
}

.v3-venn__circle.is-hidden {
    color: transparent;
}

.v3-venn.is-merged .v3-venn__circle--you {
    transform: translateX(55px);
}

.v3-venn.is-merged .v3-venn__circle--job {
    transform: translateX(-55px);
}

.v3-venn.is-matched::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 138, 76, 0.4) 0%, transparent 70%);
    animation: v3-venn-sparkle 0.8s ease-out forwards;
    pointer-events: none;
}

@keyframes v3-venn-sparkle {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.v3-venn__match {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-white);
    z-index: 3;
    background: linear-gradient(135deg, var(--v3-accent) 0%, var(--v3-grade-pass) 100%);
    padding: var(--v3-space-sm) 44px;
    min-width: 140px;
    text-align: center;
    border-radius: var(--v3-radius-pill);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.v3-venn.is-matched .v3-venn__match {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: v3-match-flash 0.6s ease;
}

@keyframes v3-match-flash {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.15); }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* Language stack visual (Translate pillar) */
.v3-lang-stack {
    display: flex;
    flex-direction: column;
    gap: var(--v3-space-1-5x);
}

.v3-lang-row {
    display: flex;
    align-items: center;
    gap: var(--v3-space-1-5x);
    justify-content: center;
}

.v3-lang-tag {
    padding: var(--v3-space-xs) var(--v3-space-1-5x);
    background: var(--v3-surface-0);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--v3-text-secondary);
    width: 90px;
    text-align: center;
}

.v3-lang-tag--arrow {
    background: transparent;
    border: none;
    padding: 0;
    width: var(--v3-space-md);
    color: var(--v3-text-muted);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-lang-tag--accent {
    border-color: var(--v3-border-accent);
    color: var(--v3-accent);
}

.v3-lang-source,
.v3-lang-target {
    transition: opacity 0.3s ease;
}

.v3-lang-source.is-fading,
.v3-lang-target.is-fading {
    opacity: 0;
}

/* Pillar detail lists */
.v3-pillar__details {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: var(--v3-space-md);
    border-top: 1px solid var(--v3-border);
    display: flex;
    flex-direction: column;
    gap: var(--v3-space-xs);
}

.v3-pillar__details li {
    font-size: 0.8125rem;
    color: var(--v3-text-muted);
    padding-left: var(--v3-space-sm);
    position: relative;
}

.v3-pillar__details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--v3-accent);
    opacity: 0.5;
}

/* ========================================
   SECTION 4: HOW IT WORKS
   Three steps, dead simple
   ======================================== */

.v3-how {
    padding: var(--v3-space-2xl) 0;
    position: relative;
    border-top: 1px solid var(--v3-border);
}

.v3-how__header {
    text-align: center;
    margin-bottom: var(--v3-space-xl);
}

.v3-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v3-space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.v3-step {
    position: relative;
    padding: var(--v3-space-lg);
    transition: transform var(--v3-duration-base) var(--v3-ease-out);
}

.v3-step:hover {
    transform: translateY(-4px);
}

.v3-step__number {
    font-family: var(--v3-font-display);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--v3-surface-3);
    margin-bottom: var(--v3-space-sm);
    transition: color var(--v3-duration-base) ease;
}

.v3-step:hover .v3-step__number {
    color: var(--v3-accent);
    opacity: 0.3;
}

.v3-step__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--v3-text-primary);
    margin-bottom: var(--v3-space-xs);
}

.v3-step__desc {
    font-size: 1rem;
    color: var(--v3-text-secondary);
    line-height: 1.6;
}

/* ========================================
   SECTION 5: AI SHOWCASE
   Comprehension, not keyword stuffing
   ======================================== */

.v3-ai {
    padding: var(--v3-space-2xl) 0;
    background: var(--v3-surface-1);
    position: relative;
}

/* Gradient transition from black bg */
.v3-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--v3-black) 0%, var(--v3-surface-1) 100%);
    pointer-events: none;
}

.v3-ai__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v3-space-xl);
    align-items: center;
}

.v3-ai__content {
    position: relative;
    z-index: 2;
}

.v3-ai__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--v3-space-xs);
    padding: var(--v3-space-xs) var(--v3-space-sm);
    background: rgba(255, 138, 76, 0.08);
    border: 1px solid rgba(255, 138, 76, 0.2);
    border-radius: var(--v3-radius-pill);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--v3-accent);
    margin-bottom: var(--v3-space-md);
}

.v3-ai__subhead {
    margin: var(--v3-space-md) 0 var(--v3-space-lg);
    max-width: 460px;
}

/* AI Comparison list */
.v3-ai__comparisons {
    display: flex;
    flex-direction: column;
    gap: var(--v3-space-sm);
}

.v3-ai__comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v3-space-xs);
}

.v3-ai__comparison-them,
.v3-ai__comparison-us {
    padding: var(--v3-space-1-5x) var(--v3-space-sm);
    border-radius: var(--v3-radius-sm);
    font-size: 0.875rem;
    line-height: 1.5;
}

.v3-ai__comparison-them {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.12);
    color: var(--v3-text-muted);
}

.v3-ai__comparison-us {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    color: var(--v3-text-secondary);
}

.v3-ai__comparison-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--v3-radius-xs);
}

.v3-ai__comparison-them .v3-ai__comparison-label {
    color: var(--v3-grade-fail);
}

.v3-ai__comparison-us .v3-ai__comparison-label {
    color: var(--v3-grade-pass);
}

/* AI Mockup Visual */
.v3-ai__visual {
    position: relative;
}

.v3-ai__mockup {
    background: var(--v3-surface-0);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-xl);
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.v3-ai__mockup-header {
    display: flex;
    align-items: center;
    gap: var(--v3-space-xs);
    padding: var(--v3-space-sm);
    background: var(--v3-surface-2);
    border-bottom: 1px solid var(--v3-border);
}

.v3-ai__mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--v3-surface-3);
}

.v3-ai__mockup-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--v3-text-muted);
    letter-spacing: 0.02em;
}

.v3-ai__mockup-body {
    padding: var(--v3-space-sm);
}

/* Split-pane mockup interior */
.v3-ai__mockup-split {
    display: flex;
    flex-direction: column;
}

.v3-ai__mockup-pane {
    padding: var(--v3-space-sm);
}

.v3-ai__mockup-pane-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--v3-space-xs);
}

.v3-ai__mockup-pane--keyword .v3-ai__mockup-pane-label {
    color: var(--v3-grade-warn);
}

.v3-ai__mockup-pane--ai .v3-ai__mockup-pane-label {
    color: var(--v3-grade-pass);
}

.v3-ai__mockup-lines {
    display: flex;
    flex-direction: column;
    gap: var(--v3-space-xs);
}

.v3-ai__mockup-line {
    height: var(--v3-space-1-5x);
    background: var(--v3-surface-3);
    border-radius: var(--v3-radius-xs);
}

.v3-ai__mockup-line--short {
    width: 65%;
}

.v3-ai__mockup-line--warn {
    background: rgba(249, 115, 22, 0.25);
}

.v3-ai__mockup-line--pass {
    background: rgba(16, 185, 129, 0.2);
}

.v3-ai__mockup-divider {
    display: flex;
    align-items: center;
    gap: var(--v3-space-xs);
    padding: var(--v3-space-xs) var(--v3-space-sm);
}

.v3-ai__mockup-divider::before,
.v3-ai__mockup-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--v3-border);
}

.v3-ai__mockup-divider span {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--v3-text-muted);
}

.v3-ai__mockup-indicator {
    display: flex;
    align-items: center;
    gap: var(--v3-space-xs);
    padding: var(--v3-space-xs) var(--v3-space-1-5x);
    border-radius: var(--v3-radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: var(--v3-space-xs);
}

.v3-ai__mockup-indicator--warn {
    background: rgba(249, 115, 22, 0.08);
    color: var(--v3-grade-warn);
}

.v3-ai__mockup-indicator--pass {
    background: rgba(16, 185, 129, 0.08);
    color: var(--v3-grade-pass);
}

/* ========================================
   SECTION 6: INSIDER ADVANTAGE
   We built the bots. Now we beat them.
   ======================================== */

.v3-insider {
    padding: var(--v3-space-2xl) 0;
    position: relative;
    border-top: 1px solid var(--v3-border);
}

.v3-insider__card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--v3-space-xl);
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 138, 76, 0.06) 0%, rgba(255, 138, 76, 0.01) 100%);
    border: 1px solid rgba(255, 138, 76, 0.12);
    border-radius: var(--v3-radius-2xl);
    padding: var(--v3-space-xl);
}

.v3-insider__content {
    max-width: 640px;
}

.v3-insider__content .v3-label {
    margin-bottom: var(--v3-space-md);
    display: inline-block;
}

.v3-insider__content .v3-headline-lg {
    margin-bottom: var(--v3-space-md);
}

.v3-insider__content .v3-body-lg {
    max-width: 580px;
}

.v3-insider__stats {
    display: flex;
    gap: var(--v3-space-lg);
    margin-top: var(--v3-space-lg);
    padding-top: var(--v3-space-lg);
    border-top: 1px solid var(--v3-border);
}

.v3-insider__stat {
    text-align: center;
}

.v3-insider__stat-value {
    font-family: var(--v3-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--v3-accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.v3-insider__stat-plus {
    font-family: var(--v3-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--v3-accent);
    line-height: 1;
}

.v3-insider__stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--v3-text-muted);
    margin-top: var(--v3-space-xs);
}

.v3-insider__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.v3-insider__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--v3-space-1-5x);
    padding: var(--v3-space-lg);
    background: var(--v3-surface-2);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-xl);
    color: var(--v3-accent);
}

.v3-insider__badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--v3-text-secondary);
}

/* ========================================
   SECTION 7: TESTIMONIALS
   Real results, no fake logos
   ======================================== */

.v3-proof {
    padding: var(--v3-space-2xl) 0;
    border-top: 1px solid var(--v3-border);
}

.v3-proof__header {
    text-align: center;
    margin-bottom: var(--v3-space-xl);
}

.v3-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--v3-space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.v3-testimonial {
    background: var(--v3-surface-2);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-xl);
    padding: var(--v3-space-lg);
    transition: all var(--v3-duration-base) var(--v3-ease-out);
}

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

/* Star ratings */
.v3-testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--v3-space-1-5x);
    color: var(--v3-accent);
    font-size: 0.875rem;
}

.v3-testimonial__quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--v3-text-secondary);
    margin-bottom: var(--v3-space-md);
}

.v3-testimonial__quote::before {
    content: '\201C';
    color: var(--v3-accent);
    opacity: 0.5;
}

.v3-testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--v3-space-sm);
}

/* Initials avatars */
.v3-testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-testimonial__initials {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--v3-white);
    letter-spacing: 0.02em;
}

/* Token-based avatar gradients */
.v3-testimonial:nth-child(1) .v3-testimonial__avatar { background: var(--v3-avatar-1); }
.v3-testimonial:nth-child(2) .v3-testimonial__avatar { background: var(--v3-avatar-2); }
.v3-testimonial:nth-child(3) .v3-testimonial__avatar { background: var(--v3-avatar-3); }
.v3-testimonial:nth-child(4) .v3-testimonial__avatar { background: var(--v3-avatar-4); }

.v3-testimonial__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--v3-text-primary);
}

.v3-testimonial__role {
    font-size: 0.8125rem;
    color: var(--v3-text-muted);
}

/* ========================================
   SECTION 8: FINAL CTA
   The moment of commitment
   ======================================== */

.v3-cta {
    padding: var(--v3-space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.v3-cta__content {
    position: relative;
    z-index: 2;
}

.v3-cta__headline {
    margin-bottom: var(--v3-space-md);
}

.v3-cta__subhead {
    max-width: 500px;
    margin: 0 auto var(--v3-space-lg);
}

.v3-cta__button {
    margin-bottom: var(--v3-space-md);
}

.v3-cta__note {
    font-size: 0.875rem;
    color: var(--v3-text-muted);
}

.v3-cta__glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: radial-gradient(
        ellipse at bottom,
        rgba(255, 138, 76, 0.15) 0%,
        rgba(255, 138, 76, 0.05) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   BUTTONS - Confident, not desperate
   ======================================== */

.v3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--v3-space-xs);
    padding: var(--v3-space-sm) 40px;
    font-family: var(--v3-font);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--v3-radius-pill);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--v3-duration-fast) var(--v3-ease-out);
}

.v3-btn--primary {
    background: var(--v3-accent);
    color: var(--v3-text-on-accent);
    position: relative;
    overflow: hidden;
}

.v3-btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--v3-duration-fast) ease;
}

.v3-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 40px rgba(255, 138, 76, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.v3-btn--primary:hover::before {
    opacity: 1;
}

.v3-btn--primary:active {
    transform: translateY(0) scale(0.98);
}

.v3-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 138, 76, 0.5);
}

@keyframes v3-btn-shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.v3-btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: v3-btn-shine 3s ease-in-out infinite;
}

.v3-btn--large {
    padding: var(--v3-space-md) 48px;
    font-size: 1.125rem;
}

.v3-btn--secondary {
    background: transparent;
    color: var(--v3-text-secondary);
    border: 1px solid var(--v3-border);
}

.v3-btn--secondary:hover {
    background: var(--v3-surface-2);
    color: var(--v3-text-primary);
    border-color: var(--v3-border);
}

/* ========================================
   FOOTER - Minimal, functional
   ======================================== */

.v3-footer {
    padding: var(--v3-space-xl) 0;
    border-top: 1px solid var(--v3-border);
}

.v3-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v3-footer__links {
    display: flex;
    gap: var(--v3-space-md);
}

.v3-footer__link {
    font-size: 0.875rem;
    color: var(--v3-text-muted);
    text-decoration: none;
    transition: color var(--v3-duration-fast) ease;
}

.v3-footer__link:hover {
    color: var(--v3-text-primary);
}

.v3-footer__copy {
    font-size: 0.8125rem;
    color: var(--v3-text-muted);
}

/* ========================================
   SCROLL ANIMATIONS - Intentional reveals
   ======================================== */

.v3-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity var(--v3-duration-slow) var(--v3-ease-out),
        transform var(--v3-duration-slow) var(--v3-ease-out);
}

.v3-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.v3-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity var(--v3-duration-base) var(--v3-ease-out),
        transform var(--v3-duration-base) var(--v3-ease-out);
}

.v3-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.v3-stagger.is-visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.v3-stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.v3-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.v3-stagger.is-visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.v3-stagger.is-visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }
.v3-stagger.is-visible > *:nth-child(7) { transition-delay: 600ms; opacity: 1; transform: translateY(0); }

.v3-counter {
    font-variant-numeric: tabular-nums;
}

/* ========================================
   TOUCH TARGETS
   Minimum 44px for all interactive elements
   ======================================== */

.v3-nav__link,
.v3-footer__link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: var(--v3-space-xs) var(--v3-space-sm);
}

/* ========================================
   RESPONSIVE - Tablet (1024px)
   ======================================== */

@media (max-width: 1024px) {
    .v3-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .v3-step:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .v3-insider__card {
        grid-template-columns: 1fr;
        padding: var(--v3-space-lg);
        text-align: center;
    }

    .v3-insider__content .v3-body-lg {
        max-width: none;
    }

    .v3-insider__stats {
        justify-content: center;
    }

    .v3-insider__visual {
        order: -1;
    }
}

/* ========================================
   RESPONSIVE - Tablet narrow (991px)
   ======================================== */

@media (max-width: 991px) {
    .v3-truths {
        grid-template-columns: 1fr;
    }

    .v3-score-pair {
        flex-direction: column;
    }

    .v3-score-pair__divider {
        transform: rotate(90deg);
    }

    .v3-pillars {
        grid-template-columns: 1fr;
    }

    .v3-pillar,
    .v3-pillar.is-featured {
        opacity: 1;
        filter: none;
        background: var(--v3-surface-1);
    }

    .v3-ai__layout {
        grid-template-columns: 1fr;
        gap: var(--v3-space-lg);
    }

    .v3-ai__content {
        text-align: center;
    }

    .v3-ai__subhead {
        margin-left: auto;
        margin-right: auto;
    }

    .v3-ai__comparisons {
        max-width: 500px;
        margin: 0 auto;
    }

    .v3-steps {
        grid-template-columns: 1fr;
        gap: var(--v3-space-md);
    }

    .v3-step:last-child {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .v3-testimonials {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESPONSIVE - Mobile (767px)
   ======================================== */

@media (max-width: 767px) {
    :root {
        --v3-space-xl: 60px;
        --v3-space-2xl: 80px;
        --v3-space-3xl: 120px;
    }

    .v3-container {
        padding: 0 var(--v3-space-sm);
    }

    .v3-nav {
        padding: var(--v3-space-sm);
    }

    .v3-problem__number {
        font-size: clamp(4rem, 25vw, 8rem);
    }

    .v3-pillar__number {
        font-size: 3rem;
    }

    .v3-venn__circle {
        width: 90px;
        height: 90px;
    }

    .v3-venn {
        height: 120px;
    }

    .v3-lang-tag {
        padding: 5px var(--v3-space-xs);
        font-size: 0.7rem;
        width: 75px;
    }

    .v3-lang-row {
        gap: var(--v3-space-xs);
    }

    .v3-lang-tag--arrow {
        width: var(--v3-space-sm);
    }

    .v3-ai__comparison {
        grid-template-columns: 1fr;
    }

    .v3-insider__card {
        padding: var(--v3-space-md);
    }

    .v3-insider__stats {
        gap: var(--v3-space-md);
    }

    .v3-insider__stat-value,
    .v3-insider__stat-plus {
        font-size: 2rem;
    }

    .v3-footer__inner {
        flex-direction: column;
        gap: var(--v3-space-md);
        text-align: center;
    }

    .v3-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ========================================
   RESPONSIVE - Small phone (480px)
   ======================================== */

@media (max-width: 480px) {
    :root {
        --v3-space-xl: 48px;
        --v3-space-2xl: 64px;
        --v3-space-3xl: 96px;
    }

    .v3-headline-massive {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .v3-score-pair {
        flex-direction: column;
    }

    .v3-score-card {
        padding: var(--v3-space-md);
    }

    .v3-score-card__grade {
        font-size: 3.5rem;
    }

    .v3-venn__circle {
        font-size: 0.875rem;
        width: 80px;
        height: 80px;
    }

    .v3-btn {
        width: 100%;
        max-width: none;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .v3-hero__headline,
    .v3-hero__line-inner,
    .v3-hero__subhead,
    .v3-hero__cta,
    .v3-hero__scroll,
    .v3-hero__badge,
    .v3-reveal,
    .v3-stagger > * {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .v3-hero__scroll-line,
    .v3-btn--primary::after {
        animation: none;
    }

    .v3-step:hover,
    .v3-testimonial:hover,
    .v3-pillar:hover,
    .v3-btn--primary:hover {
        transform: none;
    }

    .v3-pillar:hover .v3-pillar__number {
        color: var(--v3-surface-3);
    }

    .v3-mini-score__grade {
        background: linear-gradient(135deg, var(--v3-grade-pass) 0%, var(--v3-grade-pass-dark) 100%) !important;
    }

    .v3-mini-score__bar::after {
        transition: none;
    }

    .v3-venn.is-merged .v3-venn__circle,
    .v3-venn__circle {
        transition: none;
    }

    .v3-venn__match {
        transition: none;
        opacity: 1;
    }

    .v3-lang-target {
        transition: none;
    }

    /* Score transformation - snap to final state */
    .v3-score-card__bar-fill {
        transition: none;
    }

    @keyframes v3-score-pulse {
        0%, 100% { box-shadow: none; }
    }
}

/* ========================================
   LIGHT MODE OVERRIDES
   ======================================== */

[data-theme="light"] .v3-page {
    --v3-black: #ffffff;
    --v3-white: #000000;
    --v3-surface-0: #ffffff;
    --v3-surface-1: #f8f8f8;
    --v3-surface-2: #f0f0f0;
    --v3-surface-3: #e8e8e8;
    --v3-text-hero: #000000;
    --v3-text-primary: rgba(0, 0, 0, 0.90);
    --v3-text-secondary: rgba(0, 0, 0, 0.65);
    --v3-text-muted: rgba(0, 0, 0, 0.40);
    --v3-border: rgba(0, 0, 0, 0.08);

    background: var(--v3-black);
}

[data-theme="light"] .v3-nav {
    mix-blend-mode: normal;
}

[data-theme="light"] .v3-nav__logo,
[data-theme="light"] .v3-nav__link {
    color: var(--v3-text-primary);
}

[data-theme="light"] .v3-page::before {
    opacity: 0.02;
}

[data-theme="light"] .v3-hero__glow,
[data-theme="light"] .v3-cta__glow {
    opacity: 0.5;
}

[data-theme="light"] .v3-score-card--after.is-animated {
    box-shadow:
        0 0 60px rgba(255, 138, 76, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .v3-ai::before {
    background: linear-gradient(180deg, var(--v3-black) 0%, var(--v3-surface-1) 100%);
}

[data-theme="light"] .v3-ai__mockup {
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .v3-mini-score {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Keep initials white on gradient backgrounds in light mode */
[data-theme="light"] .v3-testimonial__initials {
    color: var(--v3-white);
}

[data-theme="light"] .v3-score-card__bar {
    background: var(--v3-surface-3);
}
