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

:root {
    --bg: #0f1119;
    --bg-soft: #161a2b;
    --card: rgba(255, 255, 255, 0.92);
    --ink: #0f172a;
    --muted: #52607a;
    --accent: #cda45b;
    --accent-strong: #b9873f;
    --line: rgba(15, 23, 42, 0.08);
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: radial-gradient(circle at 20% 20%, #1b233a 0%, transparent 55%),
        radial-gradient(circle at 85% 15%, #3a2b1b 0%, transparent 50%),
        linear-gradient(120deg, #0d0f1a 0%, #131827 50%, #0f1119 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    color: var(--ink);
}

.page {
    width: min(920px, 100%);
    position: relative;
    animation: fadeUp 0.7s ease both;
}

.page::before {
    content: "";
    position: absolute;
    inset: -40px;
    border-radius: 32px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    opacity: 0.6;
    z-index: 0;
}

.orb-1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(205, 164, 91, 0.5), rgba(205, 164, 91, 0));
    top: -80px;
    left: -40px;
    animation: float 10s ease-in-out infinite;
}

.orb-2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(131, 151, 209, 0.45), rgba(131, 151, 209, 0));
    bottom: -120px;
    right: -60px;
    animation: float 12s ease-in-out infinite reverse;
}

.card {
    position: relative;
    z-index: 1;
    background: var(--card);
    border-radius: 28px;
    padding: 48px 48px 44px;
    box-shadow: 0 30px 80px rgba(10, 12, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    text-align: center;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(140deg, #1a2236, #0f1425);
    color: var(--accent);
    display: grid;
    place-items: center;
    border: 1px solid rgba(205, 164, 91, 0.35);
    box-shadow: inset 0 0 14px rgba(205, 164, 91, 0.3);
}

.icon svg {
    width: 30px;
    height: 30px;
}

.pill {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-strong);
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(205, 164, 91, 0.12);
    border: 1px solid rgba(205, 164, 91, 0.3);
}

.lang-toggle {
    display: inline-flex;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.06);
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.lang-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2.1rem, 2.4vw, 2.8rem);
    color: var(--ink);
    margin-bottom: 14px;
    font-weight: 600;
}

.domain-name {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    color: #1c2c4a;
    font-weight: 600;
    word-break: break-all;
    margin-bottom: 22px;
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 34px;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    color: #0f1119;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 30px rgba(205, 164, 91, 0.35);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(205, 164, 91, 0.45);
}

.contact-btn:active {
    transform: translateY(0);
}

.cta-note {
    font-size: 0.95rem;
    color: var(--muted);
}

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

.highlight {
    padding: 18px 16px;
    border-radius: 18px;
    background: #f7f5f1;
    border: 1px solid var(--line);
}

.highlight .label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.highlight .value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

footer {
    text-align: center;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

@media (max-width: 900px) {
    .card {
        padding: 44px 32px 38px;
    }

    .topbar {
        justify-content: center;
    }

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

@media (max-width: 600px) {
    body {
        padding: 20px;
    }

    .card {
        padding: 38px 24px 32px;
    }

    .topbar {
        flex-direction: column;
        gap: 12px;
    }
}
