:root {
    color-scheme: dark;
    --bg: #050506;
    --bg-soft: #0b0b0d;
    --panel: #141416;
    --panel-raised: #1b1b1f;
    --panel-subtle: #101012;
    --text: #f7f7f8;
    --muted: #b7b7bd;
    --soft: #7e7e87;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --pink: #ff4fa3;
    --violet: #9b5cff;
    --accent-soft: rgba(255, 79, 163, 0.12);
    --violet-soft: rgba(155, 92, 255, 0.12);
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 79, 163, 0.08) 0%, rgba(5, 5, 6, 0) 220px),
        linear-gradient(90deg, rgba(155, 92, 255, 0.06) 0%, rgba(5, 5, 6, 0) 44%),
        var(--bg);
    line-height: 1.62;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 54%);
}

a {
    color: inherit;
    text-decoration-color: rgba(255, 79, 163, 0.45);
    text-underline-offset: 0.18em;
}

a:hover {
    text-decoration-color: var(--pink);
}

.page {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0;
}

.brand img {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #000;
    box-shadow: 0 14px 34px rgba(255, 79, 163, 0.12);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-links a,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 740;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a.active,
.button:hover {
    border-color: rgba(255, 79, 163, 0.42);
    background: var(--accent-soft);
}

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

.button-primary {
    border-color: rgba(255, 79, 163, 0.48);
    background: linear-gradient(135deg, rgba(255, 79, 163, 0.26), rgba(155, 92, 255, 0.18));
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(30px, 7vw, 74px);
    align-items: center;
    min-height: 58vh;
    padding: 48px 0 44px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--pink);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.content h1 {
    margin: 0;
    max-width: 820px;
    color: var(--text);
    font-size: clamp(3.2rem, 10vw, 7.2rem);
    line-height: 0.9;
    letter-spacing: 0;
}

.hero p {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-device {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        var(--panel-subtle);
    box-shadow: var(--shadow);
}

.hero-logo {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #000;
    object-fit: cover;
}

.status-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    padding: 4px 2px 2px;
}

.status-grid span {
    color: var(--soft);
    font-size: 0.86rem;
}

.status-grid strong {
    color: var(--text);
    font-size: 0.88rem;
    text-align: right;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px 0 60px;
}

.section {
    padding: 26px 0 28px;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 20px;
}

.section-heading h2,
.split-section h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.section-heading p,
.split-section p {
    color: var(--muted);
    font-size: 1.04rem;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 18px;
    align-items: stretch;
    padding: 24px 0 56px;
}

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

.card,
.notice,
.content {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.card {
    min-height: 178px;
    padding: 20px;
    border-radius: var(--radius);
}

.card::before {
    display: block;
    width: 38px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    content: "";
    background: linear-gradient(90deg, var(--pink), var(--violet));
}

.card h2,
.card h3,
.content h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.12rem;
    letter-spacing: 0;
}

.card p,
.content p,
.content li {
    color: var(--muted);
}

.link-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.link-card:hover {
    border-color: rgba(255, 79, 163, 0.42);
    background: #19191d;
}

.legal-grid {
    padding-top: 0;
}

.content {
    max-width: 920px;
    margin: 24px auto 64px;
    padding: clamp(24px, 4vw, 46px);
    border-radius: var(--radius);
}

.content h1 {
    font-size: clamp(2.25rem, 6vw, 4.7rem);
    margin-bottom: 14px;
}

.content h2 {
    margin-top: 34px;
    padding-top: 8px;
}

.content ul {
    padding-left: 20px;
}

.content li + li {
    margin-top: 6px;
}

.content a {
    color: #ffd8eb;
}

.meta,
.placeholder,
.footer {
    color: var(--soft);
}

.notice {
    margin: 18px 0;
    padding: 18px;
    border-radius: 8px;
    border-color: rgba(255, 79, 163, 0.34);
    background: var(--accent-soft);
}

.notice.calm {
    border-color: rgba(155, 92, 255, 0.34);
    background: var(--violet-soft);
}

.notice strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 0;
}

.contact-item {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-raised);
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.support-form {
    display: grid;
    gap: 15px;
    margin-top: 18px;
}

.support-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 760;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0e0e10;
    color: var(--text);
    font: inherit;
    padding: 11px 12px;
}

.support-form select {
    color-scheme: dark;
}

.support-form textarea {
    min-height: 150px;
    resize: vertical;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
    color: #73737b;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    border-color: rgba(255, 79, 163, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 79, 163, 0.14);
    outline: none;
}

.support-form button {
    width: fit-content;
    cursor: pointer;
}

.hidden-field {
    display: none;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 0 42px;
    border-top: 1px solid var(--line);
    font-size: 0.93rem;
}

.footer a {
    color: var(--muted);
}

@media (max-width: 820px) {
    .page {
        width: min(100% - 28px, 1120px);
    }

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

    .nav-links {
        justify-content: flex-start;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: 0;
        padding-top: 24px;
    }

    .hero-device {
        width: min(260px, 100%);
        order: -1;
    }

    .grid,
    .split-section,
    .contact-list {
        grid-template-columns: 1fr;
    }

    .content {
        margin-top: 18px;
    }
}
