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

:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --surface: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text: #f5f5f7;
    --text-secondary: #86868b;
    --text-tertiary: #6e6e73;
    --accent: #e84545;
    --accent-glow: rgba(232, 69, 69, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-blur: 40px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== LIQUID GLASS ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

.nav-links a, .btn-contact-trigger {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover, .btn-contact-trigger:hover { color: var(--text); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 24px;
    z-index: 99;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu.active { display: flex; }

.mobile-menu a, .mobile-menu .btn-contact-trigger {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
    text-align: left;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    background: #d63c3c;
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-1px);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-glass:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.06);
}

.btn-full { width: 100%; justify-content: center; }

.btn-loading svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 69, 69, 0.15), transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(69, 100, 232, 0.1), transparent 70%);
    bottom: -100px;
    left: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 150, 69, 0.08), transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--accent), #ff8a5c, #e84545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

/* Timeline Mockup */
.hero-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    margin-top: 64px;
}

.timeline-mockup {
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.timeline-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.timeline-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-tertiary);
}

.timeline-tracks {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.track {
    height: 28px;
    display: flex;
    gap: 4px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.clip {
    border-radius: 4px;
    animation: clip-appear 0.6s ease-out both;
}

.track-v1 .clip { background: linear-gradient(135deg, rgba(232, 69, 69, 0.4), rgba(232, 69, 69, 0.2)); border: 1px solid rgba(232, 69, 69, 0.3); }
.track-v2 .clip { background: linear-gradient(135deg, rgba(69, 100, 232, 0.4), rgba(69, 100, 232, 0.2)); border: 1px solid rgba(69, 100, 232, 0.3); }

.clip-1 { width: 35%; animation-delay: 0.2s; }
.clip-2 { width: 25%; animation-delay: 0.4s; }
.clip-3 { width: 30%; animation-delay: 0.6s; }
.clip-4 { width: 50%; animation-delay: 0.3s; }
.clip-5 { width: 40%; animation-delay: 0.5s; }

@keyframes clip-appear {
    from { opacity: 0; transform: scaleX(0); transform-origin: left; }
    to { opacity: 1; transform: scaleX(1); }
}

.track-a1, .track-a2 { background: rgba(255,255,255,0.02); border-radius: 4px; }

.waveform {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(40, 200, 64, 0.3) 2px,
        rgba(40, 200, 64, 0.3) 3px
    );
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,14 Q5,4 10,14 Q15,24 20,14 Q25,6 30,14 Q35,22 40,14 Q45,8 50,14 Q55,20 60,14 Q65,6 70,14 Q75,22 80,14 Q85,4 90,14 Q95,24 100,14 Q105,8 110,14 Q115,20 120,14 Q125,6 130,14 Q135,22 140,14 Q145,4 150,14 Q155,20 160,14 Q165,8 170,14 Q175,24 180,14 Q185,6 190,14 Q195,20 200,14' stroke='white' stroke-width='28' fill='none'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,14 Q5,4 10,14 Q15,24 20,14 Q25,6 30,14 Q35,22 40,14 Q45,8 50,14 Q55,20 60,14 Q65,6 70,14 Q75,22 80,14 Q85,4 90,14 Q95,24 100,14 Q105,8 110,14 Q115,20 120,14 Q125,6 130,14 Q135,22 140,14 Q145,4 150,14 Q155,20 160,14 Q165,8 170,14 Q175,24 180,14 Q185,6 190,14 Q195,20 200,14' stroke='white' stroke-width='28' fill='none'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

.waveform-alt {
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(232, 150, 69, 0.3) 2px,
        rgba(232, 150, 69, 0.3) 3px
    );
}

.playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    left: 40%;
    box-shadow: 0 0 8px var(--accent-glow);
    animation: playhead-move 8s linear infinite;
}

@keyframes playhead-move {
    0% { left: 0%; }
    100% { left: 100%; }
}

/* ===== SECTIONS COMMON ===== */
.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-desc {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 1.05rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), #ff8a5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(232, 69, 69, 0.1);
    border: 1px solid rgba(232, 69, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== COLOR SECTION ===== */
.color-section {
    padding: 120px 0;
}

.color-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.color-wheels {
    padding: 32px;
    border-radius: var(--radius-lg);
}

.wheel-group {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 24px;
}

.wheel {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: conic-gradient(
        rgba(255, 0, 0, 0.2),
        rgba(255, 255, 0, 0.2),
        rgba(0, 255, 0, 0.2),
        rgba(0, 255, 255, 0.2),
        rgba(0, 0, 255, 0.2),
        rgba(255, 0, 255, 0.2),
        rgba(255, 0, 0, 0.2)
    );
    position: relative;
}

.wheel-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--dist) * 0.8));
}

.wheel-label {
    position: absolute;
    bottom: -4px;
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.curves-preview {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.curves-svg {
    width: 100%;
    height: auto;
}

.color-text .section-tag { display: block; text-align: left; }
.color-text .section-title { text-align: left; margin-bottom: 16px; }

.color-text p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.color-features { display: flex; flex-direction: column; gap: 16px; }

.cf-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    border-left: 2px solid var(--accent);
    background: rgba(232, 69, 69, 0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.cf-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.cf-desc {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    padding: 120px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-youtube .social-icon { background: rgba(255, 0, 0, 0.1); color: #ff0000; }
.social-instagram .social-icon { background: rgba(225, 48, 108, 0.1); color: #e1306c; }
.social-tiktok .social-icon { background: rgba(255, 255, 255, 0.08); color: #fff; }
.social-facebook .social-icon { background: rgba(24, 119, 242, 0.1); color: #1877f2; }

.social-info { flex: 1; }

.social-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.social-handle {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.social-arrow {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    transition: transform 0.3s;
}

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

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 120px 0;
}

.newsletter-card {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(232, 69, 69, 0.03), var(--glass-bg));
}

.newsletter-content {
    flex: 1;
}

.newsletter-content .section-tag { display: block; text-align: left; }
.newsletter-content .section-title { text-align: left; margin-bottom: 12px; }

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.newsletter-form { position: relative; }

.form-group {
    display: flex;
    gap: 12px;
}

.input-glass {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--font);
    outline: none;
    transition: all 0.3s;
}

.input-glass:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.input-glass::placeholder { color: var(--text-tertiary); }

textarea.input-glass { resize: vertical; min-height: 100px; }

.btn-submit { flex-shrink: 0; }

.form-message {
    margin-top: 12px;
    font-size: 0.85rem;
    min-height: 20px;
}

.form-message.success { color: #28c840; }
.form-message.error { color: var(--accent); }

.newsletter-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nl-icon-stack {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.nl-icon-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(232, 69, 69, 0.2);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
}

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

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

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

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-links a, .footer-links .btn-contact-trigger {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-links a:hover, .footer-links .btn-contact-trigger:hover { color: var(--text); }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 100%;
    max-width: 480px;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(60px) saturate(1.5);
    -webkit-backdrop-filter: blur(60px) saturate(1.5);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px;
    color: var(--text-tertiary);
    transition: color 0.2s;
}

.modal-close:hover { color: var(--text); }

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-field { margin-bottom: 16px; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }

    .features-grid { grid-template-columns: 1fr; }

    .color-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .color-visual { order: 2; }
    .color-text { order: 1; }

    .social-grid { grid-template-columns: 1fr; }

    .newsletter-card {
        flex-direction: column;
        gap: 32px;
        padding: 32px;
    }

    .newsletter-visual { display: none; }

    .form-group {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .wheel-group { gap: 12px; }
    .wheel { width: 80px; height: 80px; }
    .wheel-ring { width: 64px; height: 64px; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
}
