:root {
    --bg: #0b0711;
    --bg-soft: rgba(255, 255, 255, 0.04);
    --ink: #f5f5f7;
    --muted: #b5b5be;
    --line: rgba(255, 255, 255, 0.09);

    --g1: #ffb84a;
    --g2: #ff8a00;
    --g3: #ff3d3d;

    --vio1: #391a5a;
    --vio2: #6a2ea8;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.backdrop::before,
.backdrop::after {
    content: "";
    position: absolute;
    width: 52vmin;
    height: 52vmin;
    filter: blur(60px);
    opacity: 0.24;
    border-radius: 50%;
}

.backdrop::before {
    left: -12vmin;
    top: -12vmin;
    background: radial-gradient(circle, var(--g2) 0%, transparent 60%);
}

.backdrop::after {
    right: -12vmin;
    bottom: -12vmin;
    background: radial-gradient(circle, var(--vio2) 0%, transparent 60%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.orb-left {
    width: 340px;
    height: 340px;
    left: 10%;
    top: 18%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.75) 0%, transparent 65%);
}

.orb-right {
    width: 360px;
    height: 360px;
    right: 8%;
    bottom: 14%;
    background: radial-gradient(circle, rgba(106, 46, 168, 0.7) 0%, transparent 65%);
}

.grid {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    mix-blend-mode: screen;
    background-image:
        linear-gradient(rgba(255, 200, 120, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 200, 120, 0.12) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px;
    animation: gridMove 20s linear infinite;
    -webkit-mask-image: radial-gradient(1200px 800px at 50% 40%, #000 65%, transparent 100%);
    mask-image: radial-gradient(1200px 800px at 50% 40%, #000 65%, transparent 100%);
}

@keyframes gridMove {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 300px 180px, 300px 180px;
    }
}

.wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 56px 20px;
}

.card {
    width: min(1040px, 94vw);
    padding: 12px 0;
}

.topbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 0 22px rgba(255, 138, 0, 0.08);
}

.lang-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 184, 74, 0.35);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 28px rgba(255, 138, 0, 0.14);
}

.lang-option {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    opacity: 0.45;
    transition: opacity 0.15s ease, color 0.15s ease, text-shadow 0.15s ease;
}

.lang-option.active {
    opacity: 1;
    color: #ffd39a;
    text-shadow: 0 0 12px rgba(255, 138, 0, 0.35);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.28);
    font-weight: 600;
}

.hero {
    text-align: center;
    margin-bottom: 42px;
}

.logo-frame {
    width: 230px;
    height: 230px;
    margin: 0 auto 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    position: relative;
    background:
        radial-gradient(circle at 50% 55%, rgba(255, 220, 163, 0.20) 0%, rgba(255, 184, 74, 0.16) 28%, rgba(255, 138, 0, 0.10) 54%, transparent 74%);
    box-shadow:
        0 0 55px rgba(255, 138, 0, 0.18),
        0 0 110px rgba(255, 138, 0, 0.10),
        inset 0 0 42px rgba(255, 138, 0, 0.14);
}

.logo-frame::before {
    content: "";
    position: absolute;
    inset: -34px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.22) 0%, rgba(255, 138, 0, 0.10) 38%, transparent 72%);
    z-index: -1;
    filter: blur(18px);
}

.logo-frame::after {
    content: "";
    position: absolute;
    inset: -72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 74, 0.12) 0%, rgba(255, 138, 0, 0.06) 34%, transparent 72%);
    z-index: -2;
    filter: blur(34px);
}

.logo-image {
    width: 224px;
    height: 224px;
    object-fit: contain;
    display: block;
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 13px;
    color: #d4d4dc;
    opacity: 0.84;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-text {
    margin: 18px auto 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.cta {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 13px 19px;
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #0a0a0a;
    background: linear-gradient(90deg, var(--g1), var(--g2), var(--g3));
    box-shadow: 0 0 40px -12px var(--g2);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background 0.15s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:hover {
    transform: translateY(-1px);
    filter: saturate(1.05);
    box-shadow: 0 10px 34px -12px rgba(255, 138, 0, 0.65);
}

.btn.secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 14px;
}

.panel,
.focus-item,
.follow {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--line);
    border-radius: 22px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.panel {
    padding: 24px;
}

.panel-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #d1d1d9;
    opacity: 0.72;
}

.panel h2,
.follow h2 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.1;
}

.panel p,
.follow-text,
.focus-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.panel p + p {
    margin-top: 12px;
}

.focus {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.focus-item {
    padding: 22px;
}

.focus-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}

.follow {
    margin-top: 18px;
    padding: 26px;
    text-align: center;
}

.follow-text {
    max-width: 720px;
    margin: 0 auto;
}

.follow-links {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #ececf2;
}

.follow-links a {
    text-decoration: none;
    color: #f4d7b0;
    transition: opacity 0.15s ease;
}

.follow-links a:hover {
    opacity: 0.8;
}

.dot {
    color: rgba(255, 255, 255, 0.28);
}

footer {
    margin-top: 24px;
    text-align: center;
    font-size: 12px;
    color: #9b9baa;
}

@media (max-width: 900px) {
    .content-grid,
    .focus {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .wrap {
        padding: 34px 16px;
    }

    .topbar {
        justify-content: center;
        margin-bottom: 22px;
    }

    .logo-frame {
        width: 154px;
        height: 154px;
        margin-bottom: 20px;
    }

    .logo-image {
        width: 132px;
        height: 132px;
    }

    h1 {
        font-size: clamp(34px, 10vw, 52px);
    }

    .hero-text {
        font-size: 15px;
    }

    .panel,
    .focus-item,
    .follow {
        border-radius: 18px;
        padding: 20px;
    }

    .follow-links {
        flex-direction: column;
        gap: 8px;
    }

    .dot {
        display: none;
    }
}