:root {
    --color-bg: #0b0907;
    --color-surface: rgba(20, 13, 8, 0.82);
    --color-surface-strong: rgba(28, 18, 10, 0.92);
    --color-text: #f8f5ef;
    --color-text-muted: rgba(248, 245, 239, 0.72);
    --color-accent: #ff8f2a;
    --color-accent-soft: rgba(255, 143, 42, 0.2);
    --color-accent-strong: #ffb05c;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-shadow: rgba(0, 0, 0, 0.45);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shadow-lg: 0 30px 80px var(--color-shadow);
    --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.28);
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --container: 1240px;
    --z-nav: 20;
    --z-dropdown: 30;
    --duration-fast: 220ms;
    --duration-slow: 420ms;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    font-family: 'Inter', system-ui, sans-serif;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 143, 42, 0.16), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(255, 170, 72, 0.14), transparent 34%),
        linear-gradient(180deg, #0c0906 0%, #090705 100%);
    color: var(--color-text);
    line-height: 1.5;
}

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

button {
    font: inherit;
}

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

.site-shell {
    min-height: 100vh;
    overflow-x: clip;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.hero-page,
.inner-page {
    position: relative;
    padding-block: 22px 48px;
}

.hero-page__noise,
.hero-page__aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-page__noise {
    background-image: radial-gradient(rgba(255,255,255,0.04) 0.6px, transparent 0.6px);
    background-size: 8px 8px;
    mix-blend-mode: soft-light;
    opacity: 0.18;
}

.hero-page__aurora--left {
    background: radial-gradient(circle at 15% 15%, rgba(255, 145, 40, 0.2), transparent 28%);
}

.hero-page__aurora--right {
    background: radial-gradient(circle at 85% 35%, rgba(255, 171, 84, 0.14), transparent 30%);
}

.nav {
    position: relative;
    z-index: var(--z-nav);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
    padding: var(--space-4) var(--space-5);
    border: 1px solid var(--color-border);
    background: rgba(13, 10, 7, 0.56);
    backdrop-filter: blur(18px);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
}

.nav--inner {
    margin-bottom: var(--space-8);
}

.brand {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff7ed;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__link,
.nav__link--button {
    color: var(--color-text);
    border: 0;
    background: transparent;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.96rem;
    transition: background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
    cursor: pointer;
}

.nav__link:hover,
.nav__link--button:hover,
.nav__link:focus-visible,
.nav__link--button:focus-visible {
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.nav__link--accent {
    background: linear-gradient(135deg, rgba(255, 143, 42, 0.18), rgba(255, 176, 92, 0.14));
    border: 1px solid rgba(255, 176, 92, 0.24);
}

.nav__toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav__toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text);
}

.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 180px;
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: rgba(17, 12, 8, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), visibility var(--duration-fast) var(--ease-out);
    z-index: var(--z-dropdown);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-menu a {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.nav__dropdown-menu a:hover,
.nav__dropdown-menu a:focus-visible {
    background: rgba(255, 143, 42, 0.14);
    transform: translateY(-1px);
    outline: none;
}

.hero-card,
.panel,
.feature-card,
.product-card {
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(18, 12, 8, 0.88), rgba(10, 8, 6, 0.86));
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-lg);
}

.hero-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: end;
    gap: var(--space-6);
    margin-top: var(--space-5);
    padding: clamp(28px, 4vw, 56px);
    border-radius: 42px;
    min-height: 640px;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, rgba(255, 143, 42, 0.06));
    pointer-events: none;
}

.hero-card__content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    align-self: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-5);
    color: var(--color-accent-strong);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

h1, h2, h3, p {
    margin: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    max-width: 12ch;
}

h1 span,
.brand,
.product-card__footer strong {
    background: linear-gradient(135deg, #fff7eb 0%, #ffb05c 56%, #ff8f2a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-card__content p,
.panel__lead {
    margin-top: var(--space-5);
    max-width: 62ch;
    color: var(--color-text-muted);
    font-size: 1.02rem;
}

.hero-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

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

.button--primary {
    background: linear-gradient(135deg, #ff8f2a, #ffb05c);
    color: #1d1207;
    box-shadow: 0 18px 36px rgba(255, 143, 42, 0.26);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--color-border);
}

.hero-card__art {
    position: relative;
    min-height: 100%;
    align-self: stretch;
}

.planet,
.ring,
.glow-orb {
    position: absolute;
    border-radius: 50%;
}

.planet--main {
    right: 2%;
    bottom: 6%;
    width: clamp(280px, 34vw, 480px);
    aspect-ratio: 1;
    background:
        radial-gradient(circle at 28% 30%, rgba(255, 231, 205, 0.82), transparent 16%),
        radial-gradient(circle at 64% 68%, rgba(255, 143, 42, 0.14), transparent 34%),
        linear-gradient(145deg, #fff1de 0%, #ffcb93 22%, #7a4312 48%, #ff8f2a 66%, #ffd7ab 100%);
    filter: saturate(1.05) contrast(1.08);
    box-shadow:
        inset -20px -26px 55px rgba(50, 21, 3, 0.48),
        0 0 140px rgba(255, 143, 42, 0.22);
}

.planet--main::before,
.planet--main::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 35% 38%, transparent 0 18%, rgba(98, 46, 10, 0.6) 18% 23%, transparent 23% 34%, rgba(255, 237, 214, 0.34) 34% 41%, transparent 41% 100%),
        linear-gradient(175deg, transparent 0 16%, rgba(72, 36, 8, 0.36) 16% 20%, transparent 20% 31%, rgba(255, 221, 184, 0.3) 31% 35%, transparent 35% 48%, rgba(81, 42, 12, 0.32) 48% 54%, transparent 54% 100%);
    mix-blend-mode: soft-light;
}

.planet--main::after {
    transform: rotate(32deg);
    opacity: 0.7;
}

.ring {
    right: -2%;
    bottom: 17%;
    width: clamp(320px, 42vw, 560px);
    height: clamp(80px, 10vw, 130px);
    border: 18px solid rgba(255, 198, 128, 0.5);
    transform: rotate(-14deg);
    box-shadow: 0 0 50px rgba(255, 170, 72, 0.12);
}

.ring::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: inherit;
    border: 1px solid rgba(255, 245, 232, 0.3);
}

.planet--small {
    background: linear-gradient(140deg, #fff0dc 0%, #ff9e3d 45%, #5e3410 100%);
    box-shadow: 0 0 40px rgba(255, 143, 42, 0.12);
}

.planet--small-a { width: 94px; height: 94px; right: 20%; top: 20%; }
.planet--small-b { width: 58px; height: 58px; right: 4%; top: 10%; }
.planet--small-c { width: 38px; height: 38px; right: 34%; bottom: 10%; }

.glow-orb--one {
    width: 240px;
    height: 240px;
    right: 20%;
    bottom: 22%;
    background: radial-gradient(circle, rgba(255, 143, 42, 0.2), transparent 65%);
}

.glow-orb--two {
    width: 180px;
    height: 180px;
    right: 0;
    bottom: 36%;
    background: radial-gradient(circle, rgba(255, 210, 160, 0.12), transparent 66%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-5);
}

.feature-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: 22px 24px;
    border-radius: 26px;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 143, 42, 0.2), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.04);
    position: relative;
}

.feature-card__icon::before,
.feature-card__icon::after {
    content: "";
    position: absolute;
    background: rgba(255, 224, 190, 0.94);
}

.feature-card__icon::before {
    width: 18px;
    height: 12px;
    border-radius: 4px;
    left: 15px;
    top: 18px;
}

.feature-card__icon::after {
    width: 10px;
    height: 2px;
    border-radius: 999px;
    left: 19px;
    top: 14px;
}

.feature-card__icon--group::before {
    width: 11px; height: 11px; border-radius: 50%; left: 10px; top: 12px;
    box-shadow: 15px 0 0 rgba(255, 224, 190, 0.94), 7px 14px 0 3px rgba(255, 224, 190, 0.94);
    background: rgba(255, 224, 190, 0.94);
}

.feature-card__icon--group::after { display: none; }

.feature-card__icon--shield::before {
    width: 18px; height: 24px; left: 15px; top: 11px;
    clip-path: polygon(50% 0%, 100% 20%, 85% 100%, 15% 100%, 0% 20%);
}

.feature-card__icon--shield::after { display: none; }

.feature-card h2 {
    font-size: 1.2rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.feature-card p {
    margin-top: 6px;
    color: var(--color-text-muted);
}

.inner-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 143, 42, 0.16), transparent 24%),
        radial-gradient(circle at 90% 20%, rgba(255, 184, 102, 0.12), transparent 28%),
        linear-gradient(180deg, #0d0906 0%, #090705 100%);
}

.panel {
    padding: clamp(26px, 4vw, 42px);
    border-radius: 34px;
}

.panel--headline {
    margin-bottom: var(--space-8);
}

.panel--spacious {
    min-height: 56vh;
    display: grid;
    align-content: center;
}

.shop-section + .shop-section {
    margin-top: var(--space-8);
}

.section-heading {
    margin-bottom: var(--space-5);
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -0.04em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-5);
}

.product-grid--single {
    grid-template-columns: minmax(0, 380px);
}

.product-card {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 28px;
    transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.product-card:hover,
.product-card:focus-visible {
    border-color: rgba(255, 176, 92, 0.28);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 176, 92, 0.14) inset;
}

.product-card--placeholder {
    cursor: default;
}

.product-card__tag {
    display: inline-flex;
    margin-bottom: var(--space-4);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 143, 42, 0.12);
    color: var(--color-accent-strong);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.product-card h3 {
    font-size: 1.55rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    margin-top: var(--space-5);
    color: var(--color-text-muted);
}

.product-card__footer strong {
    font-size: 1.35rem;
}

:focus-visible {
    outline: 2px solid rgba(255, 176, 92, 0.72);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .hero-card {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-card__art {
        min-height: 420px;
    }

    .feature-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .nav {
        border-radius: 30px;
        align-items: flex-start;
    }

    .nav__toggle {
        display: inline-flex;
    }

    .nav__menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 24px;
        background: rgba(14, 10, 7, 0.98);
        border: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }

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

    .nav__menu--static {
        position: static;
        display: flex;
        flex-direction: row;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .nav__link,
    .nav__link--button {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
    }

    .nav__dropdown,
    .nav__dropdown-menu {
        width: 100%;
    }

    .nav__dropdown-menu {
        position: static;
        display: none;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav__dropdown.is-open .nav__dropdown-menu {
        display: grid;
    }

    .feature-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 24px;
        border-radius: 32px;
    }

    .hero-card__art {
        min-height: 320px;
    }

    .planet--main {
        width: min(72vw, 360px);
        right: 8%;
    }

    .ring {
        width: min(82vw, 420px);
        right: 2%;
    }

    .nav--inner {
        align-items: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 20px), var(--container));
    }

    .hero-page,
    .inner-page {
        padding-block: 12px 28px;
    }

    .nav {
        padding: 12px 14px;
    }

    .nav--inner {
        gap: 12px;
    }

    .nav__menu--static {
        gap: 4px;
    }

    h1 {
        max-width: 10ch;
    }

    .panel,
    .feature-card,
    .product-card {
        border-radius: 24px;
    }

    .feature-card,
    .product-card {
        padding: 20px;
    }

    .product-card {
        min-height: 190px;
    }

    .hero-card__art {
        min-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }
}


.container--wide {
    width: min(calc(100% - 32px), 1280px);
}

.hero-page--home {
    min-height: 100vh;
    padding-block: 18px 12px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 140, 48, 0.16), transparent 22%),
        radial-gradient(circle at 82% 26%, rgba(255, 164, 84, 0.12), transparent 24%),
        linear-gradient(180deg, #080705 0%, #070605 100%);
}

.hero-page__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
    opacity: 0.28;
}

.nav--hero {
    margin-inline: auto;
    padding: 10px 18px;
    border-radius: 24px;
    justify-content: flex-start;
    gap: 22px;
    border-color: rgba(255,255,255,0.05);
    background: rgba(8, 7, 6, 0.62);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.nav--hero .brand {
    margin-right: auto;
    font-size: 1.65rem;
    letter-spacing: 0.02em;
}

.nav--hero .nav__menu {
    gap: 6px;
}

.nav--hero .nav__link,
.nav--hero .nav__link--button {
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: 14px;
}

.hero-full {
    position: relative;
    min-height: calc(100vh - 190px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: stretch;
    overflow: hidden;
}

.hero-full__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 8vw, 108px) 0 clamp(28px, 6vw, 72px);
}

.hero-full__content h1 {
    max-width: none;
    font-size: clamp(2.35rem, 4.5vw, 3.9rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-wrap: nowrap;
}
.hero-full__content h1 br {
    display: block;
}

.hero-full__content h1 span {
    display: inline-block;
}
.hero-full__button {
    margin-top: 30px;
    width: fit-content;
    min-width: 126px;
    min-height: 46px;
    padding-inline: 22px;
    background: linear-gradient(135deg, rgba(255,143,42,0.98), rgba(255,190,117,0.95));
}

.hero-full__visual {
    position: relative;
    min-height: 700px;
}

.cosmos {
    position: absolute;
    right: -8%;
    bottom: -2%;
    width: min(60vw, 860px);
    height: min(48vw, 690px);
    background: radial-gradient(circle at 50% 56%, rgba(255,255,255,0.03), transparent 56%);
    filter: blur(2px);
}

.planet-hero {
    position: absolute;
    right: 8%;
    bottom: -3%;
    width: clamp(300px, 33vw, 470px);
    aspect-ratio: 1;
    border-radius: 45% 55% 48% 52% / 42% 45% 55% 58%;
    background:
        radial-gradient(circle at 36% 30%, rgba(255, 244, 228, 0.95), transparent 10%),
        linear-gradient(155deg, #fff2dd 0%, #ffcd94 18%, #b8631c 35%, #6f3507 48%, #ff9735 66%, #f7d7aa 100%);
    box-shadow:
        inset -24px -28px 68px rgba(49, 21, 2, 0.42),
        0 0 90px rgba(255, 143, 42, 0.16);
    overflow: hidden;
    transform: rotate(-8deg);
}

.planet-hero::before,
.planet-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0 18%, rgba(90, 41, 7, 0.52) 18% 22%, transparent 22% 33%, rgba(255, 226, 191, 0.28) 33% 38%, transparent 38% 49%, rgba(102, 50, 11, 0.42) 49% 54%, transparent 54% 68%, rgba(255, 223, 188, 0.22) 68% 72%, transparent 72% 100%),
        radial-gradient(circle at 34% 46%, transparent 0 15%, rgba(83, 39, 7, 0.45) 15% 21%, transparent 21% 100%);
    mix-blend-mode: soft-light;
}

.planet-hero::after {
    transform: rotate(24deg) scale(1.08);
    opacity: 0.75;
}

.planet-hero__ring {
    position: absolute;
    right: -1%;
    bottom: 15%;
    width: clamp(360px, 44vw, 620px);
    height: clamp(86px, 11vw, 132px);
    border-radius: 50%;
    border: 18px solid rgba(255, 188, 113, 0.46);
    transform: rotate(-17deg);
    box-shadow: 0 0 42px rgba(255, 160, 76, 0.14);
}

.planet-hero__ring::before,
.planet-hero__ring::after {
    content: "";
    position: absolute;
    border-radius: inherit;
}

.planet-hero__ring::before {
    inset: 10px;
    border: 1px solid rgba(255, 241, 223, 0.42);
}

.planet-hero__ring::after {
    inset: 34% 42% 34% 8%;
    background: linear-gradient(90deg, rgba(0,0,0,0.5), transparent 40%, transparent 100%);
    filter: blur(6px);
}

.planet-hero__satellite {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff0dc 0%, #ff9e3d 50%, #64350e 100%);
    box-shadow: 0 0 30px rgba(255, 143, 42, 0.1);
}

.planet-hero__satellite--a { width: 76px; height: 76px; right: 30%; top: 18%; }
.planet-hero__satellite--b { width: 28px; height: 28px; right: 10%; top: 24%; }
.planet-hero__satellite--c { width: 60px; height: 60px; right: 18%; bottom: 23%; }

.mist {
    position: absolute;
    border-radius: 50%;
    filter: blur(26px);
    opacity: 0.34;
}

.mist--one {
    right: 14%;
    top: 16%;
    width: 220px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
}

.mist--two {
    right: 0;
    bottom: 34%;
    width: 320px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 178, 102, 0.16), transparent 68%);
}

.mist--three {
    right: 24%;
    bottom: 8%;
    width: 260px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 208, 163, 0.13), transparent 70%);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    margin-top: -70px;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.feature-tile {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 118px;
    padding: 26px 26px;
    background:
        linear-gradient(180deg, rgba(21, 15, 11, 0.86), rgba(9, 8, 7, 0.9)),
        radial-gradient(circle at 80% 20%, rgba(255, 143, 42, 0.06), transparent 32%);
}

.feature-tile h2 {
    font-size: 1.24rem;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.feature-tile p {
    margin-top: 6px;
    color: var(--color-text-muted);
}

@media (max-width: 1100px) {
    .hero-full {
        grid-template-columns: 1fr;
    }

    .hero-full__content {
        padding-top: 52px;
        padding-bottom: 10px;
    }

    .hero-full__visual {
        min-height: 420px;
        margin-top: -18px;
    }

    .planet-hero {
        right: 8%;
        bottom: 3%;
    }

    .planet-hero__ring {
        right: 4%;
    }
}

@media (max-width: 820px) {
    .nav--hero {
        border-radius: 18px;
    }

    .nav--hero .nav__menu {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: 0;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,0.06);
        background: rgba(10, 9, 8, 0.96);
    }

    .hero-full__content h1 {
        max-width: 11.2ch;
        font-size: clamp(2.5rem, 9vw, 4rem);
    }

    .hero-full__visual {
        min-height: 360px;
    }

    .planet-hero {
        width: 270px;
    }

    .planet-hero__ring {
        width: 340px;
        height: 84px;
        border-width: 14px;
    }

    .feature-strip {
        grid-template-columns: 1fr;
        margin-top: 12px;
    }
}

@media (max-width: 560px) {
    .container--wide {
        width: min(calc(100% - 20px), 1280px);
    }

    .hero-page--home {
        padding-block: 10px 18px;
    }

    .nav--hero {
        padding: 10px 12px;
    }

    .nav--hero .brand {
        font-size: 1.35rem;
    }

    .hero-full {
        min-height: auto;
    }

    .hero-full__content {
        padding-top: 34px;
    }

    .hero-full__button {
        margin-top: 22px;
    }

    .hero-full__visual {
        min-height: 300px;
    }

    .planet-hero {
        right: 10%;
        width: 220px;
    }

    .planet-hero__ring {
        right: 4%;
        width: 280px;
        height: 68px;
    }

    .planet-hero__satellite--a { width: 50px; height: 50px; }
    .planet-hero__satellite--b { width: 20px; height: 20px; }
    .planet-hero__satellite--c { width: 44px; height: 44px; }

    .feature-tile {
        min-height: 98px;
        padding: 20px 18px;
    }
}


.panel--rules-intro {
    margin-bottom: var(--space-6);
}

.rules-layout {
    display: grid;
    gap: var(--space-5);
}

.rules-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: var(--space-5);
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(18, 12, 8, 0.88), rgba(10, 8, 6, 0.86));
    box-shadow: var(--shadow-lg);
}

.rules-card__index {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #fff7eb 0%, #ffb05c 56%, #ff8f2a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rules-card__content h2 {
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.rules-card__content ol {
    margin: 18px 0 0;
    padding-left: 22px;
    color: var(--color-text-muted);
}

.rules-card__content li + li {
    margin-top: 12px;
}

@media (max-width: 820px) {
    .rules-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
    }

    .rules-card__index {
        justify-content: flex-start;
    }
}
