/* ==========================================================================
   MINICLONE HD - DESIGN SYSTEM & AESTHETICS (STYLE.CSS)
   ========================================================================== */

/* --- Custom Property Definitions --- */
:root {
    /* Color Palette */
    --color-bg: #0B0C10;
    --color-surface: #12161A;
    --color-surface-card: rgba(31, 40, 51, 0.45);
    --color-text-main: #C5C6C7;
    --color-text-bright: #FFFFFF;
    --color-text-muted: #8F9499;
    
    /* Accents & Glows */
    --color-cyan: #45A29E;
    --color-neon-blue: #66FCF1;
    --color-glow-blue: rgba(102, 252, 241, 0.25);
    
    /* Warnings & Alerts (Bait-and-Switch) */
    --color-toxic-orange: #FF4D00;
    --color-glow-orange: rgba(255, 77, 0, 0.25);
    --color-green-success: #2ECC71;
    
    /* Typography */
    --font-headers: 'Space Grotesk', 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    
    /* Spacing & Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* --- Base Resets & Global Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

body {
    background-color: var(--color-bg);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(102, 252, 241, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 77, 0, 0.02) 0%, transparent 45%);
    background-attachment: fixed;
    overflow-x: hidden;
}

main [id] {
    scroll-margin-top: 96px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headers);
    color: var(--color-text-bright);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--color-neon-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-text-bright);
}

/* --- Utility Components --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.text-glow {
    color: var(--color-neon-blue);
    text-shadow: 0 0 15px var(--color-glow-blue);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* --- Badges --- */
.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(102, 252, 241, 0.08);
    border: 1px solid rgba(102, 252, 241, 0.2);
    color: var(--color-neon-blue);
    border-radius: 20px;
    font-family: var(--font-headers);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-family: var(--font-headers);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
    letter-spacing: 0.05em;
}

.badge-error {
    background-color: var(--color-toxic-orange);
    color: var(--color-text-bright);
    box-shadow: 0 0 10px var(--color-glow-orange);
}

.badge-success {
    background-color: var(--color-neon-blue);
    color: var(--color-bg);
    box-shadow: 0 0 10px var(--color-glow-blue);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-family: var(--font-headers);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
}

.btn-primary {
    background-color: var(--color-neon-blue);
    color: var(--color-bg);
    box-shadow: 0 4px 15px rgba(102, 252, 241, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-text-bright);
    color: var(--color-bg);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-cyan);
    color: var(--color-neon-blue);
}

.btn-secondary:hover {
    background-color: rgba(102, 252, 241, 0.08);
    border-color: var(--color-neon-blue);
    color: var(--color-text-bright);
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.15);
}

.btn-accent {
    background-color: var(--color-neon-blue);
    color: var(--color-bg);
    box-shadow: 0 4px 15px var(--color-glow-blue);
}

.btn-accent:hover {
    background-color: var(--color-text-bright);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--color-glow-blue);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-text-main);
}

.btn-outline:hover {
    border-color: var(--color-text-bright);
    color: var(--color-text-bright);
    background-color: rgba(255, 255, 255, 0.05);
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 700;
    user-select: none;
}

.logo-accent {
    color: var(--color-neon-blue);
    text-shadow: 0 0 8px var(--color-glow-blue);
}

.logo-bold {
    color: var(--color-text-bright);
}

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

.nav-link {
    font-family: var(--font-headers);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-neon-blue);
}

.mobile-nav {
    display: none;
    position: relative;
    font-family: var(--font-headers);
}

.mobile-nav summary {
    padding: 8px 14px;
    border: 1px solid var(--color-cyan);
    border-radius: var(--border-radius-sm);
    color: var(--color-neon-blue);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    list-style: none;
    text-transform: uppercase;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav summary:focus-visible {
    outline: 2px solid var(--color-neon-blue);
    outline-offset: 3px;
}

.mobile-nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 48px));
    padding: 10px;
    border: 1px solid rgba(102, 252, 241, 0.28);
    border-radius: var(--border-radius-md);
    background: rgba(11, 12, 16, 0.98);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

.mobile-nav-links a {
    padding: 10px 12px;
    border-radius: var(--border-radius-sm);
    color: var(--color-text-main);
    font-size: 0.9rem;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
    background: rgba(102, 252, 241, 0.08);
    color: var(--color-text-bright);
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 100px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.disk-canvas {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1/1;
    background: rgba(31, 40, 51, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(5px);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 0 30px rgba(102, 252, 241, 0.03),
        0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.hero-safety-cycle {
    position: absolute;
    left: 50%;
    bottom: 22%;
    transform: translateX(-50%);
    width: min(72%, 320px);
    padding: 0 12px;
    min-height: 2.8rem;
    line-height: 1.2;
    color: var(--color-text-muted);
    font-family: var(--font-headers);
    font-size: 0.86rem;
    letter-spacing: 0.01em;
    text-align: center;
    pointer-events: none;
    overflow: visible;
}

.hero-safety-cycle span {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: hero-safety-cycle 18s infinite;
}

.hero-safety-cycle span:nth-child(1) {
    animation-delay: 0s;
}

.hero-safety-cycle span:nth-child(2) {
    animation-delay: 6s;
}

.hero-safety-cycle span:nth-child(3) {
    animation-delay: 12s;
}

.svg-container {
    width: 100%;
    height: 100%;
}

.miniapp-hero-card {
    width: min(260px, 100%);
    margin: 0 auto 18px auto;
    padding: 10px;
    border-radius: 14px;
    background: rgba(13, 18, 24, 0.65);
    border: 1px solid rgba(102, 252, 241, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.miniapp-hero-card--small {
    width: min(190px, 80%);
    margin-top: 8px;
    margin-bottom: 12px;
    padding: 8px;
}

.miniapp-hero-card__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(102, 252, 241, 0.15);
    object-fit: cover;
}

.miniapp-hero-card__caption {
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    font-family: var(--font-headers);
}

/* SVG Disk Animation Styles */
.disk-svg {
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.5));
}

.drive-shell {
    transform-box: fill-box;
    transform-origin: center;
}

.drive-left {
    animation: drive-bob-left 3.6s ease-in-out infinite;
}

.drive-right {
    animation: drive-bob-right 3.95s ease-in-out infinite;
}

.spin {
    animation: rotate-counter 10s linear infinite;
    transform-origin: -2px -20px;
}

.spin-reverse {
    animation: rotate-clockwise 10s linear infinite;
    transform-origin: -2px -20px;
}

.arm {
    animation: arm-wobble 4s ease-in-out infinite alternate;
    transform-origin: -2px -20px;
}

.arm-target {
    animation: arm-wobble-target 5s ease-in-out infinite alternate;
    transform-origin: -2px -20px;
}

.glow-target {
    animation: pulse-orange-glow 3s ease-in-out infinite;
}

.transfer-arc {
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 14 9;
    stroke-dashoffset: 0;
    fill: none;
    filter: drop-shadow(0px 0px 4px rgba(102, 252, 241, 0.25));
    animation: transfer-arc-flow var(--arc-duration) linear infinite;
    animation-delay: var(--arc-delay);
    opacity: var(--arc-opacity);
}

.transfer-arc-1 { --arc-duration: 2.2s; --arc-delay: 0s; --arc-opacity: 0.55; }
.transfer-arc-2 { --arc-duration: 2.27s; --arc-delay: -0.2s; --arc-opacity: 0.42; }
.transfer-arc-3 { --arc-duration: 2.35s; --arc-delay: -0.45s; --arc-opacity: 0.36; }
.transfer-arc-4 { --arc-duration: 2.42s; --arc-delay: -0.33s; --arc-opacity: 0.44; }
.transfer-arc-5 { --arc-duration: 2.5s; --arc-delay: -0.58s; --arc-opacity: 0.32; }

.transfer-arc-1, .transfer-arc-2, .transfer-arc-3, .transfer-arc-4, .transfer-arc-5 {
    stroke: var(--color-neon-blue);
}

.transfer-arc-1, .transfer-arc-2, .transfer-arc-3, .transfer-arc-4, .transfer-arc-5 {
    stroke-dashoffset: 16;
}

.gold-spark {
    fill: none;
    stroke: url(#gold-spark-gradient);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 10 220;
    stroke-dashoffset: 230;
    opacity: 0;
    filter: drop-shadow(0 0 4px rgba(255, 218, 128, 0.5));
    animation: transfer-spark var(--spark-duration) linear infinite;
    animation-delay: var(--spark-delay);
}

.gold-spark-1 { --spark-duration: 1.42s; --spark-delay: -0.12s; }
.gold-spark-2 { --spark-duration: 1.96s; --spark-delay: -0.48s; }
.gold-spark-3 { --spark-duration: 1.68s; --spark-delay: -0.8s; }
.gold-spark-4 { --spark-duration: 2.21s; --spark-delay: -1.15s; }
.gold-spark-5 { --spark-duration: 1.89s; --spark-delay: -0.31s; }
.gold-spark-6 { --spark-duration: 1.55s; --spark-delay: -0.95s; }
.gold-spark-7 { --spark-duration: 2.12s; --spark-delay: -1.34s; }
.gold-spark-8 { --spark-duration: 1.74s; --spark-delay: -0.61s; }
.gold-spark-9 { --spark-duration: 2.26s; --spark-delay: -1.02s; }
.gold-spark-10 { --spark-duration: 1.99s; --spark-delay: -1.48s; }

@keyframes rotate-clockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-counter {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes arm-wobble {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(18deg); }
}

@keyframes arm-wobble-target {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-15deg); }
}

@keyframes pulse-orange-glow {
    0% {
        stroke: var(--color-toxic-orange);
        filter: drop-shadow(0 0 2px rgba(255, 77, 0, 0.2));
    }
    50% {
        stroke: #FF7733;
        filter: drop-shadow(0 0 10px rgba(255, 77, 0, 0.6));
    }
    100% {
        stroke: var(--color-toxic-orange);
        filter: drop-shadow(0 0 2px rgba(255, 77, 0, 0.2));
    }
}

@keyframes transfer-arc-flow {
    to {
        stroke-dashoffset: -24;
    }
}

@keyframes transfer-spark {
    0% {
        stroke-dashoffset: 230;
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    25% {
        opacity: 0.35;
    }
    60% {
        opacity: 0;
    }
    100% {
        stroke-dashoffset: -45;
        opacity: 0;
    }
}

@keyframes hero-safety-cycle {
    0%, 5% {
        opacity: 0;
        transform: translateY(8px);
    }
    12%, 28% {
        opacity: 1;
        transform: translateY(0);
    }
    35%, 100% {
        opacity: 0;
        transform: translateY(-6px);
    }
}

@keyframes drive-bob-left {
    0%, 100% {
        transform: translateY(1px);
    }
    50% {
        transform: translateY(-3px);
    }
    78% {
        transform: translateY(0.5px);
    }
}

@keyframes drive-bob-right {
    0%, 100% {
        transform: translateY(-1px);
    }
    45% {
        transform: translateY(2.5px);
    }
    72% {
        transform: translateY(-0.5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .drive-left,
    .drive-right,
    .spin,
    .spin-reverse,
    .arm,
    .arm-target,
    .glow-target,
    .transfer-arc,
    .gold-spark {
        animation: none;
    }
    
    .transfer-arc {
        stroke-dashoffset: 0;
        opacity: 0.35;
    }
    
    .gold-spark {
        opacity: 0.18;
    }

    .hero-safety-cycle span {
        animation: none;
        position: static;
        opacity: 0;
    }

    .hero-safety-cycle span:nth-child(1) {
        opacity: 1;
    }
}

/* --- Rants & Competitor Matrix --- */
.rants-section {
    background: rgba(18, 22, 26, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: var(--color-surface-card);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    position: relative;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.competitor-card {
    border: 1px solid rgba(255, 77, 0, 0.15);
    background: linear-gradient(135deg, rgba(31, 40, 51, 0.2), rgba(255, 77, 0, 0.02));
}

.competitor-card:hover {
    border-color: rgba(255, 77, 0, 0.4);
    box-shadow: 0 15px 35px var(--color-glow-orange);
    transform: translateY(-4px);
}

.miniclone-card {
    border: 1px solid rgba(102, 252, 241, 0.15);
    background: linear-gradient(135deg, rgba(31, 40, 51, 0.3), rgba(102, 252, 241, 0.02));
}

.miniclone-card:hover {
    border-color: rgba(102, 252, 241, 0.4);
    box-shadow: 0 15px 35px var(--color-glow-blue);
    transform: translateY(-4px);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.card-intro {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-list li {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-main);
}

.competitor-card .comparison-list li {
    opacity: 0.85;
}

.miniclone-card .comparison-list li {
    color: var(--color-text-bright);
}

/* --- Embedded Product Demo --- */
.sandbox-section {
    position: relative;
}

.demo-safety-notice {
    max-width: 1180px;
    margin: 0 auto 18px;
    padding: 14px 18px;
    border: 1px solid rgba(102, 252, 241, 0.24);
    border-radius: var(--border-radius-md);
    background: rgba(69, 162, 158, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.demo-safety-notice strong {
    color: var(--color-neon-blue);
}

.product-demo-toolbar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    background: #0f1319;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.product-demo-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.product-demo-actions .btn {
    white-space: nowrap;
}

.demo-download-link {
    padding: 7px 4px;
    color: var(--color-neon-blue);
    border-bottom: 1px solid rgba(102, 252, 241, 0.42);
    font-family: var(--font-headers);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.demo-download-link:hover,
.demo-download-link:focus-visible {
    color: var(--color-text-bright);
    border-bottom-color: var(--color-text-bright);
}

.product-demo-frame-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid rgba(102, 252, 241, 0.24);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    background: #03070c;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.58), 0 0 30px rgba(102, 252, 241, 0.07);
}

.product-demo-frame {
    display: block;
    width: 100%;
    height: 1040px;
    border: 0;
    border-radius: var(--border-radius-sm);
    background: #03070c;
}

.product-demo-frame:fullscreen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
}

/* --- How It Works Stepper --- */
.steps-section {
    background: rgba(18, 22, 26, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stepper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    position: relative;
}

.step-item {
    background: rgba(31, 40, 51, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-normal);
}

.step-item:hover {
    border-color: rgba(102, 252, 241, 0.25);
    background: rgba(31, 40, 51, 0.4);
    transform: translateY(-2px);
}

.step-num {
    position: absolute;
    top: -24px;
    left: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 2px solid var(--color-neon-blue);
    color: var(--color-neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headers);
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.2);
}

.step-item h3 {
    font-size: 1.4rem;
    margin-top: 12px;
    margin-bottom: 16px;
}

.step-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* --- Warning Section --- */
.warning-section {
    padding: 60px 0;
}

.warning-box {
    background: rgba(255, 77, 0, 0.03);
    border: 1px solid rgba(255, 77, 0, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.05);
}

.warning-icon {
    font-size: 3rem;
    line-height: 1;
    color: var(--color-toxic-orange);
    text-shadow: 0 0 15px var(--color-glow-orange);
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-section {
    background: rgba(18, 22, 26, 0.45);
}

.faq-lead {
    margin-bottom: 28px;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    background: rgba(18, 22, 26, 0.4);
    padding: 14px 16px;
    transition: border-color var(--transition-normal), background var(--transition-normal);
}

.faq-item:hover,
.faq-item:focus-within {
    border-color: rgba(102, 252, 241, 0.35);
}

.faq-item summary {
    font-family: var(--font-headers);
    color: var(--color-text-bright);
    font-size: 1.02rem;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::marker {
    display: none;
}

.faq-item p {
    margin-top: 10px;
    color: var(--color-text-muted);
    line-height: 1.65;
    font-size: 0.96rem;
}

.warning-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.warning-content h3 {
    font-size: 1.6rem;
    color: #FF7733;
    margin-bottom: 12px;
}

.warning-content p {
    color: var(--color-text-main);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Download Section --- */
.download-section {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(102, 252, 241, 0.06) 0%, transparent 60%);
}

.download-section h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.download-pricing {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.download-pricing strong {
    color: var(--color-neon-blue);
    font-size: 2.2rem;
    font-family: var(--font-headers);
    text-shadow: 0 0 10px var(--color-glow-blue);
}

.payment-box {
    max-width: 880px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.payment-heading {
    font-family: var(--font-headers);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.purchase-options {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(230px, 0.85fr);
    gap: 28px;
    align-items: stretch;
    text-align: left;
}

.purchase-paused,
.purchase-demo {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    background: rgba(0, 0, 0, 0.18);
}

.footer-link {
    overflow-wrap: anywhere;
}

.purchase-paused {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.purchase-paused h4 {
    margin: 14px 0 10px;
    color: var(--color-text-bright);
    font-size: 1.3rem;
}

.purchase-paused p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.purchase-paused p + p {
    margin-top: 14px;
}

.purchase-paused a {
    color: var(--color-neon-blue);
}

.purchase-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.purchase-demo-label {
    font-family: var(--font-headers);
    color: var(--color-neon-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.purchase-demo p {
    margin: 12px 0 20px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.purchase-demo-link {
    width: 100%;
    text-align: center;
}

.download-clause {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 24px;
    line-height: 1.5;
}

.terms-shell {
    padding-top: 90px;
}

.terms-shell-container {
    max-width: 900px;
}

.terms-updated {
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.terms-title {
    font-family: var(--font-headers);
    margin: 0;
    margin-bottom: 12px;
}

.terms-section {
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    background: var(--color-surface);
}

.terms-section + .terms-section {
    margin-top: 20px;
}

.terms-section p,
.terms-section ul {
    color: var(--color-text-muted);
    margin-top: 12px;
    line-height: 1.65;
}

.terms-section ul {
    padding-left: 22px;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #080A0D;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.footer-link {
    font-family: var(--font-headers);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-link:hover {
    color: var(--color-neon-blue);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stepper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .step-num {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-item {
        text-align: center;
    }

    .product-demo-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-demo-frame {
        height: 920px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 84px;
    }

    main [id] {
        scroll-margin-top: 84px;
    }

    .section {
        padding: 60px 0;
    }
    
    .header-container {
        height: 70px;
    }
    
    .nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }
    
    .btn-sm {
        display: none; /* Hide button in nav on small mobile screen sizes */
    }

    .product-demo-actions .btn-sm {
        display: inline-flex;
    }

    .demo-safety-notice,
    .product-demo-toolbar {
        font-size: 0.82rem;
    }

    .product-demo-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .product-demo-frame-shell {
        padding: 4px;
    }

    .product-demo-frame {
        height: 860px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .warning-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    
    .warning-icon {
        font-size: 2.5rem;
    }

    .payment-box {
        padding: 28px 20px;
    }

    .purchase-options {
        grid-template-columns: 1fr;
    }

    .warning-cta {
        justify-content: center;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-demo-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .product-demo-actions .btn {
        width: 100%;
    }

    .demo-download-link {
        width: 100%;
        padding: 9px 4px;
        text-align: center;
    }

    .product-demo-frame {
        height: 820px;
    }

    .purchase-paused,
    .purchase-demo {
        padding: 20px 16px;
    }
}
