/* DerMurat - Live Übersetzer - Overlay - TTS · Landing Page Styles
   Single-file CSS, kein Build, deploy-fähig auf jedem Static-Host. */

:root {
    --bg-0: #060a18;
    --bg-1: #0a1024;
    --bg-2: #101831;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-2: rgba(255, 255, 255, 0.075);
    --surface-3: rgba(255, 255, 255, 0.10);
    --border: rgba(140, 190, 255, 0.13);
    --border-strong: rgba(140, 190, 255, 0.28);

    --c-cyan: #29d3ff;
    --c-cyan-soft: rgba(41, 211, 255, 0.16);
    --c-lime: #5ee46b;
    --c-lime-soft: rgba(94, 228, 107, 0.18);
    --c-purple: #b07bff;
    --c-purple-soft: rgba(176, 123, 255, 0.18);
    --c-orange: #ff9e5b;

    --text-1: #f4f7ff;
    --text-2: #c5cee0;
    --text-3: #8b95ad;
    --text-4: #66708a;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --shadow-1: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-2: 0 24px 60px rgba(0, 0, 0, 0.55);
    --shadow-glow: 0 0 0 1px rgba(41, 211, 255, 0.18), 0 18px 60px rgba(41, 211, 255, 0.18);

    --max-w: 1240px;

    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-0);
    color: var(--text-1);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    background-image:
        radial-gradient(1100px 600px at 80% -100px, rgba(41, 211, 255, 0.10), transparent 60%),
        radial-gradient(900px 600px at -10% 10%, rgba(176, 123, 255, 0.10), transparent 60%),
        radial-gradient(900px 700px at 50% 100%, rgba(94, 228, 107, 0.06), transparent 60%),
        linear-gradient(180deg, #04081a 0%, #0a1024 30%, #060a18 100%);
    background-attachment: fixed;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--c-cyan);
    text-decoration: none;
}

a:hover {
    color: #6ee0ff;
}

::selection {
    background: var(--c-cyan-soft);
    color: var(--text-1);
}

.container {
    width: min(var(--max-w), 100% - 2rem);
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-cyan);
    background: var(--c-cyan-soft);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 999px;
}

.eyebrow.lime {
    color: var(--c-lime);
    background: var(--c-lime-soft);
}

.eyebrow.purple {
    color: var(--c-purple);
    background: var(--c-purple-soft);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.4em 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
}

h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

h3 {
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
}

p {
    margin: 0 0 1em 0;
    color: var(--text-2);
}

.lead {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--text-2);
    max-width: 56ch;
}

section {
    padding: clamp(64px, 9vw, 120px) 0;
    position: relative;
}

section.tight {
    padding: clamp(48px, 6vw, 88px) 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px auto;
}

.section-head .eyebrow {
    margin-bottom: 14px;
}

.section-head p {
    color: var(--text-2);
    font-size: 1.05rem;
}

/* ------- Header / Nav ------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(6, 10, 24, 0.55);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-1);
    font-weight: 700;
}

.brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    box-shadow: 0 0 0 1px var(--border), 0 4px 14px rgba(41, 211, 255, 0.20);
}

.brand .brand-text {
    font-size: 0.98rem;
    letter-spacing: -0.01em;
}

.brand .brand-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    color: var(--text-2);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    transition: 0.15s ease;
}

.nav-links a:hover {
    color: var(--text-1);
    background: var(--surface);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.price-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--c-lime-soft);
    color: var(--c-lime);
    font-weight: 700;
    font-size: 0.88rem;
    border: 1px solid rgba(94, 228, 107, 0.32);
    white-space: nowrap;
    flex: 0 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-1);
    transition: 0.18s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    background: var(--surface-2);
    border-color: var(--border-strong);
    transform: translateY(-1px);
    color: var(--text-1);
}

.btn.primary {
    background: linear-gradient(135deg, var(--c-cyan) 0%, #5fe9ff 100%);
    color: #04101a;
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(41, 211, 255, 0.28);
}

.btn.primary:hover {
    color: #04101a;
    box-shadow: 0 14px 36px rgba(41, 211, 255, 0.40);
}

.btn.lime {
    background: linear-gradient(135deg, var(--c-lime) 0%, #80f08c 100%);
    color: #052012;
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(94, 228, 107, 0.28);
}

.btn.lime:hover {
    color: #052012;
    box-shadow: 0 14px 36px rgba(94, 228, 107, 0.40);
}

.btn.lg {
    padding: 16px 26px;
    font-size: 1rem;
    border-radius: 14px;
}

.btn.xl {
    padding: 20px 32px;
    font-size: 1.05rem;
    border-radius: 16px;
}

.nav-toggle {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-1);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ------- Hero ------- */
.hero {
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(40px, 5vw, 64px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20% -10% auto auto;
    width: 540px;
    height: 540px;
    background: radial-gradient(closest-side, rgba(41, 211, 255, 0.22), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}

.hero h1 span.kw-cyan {
    color: var(--c-cyan);
}

.hero h1 span.kw-lime {
    color: var(--c-lime);
}

.hero-points {
    list-style: none;
    margin: 22px 0 26px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    max-width: 560px;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-2);
    font-size: 0.95rem;
}

.hero-points li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-lime);
    box-shadow: 0 0 0 4px var(--c-lime-soft);
    flex: 0 0 auto;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--text-3);
    font-size: 0.85rem;
}

.hero-meta strong {
    color: var(--text-1);
    font-weight: 600;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-2);
    aspect-ratio: 16 / 11;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image .overlay-chip {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(6, 12, 26, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-2);
}

.hero-image .overlay-chip .dot {
    width: 8px;
    height: 8px;
    background: var(--c-lime);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--c-lime);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.55;
    }
}

/* ------- Trust Bar ------- */
.trust {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.018);
}

.trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 36px;
    text-align: center;
    color: var(--text-3);
    font-size: 0.92rem;
}

.trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.trust-list svg {
    width: 16px;
    height: 16px;
    color: var(--c-cyan);
    flex: 0 0 auto;
}

/* ------- Features grid ------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: 0.18s ease;
    position: relative;
    overflow: hidden;
}

.feature:hover {
    background: var(--surface-2);
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.feature .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--c-cyan-soft);
    color: var(--c-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.feature.lime .icon {
    background: var(--c-lime-soft);
    color: var(--c-lime);
}

.feature.purple .icon {
    background: var(--c-purple-soft);
    color: var(--c-purple);
}

.feature h3 {
    color: var(--text-1);
    margin-bottom: 8px;
}

.feature p {
    margin: 0;
    color: var(--text-2);
    font-size: 0.96rem;
}

.feature .badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--c-lime-soft);
    color: var(--c-lime);
    border: 1px solid rgba(94, 228, 107, 0.32);
}

/* ------- Detail rows (alternating image/text) ------- */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
    margin: 60px 0;
}

.row.reverse {
    direction: rtl;
}

.row.reverse>* {
    direction: ltr;
}

.row-text h3 {
    color: var(--text-1);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 12px;
}

.row-text p {
    color: var(--text-2);
}

.row-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 10px;
}

.row-list li {
    color: var(--text-2);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.row-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: var(--c-cyan-soft);
    background-image:
        linear-gradient(45deg, transparent 45%, var(--c-cyan) 45%, var(--c-cyan) 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, var(--c-cyan) 45%, var(--c-cyan) 55%, transparent 55%);
    flex: 0 0 auto;
    margin-top: 3px;
}

.row-list.lime li::before {
    background: var(--c-lime-soft);
    background-image:
        linear-gradient(45deg, transparent 45%, var(--c-lime) 45%, var(--c-lime) 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, var(--c-lime) 45%, var(--c-lime) 55%, transparent 55%);
}

.row-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-1);
    box-shadow: var(--shadow-2);
}

.row-img img {
    width: 100%;
    height: auto;
    display: block;
}

.row-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(6, 10, 24, 0.3) 100%);
    pointer-events: none;
}

/* ------- Gallery / Lightbox ------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery .shot {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-1);
    cursor: zoom-in;
    position: relative;
    transition: 0.2s ease;
}

.gallery .shot:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-1);
}

.gallery .shot img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: top;
}

.gallery .shot figcaption {
    padding: 12px 14px;
    font-size: 0.88rem;
    color: var(--text-3);
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 96vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-2);
}

.lightbox button {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--surface-2);
    color: var(--text-1);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 600;
}

/* ------- Steps ------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: relative;
}

.step .num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--c-cyan);
    background: var(--c-cyan-soft);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 10px;
}

.step h3 {
    color: var(--text-1);
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.step p {
    color: var(--text-2);
    font-size: 0.92rem;
    margin: 0;
}

/* ------- Voices ------- */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.voice {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.voice .lang {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    background: var(--c-purple-soft);
    color: var(--c-purple);
    border: 1px solid var(--border);
    padding: 4px 8px;
    border-radius: 6px;
    flex: 0 0 auto;
}

.voice .name {
    color: var(--text-1);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.voice .desc {
    color: var(--text-3);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ------- Specs ------- */
.specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.specs dt {
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text-3);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
}

.specs dd {
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    margin: 0;
    color: var(--text-1);
    font-size: 0.96rem;
}

.specs dt:nth-last-of-type(1),
.specs dd:nth-last-of-type(1) {
    border-bottom: none;
}

/* ------- Pricing ------- */
.pricing-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.price-card {
    background: linear-gradient(160deg, rgba(176, 123, 255, 0.10) 0%, rgba(41, 211, 255, 0.08) 50%, rgba(94, 228, 107, 0.06) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 44px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.price-card::before {
    content: '';
    position: absolute;
    inset: -40% -20% auto auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(closest-side, rgba(41, 211, 255, 0.25), transparent 70%);
    pointer-events: none;
    filter: blur(8px);
}

.price-card .title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.price-card .title img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    box-shadow: 0 0 0 1px var(--border);
}

.price-card .title h3 {
    margin: 0;
    color: var(--text-1);
    font-size: 1.2rem;
}

.price-card .title p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-3);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 22px 0 8px;
}

.price-amount .num {
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-1);
}

.price-amount .cur {
    font-size: 1.4rem;
    color: var(--text-2);
    font-weight: 600;
}

.price-amount .note {
    color: var(--text-3);
    font-size: 0.92rem;
    margin-left: 4px;
}

.price-tax {
    color: var(--text-3);
    font-size: 0.85rem;
    margin: 0 0 22px;
}

.price-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 8px;
}

.price-includes li {
    color: var(--text-2);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.96rem;
}

.price-includes li svg {
    width: 18px;
    height: 18px;
    color: var(--c-lime);
    flex: 0 0 auto;
    margin-top: 3px;
}

.price-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.price-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
}

.price-card .guarantee {
    margin-top: 18px;
    color: var(--text-3);
    font-size: 0.85rem;
}

.compare-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(24px, 3.5vw, 36px);
}

.compare-card h3 {
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.compare-row {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 0.6fr;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
    font-size: 0.94rem;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-row.head {
    color: var(--text-3);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.compare-row .yes {
    color: var(--c-lime);
    font-weight: 700;
}

.compare-row .no {
    color: var(--text-4);
}

.compare-row .meh {
    color: var(--c-orange);
}

/* ------- FAQ ------- */
.faq {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    transition: 0.18s ease;
}

.faq details[open] {
    background: var(--surface-2);
    border-color: var(--border-strong);
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-1);
    font-size: 1.02rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    color: var(--c-cyan);
    font-size: 1.4rem;
    margin-left: 12px;
    line-height: 1;
    transition: 0.2s;
}

.faq details[open] summary::after {
    content: '–';
}

.faq details p {
    margin: 10px 0 0;
    color: var(--text-2);
    font-size: 0.96rem;
}

/* ------- CTA banner ------- */
.cta-banner {
    background: linear-gradient(135deg, rgba(41, 211, 255, 0.18), rgba(176, 123, 255, 0.18));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 56px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: -50% -10% auto auto;
    width: 600px;
    height: 600px;
    background: radial-gradient(closest-side, rgba(94, 228, 107, 0.22), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.cta-banner h2 {
    margin-bottom: 10px;
}

.cta-banner p {
    color: var(--text-2);
    max-width: 60ch;
    margin: 0 auto 24px;
}

/* ------- Footer ------- */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 30px;
    color: var(--text-3);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.footer-grid h4 {
    color: var(--text-1);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    margin-bottom: 14px;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-grid ul a {
    color: var(--text-3);
    text-decoration: none;
}

.footer-grid ul a:hover {
    color: var(--text-1);
}

.footer-brand p {
    color: var(--text-3);
    max-width: 38ch;
    margin: 10px 0 0;
    font-size: 0.88rem;
}

.footer-meta {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-4);
}

/* ------- Legal pages ------- */
.legal {
    padding: 60px 0;
}

.legal h1 {
    margin-bottom: 8px;
}

.legal .updated {
    color: var(--text-3);
    margin-bottom: 36px;
    font-size: 0.9rem;
}

.legal article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 44px);
    max-width: 880px;
    margin: 0 auto;
}

.legal h2 {
    margin-top: 28px;
    font-size: 1.3rem;
    color: var(--text-1);
}

.legal p,
.legal li {
    color: var(--text-2);
    font-size: 0.97rem;
}

.legal strong {
    color: var(--text-1);
}

.legal a {
    color: var(--c-cyan);
}

.legal .placeholder {
    background: var(--c-lime-soft);
    border-left: 3px solid var(--c-lime);
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--c-lime);
    font-size: 0.85rem;
    margin: 10px 0;
}

/* ------- Responsive ------- */
@media (max-width: 980px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .row,
    .row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-wrap {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 880px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .brand .brand-text span {
        display: none;
    }

    .price-pill {
        display: none;
    }

    .nav-cta .btn.primary {
        display: none;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .specs {
        grid-template-columns: 1fr;
    }

    .specs dt {
        border-right: none;
        background: rgba(255, 255, 255, 0.04);
    }

    .compare-row {
        grid-template-columns: 1fr 0.4fr 0.4fr;
        font-size: 0.85rem;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: rgba(6, 10, 24, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    gap: 4px;
    z-index: 60;
}

/* ------- Misc ------- */
.kbd {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    padding: 2px 7px;
    border-radius: 6px;
    color: var(--text-2);
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 18px 0;
}

.scrolltop {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    color: var(--text-1);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 40;
}

.scrolltop.show {
    display: inline-flex;
}
