:root {
    --bg: #07070c;
    --bg-elev: #0f0f18;
    --text: #f7f7fb;
    --muted: rgba(239, 241, 255, 0.68);
    --line: rgba(255, 255, 255, 0.12);
    --glass: rgba(20, 20, 36, 0.58);
    --accent-orange: #ff8b42;
    --accent-purple: #8f63ff;
    --shadow: 0 24px 50px rgba(7, 7, 12, 0.45);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top right, rgba(143, 99, 255, 0.15), transparent 45%),
        radial-gradient(circle at top left, rgba(255, 139, 66, 0.1), transparent 35%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(11, 11, 21, 0.45);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    background: rgba(12, 12, 22, 0.82);
    border-color: rgba(255, 255, 255, 0.14);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    height: 72px;
    padding: 0 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: hidden;
    padding: 0;
}

.logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-logo-mark .logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    background: transparent;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 0.95rem;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(247, 247, 251, 0.88);
    background: rgba(255, 255, 255, 0.04);
}

.nav-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
}

.nav-btn-ghost {
    background: rgba(255, 255, 255, 0.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.nav-links a {
    color: rgba(247, 247, 251, 0.78);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.btn-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    color: #fff;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-signin:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.36);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
}

.hero {
    position: relative;
    min-height: 88vh;
    min-height: 88dvh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 84px;
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-lights {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    contain: strict;
}

.hero-lights canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 70% 50% at 50% 48%, rgba(13, 11, 24, 0.06), var(--bg) 74%),
        linear-gradient(to bottom, rgba(7, 7, 12, 0.2) 20%, var(--bg) 95%);
}

.hero-center {
    max-width: 700px;
    text-align: left;
    padding-left: clamp(0.2rem, 3vw, 2rem);
    margin-top: clamp(1.1rem, 3vh, 2.1rem);
}

.hero-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(247, 247, 251, 0.74);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(247, 247, 251, 0.88);
    margin-bottom: 1.3rem;
}

.hero-title {
    font-family: 'Sora', 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 6.8vw, 5.25rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.hero-title-accent {
    display: block;
    margin-top: 0.35rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.55rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #aa86ff;
    letter-spacing: -0.01em;
}

.hero-midline {
    margin-bottom: 1rem;
    font-size: clamp(1.08rem, 2.1vw, 1.42rem);
    line-height: 1.36;
    color: rgba(247, 247, 251, 0.9);
    max-width: 620px;
    font-weight: 600;
}

.hero-sub {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.92rem, 1.55vw, 1.02rem);
    line-height: 1.72;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
    gap: 0.95rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 12px;
    min-height: 46px;
    padding: 0.72rem 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary {
    color: #f8f8ff;
    border: 1px solid rgba(148, 163, 255, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 46%, #7c3aed 76%, #a855f7 100%);
    box-shadow: 0 16px 35px rgba(99, 102, 241, 0.34);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
}

.btn-hero-advertiser {
    color: #fff9f2;
    border: 1px solid rgba(255, 183, 114, 0.45);
    background: linear-gradient(135deg, #ffd166 0%, #ff9f43 48%, #ff6b4a 78%, #ff4d6d 100%);
    box-shadow: 0 16px 35px rgba(255, 107, 74, 0.3);
}

.btn-hero-advertiser:hover {
    transform: translateY(-2px);
}

.hero-note {
    margin-top: 1.4rem;
    color: rgba(247, 247, 251, 0.54);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.quick-cta-section {
    padding: 2rem 0 3rem;
    text-align: center;
}

.cta-inline {
    align-items: center;
}

.stats-bar,
.how-section,
.split-section,
.cta-section {
    background: var(--bg-elev);
}

.stats-bar,
.why-section,
.how-section,
.engines-section,
.features-section,
.split-section,
.cta-section {
    padding: 6rem 0;
    position: relative;
}

.stats-bar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.stat-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    padding: 1.2rem;
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 700;
}

.stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--muted);
}

.stats-disclaimer {
    margin-top: 1rem;
    text-align: center;
    color: rgba(247, 247, 251, 0.5);
    font-size: 0.74rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.2rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
    color: rgba(247, 247, 251, 0.9);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.7vw, 2.9rem);
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.why-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.why-body {
    margin-top: 1rem;
    font-size: 1.04rem;
    color: var(--muted);
    line-height: 1.82;
}

.steps-row,
.features-grid {
    display: grid;
    gap: 1rem;
}

.steps-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-row.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.feat-card,
.split-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.step-card,
.feat-card {
    padding: 1.8rem 1.4rem;
}

.step-card:hover,
.feat-card:hover,
.split-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.24);
}

.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.24);
}

.step-card h3,
.feat-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.step-card p,
.feat-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.95rem;
    background: linear-gradient(160deg, rgba(255, 139, 66, 0.2), rgba(143, 99, 255, 0.25));
}

.engines-section {
    overflow: hidden;
    padding-top: 2.6rem;
    padding-bottom: 3.2rem;
}

.engines-subheadline {
    margin-top: 1.35rem;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    color: var(--muted);
}

.engine-strip-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.engine-strip-wrapper::before,
.engine-strip-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.engine-strip-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.engine-strip-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.engine-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content;
    gap: 1rem;
    padding: 1rem 2rem;
    animation: engineScroll 24s linear infinite;
}

@keyframes engineScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.engine-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    padding: 0.75rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.engine-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.engine-item span {
    color: rgba(247, 247, 251, 0.84);
    font-size: 0.9rem;
    white-space: nowrap;
    font-weight: 500;
}

.engine-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.engine-icon-custom {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(247, 247, 251, 0.8);
}

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

.split-card {
    padding: 2.1rem 1.7rem;
}

.split-dev {
    background: linear-gradient(150deg, rgba(255, 139, 66, 0.12), rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.01));
}

.split-adv {
    background: linear-gradient(150deg, rgba(143, 99, 255, 0.15), rgba(255, 255, 255, 0.02) 52%, rgba(255, 255, 255, 0.01));
}

.split-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: rgba(247, 247, 251, 0.82);
    margin-bottom: 0.8rem;
}

.split-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.52rem;
    line-height: 1.22;
    margin-bottom: 0.9rem;
}

.split-body {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.split-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.split-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(247, 247, 251, 0.85);
    font-size: 0.9rem;
}

.split-list i {
    color: #ffc39d;
    font-size: 0.72rem;
}

.btn-split {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    padding-bottom: 0.2rem;
}

.diff-comparison {
    margin-top: 1.3rem;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(247, 247, 251, 0.9);
    font-weight: 600;
}

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

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 0.85rem;
}

.cta-section p {
    color: var(--muted);
    margin-bottom: 1.7rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 0.95rem;
    flex-wrap: wrap;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3.2rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--muted);
    margin-top: 0.75rem;
    font-size: 0.9rem;
    max-width: 380px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-footnote {
    font-size: 0.75rem !important;
    color: rgba(247, 247, 251, 0.45) !important;
    max-width: 520px !important;
}

.footer-logo-mark {
    width: 34px;
    height: 34px;
}

.footer-col h4 {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
    color: rgba(247, 247, 251, 0.95);
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 0.45rem;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(247, 247, 251, 0.52);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.9rem;
}

.social-links a {
    color: rgba(247, 247, 251, 0.56);
    font-size: 0.95rem;
}

.social-links a:hover {
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-panel {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem 1.2rem 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(10, 10, 18, 0.92);
        backdrop-filter: blur(14px) saturate(120%);
        -webkit-backdrop-filter: blur(14px) saturate(120%);
        max-height: calc(100dvh - 72px);
        overflow-y: auto;
    }

    .nav-panel.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .btn-signin {
        width: fit-content;
    }

    .steps-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .container {
        padding: 0 1.2rem;
    }

    .nav-container {
        height: 68px;
        padding: 0 1rem;
    }

    .nav-logo-mark {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .stats-bar,
    .why-section,
    .how-section,
    .engines-section,
    .features-section,
    .split-section,
    .cta-section {
        padding: 4.4rem 0;
    }

    .stats-grid,
    .steps-row,
    .features-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .hero {
        min-height: 78vh;
        min-height: 78dvh;
        padding-top: 78px;
    }

    .hero-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        margin-bottom: 0.7rem;
    }

    .hero-sub {
        font-size: 0.9rem;
        max-width: 96%;
    }

    .hero-midline {
        font-size: 0.94rem;
        margin-bottom: 0.9rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-center {
        max-width: 100%;
        padding-left: 0;
        margin-top: 0.6rem;
    }

    .engine-strip {
        gap: 1rem;
        animation-duration: 20s;
    }

    .engine-item {
        padding: 0.55rem 0.9rem;
    }

    .support-actions .btn-hero {
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 540px) {
    .hero-title {
        font-size: clamp(1.8rem, 12vw, 2.5rem);
        line-height: 1.04;
    }

    .hero-midline {
        font-size: 0.86rem;
    }

    .hero-sub {
        font-size: 0.86rem;
    }

    .stat-item {
        padding: 0.9rem 0.3rem;
    }

    .stat-num {
        font-size: 1.55rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .engine-strip {
        animation-duration: 24s !important;
        animation-iteration-count: infinite !important;
        animation-name: engineScroll !important;
        animation-timing-function: linear !important;
    }
}

.legal-page {
    padding: 8.5rem 0 6rem;
    min-height: 80vh;
}

.legal-header {
    margin-bottom: 2.4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.legal-last-updated {
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-content .legal-section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    margin-top: 1.6rem;
}

.legal-content h3 {
    font-size: 1.02rem;
    color: rgba(247, 247, 251, 0.9);
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

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

.legal-content ul {
    margin-left: 1.1rem;
}

.contact-info {
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
}

.support-page {
    padding-top: 7.2rem;
}

.support-header {
    margin-bottom: 2.2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.support-grid-bottom {
    margin-top: 0.2rem;
}

.support-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 1.3rem 1.2rem;
}

.support-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.support-card p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
}

.support-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
}

.support-note {
    font-size: 0.84rem !important;
    color: rgba(247, 247, 251, 0.72) !important;
}

.support-note a {
    color: #fff;
}

.support-form {
    display: grid;
    gap: 0.75rem;
}

.field-row {
    display: grid;
    gap: 0.35rem;
}

.support-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.field-row label {
    font-size: 0.8rem;
    color: rgba(247, 247, 251, 0.78);
}

.field-row input,
.field-row select,
.field-row textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 0.62rem 0.72rem;
    font-family: inherit;
}

.field-row select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(247, 247, 251, 0.82) 50%),
        linear-gradient(135deg, rgba(247, 247, 251, 0.82) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.2rem;
}

.field-row select option {
    background: #121422;
    color: #f6f7ff;
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
    outline: none;
    border-color: rgba(141, 162, 255, 0.8);
    box-shadow: 0 0 0 2px rgba(141, 162, 255, 0.18);
}

.support-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-support-submit,
.btn-support-copy {
    border: 1px solid transparent;
    box-shadow: 0 6px 16px rgba(3, 6, 24, 0.16);
}

.btn-support-submit {
    color: #f5f8ff;
    border-color: rgba(56, 189, 165, 0.45);
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 55%, #14b8a6 100%);
}

.btn-support-copy {
    color: #f8f8ff;
    border-color: rgba(148, 163, 184, 0.45);
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
}

.btn-support-submit:hover,
.btn-support-copy:hover {
    transform: translateY(-1px);
}

.support-result {
    min-height: 1.2rem;
    font-size: 0.84rem;
    color: rgba(247, 247, 251, 0.86);
}

.faq-list {
    display: grid;
    gap: 0.55rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.55rem 0.7rem;
}

.faq-item summary {
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
}

.faq-item p {
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}

.support-list {
    margin-left: 1rem;
    color: rgba(247, 247, 251, 0.86);
    font-size: 0.9rem;
    display: grid;
    gap: 0.4rem;
}

@media (max-width: 920px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}
