/* ============================================================
   MidiOracle — Global Stylesheet
   Dark premium theme: deep dark bg, purple-to-blue gradients
   ============================================================ */

:root {
    --color-bg:          #05060b;
    --color-bg-surface:  #0b0d16;
    --color-bg-card:     #0e1020;
    --color-bg-card-alt: #131526;
    --color-border:      rgba(255,255,255,0.05);
    --color-border-glow: rgba(113, 239, 255, 0.2);

    --brand-accent:      #71efff;
    --brand-accent-2:    #8b5cf6;
    --color-purple:      #8b5cf6;
    --color-blue:        #71efff;
    --color-purple-dark: #6d28d9;
    --color-blue-dark:   #0284c7;
    --color-gold:        #c9a84c;

    --gradient-primary:      linear-gradient(135deg, #71efff 0%, #8b5cf6 100%);
    --gradient-iridescent:   linear-gradient(135deg, #71efff 0%, #8b5cf6 50%, #71efff 100%);
    --gradient-glow:         linear-gradient(135deg, rgba(113,239,255,0.12) 0%, rgba(139,92,246,0.12) 100%);

    --color-text:        #d6d6e8;
    --color-text-heading: #c7d7ff;
    --color-text-muted:  #7a7a9a;
    --color-text-subtle: #48485e;

    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Alegreya', Georgia, serif;

    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;

    --shadow-card: 0 8px 40px rgba(0,0,0,0.7);
    --shadow-glow: 0 0 60px rgba(113,239,255,0.12);
}

html {
    scroll-behavior: smooth;
    background: radial-gradient(circle at 50% 20%, #0d0f1a 0%, #05060b 70%);
    background-attachment: fixed;
}

html, body {
    margin: 0;
    padding: 0;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    background: transparent;
}

/* ── Starfield (static) ────────────────────────────────────── */

/* Shared starfield base */
.stars-layer-1,
.stars-layer-2,
.stars-layer-3,
.stars-twinkle,
.cosmic-fog {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

/* Layer 1 — dense small stars (1px) */
.stars-layer-1 {
    background-image:
        radial-gradient(1px 1px at 7%  14%, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 19% 38%, rgba(113,239,255,0.85), transparent),
        radial-gradient(1px 1px at 33% 72%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 48% 20%, rgba(139,92,246,0.85), transparent),
        radial-gradient(1px 1px at 61% 55%, rgba(255,255,255,0.85), transparent),
        radial-gradient(1px 1px at 74% 88%, rgba(113,239,255,0.8), transparent),
        radial-gradient(1px 1px at 82% 31%, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 91% 67%, rgba(139,92,246,0.8), transparent),
        radial-gradient(1px 1px at 25% 91%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 54% 43%, rgba(113,239,255,0.85), transparent),
        radial-gradient(1px 1px at 3%  58%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 67% 8%,  rgba(139,92,246,0.85), transparent),
        radial-gradient(1px 1px at 88% 92%, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 41% 6%,  rgba(113,239,255,0.8), transparent),
        radial-gradient(1px 1px at 15% 79%, rgba(255,255,255,0.85), transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    opacity: 0.45;
    z-index: -3;
}

/* Layer 2 — medium stars (1.5px) */
.stars-layer-2 {
    background-image:
        radial-gradient(1.5px 1.5px at 9%  23%, rgba(113,239,255,0.95), transparent),
        radial-gradient(1.5px 1.5px at 28% 61%, rgba(255,255,255,0.9), transparent),
        radial-gradient(1.5px 1.5px at 52% 34%, rgba(139,92,246,0.9), transparent),
        radial-gradient(1.5px 1.5px at 71% 78%, rgba(255,255,255,0.95), transparent),
        radial-gradient(1.5px 1.5px at 87% 12%, rgba(113,239,255,0.9), transparent),
        radial-gradient(1.5px 1.5px at 44% 89%, rgba(255,255,255,0.85), transparent),
        radial-gradient(1.5px 1.5px at 16% 46%, rgba(139,92,246,0.85), transparent),
        radial-gradient(1.5px 1.5px at 93% 55%, rgba(113,239,255,0.9), transparent);
    background-repeat: repeat;
    background-size: 500px 500px;
    opacity: 0.4;
    z-index: -3;
}

/* Layer 3 — bright accent stars (2.5px) */
.stars-layer-3 {
    background-image:
        radial-gradient(2.5px 2.5px at 18% 32%, rgba(113,239,255,1.0), transparent),
        radial-gradient(2.5px 2.5px at 63% 71%, rgba(255,255,255,1.0), transparent),
        radial-gradient(2.5px 2.5px at 39% 15%, rgba(139,92,246,0.95), transparent),
        radial-gradient(2.5px 2.5px at 81% 48%, rgba(113,239,255,1.0), transparent),
        radial-gradient(2.5px 2.5px at 5%  94%, rgba(255,255,255,0.95), transparent);
    background-repeat: repeat;
    background-size: 700px 700px;
    opacity: 0.35;
    z-index: -3;
}

/* Bright accent stars (formerly twinkling) */
.stars-twinkle {
    background-image:
        radial-gradient(2.5px 2.5px at 31% 24%, rgba(113,239,255,1.0), transparent),
        radial-gradient(3px   3px   at 69% 58%, rgba(255,255,255,1.0), transparent),
        radial-gradient(2.5px 2.5px at 14% 79%, rgba(139,92,246,1.0), transparent),
        radial-gradient(3px   3px   at 82% 41%, rgba(113,239,255,1.0), transparent),
        radial-gradient(2.5px 2.5px at 55% 95%, rgba(255,255,255,0.95), transparent),
        radial-gradient(3px   3px   at 96% 7%,  rgba(139,92,246,0.95), transparent);
    background-repeat: repeat;
    background-size: 800px 800px;
    opacity: 0.25;
    z-index: -2;
}

/* Cosmic fog */
.cosmic-fog {
    background:
        radial-gradient(ellipse 60% 35% at 20% 50%, rgba(90,120,255,0.06), transparent),
        radial-gradient(ellipse 40% 25% at 80% 30%, rgba(139,92,246,0.05), transparent);
    opacity: 0.11;
    z-index: -2;
}

h1:focus {
    outline: none;
}

a {
    color: var(--brand-accent);
    text-decoration: none;
}

a:hover {
    color: var(--brand-accent-2);
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text-heading);
    letter-spacing: 0.03em;
}

h1, h2 {
    text-shadow: 0 0 12px rgba(113, 239, 255, 0.25);
}

/* ── Gradient Text ────────────────────────────────────────── */

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.btn-glow-primary {
    background: linear-gradient(135deg, #71efff 0%, #8b5cf6 100%);
    color: #e6faff;
    box-shadow: 0 0 24px rgba(113,239,255,0.3), 0 4px 12px rgba(0,0,0,0.4);
}

.btn-glow-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(113,239,255,0.45), 0 8px 20px rgba(0,0,0,0.5);
    color: #e6faff;
    opacity: 0.95;
}

.btn-glow-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(113, 239, 255, 0.3);
    box-shadow: 0 0 12px rgba(113,239,255,0.08);
}

.btn-glow-outline:hover {
    background: rgba(113,239,255,0.06);
    border-color: var(--brand-accent);
    color: var(--color-text);
    transform: translateY(-2px);
}

.btn-glow-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ── Section Shared ───────────────────────────────────────── */

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-purple);
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.section-heading::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(155,109,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

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

/* ── Navbar ───────────────────────────────────────────────── */

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 var(--color-border);
}

.navbar-brand-logo {
    height: 32px;
    width: auto;
    display: block;
}

.navbar-brand-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
}

@keyframes logo-pulse {
    0%, 100% { filter: drop-shadow(0 0 0px transparent); opacity: 1; }
    50%       { filter: drop-shadow(0 0 18px rgba(56, 220, 220, 0.65)); opacity: 0.88; }
}

.brand-logo {
    height: 72px;
    width: auto;
    display: block;
}

.brand-logo-footer {
    height: 80px;
    opacity: 0.9;
}

.navbar-nav .nav-link {
    color: var(--color-text-muted) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem !important;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-text) !important;
}

.nav-new-badge {
    font-size: 0.7rem;
    vertical-align: middle;
    animation: nav-badge-pulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes nav-badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.85); }
}

.navbar-toggler {
    border-color: var(--color-border);
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991.98px) {
    .site-navbar.mobile-open {
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
}

/* Offset scroll-to-anchor so fixed navbar doesn't cover section headings */
section[id],
#try-free {
    scroll-margin-top: 80px;
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(155,109,255,0.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 80% 65%, rgba(79,195,247,0.1) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 20% 80%, rgba(109,40,217,0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-grid {
    display: none;
}

.hero-brand-logo {
    height: 200px;
    width: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: logo-pulse 4.67s ease-in-out infinite;
}

@media (max-width: 575px) {
    .hero-brand-logo {
        height: auto;
        width: 100%;
        max-width: 320px;
    }
}

.hero-reaper-badge {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(56, 220, 220, 0.35);
    background: rgba(56, 220, 220, 0.08);
    color: rgba(56, 220, 220, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-reaper-word {
    font-size: 1.1rem;
    font-weight: 100;
    font-family: 'Open Sans', sans-serif;
    color: rgb(184, 184, 184);
    text-decoration: underline;
    text-underline-offset: 3px;
    pointer-events: auto;
    cursor: pointer;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.25);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-purple);
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0em;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-meta-item i {
    color: var(--color-purple);
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.video-generation-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    line-height: 1.5;
    text-align: center;
}

.hero-logo {
    width: 100%;
    max-width: 480px;
    height: auto;
    opacity: 0.92;
}

.hero-screenshot-frame {
    position: relative;
    width: 70%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow), var(--shadow-card);
    border: 1px solid var(--color-border-glow);
}

.hero-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* ── Hero Video Carousel ───────────────────────────────────── */

.video-carousel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.video-carousel-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--brand-accent);
    letter-spacing: 0.03em;
    min-height: 1.5em;
}

.video-carousel-stage {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-carousel-viewport {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-glow);
    box-shadow: var(--shadow-glow), var(--shadow-card);
    background: var(--color-bg-card-alt);
    aspect-ratio: 16/9;
    position: relative;
}

.video-carousel-item {
    display: none;
    position: absolute;
    inset: 0;
}

.video-carousel-item.active {
    display: block;
}

.video-carousel-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border: none;
    border-radius: var(--radius-lg);
    background: #000;
}

.video-carousel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-text-subtle);
    font-size: 0.85rem;
}

.video-carousel-placeholder i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-carousel-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(113, 239, 255, 0.08);
    border: 1px solid rgba(113, 239, 255, 0.25);
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
    line-height: 1;
}

.video-carousel-arrow:hover:not(:disabled) {
    background: rgba(113, 239, 255, 0.18);
    border-color: rgba(113, 239, 255, 0.5);
}

.video-carousel-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.video-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.video-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(113, 239, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.video-carousel-dot.active {
    background: var(--brand-accent);
    transform: scale(1.3);
}

.video-carousel-marketing {
    margin: 1.25rem 0 0;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    font-style: italic;
}

/* ── How It Works ─────────────────────────────────────────── */

.how-it-works-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}


.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
}

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 24px rgba(139,92,246,0.4);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    top: 38px;
    right: -12px;
    color: var(--color-text-subtle);
    font-size: 1.25rem;
    z-index: 1;
}

/* ── Features ─────────────────────────────────────────────── */

.features-section {
    padding: 100spx 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* =========================================================
   Drum Oracle featured block
   ========================================================= */

.drum-oracle-feature {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.drum-oracle-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 22, 0.92) 0%, rgba(20, 10, 40, 0.92) 100%);
    border: 1px solid rgba(139, 92, 246, 0.45);
    border-radius: 24px;
    padding: 56px 52px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 0 40px rgba(139, 92, 246, 0.18),
        0 0 80px rgba(113, 239, 255, 0.08),
        inset 0 0 60px rgba(139, 92, 246, 0.06);
}

.drum-oracle-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.drum-oracle-glow-ring {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.drum-oracle-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 56px;
    align-items: center;
}

.drum-oracle-text {
    flex: 1 1 0;
    min-width: 0;
}

.drum-oracle-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.drum-oracle-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.22rem 0.7rem;
    border-radius: 100px;
    background: rgba(139, 92, 246, 0.18);
    color: var(--color-purple);
    border: 1px solid rgba(139, 92, 246, 0.35);
}

.drum-oracle-pill {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.18rem 0.6rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #71efff 0%, #8b5cf6 100%);
    color: #05060b;
}

.drum-oracle-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, #c4b0ff 0%, #71efff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drum-oracle-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-heading);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.drum-oracle-body {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.drum-oracle-body em {
    color: var(--color-text);
    font-style: italic;
}

.drum-oracle-points {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.drum-oracle-point {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.5;
}

.drum-oracle-point i {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 0.9rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drum-oracle-image-wrap {
    flex: 0 0 auto;
    width: 340px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drum-oracle-image-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.drum-oracle-image {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 24px rgba(139, 92, 246, 0.4)) drop-shadow(0 0 8px rgba(113, 239, 255, 0.2));
}

@media (max-width: 991px) {
    .drum-oracle-inner {
        padding: 40px 32px;
    }

    .drum-oracle-content {
        flex-direction: column-reverse;
        gap: 36px;
    }

    .drum-oracle-image-wrap {
        width: 260px;
        align-self: center;
    }
}

@media (max-width: 575px) {
    .drum-oracle-inner {
        padding: 32px 24px;
    }

    .drum-oracle-image-wrap {
        width: 200px;
    }
}

/* =========================================================
   Feature grid cards
   ========================================================= */

.feature-card {
    background: rgba(14, 16, 32, 0.6);
    border: 1px solid rgba(113, 239, 255, 0.35);
    border-radius: 16px;
    padding: 24px 26px 22px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
        0 0 12px rgba(113, 239, 255, 0.15),
        0 0 30px rgba(113, 239, 255, 0.06),
        inset 0 0 20px rgba(113, 239, 255, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-card::before {
    display: none;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover {
    border-color: rgba(113, 239, 255, 0.7);
    transform: translateY(-4px);
    box-shadow:
        0 0 20px rgba(113, 239, 255, 0.4),
        0 0 50px rgba(113, 239, 255, 0.15),
        0 0 80px rgba(139, 92, 246, 0.15),
        inset 0 0 20px rgba(113, 239, 255, 0.08),
        inset 0 0 40px rgba(139, 92, 246, 0.05);
}

.feature-card-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    pointer-events: none;
}

.has-card-logo .feature-icon {
    width: 96px;
    height: 96px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    background: rgba(139,92,246,0.12);
    border: 1px solid var(--color-border-glow);
}

.feature-icon i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

.example-list {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.example-item {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.45;
    padding-left: 0.6rem;
    border-left: 2px solid rgba(139, 92, 246, 0.35);
}

.feature-tier-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-top: 1rem;
}

.badge-oracle {
    background: rgba(139,92,246,0.15);
    color: var(--color-purple);
    border: 1px solid rgba(139,92,246,0.3);
}

.badge-orchestrator {
    background: rgba(113,239,255,0.10);
    color: var(--color-blue);
    border: 1px solid rgba(113,239,255,0.25);
}

.badge-all {
    background: rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.feature-tier-badge + .feature-tier-badge {
    margin-left: 4px;
}

/* =========================================================
   Coming Soon Section
   ========================================================= */

.coming-soon-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.coming-soon-card {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow:
        0 0 12px rgba(139, 92, 246, 0.1),
        0 0 30px rgba(139, 92, 246, 0.05),
        inset 0 0 20px rgba(139, 92, 246, 0.03);
    opacity: 0.85;
}

.coming-soon-card:hover {
    border-color: rgba(139, 92, 246, 0.6);
    opacity: 1;
    box-shadow:
        0 0 20px rgba(139, 92, 246, 0.3),
        0 0 50px rgba(139, 92, 246, 0.12),
        inset 0 0 20px rgba(139, 92, 246, 0.06);
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    background: rgba(139, 92, 246, 0.12);
    color: var(--color-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 0.25rem;
}

/* ── Benefit Statements ───────────────────────────────────── */

.benefits-section {
    padding: 60px 0;
    background: transparent;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.benefit-statement {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 500;
    color: var(--color-text-muted);
    text-align: center;
    padding: 1.25rem 1rem;
}

.benefit-statement::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

/* ── Register interest banner ───────────────────────────────── */
.register-interest-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(113,239,255,0.06) 0%, rgba(139,92,246,0.08) 100%);
    border: 1px solid rgba(113,239,255,0.2);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    margin-bottom: 3rem;
}

.register-interest-text {
    flex: 1;
}

.register-interest-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.4rem;
}

.register-interest-body {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.register-interest-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .register-interest-banner {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* ── Pricing ──────────────────────────────────────────────── */

.pricing-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.pricing-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(90, 120, 255, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-provider-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: rgba(202, 138, 4, 0.08);
    border: 1px solid rgba(202, 138, 4, 0.45);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 0;
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.pricing-provider-notice i {
    color: #ca8a04;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pricing-provider-notice strong {
    color: #fbbf24;
}

.pricing-provider-notice a.pricing-notice-link {
    color: #fbbf24;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.pricing-provider-notice a.pricing-notice-link:hover {
    color: #fde68a;
}

.pricing-card {
    border: 1px solid rgba(113, 239, 255, 0.35);
    border-radius: 16px;
    padding: 1.75rem 2rem 1rem;
    height: 100%;
    position: relative;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
    box-shadow:
        0 0 12px rgba(113, 239, 255, 0.12),
        0 0 30px rgba(113, 239, 255, 0.05),
        inset 0 0 20px rgba(113, 239, 255, 0.03);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.pricing-card.featured {
    border-color: var(--color-purple);
    background: linear-gradient(160deg, rgba(139,92,246,0.07) 0%, var(--color-bg-card) 50%);
    box-shadow: 0 0 48px rgba(139,92,246,0.2), var(--shadow-card);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 64px rgba(139,92,246,0.3), var(--shadow-card);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 0 16px rgba(139,92,246,0.5);
}

.pricing-tier-name {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.pricing-price-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pricing-price {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-launch-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    background: rgba(139, 92, 246, 0.15);
    color: var(--color-purple);
    border: 1px solid rgba(139, 92, 246, 0.35);
    white-space: nowrap;
    align-self: center;
    margin-bottom: 0.2rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 1.5;
    font-weight: 600;
    color: var(--color-text-muted);
}

.pricing-duration {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.pricing-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0.75rem 0;
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex: 1;
}

.pricing-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    padding: 0.15rem 0;
    color: var(--color-text-muted);
}

.pricing-feature-list li.included {
    color: var(--color-text);
}

.pricing-feature-list li .check {
    color: var(--color-purple);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-feature-list li .cross {
    color: var(--color-text-subtle);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-drum-oracle-item {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    border-left: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 0 6px 6px 0;
    padding-left: 0.5rem;
    margin-left: -0.5rem;
    align-items: center;
}

.pricing-drum-logo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    margin-left: auto;
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.6));
}

.pricing-machine-info {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

/* ── Download ─────────────────────────────────────────────── */

.download-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.download-card {
    background: rgba(14, 16, 32, 0.6);
    border: 1px solid rgba(113, 239, 255, 0.35);
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(113,239,255,0.15), 0 0 40px rgba(113,239,255,0.06), inset 0 0 20px rgba(113,239,255,0.04);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.download-windows-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    fill: var(--brand-accent);
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(113,239,255,0.5));
}

.download-platform-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.2;
}

.download-platform-sub {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
    margin-top: 0.15rem;
}

.download-card-body {
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.download-version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--brand-accent);
    background: rgba(113,239,255,0.08);
    border: 1px solid rgba(113,239,255,0.2);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    width: fit-content;
}

.download-btn {
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
}

.download-smartscreen-notice {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    background: rgba(251, 191, 36, 0.07);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--color-text-subtle);
    line-height: 1.5;
}

.download-smartscreen-notice i {
    color: #fbbf24;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.download-smartscreen-notice strong {
    color: #fbbf24;
    font-weight: 600;
}

.download-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.download-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--color-text-subtle);
}

.download-meta-item i {
    color: var(--brand-accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.download-footnote {
    font-size: 0.85rem;
    color: var(--color-text-subtle);
}

.download-footnote-unsigned {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 0.25rem;
}

.download-footnote-unsigned i {
    margin-right: 0.3rem;
}

/* ── Testimonials ─────────────────────────────────────────── */

.testimonials-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-blue), transparent);
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.testimonial-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.testimonial-card:hover {
    border-color: var(--color-border-glow);
    transform: translateY(-3px);
}

.testimonial-quote-mark {
    font-size: 3rem;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

/* ── FAQ ──────────────────────────────────────────────────── */

.faq-section {
    padding: 100px 0;
    background: transparent;
}

.accordion-item {
    background: var(--color-bg-card) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--color-bg-card) !important;
    color: var(--color-text) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    border: none !important;
    box-shadow: none !important;
    padding: 1.25rem 1.5rem !important;
}

.accordion-button::after {
    filter: invert(1) brightness(0.6);
}

.accordion-button:not(.collapsed) {
    color: var(--color-purple) !important;
    background: var(--color-bg-card) !important;
}

.accordion-button:not(.collapsed)::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238b5cf6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--color-bg-card) !important;
    color: var(--color-text-muted) !important;
    font-size: 0.9rem !important;
    line-height: 1.75 !important;
    border-top: 1px solid var(--color-border) !important;
    padding: 1.25rem 1.5rem !important;
}

/* ── Footer ───────────────────────────────────────────────── */

.site-footer {
    background: transparent;
    border-top: 1px solid var(--color-border);
    padding: 60px 0 32px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-subtle);
    padding: 2rem 0;
}

.footer-bottom a {
    color: var(--color-text-subtle);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--color-purple);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* ── Legal pages ─────────────────────────────────────────── */

.legal-page {
    padding: 6rem 0 5rem;
    min-height: 70vh;
}

.legal-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.legal-meta {
    font-size: 0.85rem;
    color: var(--color-text-subtle);
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.legal-page p,
.legal-page li {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.legal-page ul {
    padding-left: 1.5rem;
}

.legal-page a {
    color: var(--color-purple);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* ── Setup Guide ──────────────────────────────────────────── */

.setup-guide-page .legal-meta {
    margin-bottom: 3rem;
}

.setup-step {
    margin-bottom: 2.5rem;
    padding: 1.75rem 2rem;
    background: rgba(14, 16, 32, 0.5);
    border: 1px solid rgba(113, 239, 255, 0.15);
    border-radius: 16px;
}

.setup-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.setup-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #05060b;
    flex-shrink: 0;
}

.setup-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.setup-step-body p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.setup-step-body p:last-child {
    margin-bottom: 0;
}

.setup-action-name {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: monospace;
    font-size: 0.9rem;
    background: rgba(113, 239, 255, 0.07);
    border: 1px solid rgba(113, 239, 255, 0.25);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--brand-accent);
    margin: 0.5rem 0 1rem;
    width: fit-content;
}

.setup-action-name i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.setup-icon-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    width: fit-content;
}

.setup-toolbar-icon {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
    display: block;
}

.setup-icon-preview span {
    font-size: 0.82rem;
    color: var(--color-text-subtle);
}

kbd {
    display: inline-block;
    padding: 0.1em 0.45em;
    font-size: 0.8em;
    font-family: monospace;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: var(--color-text);
}

.setup-footer-note {
    margin-top: 3rem;
    padding: 1rem 1.25rem;
    background: rgba(139, 92, 246, 0.07);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--color-text-subtle);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.setup-footer-note i {
    color: var(--brand-accent-2);
    font-size: 1rem;
    flex-shrink: 0;
}

.setup-smartscreen-notice {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    background: rgba(251, 191, 36, 0.07);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--color-text-subtle);
    line-height: 1.5;
    margin-top: 0.85rem;
}

.setup-smartscreen-notice i {
    color: #fbbf24;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.setup-smartscreen-notice strong {
    color: #fbbf24;
    font-weight: 600;
}

/* ── Scroll reveal ────────────────────────────────────────── */

.reveal {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.reveal-up {
    transform: translateY(32px);
}

.reveal.reveal-left {
    transform: translateX(-32px);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── Blazor Error UI ──────────────────────────────────────── */

#blazor-error-ui {
    color-scheme: light only;
    background: #1a0a0a;
    border-top: 1px solid #4a1010;
    color: #ffaaaa;
    bottom: 0;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.5);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

.loading-progress {
    position: absolute;
    display: block;
    width: 8rem;
    height: 8rem;
    inset: 20vh 0 auto 0;
    margin: 0 auto;
}

.loading-progress circle {
    fill: none;
    stroke: #2a2a3a;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: #8b5cf6;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
    color: var(--color-text-muted);
}

.loading-progress-text::after {
    content: var(--blazor-load-percentage-text, "Loading");
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 991.98px) {
    .pricing-card.featured {
        transform: none;
    }

    .step-connector {
        display: none;
    }

    .hero-visual {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

}
/* ── Preview Interest Modal ─────────────────────────────────────────────── */

.preview-modal-content,
.modal .preview-modal-content,
#previewInterestModal .modal-content {
    background: #1c1c30 !important;
    border: 1px solid rgba(139, 92, 246, 0.5) !important;
    border-radius: 1rem !important;
    box-shadow: 0 0 80px rgba(139, 92, 246, 0.25) !important;
    color: #ffffff !important;
    position: relative;
}

.preview-modal-logo {
    height: 36px;
    width: auto;
    display: inline-block;
    margin-bottom: 1rem;
}

.preview-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 1;
}

.preview-modal-close:hover { color: #fff; }

.preview-modal-header-icon {
    font-size: 2.5rem;
    color: #a78bfa;
    display: block;
    margin-bottom: 0.75rem;
}

.preview-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.preview-modal-desc {
    font-size: 0.95rem;
    color: #d1d5db;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.preview-modal-highlight {
    font-size: 0.95rem;
    color: #e2d9fb;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0.5rem;
    padding: 0.6rem 0.85rem;
}

.preview-modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.preview-modal-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.preview-modal-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e5e7eb;
}

.preview-modal-input {
    background: #2a2a44;
    border: 1px solid #4b4b72;
    border-radius: 0.5rem;
    padding: 0.6rem 0.85rem;
    color: #ffffff;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}

.preview-modal-input::placeholder { color: #9ca3af; }
.preview-modal-input:focus { border-color: #8b5cf6; }
.preview-modal-input-error { border-color: #ef4444; }

.preview-modal-error {
    font-size: 0.8rem;
    color: #fca5a5;
}

.preview-modal-send-error {
    font-size: 0.85rem;
    color: #fca5a5;
    text-align: center;
    margin: 0;
}

.preview-modal-send-error a { color: #fca5a5; text-decoration: underline; }

.preview-modal-success { text-align: center; padding: 0.5rem 0; }

.preview-modal-success-icon {
    font-size: 3rem;
    color: #4ade80;
    display: block;
    margin-bottom: 0.75rem;
}

.preview-modal-success-body {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* ── Origin story section ───────────────────────────────── */
.origin-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.origin-body {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: left;
    margin-top: 2rem;
}

.origin-body p {
    margin-bottom: 1.25rem;
}

.origin-closer {
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 0 !important;
}

/* ── Script supersession section ───────────────────────── */
.script-supersession-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.script-intro {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.85;
    text-align: center;
    margin: 0;
}

.script-cat-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.script-cat-coming-soon {
    opacity: 0.5;
}

.script-cat-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.script-cat-icon {
    color: var(--color-purple);
    font-size: 1rem;
    flex-shrink: 0;
}

.script-cat-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin: 0;
}

.script-cat-ops {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.script-cat-ops li {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    padding: 0.15rem 0 0.15rem 0.85rem;
    position: relative;
    line-height: 1.5;
}

.script-cat-ops li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--color-text-muted);
}

.script-cat-oracle {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: rgba(113,239,255,0.85);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.75rem;
    line-height: 1.5;
}

.script-cat-oracle i {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.script-cat-oracle-soon {
    color: var(--color-text-subtle);
}

.beyond-scripts-block {
    background: linear-gradient(135deg, rgba(113,239,255,0.04) 0%, rgba(139,92,246,0.06) 100%);
    border: 1px solid rgba(113,239,255,0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.beyond-scripts-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
}

.beyond-scripts-sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.beyond-item {
    display: flex;
    gap: 0.875rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.beyond-item:last-child,
.beyond-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
}

.beyond-item-icon {
    color: var(--brand-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.beyond-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.beyond-item-body {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.script-closer {
    text-align: center;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-style: italic;
    padding: 1rem 0 0;
    margin: 0;
}

/* ── Screenshots section ────────────────────────────────── */
.screenshots-section {
    padding: 6rem 0;
}

.screenshot-spotlight {
    margin-bottom: 5rem;
}

.screenshot-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.screenshot-body {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.screenshot-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    background: var(--color-bg-card);
}

.screenshot-frame-sm {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-tile {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.screenshot-tile-caption {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
}
