:root {
    --bg: #0d0714;
    --bg-2: #140b20;
    --bg-3: #1b102a;

    --text: #f8f5fb;
    --muted: #d5cce1;

    --violet: #682aa0;
    --violet-light: #8d4ed2;

    --gold: #d7a229;
    --gold-light: #f3c65a;

    --white-soft: rgba(255, 255, 255, 0.08);
    --white-border: rgba(255, 255, 255, 0.14);

    --card: rgba(255, 255, 255, 0.06);
    --card-hover: rgba(255, 255, 255, 0.1);

    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius: 22px;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
            system-ui,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            sans-serif;
    background:
            radial-gradient(circle at top left, rgba(141, 78, 210, 0.18), transparent 32%),
            radial-gradient(circle at top right, rgba(215, 162, 41, 0.12), transparent 26%),
            linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 52%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(20px, 5vw, 58px);
    background: rgba(13, 7, 20, 0.84);
    border-bottom: 1px solid var(--white-border);
    backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-text {
    font-weight: 900;
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    position: relative;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: width 0.2s ease;
}

.nav a:hover {
    color: var(--text);
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid var(--white-border);
    border-radius: 12px;
    background: var(--white-soft);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
    border-radius: 999px;
}

.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 86vh;
    padding: 96px 20px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(135deg, rgba(104, 42, 160, 0.22), transparent 38%),
            radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08), transparent 18%),
            linear-gradient(180deg, transparent 0%, rgba(13, 7, 20, 0.7) 100%);
}

.hero-decoration {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(215, 162, 41, 0.22);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.5;
}

.hero-decoration-left {
    left: -120px;
    top: 20%;
}

.hero-decoration-right {
    right: -140px;
    bottom: 12%;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(940px, 100%);
    text-align: center;
}

.eyebrow,
.section-kicker {
    display: inline-block;
    margin: 0 0 14px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.1;
}

h1 {
    max-width: 980px;
    margin: 0 auto 24px;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    letter-spacing: -0.03em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}


.hero-logo {
    width: min(360px, 70%);
    margin: 0 auto 10px;
    margin-left: 10px;
}

.hero-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-text {
    max-width: 740px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.contact-actions .email-link {
    flex-basis: 100%;
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            background 0.2s ease,
            border-color 0.2s ease;
}

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

.button.primary {
    color: #211300;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 14px 36px rgba(215, 162, 41, 0.28);
}

.button.primary:hover {
    box-shadow: 0 18px 46px rgba(215, 162, 41, 0.38);
}

.button.secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--white-border);
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.09);
}

.section {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
    padding: 92px 0;
}

.section-alt {
    width: 100%;
    max-width: none;
    padding-right: 20px;
    padding-left: 20px;
    background:
            radial-gradient(circle at top right, rgba(141, 78, 210, 0.16), transparent 28%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.055));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-inner {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 32px;
}

.text-block p,
.section p,
.card p,
.info-card p,
details p {
    color: var(--muted);
}

.content-grid {
    display: grid;
    gap: 26px;
}

.two-cols {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.info-card,
.card,
.faq details {
    background: var(--card);
    border: 1px solid var(--white-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-card,
.card {
    padding: 26px;
}

.card {
    position: relative;
    overflow: hidden;
    transition:
            transform 0.2s ease,
            background 0.2s ease,
            border-color 0.2s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(215, 162, 41, 0.1), transparent 38%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    background: var(--card-hover);
    border-color: rgba(215, 162, 41, 0.34);
}

.card:hover::before {
    opacity: 1;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card-number,
.card-icon {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-weight: 950;
}

.card-number {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
}

.card-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.feature-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.feature-list li + li {
    margin-top: 8px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.faq {
    display: grid;
    gap: 14px;
}

.faq details {
    padding: 18px 20px;
}

.faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 850;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    float: right;
    color: var(--gold-light);
    font-weight: 950;
}

.faq details[open] summary::after {
    content: "–";
}

.cta {
    text-align: center;
}

.cta p {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
}

.email-link {
    color: var(--gold-light);
    font-weight: 800;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: wrap;
    padding: 32px clamp(20px, 5vw, 58px) 42px;
    color: var(--muted);
    border-top: 1px solid var(--white-border);
}

.site-footer div {
    display: grid;
    gap: 4px;
}

.site-footer strong {
    color: var(--text);
}

.site-footer a {
    color: var(--gold-light);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
            opacity 0.7s ease,
            transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.quick-card {
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--white-border);
    border-radius: var(--radius);
    background:
            linear-gradient(135deg, rgba(215, 162, 41, 0.12), transparent 42%),
            var(--card);
    box-shadow: var(--shadow);
}

.quick-card span {
    display: block;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 950;
    line-height: 1;
}

.quick-card h3 {
    margin-bottom: 10px;
}

.quick-card p {
    margin-bottom: 0;
    color: var(--muted);
}
@media (max-width: 900px) {
    .two-cols,
    .cards,
    .quick-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 14px;
    }
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 760px) {
    .site-header {
        align-items: center;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .brand-logo {
        width: 80px;
        height: 80px;
    }

    .hero-logo {
        width: min(100%, 620px);
        margin-bottom: 24px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 77px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        background: rgba(13, 7, 20, 0.96);
        border: 1px solid var(--white-border);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .nav.is-open {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 82px 20px 76px;
    }

    h1 {
        font-size: clamp(2.25rem, 11vw, 4rem);
    }

    .hero-text {
        font-size: 1.04rem;
    }

    .section {
        width: min(100% - 32px, var(--max-width));
        padding: 72px 0;
    }

    .site-footer {
        flex-direction: column;
    }
}