/* Experimental Contemporary Artist Portfolio CSS */
/* Inspired by Bruno Simon, Aristide Benoist, Active Theory */

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: var(--token-color-textPrimary);
    --primary-white: var(--token-color-background);
    --accent-gray: var(--token-color-textSecondary);
    --light-gray: var(--token-color-surface);
    --particle-color: rgba(0, 0, 0, 0.08);
    /* Neutral accent derived from monochrome tokens */
    --glitch-color: var(--token-color-accentCyanTeal);
    --glitch-color-rgb: 45, 164, 160;
    --cursor-blend: difference;

    /* ===== Brand Tokens Mapping ===== */
    /* Colors (from work/Projects/PROFILE/Website_Brand_Alignment/brand_tokens.json) */
    --token-color-background: #0B0B0B; /* near-black */
    --token-color-surface: #111111;
    --token-color-textPrimary: #F2F2F2;
    --token-color-textSecondary: #A0A0A0;
    --token-color-accentWarm: #C6724D; /* warm/coral/crimson */
    --token-color-accentCrimson: #B4443C;
    --token-color-accentBlueGreen: #0E3B3A; /* deep blue-green */
    --token-color-accentCyanTeal: #2DA4A0; /* subtle LED teal */
    --token-color-border: #1E1E1E;

    /* Typography families */
    --token-font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    --token-font-display: 'Space Grotesk', Inter, system-ui, sans-serif;
    --token-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;

    /* Motion */
    --token-motion-fast: 80ms;
    --token-motion-normal: 160ms;
    --token-motion-slow: 320ms;
    --token-motion-slower: 560ms;
    --token-ease-standard: cubic-bezier(0.2, 0, 0, 1);
    --token-ease-decelerate: cubic-bezier(0, 0, 0, 1);
    --token-ease-accelerate: cubic-bezier(0.3, 0, 1, 1);

    /* Dynamic background colors (updated via JS) */
    --bg-1: rgba(45,164,160,0.16);
    --bg-2: rgba(196,114,77,0.12);
}

body {
    font-family: var(--token-font-sans);
    line-height: 1.4;
    color: var(--primary-black);
    background-color: var(--primary-white);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global dynamic background layer */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(60vh 60vh at 70% 35%, var(--bg-1), transparent 60%),
        radial-gradient(40vh 40vh at 25% 65%, var(--bg-2), transparent 60%);
    transition: background 200ms var(--token-ease-standard);
}

/* ==================== STUDIO DISCOVERY (Grid, hover to theme) ==================== */
.studio-discovery { position: relative; padding: 80px 4vw; }

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

.studio-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 36px 24px;
    border: 1px solid var(--token-color-border);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    transition: transform 200ms var(--token-ease-standard), border-color 200ms var(--token-ease-standard), background 200ms var(--token-ease-standard);
}

.studio-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.16); }

.studio-card .slide-title { margin-bottom: 8px; }

.studio-card .media-grid img { height: 28vh; }

@media (max-width: 1000px) {
    .studio-grid { grid-template-columns: 1fr; }
    .studio-card { grid-template-columns: 1fr; gap: 12px; }
}

.slide-inner { display: contents; }

.slide-col { padding: 0 2vw; }

.slide-title {
    font-family: var(--token-font-display);
    font-size: clamp(40px, 7vw, 96px);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.slide-kicker {
    font-family: var(--token-font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gray);
    margin-bottom: 8px;
}

.slide-sub { color: var(--accent-gray); margin-top: 8px; font-family: var(--token-font-mono); }

.slide-body { margin-top: 16px; font-size: 18px; line-height: 1.6; max-width: 56ch; }

.slide-cta {
    display: inline-block;
    margin-top: 20px;
    border: 1px solid var(--primary-black);
    padding: 10px 14px;
    color: var(--primary-black);
    text-decoration: none;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.media-grid img {
    width: 100%;
    height: 42vh;
    object-fit: cover;
    filter: grayscale(20%);
}

/* remove dots in grid mode */
.studio-dots { display: none; }

/* Mode-themed accents per slide (keeps global coherence) */
.slide-public { background:
    radial-gradient(600px 600px at 70% 40%, rgba(196,114,77,0.16), transparent 60%);
}

.slide-performing { background:
    radial-gradient(600px 600px at 70% 40%, rgba(45,164,160,0.16), transparent 60%);
}

.slide-brand { background:
    radial-gradient(600px 600px at 70% 40%, rgba(200,160,120,0.16), transparent 60%);
}

@media (max-width: 900px) {
    .studio-slide {
        grid-template-columns: 1fr;
        padding: 8vh 5vw;
        gap: 24px;
    }
    .media-grid { grid-template-columns: 1fr 1fr; }
    .media-grid img { height: 28vh; }
    .studio-rail { overflow-x: auto; }
}

/* ==================== RADICAL STACK SECTIONS ==================== */
.promise-strip,
.proof-section,
.philosophy-section,
.process-section,
.highlights-section,
.cta-section {
    padding: 72px 4vw;
    position: relative;
    overflow: hidden;
}

/* Inspired by Active Theory/Aristide Benoist - floating elements on scroll */
.promise-strip::before,
.philosophy-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(45,164,160,0.06), transparent 70%);
    border-radius: 50%;
    animation: floatParticle 20s linear infinite;
    pointer-events: none;
}

.philosophy-section::before {
    animation-delay: -10s;
    background: radial-gradient(circle, rgba(196,114,77,0.04), transparent 70%);
}

.kicker { color: var(--accent-gray); letter-spacing: 0.1em; text-transform: uppercase; font-size: 12px; margin-bottom: 8px; }
.sub { color: var(--accent-gray); margin-top: 8px; }

/* Proof / Press & Partners */
.proof-section {
    position: relative;
}

.proof-section::before,
.proof-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    filter: blur(30px);
    opacity: 0.18;
}

/* Soft radial accents behind quotes */
.proof-section::before {
    top: -20%;
    left: -10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 30% 30%, rgba(45,164,160,0.20), transparent 60%);
}

.proof-section::after {
    bottom: -15%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 70% 70%, rgba(198,114,77,0.18), transparent 60%);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: start;
}

/* Elevate section title slightly */
.proof-section .section-title {
    font-family: var(--token-font-display);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Quote cards */
.quote {
    position: relative;
    border: 1px solid var(--token-color-border);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    padding: 24px 24px 24px 36px;
    transition: transform var(--token-motion-normal) var(--token-ease-standard),
                border-color var(--token-motion-normal) var(--token-ease-standard),
                box-shadow var(--token-motion-normal) var(--token-ease-standard);
}

.quote::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 8px;
    font-family: var(--token-font-display);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    color: rgba(255,255,255,0.06);
    pointer-events: none;
}

.quote::after {
    content: '';
    position: absolute;
    left: -1px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, rgba(45,164,160,0), rgba(45,164,160,0.7), rgba(45,164,160,0));
    background-size: 100% 200%;
    animation: quoteFlow var(--token-motion-slower) linear infinite;
}

@keyframes quoteFlow {
    0% { background-position: 0 0; }
    100% { background-position: 0 200%; }
}

.quote p { font-size: clamp(18px, 2vw, 28px); line-height: 1.5; }
.quote cite { display: block; margin-top: 8px; color: var(--accent-gray); font-family: var(--token-font-mono); }

/* Legacy metric styles kept for compatibility, but not used */
.metric { border: 1px solid var(--token-color-border); padding: 16px; background: var(--token-color-surface); }
.metric-value { font-family: var(--token-font-display); font-size: clamp(36px, 6vw, 72px); display: block; }
.metric-label { color: var(--accent-gray); }

.logos { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 12px 16px; 
    align-items: center; 
    grid-column: 1 / -1; /* span both columns */
}
.logos .logo { 
    font-family: var(--token-font-mono); 
    font-size: 12px; 
    opacity: 0.8; 
    border: 1px dashed var(--token-color-border); 
    padding: 6px 10px; 
    border-radius: 6px; 
    transition: transform var(--token-motion-normal) var(--token-ease-standard),
                border-color var(--token-motion-normal) var(--token-ease-standard),
                opacity var(--token-motion-normal) var(--token-ease-standard);
}

.quote:hover { 
    transform: translateY(-2px);
    border-color: rgba(45,164,160,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.logos .logo:hover {
    transform: translateY(-2px);
    border-color: rgba(45,164,160,0.4);
    opacity: 1;
}

/* Philosophy */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { border: 1px solid var(--token-color-border); padding: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); }
.pillar h3 { font-family: var(--token-font-display); font-weight: 400; margin-bottom: 8px; }
.pillar p { color: var(--primary-black); opacity: 0.9; }

/* Process - Interactive Double Diamond */
.process-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 32px;
    overflow: hidden;
}

.double-diamond-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.diamond-path {
    fill: none;
    stroke: var(--token-color-border);
    stroke-width: 1;
    opacity: 0.92;
}

.diamond-progress {
    fill: none;
    stroke: var(--primary-black);
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 0.05s ease-out;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.2));
  
}

.process-stages {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
}

/* Position stages to match diamond halves */
.process-stage[data-stage="1"] {
    /* Discover - First half of first diamond */
    grid-column: 1/ 2;
}

.process-stage[data-stage="2"] {
    /* Define - Second half of first diamond */
    grid-column: 2 / 3;
}

.process-stage[data-stage="3"] {
    /* Develop - First half of second diamond */
    grid-column: 3 / 4;
}

.process-stage[data-stage="4"] {
    /* Deliver - Second half of second diamond */
    grid-column: 4 / 5;
}

.process-stage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0.4;
    transition: all var(--token-motion-normal) var(--token-ease-standard);
    position: relative;
}

.process-stage.active {
    opacity: 1;
    transform: translateY(-8px);
}

.process-stage.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-black);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.step-title { 
    font-family: var(--token-font-display); 
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 18px;
}

.process-stage p {
    font-size: 14px;
    line-height: 1.4;
    max-width: 200px;
}

.progress-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--token-font-mono);
    font-size: 12px;
    color: var(--accent-gray);
    opacity: 0.8;
}

.caption { margin-top: 24px; color: var(--accent-gray); text-align: center; }

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

/* Highlights - Inspired by Lusion/Bruno Simon with advanced hover states */
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.highlight-card { 
    display: grid; 
    grid-template-rows: auto 1fr; 
    text-decoration: none; 
    color: inherit; 
    border: 1px solid var(--token-color-border);
    position: relative;
    overflow: hidden;
    transition: all var(--token-motion-slow) var(--token-ease-standard);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45,164,160,0.08), transparent);
    transition: left var(--token-motion-slower) var(--token-ease-standard);
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-media { position: relative; overflow: hidden; }
.highlight-media img { 
    width: 100%; 
    height: 40vh; 
    object-fit: cover; 
    filter: grayscale(20%); 
    transition: all var(--token-motion-slow) var(--token-ease-standard);
}

.highlight-card:hover .highlight-media img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.highlight-copy { padding: 14px; position: relative; z-index: 2; }
.highlight-card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(45,164,160,0.3);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

/* CTA - Inspired by Terminal Industries radical button design */
.cta-actions { display: flex; gap: 12px; margin-top: 16px; }
.btn { 
    display: inline-block; 
    padding: 12px 16px; 
    border: 1px solid var(--primary-black); 
    color: var(--primary-black); 
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all var(--token-motion-normal) var(--token-ease-standard);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--glitch-color);
    transition: all var(--token-motion-slow) var(--token-ease-standard);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    color: var(--primary-white);
    border-color: var(--glitch-color);
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn.primary { 
    background: rgba(var(--glitch-color-rgb), 0.12); 
    border-color: var(--glitch-color); 
}

/* Responsive */
@media (max-width: 1000px) {
    .proof-grid { grid-template-columns: 1fr; }
    .pillars { grid-template-columns: 1fr; }
    .process-container { height: 300px; }
    .process-stages { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .process-container { height: 600px; }
    .process-stages { grid-template-columns: 1fr; grid-template-rows: repeat(4, 1fr); }
}

/* Hide system cursor only when custom cursor is active */
body.has-cursor,
body.has-cursor *,
body.has-cursor *::before,
body.has-cursor *::after { cursor: none !important; }

/* Mode shift visual emphasis */
body.mode-shift .hero-canvas {
    background: radial-gradient(700px 700px at 70% 40%, rgba(196,114,77,0.28), transparent 60%),
                radial-gradient(500px 500px at 30% 60%, rgba(45,164,160,0.22), transparent 60%);
}

body.mode-shift #noise-canvas { opacity: 0.18; }

/* Scroll-driven modes (radical integration) */
.mode-public-art {
    --glitch-color-rgb: 196,114,77; /* warm */
    --glitch-color: rgba(196,114,77,1);
}
.mode-public-art .hero-canvas {
    background: radial-gradient(700px 700px at 70% 40%, rgba(196,114,77,0.28), transparent 60%),
                radial-gradient(500px 500px at 30% 60%, rgba(90,60,30,0.18), transparent 60%);
}

.mode-performing-arts {
    --glitch-color-rgb: 45,164,160; /* teal */
    --glitch-color: rgba(45,164,160,1);
}
.mode-performing-arts .hero-canvas {
    background: radial-gradient(700px 700px at 70% 40%, rgba(45,164,160,0.26), transparent 60%),
                radial-gradient(500px 500px at 30% 60%, rgba(25,80,78,0.18), transparent 60%);
}

.mode-brand-collab {
    --glitch-color-rgb: 200,160,120; /* warmer neutral */
    --glitch-color: rgba(200,160,120,1);
}
.mode-brand-collab .hero-canvas {
    background: radial-gradient(700px 700px at 70% 40%, rgba(200,160,120,0.26), transparent 60%),
                radial-gradient(500px 500px at 30% 60%, rgba(60,60,60,0.2), transparent 60%);
}

/* Ensure all elements hide default cursor — scoped via body.has-cursor (see lines above) */

/* ==================== PARTICLE BACKGROUND ==================== */
#particle-canvas { display: none; }

/* ==================== FLOATING ELEMENTS ==================== */
.floating-elements { display: none; }

.floating-dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-black);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s linear infinite;
}

.floating-dot:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-dot:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.floating-dot:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: -14s;
}

.floating-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-black), transparent);
    opacity: 0.1;
    animation: lineFloat 25s linear infinite;
}

.floating-line:nth-child(4) {
    top: 0;
    left: 25%;
    animation-delay: -5s;
}

.floating-line:nth-child(5) {
    top: 0;
    right: 35%;
    animation-delay: -12s;
}

/* ==================== CUSTOM CURSOR - MOVEMENT TRACKER ==================== */
.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: normal;
    opacity: 1;
    will-change: transform;
    transition: none; /* Real-time tracking */
}

.cursor-inner {
    width: 3px;
    height: 3px;
    background: var(--primary-black);
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 6px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 1);
    position: relative;
}

/* Motion capture crosshairs */
.cursor-outer {
    /* Dot-only cursor preference: hide outer crosshair by default */
    display: none;
}

/* Crosshair lines for motion tracking */
.cursor-outer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.8), transparent);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.cursor-outer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8), transparent);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

/* Movement trail system */
.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    width: 2px;
    height: 2px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transition: opacity 0.3s ease-out;
}

/* Movement tracking hover effect */
.cursor.hover {
    transform: scale(1);
}

.cursor.hover .cursor-inner {
    width: 4px;
    height: 4px;
    background: var(--primary-black);
    box-shadow: 
        0 0 8px rgba(0, 0, 0, 1),
        0 0 16px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 1);
}

.cursor.hover .cursor-outer { display: none; }

/* Enhanced crosshairs on hover */
.cursor.hover .cursor-outer::before { display: none; }

.cursor.hover .cursor-outer::after { display: none; }

/* Fish-eye magnification effect */
.cursor-magnify-area {
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 3px solid var(--primary-black);
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(0, 0, 0, 0.3);
}

.cursor.hover + .cursor-magnify-area {
    transform: scale(1);
}

/* Enhanced cursor visibility with radical interactions */
.cursor {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
    transition: all 0.1s ease-out;
}

/* Cursor states inspired by Active Theory */
.cursor.hover-interactive {
    transform: scale(2);
}

.cursor.hover-interactive .cursor-inner {
    width: 8px;
    height: 8px;
    background: var(--glitch-color);
    box-shadow: 
        0 0 12px var(--glitch-color),
        0 0 24px rgba(var(--glitch-color-rgb), 0.6);
}

/* Text selection cursor */
.cursor.hover-text .cursor-inner {
    width: 2px;
    height: 20px;
    border-radius: 1px;
    background: var(--primary-black);
}

/* Process step hover effect inspired by Locomotive Scroll */
.process-steps li {
    transition: all var(--token-motion-normal) var(--token-ease-standard);
    position: relative;
    overflow: hidden;
}

.process-steps li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--glitch-color);
    transition: width var(--token-motion-slow) var(--token-ease-standard);
}

.process-steps li:hover::after {
    width: 100%;
}

.process-steps li:hover {
    transform: translateY(-2px);
    background: rgba(var(--glitch-color-rgb), 0.04);
}

/* Context-specific movement tracking behaviors */
.cursor.hover-image {
    animation: imageMotionCapture 2s ease-in-out infinite;
}

.cursor.hover-image .cursor-outer::before,
.cursor.hover-image .cursor-outer::after { display: none; }

.cursor.hover-text .cursor-outer::before { display: none; }

.cursor.hover-text .cursor-outer::after { display: none; }

.cursor.hover-nav .cursor-inner {
    background: var(--glitch-color);
    border-color: var(--glitch-color);
    animation: navigationPulse 1.2s ease-in-out infinite;
}

.cursor.hover-nav .cursor-outer::before,
.cursor.hover-nav .cursor-outer::after { display: none; }

/* Movement tracking animations */
@keyframes motionTrackingPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8; 
    }
    50% { 
        transform: scale(1.1) rotate(180deg); 
        opacity: 1; 
    }
}

@keyframes imageMotionCapture {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

@keyframes motionAnalysis {
    0%, 100% { 
        opacity: 1; 
        width: 40px; 
        height: 1px; 
    }
    25% { 
        opacity: 0.6; 
        width: 32px; 
    }
    50% { 
        opacity: 1; 
        width: 48px; 
        height: 2px; 
    }
    75% { 
        opacity: 0.8; 
        width: 36px; 
    }
}

@keyframes textMovementScan {
    0%, 100% { 
        opacity: 0.8; 
        width: 24px; 
    }
    25% { 
        opacity: 0.4; 
        width: 32px; 
    }
    50% { 
        opacity: 1; 
        width: 40px; 
    }
    75% { 
        opacity: 0.6; 
        width: 28px; 
    }
}

@keyframes navigationPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 8px rgba(var(--glitch-color-rgb), 0.6); 
    }
    50% { 
        transform: scale(1.2); 
        box-shadow: 0 0 16px rgba(var(--glitch-color-rgb), 1); 
    }
}

@keyframes navigationTracking {
    0% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scaleX(1); 
    }
    25% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scaleX(1.2); 
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scaleX(0.8); 
    }
    75% { 
        opacity: 0.8; 
        transform: translate(-50%, -50%) scaleX(1.1); 
    }
    100% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scaleX(1); 
    }
}

/* ==================== NAVIGATION ==================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.parted {
    transform: translateY(-100%);
    opacity: 0;
}

.main-nav.scrolled {
    background: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.brand-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 4px;
    display: flex;
    gap: 2px;
}

.brand-title .char {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-title .char:hover {
    transform: translateY(-5px) rotate(5deg);
    color: var(--glitch-color);
}

.brand-title .space {
    width: 12px;
}

.brand-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--accent-gray);
    position: relative;
}

/* Glitch effect removed per user feedback */

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

.nav-item.has-dropdown { position: relative; }

.nav-dropdown-toggle { background: transparent; border: none; padding: 0; cursor: pointer; }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 180px;
    padding: 8px;
    background: rgba(11,11,11,0.95);
    border: 1px solid var(--token-color-border);
    backdrop-filter: blur(8px);
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1200;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px; /* hover buffer to prevent flicker */
}

.nav-item.open .nav-dropdown { display: flex; }

/* Hover open and higher contrast on hover */
.nav-item.has-dropdown:hover .nav-dropdown { display: flex; }
.nav-item.has-dropdown:focus-within .nav-dropdown { display: flex; }
.main-nav:hover { background: rgba(11,11,11,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.main-nav:hover .nav-link, .main-nav:hover .dropdown-link { color: #ffffff; }
.main-nav:hover .link-line { background: #ffffff; }

.dropdown-link {
    appearance: none;
    text-align: left;
    border: none;
    background: transparent;
    color: var(--primary-black);
    padding: 8px 10px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-link .link-text {
    position: relative;
    z-index: 2;
}

.nav-link .link-line {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-black);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .link-line {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 1px;
    background: var(--primary-black);
    transition: all 0.3s ease;
}

/* Overlay & Spotlight triggers */
.spotlight-trigger {
    appearance: none;
    background: transparent;
    border: 1px solid var(--token-color-border);
    padding: 6px 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-black);
    transition: background 0.2s var(--token-ease-standard), color 0.2s var(--token-ease-standard);
}

.spotlight-trigger:hover {
    background: var(--primary-black);
    color: var(--primary-white);
}

/* High-contrast hover state for entire nav region */
.main-nav:hover .spotlight-trigger { border-color: rgba(255,255,255,0.35); }

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* ==================== RADICAL MODE DIAL ==================== */
.mode-dial {
    position: relative;
    height: 80vh;
    margin: 40px 0 20px;
    display: grid;
    place-items: center;
}

.mode-dial-title {
    position: absolute; left: 4vw; top: 20%; transform: translateY(-50%);
    font-family: var(--token-font-display);
    font-size: clamp(28px, 5vw, 80px); font-weight: 200; letter-spacing: -0.02em;
    z-index: 2;
}

.mode-dial .dial-bg {
    position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.mode-dial .dial-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 300ms var(--token-ease-standard); filter: grayscale(20%) contrast(110%); }
.mode-dial .dial-bg img.active { opacity: 0.6; mix-blend-mode: screen; }

.dial {
    position: relative; width: min(70vh, 90vw); height: min(70vh, 90vw); border-radius: 50%;
    border: 1px solid var(--token-color-border);
    backdrop-filter: blur(6px);
    display: grid; place-items: center; z-index: 1;
    transition: transform 300ms var(--token-ease-standard);
}

.dial-center { position: absolute; width: 140px; height: 140px; border-radius: 70px; display: grid; place-items: center; border:1px solid var(--token-color-border); background: rgba(0,0,0,0.2); font-family: var(--token-font-mono); letter-spacing: 2px; text-transform: uppercase; }

.dial-segment { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.6); opacity: 0;
    background: transparent; border: 1px solid var(--token-color-border); padding: 10px 12px; color: var(--primary-black); cursor: pointer; backdrop-filter: blur(4px); }
.dial-segment span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

.dial-segment:hover { border-color: rgba(255,255,255,0.2); }

.seg-public:hover { box-shadow: 0 0 0 2px rgba(196,114,77,0.2) inset; }
.seg-performing:hover { box-shadow: 0 0 0 2px rgba(45,164,160,0.2) inset; }
.seg-brand:hover { box-shadow: 0 0 0 2px rgba(200,160,120,0.2) inset; }
.seg-research:hover { box-shadow: 0 0 0 2px rgba(140,140,200,0.2) inset; }

/* entry animation from center outwards to spaced resting positions */
.seg-public { animation: segEnter 1000ms var(--token-ease-standard) 120ms forwards; --angle:-90deg; --radius: 500%; }
.seg-performing { animation: segEnter 1000ms var(--token-ease-standard) 260ms forwards; --angle:0deg; --radius: 500%; }
.seg-brand { animation: segEnter 1000ms var(--token-ease-standard) 380ms forwards; --angle:120deg; --radius: 500%; }
.seg-research { animation: segEnter 1000ms var(--token-ease-standard) 500ms forwards; --angle:240deg; --radius: 500%; }

@keyframes segEnter {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
  40% { transform: translate(-50%, -50%) scale(0.9); opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(var(--angle)) translate(0, calc(var(--radius) * -1)) rotate(calc(var(--angle) * -1)); opacity: 1; }
}

/* gentle hover bob after arrival */
.dial-segment:hover span { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }

.hero-split .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 100vh;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16vh 8vw;
}

.hero-brand {
    font-family: var(--token-font-display);
    font-size: clamp(40px, 8vw, 96px);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hero-sub {
    margin-top: 8px;
    color: var(--token-color-textSecondary);
    font-family: var(--token-font-mono);
    letter-spacing: 1px;
}

.hero-quick-links {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-link {
    color: var(--primary-black);
    text-decoration: none;
    border-bottom: 1px solid var(--token-color-border);
    padding-bottom: 6px;
    width: fit-content;
}

.hero-right {
    position: relative;
    background: linear-gradient(135deg, rgba(13,13,13,1), rgba(30,30,30,1));
}

.hero-media { position: absolute; inset: 0; }
.hero-image {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(20%) contrast(105%);
    opacity: 0.9;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 600px at 70% 40%, rgba(45,164,160,0.25), transparent 60%),
                radial-gradient(400px 400px at 30% 60%, rgba(196,114,77,0.18), transparent 60%);
}

#noise-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
    opacity: 0.14;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.05;
    animation: shapeFloat 30s linear infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-black);
    transform: rotate(45deg);
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--primary-black);
    animation-delay: -10s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--primary-black);
    animation-delay: -20s;
}

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

/* ==================== HERO STATEMENT ==================== */
.hero-statement {
    margin-bottom: 64px;
}

.statement-line {
    font-family: var(--token-font-display);
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 200;
    line-height: 0.9;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.word {
    display: inline-block;
    margin-right: 0.2em;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.word:hover {
    transform: translateY(-8px);
    color: var(--glitch-color);
}

.word.highlight {
    font-weight: 600;
    position: relative;
}

.word.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-black);
    opacity: 0.2;
}

/* ==================== HERO META ==================== */
.hero-meta { margin-top: 16px; max-width: 640px; }

.meta-text {
    font-size: 18px;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mono {
    font-family: var(--token-font-mono);
    font-weight: 300;
    color: var(--accent-gray);
}

.italic {
    font-style: italic;
    font-weight: 500;
    color: var(--primary-black);
}

/* ==================== HERO CATEGORIES ==================== */
.hero-categories,
.category-grid,
.category-card,
.category-number,
.category-title,
.category-line { display: none !important; }

/* ==================== EXPERIMENTAL GALLERY ==================== */
.hero-gallery,
.gallery-experimental,
.image-cluster,
.cluster-1,
.cluster-2,
.cluster-3,
.floating-image { display: none !important; }

/* ==================== SCROLL INDICATOR ==================== */
.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--primary-black);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--token-font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    color: var(--accent-gray);
}

/* ==================== SECTIONS ==================== */
.what-i-offer-section,
.domains-section,
.about-section,
.contact-section {
    padding: 112px 4vw;
    position: relative;
    transform: none;
    margin: 0;
}

/* About section legibility */
.about-section .about-content { max-width: 1100px; margin: 0 auto; }
.about-section .about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 32px; align-items: start; }
.about-section .about-media img { width: 100%; height: auto; display: block; border: 1px solid var(--token-color-border); background: var(--token-color-surface); }
.about-section .about-text { max-width: 70ch; }
.about-section .about-text p { font-size: 18px; line-height: 1.7; }
.about-section .methodologies { margin-top: 20px; }
.about-section .methodologies h4 { font-family: var(--token-font-display); font-weight: 400; margin-bottom: 10px; }
.about-section .methodologies ul { padding-left: 18px; }
.about-section .methodologies li { margin-bottom: 8px; }

@media (max-width: 900px) {
    .about-section .about-grid { grid-template-columns: 1fr; }
}

.container {
    /* 12-col baseline container with full-bleed option */
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--token-font-display);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 200;
    margin-bottom: 64px;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--primary-black);
}

/* removed Featured Program and Process styles per direction */

/* ==================== ANIMATIONS ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes lineFloat {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(calc(100vh + 100px)); }
}

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-100px) translateX(50px) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-200px) translateX(-30px) rotate(180deg); opacity: 0.4; }
    75% { transform: translateY(-150px) translateX(-80px) rotate(270deg); opacity: 0.7; }
    100% { transform: translateY(0) translateX(0) rotate(360deg); opacity: 0.6; }
}

@keyframes shapeFloat {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(0.9); }
    75% { transform: rotate(270deg) scale(1.1); }
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes glitch {
    0%, 100% { opacity: 1; }
    98%, 99% { opacity: 0.8; }
}

@keyframes glitch-1 {
    0% { transform: translate(0); opacity: 0; }
    1% { transform: translate(-2px, -1px); opacity: 1; }
    2% { transform: translate(0); opacity: 0; }
    98% { transform: translate(0); opacity: 0; }
    99% { transform: translate(2px, 1px); opacity: 1; }
    100% { transform: translate(0); opacity: 0; }
}

@keyframes glitch-2 {
    0% { transform: translate(0); opacity: 0; }
    1% { transform: translate(1px, 2px); opacity: 1; }
    2% { transform: translate(0); opacity: 0; }
    98% { transform: translate(0); opacity: 0; }
    99% { transform: translate(-1px, -2px); opacity: 1; }
    100% { transform: translate(0); opacity: 0; }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor {
        display: none;
    }
    
    .main-nav {
        padding: 24px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-section { padding: 0; }
    
    .statement-line { font-size: clamp(28px, 9vw, 48px); }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .image-cluster {
        display: none;
    }
    
    .floating-elements {
        display: none;
    }
    
    .geometric-shapes {
        display: none;
    }
    
    .what-i-offer-section,
    .domains-section,
    .about-section,
    .contact-section {
        padding: 80px 24px;
    }
}

/* ==================== LARGE SCREENS ==================== */
@media (min-width: 1400px) {
    .what-i-offer-section,
    .domains-section,
    .about-section,
    .contact-section {
        transform: scale(0.75);
        margin: -15% 0;
    }
    
    .floating-image {
        width: 160px;
        height: 120px;
    }
    
    .floating-image:nth-child(1) {
        width: 180px;
        height: 140px;
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-elements,
    .geometric-shapes {
        display: none;
    }
}

/* ==================== DARK MODE SUPPORT ==================== */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-black: #ffffff;
        --primary-white: #000000;
        --accent-gray: #cccccc;
        --light-gray: #1a1a1a;
    }
    
    body {
        background-color: var(--primary-white);
        color: var(--primary-black);
    }
}

/* ==================== OVERLAY MENU ==================== */
.overlay-menu {
    position: fixed;
    inset: 0;
    background: rgba(11,11,11,0.96);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms var(--token-ease-standard), visibility 200ms var(--token-ease-standard);
}

.overlay-menu.open {
    opacity: 1;
    visibility: visible;
}

.overlay-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.overlay-close-btn {
    position: fixed;
    top: 24px;
    right: 24px;
    appearance: none;
    background: transparent;
    border: 1px solid var(--token-color-border);
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    color: var(--primary-black);
}

.overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.overlay-link {
    font-family: var(--token-font-display);
    font-size: clamp(32px, 6vw, 64px);
    color: var(--primary-black);
    text-decoration: none;
}

.overlay-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overlay-spotlight .spotlight-label {
    font-family: var(--token-font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent-gray);
    text-transform: uppercase;
}

.overlay-spotlight-open {
    appearance: none;
    background: transparent;
    border: 1px solid var(--token-color-border);
    padding: 10px 12px;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--primary-black);
}

@media (max-width: 768px) {
    .overlay-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 100px 24px 32px;
    }
}

/* ==================== SPOTLIGHT PANEL ==================== */
.spotlight-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 90vw);
    height: 100vh;
    background: var(--token-color-background);
    border-left: 1px solid var(--token-color-border);
    box-shadow: var(--token-shadow-elev2, 0 6px 20px rgba(0,0,0,0.12));
    transform: translateX(100%);
    transition: transform 240ms var(--token-ease-standard), box-shadow 240ms var(--token-ease-standard);
    z-index: 2100;
}

.spotlight-panel.open {
    transform: translateX(0%);
}

.spotlight-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spotlight-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: 1px solid var(--token-color-border);
}

.spotlight-title {
    font-family: var(--token-font-display);
    font-size: 20px;
    font-weight: 600;
}

.spotlight-close-btn {
    appearance: none;
    background: transparent;
    border: 1px solid var(--token-color-border);
    width: 32px;
    height: 32px;
    border-radius: 16px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

.spotlight-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spotlight-cta {
    display: inline-block;
    border: 1px solid var(--primary-black);
    padding: 10px 12px;
    text-decoration: none;
    color: var(--primary-black);
}