:root {
    --bg: #070b12;
    --bg-soft: #0e1522;
    --bg-card: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 255, 255, 0.12);
    --text: #f5f7fb;
    --muted: rgba(245, 247, 251, 0.68);
    --gold: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.18);
    --green: #3ecf8e;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(7, 11, 18, 0.82);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-mark {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1;
}

.brand-sub {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-desktop a {
    font-size: 14px;
    color: var(--muted);
    transition: color 0.25s ease;
}

.nav-desktop a:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}
.lang-switcher-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
}
.lang-switcher-item:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}
.lang-switcher-item.active {
    color: #111;
    background: linear-gradient(135deg, #e2c46d, var(--gold));
}
.lang-switcher-mobile {
    margin-bottom: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-ghost {
    border-color: var(--line);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.btn-primary {
    background: linear-gradient(135deg, #e2c46d, var(--gold));
    color: #111;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 16px 0 20px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.16), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(62, 207, 142, 0.12), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.05), transparent 35%);
    pointer-events: none;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px;
}

.hero-badge span {
    color: var(--green);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 7vw, 68px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-text {
    max-width: 560px;
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.stat-item strong {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 13px;
    color: var(--muted);
}

.hero-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.hero-card-top small {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

.status-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--green);
}

.status-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.transfer-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 14px;
}

.transfer-box label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}

.transfer-box .amount {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 6px;
}

.transfer-box .meta {
    font-size: 13px;
    color: var(--muted);
}

.transfer-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    margin: 16px 0;
}

.transfer-user {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
}

.transfer-user small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-bottom: 4px;
}

.transfer-user strong {
    font-size: 14px;
}

.transfer-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold-soft);
    color: var(--gold);
}

.hero-card .btn-primary {
    width: 100%;
    margin-top: 8px;
}

.section {
    padding: 80px 0;
}

.section-head {
    max-width: 620px;
    margin-bottom: 40px;
}

.section-head .eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 10px;
}

.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
}

.steps-grid,
.features-grid {
    display: grid;
    gap: 18px;
}

.steps-grid {
    grid-template-columns: repeat(3, 1fr);
}

.features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--gold-soft);
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
    font-size: 15px;
}

.card .step-no {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.cta-band {
    padding: 36px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,255,255,0.03));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 8px;
}

.cta-band p {
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0 40px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
}

.footer-inner a {
    color: var(--gold);
}

@media (max-width: 900px) {
    .hero-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .header-actions .btn-ghost,
    .header-actions .btn-primary,
    .header-actions .lang-switcher {
        display: none !important;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        flex-shrink: 0;
    }

    .header-inner {
        gap: 12px;
        min-height: 64px;
    }

    .header-actions {
        margin-left: auto;
        gap: 8px;
        flex-shrink: 0;
        width: auto;
    }

    .brand {
        min-width: 0;
        flex: 1 1 auto;
    }

    .brand-mark {
        font-size: 22px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-item {
        min-width: calc(50% - 8px);
    }

    .container {
        width: min(1120px, calc(100% - 20px));
    }

    .hero {
        padding-top: 100px;
    }

    .hero-copy h1 {
        font-size: clamp(28px, 8vw, 42px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        gap: 4px;
        padding: 8px 0 16px;
        border-top: 1px solid var(--line);
    }

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a {
        padding: 12px 10px;
        border-radius: 10px;
        background: rgba(255,255,255,0.03);
    }

    .cta-band .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stat-item { min-width: 100%; }
    .header-inner { min-height: 60px; }
}
