/* ============================================================
   BUCHERT AUDIO — Officiel CSS
   Brand Bible farver (mørk Navy-æstetik)
   Primær font: DM Sans + Instrument Sans
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
    /* Baggrunde */
    --bg-deep:          #080e14;
    --bg-shell-top:     #162430;
    --bg-shell-mid:     #101a24;
    --bg-shell-bottom:  #0c141e;
    --bg-section:       rgba(255,255,255,0.014);
    --bg-input:         #162430;

    /* Grænser */
    --border-shell:     #1e2e3c;
    --border-section:   #1a2a38;
    --border-header:    #18242e;
    --border-divider:   #243848;
    --border-button:    #243848;

    /* Accenter */
    --teal:  #4bb8e0;
    --warm:  #e0913e;
    --rose:  #cc5670;
    --mint:  #38c898;
    --gold:  #c9a96e;

    /* Tekst */
    --text-title:  #c8d8ea;
    --text-value:  #c0d0e2;
    --text-label:  #7a9ab0;
    --text-unit:   #6888a0;
    --text-brand:  #5a7a92;
    --text-muted:  #3a5268;

    /* Logo */
    --logo-fill: #4a6a82;

    /* Spacing */
    --s1: 4px;
    --s2: 8px;
    --s3: 12px;
    --s4: 16px;
    --s5: 24px;
    --s6: 32px;
    --s7: 48px;
    --s8: 64px;
    --s9: 96px;

    /* Radius */
    --r-sm: 5px;
    --r-md: 8px;
    --r-lg: 12px;
    --r-xl: 16px;
    --r-full: 9999px;

    /* Transitions */
    --t-fast: 0.15s ease;
    --t-med:  0.25s ease;
    --t-slow: 0.4s ease;

    /* Layout */
    --nav-h: 64px;
    --max-w: 1320px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-deep);
    color: var(--text-value);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ── TYPOGRAFI ── */
h1, h2, h3, h4 {
    font-family: 'Instrument Sans', 'DM Sans', sans-serif;
    color: var(--text-title);
    line-height: 1.15;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-label); line-height: 1.7; }

/* ── LAYOUT ── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s5);
}

.section {
    padding: var(--s9) 0;
}

.section--dark {
    background: var(--bg-deep);
}

.section--mid {
    background: var(--bg-shell-mid);
    border-top: 1px solid var(--border-section);
    border-bottom: 1px solid var(--border-section);
}

.section--story {
    background: var(--bg-shell-top);
    border-top: 1px solid var(--border-divider);
    border-bottom: 1px solid var(--border-divider);
}

.section--bundle {
    background: linear-gradient(180deg, var(--bg-shell-mid) 0%, var(--bg-deep) 100%);
    border-top: 1px solid var(--border-section);
}

/* ── SECTION HEADER ── */
.section-header {
    text-align: center;
    margin-bottom: var(--s8);
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: var(--s3);
    opacity: 0.9;
}

.section-title {
    margin-bottom: var(--s3);
}

.section-sub {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-label);
}

/* ── NAVIGATION ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(8, 14, 20, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-header);
    transition: background var(--t-med);
}

.nav.nav--scrolled {
    background: rgba(8, 14, 20, 0.97);
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s5);
    height: 100%;
    gap: var(--s5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--s3);
    flex-shrink: 0;
}

.nav-logo-mark {
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.20em;
    color: var(--gold);
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--s5);
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-label);
    transition: color var(--t-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-title);
}

.nav-cta {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--teal);
    border: 1px solid rgba(75, 184, 224, 0.3);
    padding: 8px 20px;
    border-radius: var(--r-sm);
    white-space: nowrap;
    transition: all var(--t-fast);
    flex-shrink: 0;
}

.nav-cta:hover {
    background: rgba(75, 184, 224, 0.1);
    border-color: var(--teal);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-label);
    transition: all var(--t-fast);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-h) + var(--s8)) var(--s5) var(--s8);
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #162430 0%, #080e14 65%);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-section) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-section) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.25;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, var(--bg-deep) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    border: 1px solid rgba(75, 184, 224, 0.25);
    padding: 6px 16px;
    border-radius: var(--r-full);
    margin-bottom: var(--s5);
    background: rgba(75, 184, 224, 0.06);
}

.hero-title {
    margin-bottom: var(--s5);
    color: var(--text-title);
}

.hero-accent {
    color: var(--teal);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-label);
    margin-bottom: var(--s6);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s3);
    margin-bottom: var(--s5);
    flex-wrap: wrap;
}

.hero-compat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    flex-wrap: wrap;
}

.compat-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border-divider);
    padding: 4px 10px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.02);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--s5);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--teal), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(1); }
    50% { opacity: 0.7; transform: scaleY(1.1); }
}

/* ── KNAPPER ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    border-radius: var(--r-sm);
    cursor: pointer;
    border: none;
    transition: all var(--t-fast);
    white-space: nowrap;
    line-height: 1;
    text-decoration: none;
}

.btn--primary {
    background: var(--teal);
    color: #080e14;
    font-size: 0.875rem;
    padding: 12px 24px;
}
.btn--primary:hover {
    background: #62c6e8;
    box-shadow: 0 0 20px rgba(75, 184, 224, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--text-label);
    font-size: 0.875rem;
    padding: 11px 24px;
    border: 1px solid var(--border-button);
}
.btn--ghost:hover {
    color: var(--text-title);
    border-color: var(--border-divider);
    background: rgba(255,255,255,0.03);
}

.btn--outline {
    background: transparent;
    color: var(--text-label);
    font-size: 0.8125rem;
    padding: 9px 18px;
    border: 1px solid var(--border-button);
}
.btn--outline:hover {
    color: var(--text-title);
    border-color: var(--border-divider);
}

.btn--lg {
    font-size: 0.9375rem;
    padding: 14px 32px;
}

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

/* ── PLUGIN GRID ── */
.plugin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s5);
}

.plugin-card {
    background: rgba(255,255,255,0.014);
    border: 1px solid var(--border-section);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: all var(--t-med);
    display: flex;
    flex-direction: column;
}

.plugin-card:hover {
    border-color: var(--border-divider);
    box-shadow: 0 8px 48px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.plugin-card--featured {
    border-color: var(--border-divider);
}

.plugin-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    background: var(--bg-shell-bottom);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plugin-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--s4);
    transition: transform var(--t-slow);
}

.plugin-card:hover .plugin-card-image img {
    transform: scale(1.01);
}

.plugin-card-image--placeholder {
    aspect-ratio: 16/7;
    background: linear-gradient(135deg, var(--bg-shell-top), var(--bg-shell-bottom));
}

.plugin-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.plugin-placeholder-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.plugin-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 20, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s3);
    opacity: 0;
    transition: opacity var(--t-med);
}

.plugin-card:hover .plugin-card-overlay {
    opacity: 1;
}

.plugin-card-body {
    padding: var(--s5);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plugin-card-meta {
    display: flex;
    gap: var(--s2);
    margin-bottom: var(--s3);
}

.plugin-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--r-full);
}

.plugin-tag--teal  { background: rgba(75, 184, 224, 0.12); color: var(--teal); border: 1px solid rgba(75, 184, 224, 0.2); }
.plugin-tag--warm  { background: rgba(224, 145, 62, 0.12); color: var(--warm); border: 1px solid rgba(224, 145, 62, 0.2); }
.plugin-tag--rose  { background: rgba(204, 86, 112, 0.12); color: var(--rose); border: 1px solid rgba(204, 86, 112, 0.2); }
.plugin-tag--mint  { background: rgba(56, 200, 152, 0.12); color: var(--mint); border: 1px solid rgba(56, 200, 152, 0.2); }
.plugin-tag--gold  { background: rgba(201, 169, 110, 0.12); color: var(--gold); border: 1px solid rgba(201, 169, 110, 0.2); }

.plugin-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: var(--s2);
}

.plugin-card-desc {
    font-size: 0.9rem;
    color: var(--text-label);
    line-height: 1.65;
    margin-bottom: var(--s4);
}

.plugin-features {
    margin-bottom: var(--s4);
    flex: 1;
}

.plugin-features li {
    font-size: 0.85rem;
    color: var(--text-label);
    padding: 5px 0 5px 16px;
    position: relative;
    line-height: 1.5;
}

.plugin-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.6;
}

.plugin-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--s4);
    border-top: 1px solid var(--border-section);
    margin-top: auto;
}

.plugin-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-title);
    letter-spacing: -0.02em;
}

.price-amount--xl {
    font-size: 3.5rem;
}

.plugin-actions {
    display: flex;
    gap: var(--s2);
}

/* ── BUNDLE ── */
.bundle-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-divider);
    border-radius: var(--r-xl);
    padding: var(--s8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
    align-items: center;
}

.bundle-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--s3);
    color: var(--text-title);
}

.bundle-desc {
    color: var(--text-label);
    line-height: 1.7;
    margin-bottom: var(--s5);
    font-size: 1rem;
}

.bundle-includes {
    margin-bottom: var(--s5);
}

.bundle-includes li {
    display: flex;
    align-items: center;
    gap: var(--s3);
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-label);
    border-bottom: 1px solid var(--border-section);
}

.bundle-includes li:last-child {
    border-bottom: none;
}

.bundle-check {
    color: var(--mint);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.bundle-price-tag {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: line-through;
}

.bundle-pricing {
    margin-bottom: var(--s5);
}

.bundle-original {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--s2);
    text-decoration: line-through;
}

.bundle-total {
    display: flex;
    align-items: baseline;
    gap: var(--s2);
}

.bundle-total .price-currency {
    font-size: 1.5rem;
}

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

.bundle-plugin-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.bundle-stack-item {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border-divider);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.bundle-stack-item:nth-child(2) {
    margin-top: var(--s4);
    margin-left: var(--s4);
}

.bundle-stack-item img {
    width: 100%;
    display: block;
}

/* ── STORY / FILOSOFI ── */
.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
    align-items: start;
}

.story-content .section-title {
    margin-bottom: var(--s4);
}

.story-text {
    font-size: 1.05rem;
    color: var(--text-label);
    line-height: 1.8;
    margin-bottom: var(--s4);
}

.story-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s4);
}

.spec-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-section);
    border-radius: var(--r-md);
    padding: var(--s4);
    text-align: center;
}

.spec-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.spec-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── SYSTEMKRAV ── */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s4);
}

.req-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-section);
    border-radius: var(--r-md);
    padding: var(--s5);
}

.req-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s4);
}

.req-icon--teal { background: rgba(75, 184, 224, 0.1); }
.req-icon--warm { background: rgba(224, 145, 62, 0.1); }
.req-icon--mint { background: rgba(56, 200, 152, 0.1); }
.req-icon--rose { background: rgba(204, 86, 112, 0.1); }

.req-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: var(--s2);
}

.req-desc {
    font-size: 0.85rem;
    color: var(--text-label);
    line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
    background: var(--bg-shell-bottom);
    border-top: 1px solid var(--border-section);
    padding: var(--s8) 0 var(--s5);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--s8);
    margin-bottom: var(--s7);
    padding-bottom: var(--s7);
    border-bottom: 1px solid var(--border-section);
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--s3);
    letter-spacing: 0.05em;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--s5);
}

.footer-nav-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-brand);
    margin-bottom: var(--s4);
}

.footer-link {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--s2);
    transition: color var(--t-fast);
}

.footer-link:hover {
    color: var(--text-label);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
}

.footer-copy, .footer-tech {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── PLUGIN DETALJE-SIDE ── */
.plugin-hero {
    padding: calc(var(--nav-h) + var(--s8)) 0 var(--s8);
    background: linear-gradient(180deg, var(--bg-shell-top) 0%, var(--bg-deep) 100%);
    border-bottom: 1px solid var(--border-divider);
}

.plugin-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
    align-items: center;
}

.plugin-hero-visual img {
    width: 100%;
    border-radius: var(--r-xl);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border-shell);
}

.plugin-hero-badge {
    display: inline-flex;
    gap: var(--s2);
    margin-bottom: var(--s4);
}

.plugin-hero-title {
    margin-bottom: var(--s3);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.plugin-hero-desc {
    font-size: 1.1rem;
    color: var(--text-label);
    line-height: 1.75;
    margin-bottom: var(--s5);
}

.plugin-hero-price-block {
    display: flex;
    align-items: center;
    gap: var(--s4);
    margin-bottom: var(--s5);
}

.plugin-hero-price {
    display: flex;
    align-items: baseline;
    gap: var(--s1);
}

.plugin-hero-price .price-amount {
    font-size: 2.75rem;
}

.plugin-hero-cta {
    display: flex;
    gap: var(--s3);
    flex-wrap: wrap;
}

/* ── KØB SEKTION ── */
.purchase-section {
    background: rgba(75, 184, 224, 0.04);
    border: 1px solid rgba(75, 184, 224, 0.15);
    border-radius: var(--r-xl);
    padding: var(--s7);
    text-align: center;
}

.purchase-title {
    font-size: 1.5rem;
    color: var(--text-title);
    margin-bottom: var(--s3);
}

.purchase-desc {
    color: var(--text-label);
    margin-bottom: var(--s5);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.purchase-options {
    display: flex;
    gap: var(--s4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--s4);
}

.purchase-option {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-divider);
    border-radius: var(--r-lg);
    padding: var(--s5);
    min-width: 200px;
    text-align: center;
}

.purchase-option--active {
    border-color: var(--teal);
    background: rgba(75, 184, 224, 0.05);
}

.purchase-option-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--s2);
}

.purchase-option-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-title);
    letter-spacing: -0.02em;
    margin-bottom: var(--s1);
}

.purchase-option-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.purchase-guarantee {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── FEATURES GRID (plugin-side) ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s4);
}

.feature-item {
    background: rgba(255,255,255,0.014);
    border: 1px solid var(--border-section);
    border-radius: var(--r-md);
    padding: var(--s5);
}

.feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: var(--s3);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: var(--s2);
}

.feature-desc {
    font-size: 0.82rem;
    color: var(--text-label);
    line-height: 1.6;
}

/* ── BREADCRUMB ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--s2);
    padding: var(--s3) 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--t-fast);
}

.breadcrumb a:hover { color: var(--text-label); }

.breadcrumb-sep {
    color: var(--border-divider);
}

/* ── DOWNLOAD MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--s5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg-shell-top);
    border: 1px solid var(--border-divider);
    border-radius: var(--r-xl);
    padding: var(--s7);
    max-width: 440px;
    width: 100%;
    transform: translateY(16px);
    transition: transform var(--t-med);
}

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

.modal-title {
    font-size: 1.35rem;
    color: var(--text-title);
    margin-bottom: var(--s3);
}

.modal-desc {
    color: var(--text-label);
    font-size: 0.9rem;
    margin-bottom: var(--s5);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-brand);
}

.form-input {
    background: var(--bg-input);
    border: 1px solid var(--border-section);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-value);
    outline: none;
    transition: border-color var(--t-fast);
}

.form-input:focus {
    border-color: rgba(75, 184, 224, 0.4);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.modal-close {
    position: absolute;
    top: var(--s4);
    right: var(--s4);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: var(--s2);
    transition: color var(--t-fast);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .plugin-grid { grid-template-columns: repeat(2, 1fr); }
    .requirements-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .bundle-card { grid-template-columns: 1fr; }
    .bundle-visual { display: none; }
}

@media (max-width: 900px) {
    .story-layout { grid-template-columns: 1fr; }
    .plugin-hero-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
    .footer-nav--4col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .plugin-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-mobile-toggle { display: flex; }
    .requirements-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .story-specs { grid-template-columns: 1fr 1fr; }
    .footer-nav { grid-template-columns: 1fr; }
    .section { padding: var(--s8) 0; }
    .bundle-card { padding: var(--s5); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; }
    .plugin-card-footer { flex-direction: column; align-items: flex-start; gap: var(--s3); }
}

@media (max-width: 480px) {
    .story-specs { grid-template-columns: 1fr; }
}

/* ── ANIMATIONER ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* Intersection Observer targets */
[data-animate] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: none;
}

/* ── UTILITY ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-teal  { color: var(--teal); }
.text-warm  { color: var(--warm); }
.text-rose  { color: var(--rose); }
.text-mint  { color: var(--mint); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--text-muted); }
