:root {
    --bg: #090b10;
    --bg-soft: #11141b;
    --panel: rgba(19, 22, 29, 0.82);
    --panel-strong: rgba(24, 28, 37, 0.95);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 181, 77, 0.22);
    --text: #f4efe5;
    --text-soft: #beb4a1;
    --text-dim: #8f8777;
    --amber: #ef9f27;
    --amber-bright: #ffc66b;
    --amber-soft: rgba(239, 159, 39, 0.16);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 20%, rgba(239, 159, 39, 0.14), transparent 28%),
        radial-gradient(circle at 80% 15%, rgba(86, 129, 255, 0.14), transparent 22%),
        linear-gradient(180deg, #080a0f 0%, #0a0d13 55%, #090b10 100%);
    font-family: "Space Grotesk", sans-serif;
}

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

button,
a.button {
    font: inherit;
}

.site-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.space-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
    pointer-events: none;
}

.orb {
    position: fixed;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.24;
    pointer-events: none;
}

.orb-left {
    top: 3rem;
    left: -10rem;
    background: radial-gradient(circle, rgba(239, 159, 39, 0.55), transparent 70%);
}

.orb-right {
    top: 14rem;
    right: -12rem;
    background: radial-gradient(circle, rgba(95, 155, 255, 0.32), transparent 70%);
}

.topbar,
.section,
.footer {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0 0;
}

.brand { display: flex; align-items: center; }

.brand-mark {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 198, 107, 0.22), rgba(239, 159, 39, 0.08));
    border: 1px solid rgba(255, 198, 107, 0.28);
    color: var(--amber-bright);
    font-family: "Syne", sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand-text strong {
    font-size: 0.98rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-text span:last-child {
    color: var(--text-dim);
    font-size: 0.8rem;
}

.nav {
    display: inline-flex;
    gap: 1.4rem;
    padding: 0.85rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(10, 13, 19, 0.55);
    backdrop-filter: blur(14px);
}

.nav a {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.section {
    padding: 2rem 0;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    align-items: center;
    padding-top: 4rem;
}

.hero--simple {
    min-height: calc(100vh - 6rem);
    padding-top: 3rem;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--amber-bright);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
}

h1,
h2,
h3,
.motto {
    margin: 0;
}

h1,
h2 {
    font-family: "Syne", sans-serif;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.4rem);
    line-height: 0.98;
}

.motto {
    margin-top: 1rem;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    color: var(--text);
}

.hero-text,
.section-heading p,
.story-card p,
.feature-band p,
.module-card p,
.download-card p,
.note-body p,
.note-body li,
.footer p {
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-text {
    max-width: 38rem;
    margin: 1.5rem 0 0;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.cta-stack {
    display: grid;
    gap: 0.5rem;
}

.cta-microcopy {
    margin: 0;
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.5;
    padding-left: 0.1rem;
}

.cta-proof {
    margin: -0.1rem 0 0;
    color: var(--text-dim);
    font-size: 0.86rem;
    line-height: 1.5;
    padding-left: 0.1rem;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 3.4rem;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--amber-bright), var(--amber));
    color: #150f08;
    font-weight: 700;
    box-shadow: 0 16px 40px rgba(239, 159, 39, 0.28);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--line);
    color: var(--text);
}

.hero-specs {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-specs li {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-soft);
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.plugin-shot {
    width: min(100%, 44rem);
    margin: 0;
    padding: 0.95rem;
    border-radius: 2.2rem;
    background:
        linear-gradient(180deg, rgba(29, 33, 42, 0.9), rgba(16, 19, 26, 0.96)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 38%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    position: relative;
}

.plugin-shot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(255, 198, 107, 0.38), rgba(255, 255, 255, 0.02));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.plugin-shot__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.info-panel {
    width: min(100%, 34rem);
    padding: 2rem;
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(27, 30, 38, 0.86), rgba(14, 17, 23, 0.94)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.035), transparent 40%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 18px 56px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.info-panel h2 {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    line-height: 1.04;
    margin: 0;
}

.info-panel p {
    color: var(--text-soft);
    line-height: 1.7;
}

.company-points {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.company-points li {
    padding: 0.9rem 1rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-soft);
}

.plugin-frame,
.story-card,
.module-card,
.download-card,
.note-item,
.feature-band {
    background:
        linear-gradient(180deg, rgba(29, 33, 42, 0.9), rgba(16, 19, 26, 0.96)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 38%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
}

.plugin-frame {
    width: min(100%, 34rem);
    padding: 1.2rem;
    border-radius: var(--radius-xl);
    position: relative;
    filter: blur(0.3px) saturate(0.94);
    opacity: 0.92;
}

.plugin-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(255, 198, 107, 0.38), rgba(255, 255, 255, 0.02));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.plugin-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(9, 11, 16, 0.02), rgba(9, 11, 16, 0.12));
    pointer-events: none;
}

.plugin-top,
.plugin-tabs,
.knob-row,
.hero-knob {
    position: relative;
    z-index: 1;
}

.plugin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.auto-pill,
.plugin-switches span {
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.auto-pill {
    padding: 0.65rem 1rem;
    background: var(--amber);
    color: #1a1308;
    font-weight: 700;
}

.status {
    color: var(--text-dim);
    flex: 1;
    font-size: 0.92rem;
}

.plugin-switches {
    display: inline-flex;
    gap: 0.45rem;
}

.plugin-switches span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 2rem;
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--line);
    color: var(--text-dim);
}

.plugin-switches .active {
    color: var(--amber-bright);
    border-color: var(--line-strong);
    background: var(--amber-soft);
}

.plugin-tabs {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1.15rem;
    padding-bottom: 1rem;
    color: var(--text-dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--line);
}

.plugin-tabs .active {
    color: var(--amber-bright);
}

.knob-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.mini-knob {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
}

.mini-knob h3,
.hero-knob-copy span {
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
}

.mini-knob p {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text);
}

.knob {
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #1d2029 0 44%, transparent 44%),
        conic-gradient(from 225deg, rgba(255, 255, 255, 0.07) 0 280deg, transparent 280deg 360deg),
        radial-gradient(circle at center, rgba(239, 159, 39, 0.08), rgba(17, 20, 27, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.knob::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: #1a1d24;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.knob span {
    position: absolute;
    width: 3px;
    height: 18px;
    background: linear-gradient(180deg, var(--amber-bright), var(--amber));
    border-radius: 999px;
    transform-origin: center 28px;
    z-index: 1;
}

.mini-knob .knob {
    width: 7rem;
    height: 7rem;
}

.knob-a span { transform: rotate(46deg) translateY(-1.2rem); }
.knob-b span { transform: rotate(8deg) translateY(-1.2rem); }
.knob-c span { transform: rotate(-40deg) translateY(-1.2rem); }

.hero-knob {
    display: grid;
    justify-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
}

.knob-hero {
    width: 13rem;
    height: 13rem;
}

.knob-hero span {
    height: 24px;
    transform: rotate(78deg) translateY(-2.1rem);
}

.hero-knob-copy {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    z-index: 2;
}

.hero-knob-copy strong {
    margin-top: 0.35rem;
    font-family: "Syne", sans-serif;
    font-size: 2.4rem;
}

.compare-player {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.35rem;
    align-items: stretch;
}

.compare-hook {
    margin: -0.25rem 0 1.2rem;
    color: var(--amber-bright);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
}

.compare-player__copy,
.compare-player__panel {
    background:
        linear-gradient(180deg, rgba(27, 30, 38, 0.86), rgba(14, 17, 23, 0.94)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.035), transparent 40%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow:
        0 18px 56px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.compare-player--sleek {
    grid-template-columns: 0.76fr 1.24fr;
}

.compare-kicker {
    margin: 0 0 0.75rem;
    color: var(--amber-bright);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.compare-player__copy h3 {
    font-family: "Syne", sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin: 0;
}

.compare-player__copy p,
.compare-note {
    color: var(--text-soft);
    line-height: 1.7;
}

.compare-player__copy {
    display: grid;
    align-content: start;
}

.compare-presets,
.compare-mode {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.demo-library {
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.demo-library__heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
}

.demo-library__list {
    display: grid;
    gap: 0.8rem;
}

.demo-card {
    appearance: none;
    width: 100%;
    text-align: left;
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.05rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
        rgba(255, 255, 255, 0.015);
    color: var(--text);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.demo-card:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.12);
}

.demo-card.is-active {
    border-color: rgba(255, 198, 107, 0.24);
    background:
        radial-gradient(circle at top left, rgba(239, 159, 39, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.025);
}

.demo-card strong {
    font-size: 1rem;
    font-weight: 700;
}

.demo-card span:last-child {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.demo-card__index {
    color: var(--amber-bright);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
}

.demo-card--coming {
    opacity: 0.7;
    cursor: not-allowed;
}

.preset-chip {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    border-radius: 999px;
    padding: 0.72rem 1rem;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.preset-chip.is-active {
    color: #180f05;
    background: linear-gradient(135deg, var(--amber-bright), var(--amber));
    border-color: transparent;
}

.preset-chip:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.compare-player__panel {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.compare-transport {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.compare-play {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.25rem;
    min-width: 9.5rem;
    background: linear-gradient(135deg, var(--amber-bright), var(--amber));
    color: #160f06;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(239, 159, 39, 0.24);
}

.compare-time {
    display: inline-flex;
    gap: 0.35rem;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
}

.compare-progress-label {
    color: var(--text-dim);
    font-size: 0.84rem;
}

.compare-progress {
    width: 100%;
    appearance: none;
    height: 0.38rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.compare-progress::-webkit-slider-thumb {
    appearance: none;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-bright), var(--amber));
    border: 0;
    box-shadow: 0 8px 18px rgba(239, 159, 39, 0.3);
    cursor: pointer;
}

.compare-progress::-moz-range-thumb {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-bright), var(--amber));
    border: 0;
    box-shadow: 0 8px 18px rgba(239, 159, 39, 0.3);
    cursor: pointer;
}

.compare-legend {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.7rem;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.compare-legend div {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
}

.legend-dot--dry {
    background: rgba(255, 255, 255, 0.5);
}

.legend-dot--wet {
    background: linear-gradient(135deg, var(--amber-bright), var(--amber));
}

.compare-note {
    margin: 0.4rem 0 0;
    font-size: 0.92rem;
}

.story-card,
.feature-band,
.download-card,
.note-item {
    border-radius: 2rem;
    padding: 2.1rem;
}

.statement-card h2,
.section-heading h2,
.feature-band h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
}

.quote-card {
    display: grid;
    align-content: end;
    background:
        radial-gradient(circle at top left, rgba(239, 159, 39, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(31, 34, 42, 0.92), rgba(15, 18, 25, 0.97));
}

.quote {
    font-family: "Syne", sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--text);
}

.quote-caption {
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 2rem;
}

.section-heading.compact {
    margin-bottom: 1.4rem;
}

.seo-intro .section-heading {
    margin-bottom: 0;
}

.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;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.module-card {
    border-radius: 2rem;
    padding: 1.7rem;
    min-height: 17rem;
    position: relative;
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.module-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.07), transparent 30%),
        linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.module-card h3 {
    font-family: "Syne", sans-serif;
    font-size: 1.95rem;
    margin: 3.2rem 0 0.85rem;
    letter-spacing: -0.03em;
}

.module-index {
    color: var(--amber-bright);
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.featured-module {
    background:
        radial-gradient(circle at top left, rgba(239, 159, 39, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(35, 31, 26, 0.95), rgba(17, 18, 24, 0.98));
    border-color: rgba(255, 198, 107, 0.22);
}

.feature-band {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.feature-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.feature-points article {
    padding: 1.45rem;
    border-radius: 1.6rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-points h3 {
    font-family: "Syne", sans-serif;
    margin-bottom: 0.55rem;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.download-card {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(239, 159, 39, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(29, 33, 42, 0.92), rgba(16, 19, 26, 0.97));
}

.download-card--final {
    padding: 2.1rem 2.2rem;
    border-radius: 2rem;
}

.download-label {
    margin: 0 0 0.3rem;
    color: var(--amber-bright);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
}

.download-card h3 {
    font-family: "Syne", sans-serif;
    font-size: 2rem;
    margin: 0;
}

.download-meta {
    margin: 0.65rem 0 0;
}

.download-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.roadmap-card {
    padding: 1.7rem;
    border-radius: 1.8rem;
    background:
        linear-gradient(180deg, rgba(27, 30, 38, 0.84), rgba(14, 17, 23, 0.92)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), transparent 38%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 18px 56px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.roadmap-card span {
    color: var(--amber-bright);
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.74rem;
}

.roadmap-card h3 {
    font-family: "Syne", sans-serif;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
}

.roadmap-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.company-link-row {
    margin-top: 2rem !important;
}

.company-link-row a:not(.button) {
    color: var(--amber-bright);
}

.roadmap-card.is-active {
    border-color: rgba(255, 198, 107, 0.2);
    background:
        radial-gradient(circle at top left, rgba(239, 159, 39, 0.14), transparent 35%),
        linear-gradient(180deg, rgba(33, 30, 27, 0.92), rgba(15, 17, 23, 0.96));
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0 3rem;
    border-top: 1px solid var(--line);
}

.footer-brand {
    margin: 0 0 0.5rem;
    color: var(--text);
    font-family: "Syne", sans-serif;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
    align-content: start;
}

.footer-links a {
    color: var(--text-soft);
}

@media (max-width: 1080px) {
    .hero,
    .compare-player,
    .feature-band,
    .module-grid,
    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .feature-points {
        grid-template-columns: 1fr;
    }

    .plugin-frame,
    .plugin-shot {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .topbar,
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        justify-content: space-between;
        gap: 0.75rem;
        flex-wrap: wrap;
        border-radius: var(--radius-md);
    }

    .hero {
        padding-top: 2rem;
        gap: 2rem;
    }

    .section {
        padding: 3.4rem 0;
    }

    .plugin-shot {
        padding: 0.55rem;
        border-radius: 1.4rem;
    }

    .plugin-shot__image {
        border-radius: 1rem;
    }

    h1 {
        font-size: 3.4rem;
    }

    .knob-row {
        grid-template-columns: 1fr;
    }

    .plugin-top,
    .plugin-tabs,
    .download-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .plugin-tabs {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .download-actions,
    .hero-actions {
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .brand-logo { 
        height: 2.4rem; width: auto; display: block; 
    }

    .brand-logo { transition: opacity 160ms ease, transform 160ms ease; } 

    .brand:hover .brand-logo { opacity: 0.9; transform: translateY(-1px); }
}
