:root {
    --bg-color: #06080c;
    --bg-elevated: #0c1018;
    --card-bg: rgba(14, 18, 28, 0.72);
    --primary: #3ecfbf;
    --primary-dim: #2a9f93;
    --primary-glow: rgba(62, 207, 191, 0.4);
    --accent: #7c9cff;
    --secondary: #3ecfbf;
    --text-main: #f4f6fa;
    --text-muted: #8b95a8;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
    --radius: 14px;
    --radius-lg: 22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(120deg, #5eead4 0%, #7c9cff 55%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    font-family: inherit;
}

.btn-lg {
    padding: 1rem 1.75rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3ecfbf 0%, #2bb8a9 100%);
    color: #041210;
    box-shadow: 0 0 0 1px rgba(62, 207, 191, 0.3), 0 12px 32px rgba(62, 207, 191, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(62, 207, 191, 0.45), 0 16px 40px rgba(62, 207, 191, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: var(--glass-border);
    border-radius: var(--radius);
}

/* Ambient background */
.ambient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.ambient-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 20%, transparent 75%);
    opacity: 0.5;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: orbFloat 18s ease-in-out infinite;
}

.ambient-orb--1 {
    width: 520px;
    height: 520px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(62, 207, 191, 0.35), transparent 70%);
}

.ambient-orb--2 {
    width: 480px;
    height: 480px;
    bottom: 10%;
    left: -120px;
    background: radial-gradient(circle, rgba(124, 156, 255, 0.28), transparent 70%);
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -24px) scale(1.05); }
}

.mouse-cursor-gradient-tracking {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(6, 8, 12, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: white;
    text-decoration: none;
}

.logo-icon {
    color: var(--primary);
    display: flex;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: white;
}

/* Hero */
.hero {
    padding-top: 9.5rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    min-height: min(100vh, 900px);
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(62, 207, 191, 0.08);
    border: 1px solid rgba(62, 207, 191, 0.28);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #99f6e4;
    margin-bottom: 1.25rem;
}

.badge--live .badge-dot {
    animation: pulseDot 1.8s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

.brand-title {
    margin-bottom: 0.75rem;
}

.brand-name {
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 30%, #a8b4c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-headline {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    max-width: 28rem;
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 28rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.hero-trust i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Hero visual */
.hero-visual {
    position: relative;
    animation: fadeUp 0.9s ease-out 0.15s both;
}

.hero-content {
    animation: fadeUp 0.8s ease-out both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.app-window {
    position: relative;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    background: linear-gradient(160deg, #10161f 0%, #0a0e14 100%);
    min-height: 380px;
    overflow: hidden;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(62, 207, 191, 0.18) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 0.75rem;
}

.window-controls {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.window-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.window-controls span:nth-child(1) { background: #ef4444; }
.window-controls span:nth-child(2) { background: #f59e0b; }
.window-controls span:nth-child(3) { background: #10b981; }

.window-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
}

.window-status {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 500;
    flex-shrink: 0;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: pulseDot 1.5s ease-in-out infinite;
}

.chat-message {
    display: flex;
    gap: 1rem;
    animation: fadeIn 0.5s ease-out;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(62, 207, 191, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.message-bubble {
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem;
    border-radius: 0 12px 12px 12px;
    font-size: 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.code-snippet {
    background: #05070a;
    padding: 0.75rem;
    border-radius: 8px;
    margin: 0.75rem 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #5eead4;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sound-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    margin-top: 1rem;
    margin-left: 3.5rem;
}

.sound-wave span {
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
    animation: wave 1s infinite ease-in-out;
}

.sound-wave span:nth-child(2) { animation-delay: 0.1s; height: 15px; }
.sound-wave span:nth-child(3) { animation-delay: 0.2s; height: 20px; }
.sound-wave span:nth-child(4) { animation-delay: 0.1s; height: 15px; }
.sound-wave span:nth-child(5) { animation-delay: 0s; height: 10px; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Timeline */
.showcase-section {
    padding: 6rem 0;
    position: relative;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 72px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(62, 207, 191, 0.35), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 42%;
    padding: 0 2rem;
    text-align: right;
}

.timeline-item.reverse .timeline-content {
    text-align: left;
}

.timeline-content h3 {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--bg-color);
    border: 1px solid rgba(62, 207, 191, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    z-index: 2;
    box-shadow: 0 0 24px rgba(62, 207, 191, 0.15);
    font-family: var(--font-mono);
}

.timeline-visual {
    width: 42%;
}

.step-label {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: rgba(62, 207, 191, 0.1);
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.step-features {
    list-style: none;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.timeline-item.reverse .step-features li {
    justify-content: flex-start;
}

.step-features li::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: block;
    flex-shrink: 0;
}

.timeline-item.reverse .step-features li::after {
    display: none;
}

.timeline-item.reverse .step-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: block;
    flex-shrink: 0;
}

.visual-card {
    background: #0a0e14;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, border-color 0.35s;
}

.timeline-item:hover .visual-card {
    transform: translateY(-4px);
    border-color: rgba(62, 207, 191, 0.25);
}

.visual-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listening-animation {
    flex-direction: column;
    gap: 1.5rem;
    background: radial-gradient(circle at center, #141a24 0%, #06080c 100%);
}

.wave-container {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 40px;
}

.wave-bar {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: soundWave 1.2s infinite ease-in-out;
}

.wave-bar:nth-child(odd) { background: var(--accent); }
.wave-bar:nth-child(1) { animation-delay: 0.1s; }
.wave-bar:nth-child(2) { animation-delay: 0.3s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.4s; }
.wave-bar:nth-child(5) { animation-delay: 0.1s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.2s; }
.wave-bar:nth-child(8) { animation-delay: 0.4s; }
.wave-bar:nth-child(9) { animation-delay: 0.1s; }

@keyframes soundWave {
    0%, 100% { height: 10%; opacity: 0.3; }
    50% { height: 100%; opacity: 1; }
}

.listening-text {
    text-align: center;
}

.listening-text span {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.listening-text p {
    font-weight: 600;
    margin-top: 0.25rem;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.context-animation {
    flex-direction: column;
    color: var(--text-main);
    background: #0a0e14;
}

.large-icon {
    width: 56px;
    height: 56px;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loader-progress {
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: loading 2s infinite ease-in-out;
    transform-origin: left;
}

@keyframes loading {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(0.7); }
    100% { transform: scaleX(1); transform-origin: right; }
}

/* Free access */
.free-access {
    padding: 4rem 0 6rem;
}

.free-access-panel {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(62, 207, 191, 0.08) 0%, rgba(124, 156, 255, 0.06) 100%),
        rgba(12, 16, 24, 0.9);
    border: 1px solid rgba(62, 207, 191, 0.2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.free-access-panel::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(62, 207, 191, 0.15), transparent 70%);
    pointer-events: none;
}

.free-access-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
}

.free-access-content > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 32rem;
    margin-bottom: 1.5rem;
}

.free-perks {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.free-perks li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-main);
    font-size: 0.98rem;
}

.free-perks i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.free-access-meter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.meter-ring {
    position: relative;
    width: 160px;
    height: 160px;
}

.meter-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.meter-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 8;
}

.meter-progress {
    fill: none;
    stroke: url(#none);
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 327;
    stroke-dashoffset: 80;
    filter: drop-shadow(0 0 8px rgba(62, 207, 191, 0.5));
}

.meter-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.meter-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.meter-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.meter-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    padding: 1.75rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(62, 207, 191, 0.25);
}

.quote-mark {
    font-size: 2.5rem;
    line-height: 1;
    color: rgba(62, 207, 191, 0.35);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-card p {
    color: #d4d9e3;
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
    line-height: 1.55;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2433, #0e141c);
    border: 1px solid rgba(62, 207, 191, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
}

.info {
    display: flex;
    flex-direction: column;
}

.info .name {
    font-weight: 600;
    font-size: 0.95rem;
}

.info .role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ */
.faq {
    padding: 4rem 0 5rem;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    padding: 0.5rem 1.75rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.35rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 500;
}

.faq-answer {
    margin-top: 0.85rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    padding: 5rem 0 6rem;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.final-cta p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-size: 1.08rem;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #04060a;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 0.85rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.link-group h4 {
    margin-bottom: 1.15rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    transition: color 0.25s;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: #52525b;
    font-size: 0.85rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========== Download page ========== */
.download-hero {
    padding: 9rem 0 4rem;
    text-align: center;
}

.download-hero-inner {
    max-width: 820px;
}

.download-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin: 0 auto 2.75rem;
}

.download-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.download-card {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.download-card:hover,
.download-card.is-selected {
    transform: translateY(-4px);
    border-color: rgba(62, 207, 191, 0.4);
    box-shadow: 0 16px 40px rgba(62, 207, 191, 0.12);
}

.download-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(62, 207, 191, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.download-card-icon i {
    width: 26px;
    height: 26px;
}

.download-card-body h2 {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.download-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.download-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary);
}

.download-card-cta i {
    width: 16px;
    height: 16px;
}

.download-note {
    font-size: 0.92rem;
    color: var(--text-muted);
    min-height: 1.5em;
    transition: color 0.3s;
}

.download-note.is-active {
    color: var(--primary);
}

.download-steps {
    padding: 3rem 0 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.step-card {
    padding: 1.75rem;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
}

.step-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.download-requirements {
    padding: 2rem 0 6rem;
}

.req-panel {
    padding: 2.5rem;
}

.req-panel > h2 {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
    text-align: center;
}

.req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.req-grid h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.req-grid h3 i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.req-grid ul {
    list-style: none;
}

.req-grid li {
    color: var(--text-muted);
    padding: 0.4rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.95rem;
}

.req-grid li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

/* ========== Legal pages ========== */
.legal-page {
    padding: 8.5rem 0 5rem;
}

.legal-container {
    max-width: 760px;
}

.legal-header {
    margin-bottom: 2.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
    line-height: 1.15;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.legal-body h2 {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    margin: 2.25rem 0 0.85rem;
    color: var(--text-main);
}

.legal-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 1.35rem 0 0.55rem;
    color: #d4d9e3;
}

.legal-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-body ul {
    margin: 0 0 1.15rem 1.15rem;
    color: var(--text-muted);
}

.legal-body li {
    margin-bottom: 0.55rem;
    line-height: 1.65;
    padding-left: 0.25rem;
}

.legal-body a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(62, 207, 191, 0.35);
    transition: border-color 0.2s, color 0.2s;
}

.legal-body a:hover {
    color: #5eead4;
    border-bottom-color: rgba(94, 234, 212, 0.7);
}

.legal-body strong {
    color: #e8ecf4;
    font-weight: 600;
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s;
}

.legal-nav a:hover {
    color: var(--primary);
}

/* Mobile */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-headline,
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .free-access-panel {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.25rem 1.5rem;
    }

    .free-access-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .free-perks {
        align-items: center;
    }

    .free-perks li {
        justify-content: center;
    }

    .testimonials-grid,
    .steps-grid,
    .download-cards,
    .req-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 7.5rem;
        min-height: auto;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item.reverse {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-content,
    .timeline-item.reverse .timeline-content {
        width: 100%;
        text-align: left;
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .timeline-visual {
        width: 100%;
    }

    .timeline-number {
        left: 20px;
        transform: translateX(-50%);
    }

    .step-features li {
        justify-content: flex-start;
    }

    .step-features li::after {
        display: none;
    }

    .step-features li::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--primary);
        display: block;
        flex-shrink: 0;
    }

    .window-status {
        display: none;
    }

    .download-hero {
        padding-top: 7.5rem;
    }
}
