:root {
    --bg: #090814;
    --bg-deep: #05040d;
    --surface: rgba(13, 14, 31, 0.82);
    --surface-strong: rgba(17, 19, 40, 0.92);
    --surface-soft: rgba(255, 255, 255, 0.04);
    --text: #f6efde;
    --muted: #b6abc8;
    --line: rgba(246, 239, 222, 0.12);
    --gold: #f0c67a;
    --gold-strong: #ffdf9e;
    --violet: #8f79ff;
    --rose: #ff8cc6;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    --display: "Cinzel", serif;
    --body: "Manrope", sans-serif;
    --container-max: 1180px;
    --container-gap: 20px;
}

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

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(143, 121, 255, 0.2), transparent 30%),
        radial-gradient(circle at 85% 8%, rgba(240, 198, 122, 0.18), transparent 22%),
        radial-gradient(circle at 50% 110%, rgba(255, 140, 198, 0.12), transparent 26%),
        linear-gradient(180deg, #0a0917 0%, var(--bg) 42%, var(--bg-deep) 100%);
    color: var(--text);
    font-family: var(--body);
    line-height: 1.6;
    overflow-x: hidden;
}

main,
.hero-section,
.section,
.site-header,
.site-footer {
    width: 100%;
}

section[id] {
    scroll-margin-top: 96px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
textarea {
    font: inherit;
}

.sky-grid,
.sky-stars,
.aura {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.sky-grid {
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
}

.sky-stars {
    opacity: 0.55;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.5px),
        radial-gradient(circle at 78% 26%, rgba(240, 198, 122, 0.9) 0 1px, transparent 1.5px),
        radial-gradient(circle at 60% 58%, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.5px),
        radial-gradient(circle at 26% 74%, rgba(255, 140, 198, 0.75) 0 1px, transparent 1.5px),
        radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.82) 0 1px, transparent 1.5px);
}

.aura {
    z-index: -1;
    border-radius: 999px;
    filter: blur(90px);
}

.aura-left {
    top: 90px;
    left: -120px;
    width: 340px;
    height: 340px;
    background: rgba(143, 121, 255, 0.2);
}

.aura-right {
    top: 300px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: rgba(240, 198, 122, 0.16);
}

.container {
    width: min(var(--container-max), calc(100% - (var(--container-gap) * 2)));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(20px);
    background: rgba(6, 7, 16, 0.72);
    border-bottom: 1px solid rgba(240, 198, 122, 0.12);
}

.nav-wrap {
    position: relative;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    /* width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(240, 198, 122, 0.4);
    background: radial-gradient(circle at 30% 30%, rgba(240, 198, 122, 0.28), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 0 24px rgba(240, 198, 122, 0.14), 0 0 30px rgba(240, 198, 122, 0.12);
    color: var(--gold-strong);
    font-family: var(--display); */
    font-size: 2.2rem;
    /* font-weight: 700; */
}

.brand-stack {
    display: grid;
}

.brand-text,
.brand-subtext {
    text-transform: uppercase;
}

.brand-text {
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.brand-subtext {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
}

.menu-toggle {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(240, 198, 122, 0.16);
    background: rgba(10, 11, 24, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-nav a {
    color: var(--muted);
    font-weight: 700;
    padding: 6px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.hero-contact a:hover,
.hero-contact a:focus-visible {
    color: var(--gold-strong);
}

.hero-section {
    position: relative;
    padding: 72px 0 42px;
}

.section {
    padding: 56px 0 78px;
}

.section-feature {
    position: relative;
}

.section-feature .container {
    position: relative;
    z-index: 1;
}

.section-feature::before {
    content: "";
    position: absolute;
    inset: 24px 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
        radial-gradient(circle at center, rgba(240, 198, 122, 0.08), transparent 60%);
    border-top: 1px solid rgba(240, 198, 122, 0.08);
    border-bottom: 1px solid rgba(240, 198, 122, 0.08);
    pointer-events: none;
}

.hero-grid,
.calculator-layout,
.report-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.spotlight-grid,
.mystic-grid,
.services-grid,
.result-grid,
.report-details-grid {
    display: grid;
    gap: 18px;
}

.spotlight-grid,
.mystic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.report-details-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-copy,
.hero-visual,
.calculator-card,
.pricing-card,
.contact-card,
.info-card,
.service-card,
.spotlight-card,
.result-card,
.report-card,
.bonus-card {
    position: relative;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(240, 198, 122, 0.12);
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-copy,
.hero-visual,
.calculator-card,
.pricing-card,
.contact-card,
.bonus-card {
    padding: 30px;
}

.info-card,
.service-card,
.spotlight-card,
.result-card,
.report-card {
    padding: 24px;
}

.hero-copy::before,
.hero-visual::before,
.calculator-card::before,
.pricing-card::before,
.contact-card::before,
.bonus-card::before,
.info-card::before,
.service-card::before,
.spotlight-card::before,
.result-card::before,
.report-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.section-tag,
.card-kicker,
.result-label,
.report-index,
.service-icon,
.spotlight-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-strong);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-tag,
.card-kicker,
.result-label {
    margin-bottom: 18px;
}

h1,
h2,
h3 {
    font-family: var(--display);
    line-height: 1.04;
}

h1 {
    max-width: 10ch;
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 7vw, 4rem);
    font-weight: 700;
}

.hero-subtitle {
    margin-bottom: 16px;
    color: var(--gold-strong);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-text,
.section-heading p,
.info-card p,
.service-card p,
.spotlight-card p,
.pricing-card p,
.result-card p,
.report-card p,
.bonus-card p,
.report-list,
.form-message,
.footer-wrap,
.hero-contact,
.consultation-steps p {
    color: var(--muted);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
    font-weight: 700;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.hero-metrics article,
.number-guide article,
.consultation-steps article {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(240, 198, 122, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.hero-metrics strong {
    display: block;
    color: var(--text);
    font-family: var(--display);
    font-size: 1.45rem;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-visual {
    display: grid;
    gap: 24px;
}

.cosmic-wheel {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    border: 1px solid rgba(240, 198, 122, 0.16);
    background:
        radial-gradient(circle at center, rgba(240, 198, 122, 0.14), rgba(255, 255, 255, 0.02) 34%, transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    overflow: hidden;
}

.cosmic-wheel::before,
.cosmic-wheel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(240, 198, 122, 0.22);
}

.cosmic-wheel::before {
    width: 320px;
    height: 320px;
}

.cosmic-wheel::after {
    width: 220px;
    height: 220px;
    border-style: dashed;
    opacity: 0.7;
}

.wheel-core {
    position: relative;
    z-index: 1;
    width: 170px;
    height: 170px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(240, 198, 122, 0.34);
    background: radial-gradient(circle at center, rgba(240, 198, 122, 0.24), rgba(9, 8, 20, 0.96));
    box-shadow: inset 0 0 30px rgba(240, 198, 122, 0.1), 0 0 50px rgba(240, 198, 122, 0.12);
    padding: 18px;
}

.core-label,
.core-copy {
    display: block;
}

.core-label {
    color: var(--gold-strong);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wheel-core strong {
    font-family: var(--display);
    font-size: 4rem;
    line-height: 1;
}

.core-copy {
    color: var(--muted);
    font-size: 0.84rem;
}

.orbit {
    position: absolute;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(240, 198, 122, 0.28);
    background: rgba(8, 8, 18, 0.88);
    color: var(--gold-strong);
    font-family: var(--display);
    font-size: 1.1rem;
}

.orbit-a {
    top: 48px;
    left: calc(50% - 22px);
}

.orbit-b {
    top: 92px;
    right: 96px;
}

.orbit-c {
    top: calc(50% - 22px);
    right: 48px;
}

.orbit-d {
    bottom: 92px;
    right: 96px;
}

.orbit-e {
    bottom: 48px;
    left: calc(50% - 22px);
}

.orbit-f {
    bottom: 92px;
    left: 96px;
}

.orbit-g {
    top: calc(50% - 22px);
    left: 48px;
}

.orbit-h {
    top: 92px;
    left: 96px;
}

.insight-panel h2 {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.spotlight-number,
.service-icon,
.report-index {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    border: 1px solid rgba(240, 198, 122, 0.22);
    background: rgba(240, 198, 122, 0.08);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
}

.align-left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2 {
    margin-bottom: 14px;
    font-size: clamp(1.3rem, 4vw, 2rem);
}

.info-card h3,
.service-card h3,
.pricing-card h3,
.result-card h3,
.report-card h3,
.bonus-card h3,
.contact-card h3,
.spotlight-card h2 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.number-guide,
.consultation-steps {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.number-guide span,
.consultation-steps span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--gold-strong);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.calculator-card,
.contact-card {
    background: linear-gradient(180deg, rgba(18, 20, 42, 0.92), rgba(10, 11, 24, 0.92));
}

.calculator-form,
.contact-form {
    display: grid;
    gap: 12px;
}

label {
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(240, 198, 122, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(182, 171, 200, 0.8);
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(18, 20, 42, 0.92);
    color: var(--text);
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-strong) 50%),
        linear-gradient(135deg, var(--gold-strong) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

select option {
    background: #12142a;
    color: var(--text);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(240, 198, 122, 0.44);
    box-shadow: 0 0 0 4px rgba(240, 198, 122, 0.08);
    transform: translateY(-1px);
}

.calculator-note {
    color: var(--muted);
    font-size: 0.9rem;
}

input::-webkit-calendar-picker-indicator {
    filter: invert(0.9);
    opacity: 0.9;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
    color: #140f08;
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    box-shadow: 0 18px 34px rgba(240, 198, 122, 0.22);
}

.button-secondary {
    border-color: rgba(240, 198, 122, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.button-full {
    width: 100%;
}

.result-card h3 {
    margin: 4px 0 8px;
    color: var(--gold-strong);
    font-size: 2.7rem;
}

.report-layout {
    margin-top: 24px;
}

.report-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.report-list li {
    position: relative;
    padding-left: 22px;
}

.report-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    box-shadow: 0 0 18px rgba(240, 198, 122, 0.28);
}

.price {
    margin: 18px 0 14px;
    color: var(--gold-strong);
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 4.2rem);
    line-height: 1;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.service-footer span {
    color: var(--gold-strong);
    font-weight: 800;
}

.site-footer {
    border-top: 1px solid rgba(240, 198, 122, 0.12);
    padding: 0 0 14px;
}

.footer-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    font-weight: 700;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .hero-grid,
    .calculator-layout,
    .report-layout,
    .contact-layout,
    .spotlight-grid,
    .mystic-grid,
    .services-grid,
    .report-details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 820px) {
    :root {
        --container-gap: 16px;
    }

    .hero-grid,
    .calculator-layout,
    .report-layout,
    .contact-layout,
    .spotlight-grid,
    .mystic-grid,
    .services-grid,
    .result-grid,
    .report-details-grid {
        grid-template-columns: 1fr;
    }

    .nav-wrap,
    .footer-wrap {
        min-height: auto;
        padding: 16px 0;
    }

    .hero-section {
        padding-top: 44px;
    }

    h1 {
        max-width: none;
        font-size: 3rem;
    }

    .cosmic-wheel {
        min-height: 360px;
    }

    .cosmic-wheel::before {
        width: 280px;
        height: 280px;
    }

}

@media (max-width: 640px) {
    :root {
        --container-gap: 12px;
    }

    .hero-copy,
    .hero-visual,
    .calculator-card,
    .pricing-card,
    .contact-card,
    .bonus-card,
    .info-card,
    .service-card,
    .spotlight-card,
    .result-card,
    .report-card {
        padding: 22px;
    }

    .hero-actions,
    .contact-actions,
    .hero-contact,
    .service-footer,
    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .button,
    .contact-actions .button,
    .service-footer .button {
        width: 100%;
    }

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

    .brand-subtext {
        letter-spacing: 0.14em;
    }

    .orbit {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .orbit-a {
        top: 36px;
    }

    .orbit-c {
        right: 24px;
    }

    .orbit-d,
    .orbit-b {
        right: 56px;
    }

    .orbit-f,
    .orbit-h {
        left: 56px;
    }

    .orbit-g {
        left: 24px;
    }

    .orbit-e {
        bottom: 36px;
    }
}

@media (min-width: 900px) {
    .menu-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 24px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}
