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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: #f5f7fb;
    font-family:
        -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
        "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(
            circle at 50% 22%,
            rgba(65, 96, 255, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 78% 72%,
            rgba(180, 74, 255, 0.1),
            transparent 28%
        ),
        linear-gradient(145deg, #090d18 0%, #05070d 55%, #080b13 100%);
}

html[dir="rtl"] body {
    font-family: Tahoma, Arial, "Segoe UI", sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] p,
html[dir="rtl"] .eyebrow {
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8),
        transparent 80%
    );
}

main {
    flex: 1;
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 70px 0 48px;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.language-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.language-nav a {
    padding: 7px 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.language-nav a:hover,
.language-nav a:focus-visible,
.language-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.logo {
    display: block;
    width: min(500px, 78vw);
    max-height: 400px;
    object-fit: contain;
    margin: 0 auto 44px;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.35));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7f8cff;
    box-shadow: 0 0 18px rgba(127, 140, 255, 0.95);
}

h1 {
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.2;
    letter-spacing: -0.055em;
    font-weight: 720;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #fff 12%, #cbd0df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(236, 239, 248, 0.62);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

footer {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.36);
    font-size: 12px;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    main {
        padding-top: 50px;
    }

    .logo {
        margin-bottom: 34px;
    }

    footer {
        padding-bottom: 22px;
    }
}
