:root {
    --bg-0: #030101;
    --bg-1: #090303;
    --bg-2: #180607;
    --surface-0: rgba(12, 7, 7, 0.9);
    --surface-1: rgba(21, 12, 12, 0.94);
    --surface-2: rgba(34, 20, 20, 0.96);
    --surface-soft: rgba(15, 9, 9, 0.78);
    --line: rgba(224, 205, 205, 0.11);
    --line-strong: rgba(158, 28, 38, 0.38);
    --text: #f2e7e4;
    --text-soft: #c2adab;
    --text-dim: #8b7574;
    --brass: #d5c9c4;
    --brass-deep: #5d4e4c;
    --blood: #9f1c28;
    --blood-deep: #3a0508;
    --iron: #272223;
    --font-display: Georgia, "Times New Roman", Times, serif;
    --font-body: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --radius: 22px;
    --radius-sm: 14px;
    --shadow-lg: 0 34px 110px rgba(0, 0, 0, 0.56);
    --shadow-md: 0 18px 54px rgba(0, 0, 0, 0.38);
    --transition: 180ms ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-0);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    background:
        radial-gradient(ellipse at 8% 0%, rgba(122, 18, 26, 0.54), transparent 38%),
        radial-gradient(ellipse at 94% 2%, rgba(22, 76, 76, 0.32), transparent 42%),
        radial-gradient(ellipse at 50% 100%, rgba(91, 12, 18, 0.26), transparent 44%),
        linear-gradient(135deg, #1b0306 0%, #050202 44%, #061011 100%),
        var(--bg-0);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background:
        linear-gradient(rgba(120, 18, 26, 0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 18, 26, 0.01) 1px, transparent 1px),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 22px);
    background-size: 132px 132px, 132px 132px, 100% 100%;
    -webkit-mask-image: radial-gradient(ellipse at center, black 0 42%, transparent 82%);
    mask-image: radial-gradient(ellipse at center, black 0 42%, transparent 82%);
    opacity: 0.22;
}

body::after {
    background:
        radial-gradient(ellipse at center, transparent 34%, rgba(0, 0, 0, 0.42) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 22%, transparent 72%, rgba(0, 0, 0, 0.36));
}

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

p,
ul,
ol {
    margin: 0;
}

.atmosphere,
.atmosphere-grid,
.atmosphere-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.atmosphere {
    opacity: 0.72;
    filter: blur(52px);
}

.atmosphere-a {
    background:
        linear-gradient(110deg, transparent 0 18%, rgba(145, 18, 24, 0.26) 42%, transparent 68%),
        radial-gradient(ellipse at 15% 86%, rgba(140, 18, 28, 0.16), transparent 44%);
    animation: drift 34s ease-in-out infinite;
}

.atmosphere-b {
    background:
        linear-gradient(250deg, transparent 0 24%, rgba(92, 12, 16, 0.18) 48%, transparent 72%),
        radial-gradient(ellipse at 92% 8%, rgba(140, 18, 28, 0.08), transparent 42%);
    animation: drift 40s ease-in-out infinite reverse;
}

.atmosphere-c {
    background:
        repeating-linear-gradient(90deg, transparent 0 78px, rgba(120, 18, 26, 0.012) 78px 79px),
        linear-gradient(180deg, transparent, rgba(120, 18, 26, 0.055), transparent);
    filter: none;
    opacity: 0.5;
}

.atmosphere-grid {
    background:
        linear-gradient(90deg, transparent, rgba(120, 18, 26, 0.03), transparent),
        repeating-linear-gradient(0deg, transparent 0 95px, rgba(210, 205, 206, 0.012) 95px 96px);
    -webkit-mask-image: linear-gradient(180deg, transparent, black 16%, black 74%, transparent);
    mask-image: linear-gradient(180deg, transparent, black 16%, black 74%, transparent);
    opacity: 0.18;
}

.atmosphere-vignette {
    background: radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.38) 100%);
}

.site-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(122, 18, 26, 0.1), transparent 34%),
        rgba(3, 2, 2, 0.94);
    overflow: hidden;
}

.site-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(120, 18, 26, 0.016), transparent 32%),
        repeating-linear-gradient(90deg, transparent 0 260px, rgba(120, 18, 26, 0.014) 260px 261px);
}

.wrapper {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.narrow {
    width: min(920px, calc(100% - 2rem));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(230, 214, 188, 0.08);
    background:
        linear-gradient(180deg, rgba(5, 3, 3, 0.88), rgba(5, 3, 3, 0.64)),
        rgba(5, 3, 3, 0.72);
    backdrop-filter: blur(22px);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 147, 91, 0.46), transparent);
}

.page-home .site-header {
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent);
    backdrop-filter: none;
}

.page-home .site-header::after {
    content: none;
}

.page-home .site-main {
    padding-bottom: 0;
}

.page-subscription .site-main,
.page-contacts .site-main {
    min-height: calc(100vh - 78px);
    padding-bottom: 3.5rem;
}

.page-subscription .site-main::before,
.page-contacts .site-main::before,
.page-subscription .site-main::after,
.page-contacts .site-main::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.page-subscription .site-main::before,
.page-contacts .site-main::before {
    z-index: -2;
    background-image: url("../img/heartfall-fon.edb7d178c73f.png");
    background-size: cover;
    background-position: center center;
    filter: saturate(0.9) brightness(0.52);
    transform: scale(1.02);
}

.page-subscription .site-main::after,
.page-contacts .site-main::after {
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 34%, rgba(4, 2, 2, 0.12), rgba(0, 0, 0, 0.76) 72%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.82));
}

.header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.3rem;
    align-items: center;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-mark {
    position: relative;
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 auto;
    overflow: hidden;
    padding: 0.18rem;
    border: 1px solid rgba(213, 201, 196, 0.12);
    border-radius: 50%;
    background:
        radial-gradient(circle at 52% 38%, rgba(213, 201, 196, 0.08), transparent 38%),
        radial-gradient(circle at 50% 58%, rgba(122, 18, 26, 0.2), transparent 58%),
        rgba(9, 5, 5, 0.86);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.018),
        0 14px 34px rgba(0, 0, 0, 0.38);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 46%, transparent 46%, rgba(0, 0, 0, 0.38) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
    pointer-events: none;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: none;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 14px rgba(122, 18, 26, 0.16));
}

.brand-copy {
    display: grid;
    align-content: center;
    gap: 0.05rem;
    min-height: 2.65rem;
    min-width: 0;
    transform: translateY(0.05rem);
}

.brand-copy__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1;
    text-transform: uppercase;
}

.brand-copy__sub {
    color: var(--text-dim);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    min-width: 0;
}

.site-nav__link {
    position: relative;
    padding: 0.45rem 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    white-space: nowrap;
    transition: color var(--transition);
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08rem;
    height: 1px;
    background: var(--brass);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity var(--transition), transform var(--transition);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--text);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    opacity: 0.8;
    transform: scaleX(1);
}

.header-access {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    min-width: 0;
}

.server-copy {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 13.2rem;
    min-height: 46px;
    max-width: 250px;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(180, 147, 91, 0.24);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
        rgba(20, 15, 13, 0.86);
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.server-copy:hover,
.server-copy.is-copied {
    border-color: rgba(180, 147, 91, 0.54);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), transparent),
        rgba(28, 20, 17, 0.92);
}

.server-copy__caption,
.server-copy__status {
    color: var(--text-dim);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.server-copy strong {
    min-width: 0;
    overflow: hidden;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.server-copy__status {
    position: absolute;
    left: 50%;
    top: calc(100% + 0.32rem);
    z-index: 4;
    padding: 0.16rem 0.48rem;
    border: 1px solid rgba(180, 147, 91, 0.18);
    border-radius: 999px;
    color: var(--brass);
    background: rgba(8, 5, 5, 0.92);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -0.2rem);
    transition: opacity var(--transition), transform var(--transition);
    white-space: nowrap;
}

.server-copy.is-copied .server-copy__status {
    opacity: 1;
    transform: translate(-50%, 0);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(130, 27, 36, 0.56);
    border-radius: var(--radius-sm);
    color: #fff4ea;
    font-size: 0.9rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%),
        linear-gradient(135deg, rgba(130, 27, 36, 0.98), rgba(59, 11, 16, 0.98));
    box-shadow: 0 16px 42px rgba(59, 11, 16, 0.32);
}

.flash-stack {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
}

.page-flash-stack {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1rem;
}

.flash {
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(18, 13, 12, 0.92);
    color: var(--text);
    box-shadow: var(--shadow-md);
}

.flash-success {
    border-color: rgba(88, 176, 112, 0.42);
    color: #eaffee;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(88, 176, 112, 0.22), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 55%),
        rgba(10, 34, 22, 0.72);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        0 18px 54px rgba(0, 0, 0, 0.34),
        0 0 32px rgba(88, 176, 112, 0.1);
}

.site-main {
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
    padding-bottom: 3.5rem;
}

.section {
    padding-top: 4.8rem;
}

.section-kicker,
.caption {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.75rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-kicker {
    color: var(--brass);
}

.section-kicker::before {
    content: "";
    width: 1.8rem;
    height: 1px;
    background: linear-gradient(90deg, var(--brass), transparent);
}

.caption {
    color: var(--text-dim);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 0.98;
}

.muted-text {
    color: var(--text-soft);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    max-width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: center;
    overflow-wrap: anywhere;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

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

.button-primary {
    color: #fff6ee;
    border-color: rgba(180, 147, 91, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(135deg, rgba(130, 27, 36, 0.98), rgba(59, 11, 16, 0.98) 72%);
    box-shadow: 0 18px 54px rgba(59, 11, 16, 0.42);
}

.button-primary:hover {
    box-shadow: 0 22px 70px rgba(59, 11, 16, 0.54);
}

.button-secondary,
.button-ghost {
    color: var(--text);
    border-color: var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 44%),
        rgba(18, 13, 12, 0.72);
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.button-wide {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    color: var(--brass);
    font-size: 0.95rem;
}

.text-link::after {
    content: "";
    width: 1.4rem;
    height: 1px;
    background: currentColor;
}

.hero {
    min-height: 100vh;
    display: grid;
    align-items: stretch;
    padding: 0;
}

.hero-sanctum {
    position: relative;
    padding: 1px;
    border: 1px solid rgba(230, 214, 188, 0.08);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(180, 147, 91, 0.18), transparent 24%, rgba(130, 27, 36, 0.14) 72%, transparent),
        rgba(8, 5, 4, 0.78);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-sanctum--cover {
    width: 100%;
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    background: #020202;
    box-shadow: none;
}

.page-home .hero > .wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
}

.page-home .hero-sanctum {
    padding: 0;
}

.page-home .hero-sanctum::before,
.page-home .hero-sanctum::after {
    content: none;
}

.hero-cover__image,
.hero-cover__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-cover__image {
    object-fit: cover;
    object-position: center center;
    transform: scale(1.015);
}

.hero-cover__shade {
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 46%, rgba(122, 18, 26, 0.08), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0.68) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.18) 36%, rgba(0, 0, 0, 0.72) 74%, rgba(0, 0, 0, 0.98) 100%);
}

.hero-cover__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-cover__content > div {
    max-width: 74rem;
}

.hero-cover__stack {
    display: grid;
    justify-items: center;
}

.hero-title {
    margin-top: 1.2rem;
    color: #fff8f4;
    font-family: Impact, "Arial Black", var(--font-body);
    font-size: 9.5rem;
    font-weight: 900;
    line-height: 0.86;
    text-transform: uppercase;
    text-shadow:
        0 8px 38px rgba(0, 0, 0, 0.62),
        0 0 34px rgba(122, 18, 26, 0.32);
}

.hero-sanctum::before {
    content: "";
    position: absolute;
    inset: 1.1rem;
    border: 1px solid rgba(230, 214, 188, 0.04);
    border-radius: calc(var(--radius) - 8px);
    box-shadow:
        inset 0 0 0 1px rgba(138, 24, 32, 0.03),
        inset 0 0 90px rgba(138, 24, 32, 0.03);
    pointer-events: none;
}

.hero-sanctum::after {
    content: "";
    position: absolute;
    inset: 1px;
    pointer-events: none;
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, transparent 0 11%, rgba(180, 147, 91, 0.08) 11% 11.15%, transparent 11.15% 88.85%, rgba(180, 147, 91, 0.08) 88.85% 89%, transparent 89%),
        repeating-linear-gradient(0deg, transparent 0 56px, rgba(230, 214, 188, 0.024) 56px 57px);
    opacity: 0.75;
}

.hero-sanctum__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.64fr);
    gap: 2.75rem;
    align-items: stretch;
    padding: 1.1rem;
    background:
        radial-gradient(ellipse at 82% 28%, rgba(130, 27, 36, 0.2), transparent 36%),
        radial-gradient(ellipse at 10% 10%, rgba(180, 147, 91, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(15, 10, 9, 0.98), rgba(8, 5, 4, 0.98));
}

.hero-sanctum--cover .hero-sanctum__layout {
    display: block;
    min-height: 34rem;
    padding: 0;
    background: transparent;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 27rem;
    min-width: 0;
    padding: 3rem 2rem 2rem;
}

.hero-copy h1 {
    margin-top: 1.1rem;
    font-size: 5.35rem;
    line-height: 0.82;
    text-transform: uppercase;
    overflow-wrap: normal;
    white-space: nowrap;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.hero-copy__text {
    max-width: 34rem;
    margin-top: 1.35rem;
    color: var(--text-soft);
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero-cover__content .hero-copy__text {
    max-width: 47rem;
    margin-inline: auto;
    margin-top: 1.55rem;
    color: rgba(238, 232, 229, 0.86);
    font-size: 1.34rem;
    line-height: 1.45;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

.hero-cover__content .section-kicker {
    justify-content: center;
}

.hero-main-cta {
    min-width: 15rem;
    min-height: 4.15rem;
    margin-top: 2.15rem;
    border-radius: 999px;
    color: #130605;
    border-color: rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 48%),
        #eadfc6;
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.48),
        0 0 44px rgba(122, 18, 26, 0.34);
}

.hero-main-cta:hover {
    box-shadow:
        0 24px 68px rgba(0, 0, 0, 0.58),
        0 0 58px rgba(122, 18, 26, 0.42);
}

.hero-status-bar {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(120px, auto) minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    min-height: 5.7rem;
    padding: 1rem clamp(1.1rem, 4vw, 4rem);
    color: #fff8f2;
    background:
        linear-gradient(135deg, rgba(132, 20, 30, 0.98), rgba(62, 8, 13, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 -24px 70px rgba(0, 0, 0, 0.48);
}

.hero-status-bar__mark {
    display: grid;
    gap: 0.1rem;
    text-transform: uppercase;
}

.hero-status-bar__mark strong {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 0.9;
}

.hero-status-bar__mark span,
.hero-status-bar__copy span {
    color: rgba(255, 248, 242, 0.72);
    font-size: 0.78rem;
}

.hero-status-bar__copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.hero-status-bar__copy strong {
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.1;
}

.hero-status-bar__button {
    min-width: 12rem;
    color: #f9eee8;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 45%),
        rgba(3, 2, 2, 0.9);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.45rem;
}

.hero-facts span {
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(180, 147, 91, 0.18);
    border-radius: var(--radius-sm);
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.024);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero-visual {
    display: grid;
    gap: 1rem;
    align-content: stretch;
    padding: 1rem 1rem 1rem 0;
}

.hero-window,
.page-window {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(180, 147, 91, 0.16);
    border-radius: var(--radius);
    background:
        radial-gradient(ellipse at 50% 36%, rgba(130, 27, 36, 0.2), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
        rgba(12, 9, 8, 0.86);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.028), var(--shadow-md);
}

.hero-window {
    min-height: 27rem;
}

.page-window {
    min-height: 21rem;
}

.hero-window::before,
.page-window::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(230, 214, 188, 0.06);
    border-radius: var(--radius-sm);
    pointer-events: none;
}

.hero-window::after,
.page-window::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 147, 91, 0.42), transparent);
}

.seal-field {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.seal-field span {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid rgba(180, 147, 91, 0.1);
    border-radius: 50%;
}

.seal-field span:nth-child(2) {
    width: 56%;
    transform: rotate(45deg);
    border-radius: var(--radius);
}

.seal-field span:nth-child(3) {
    width: 40%;
    border-color: rgba(130, 27, 36, 0.22);
}

.relic-seal {
    position: relative;
    z-index: 1;
    width: min(100%, 290px);
    height: auto;
    filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.48));
}

.relic-seal--page {
    width: min(100%, 250px);
}

.relic-seal--offer {
    width: min(100%, 158px);
}

.hero-visual__note {
    max-width: 22rem;
    margin-left: auto;
    color: var(--text-dim);
    font-size: 0.9rem;
    text-align: right;
}

.hero-ledger {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(210px, auto) minmax(0, 0.9fr);
    gap: 1px;
    border-top: 1px solid rgba(230, 214, 188, 0.07);
    background: rgba(230, 214, 188, 0.08);
}

.hero-ledger > * {
    min-width: 0;
    padding: 1.25rem 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 48%),
        rgba(10, 7, 6, 0.94);
}

.hero-ledger__ip,
.hero-ledger__offer {
    display: grid;
    gap: 0.32rem;
    align-content: center;
}

.hero-ledger__ip strong,
.hero-ledger__offer strong,
.footer-ip-block strong,
.stone-note strong,
.price-monolith strong,
.receipt-item strong {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    font-family: var(--font-display);
    line-height: 1;
}

.hero-ledger__ip strong {
    font-size: 2.35rem;
}

.hero-ledger__offer strong {
    font-size: 2.15rem;
}

.hero-ledger__ip span:last-child,
.hero-ledger__offer span:last-child {
    color: var(--text-soft);
}

.hero-ledger__action {
    display: grid;
    gap: 0.45rem;
    align-content: center;
}

.copy-feedback {
    min-height: 1.1rem;
    color: var(--brass);
    font-size: 0.86rem;
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.72fr);
    gap: 2rem;
    align-items: end;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
}

.section-split h2,
.section-head h2 {
    margin-top: 0.95rem;
    max-width: 16ch;
    font-size: 4rem;
}

.section-split p {
    color: var(--text-soft);
}

.pillar-field {
    border-bottom: 1px solid var(--line);
}

.pillar-row {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 1.35rem;
    padding: 1.75rem 0;
    border-top: 1px solid var(--line);
}

.pillar-row__index {
    color: rgba(180, 147, 91, 0.72);
    font-family: var(--font-display);
    font-size: 2.55rem;
    line-height: 1;
}

.pillar-row__copy {
    display: grid;
    gap: 0.55rem;
}

.pillar-row__copy h3 {
    font-size: 2.35rem;
}

.pillar-row__copy p {
    max-width: 42rem;
    color: var(--text-soft);
}

.season-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(230, 214, 188, 0.08);
    box-shadow: var(--shadow-md);
}

.season-panel__copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 360px;
    padding: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 44%),
        rgba(12, 9, 8, 0.92);
}

.season-panel__copy--accent {
    background:
        radial-gradient(ellipse at 90% 10%, rgba(130, 27, 36, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 48%),
        rgba(17, 12, 10, 0.96);
}

.season-panel h2,
.stone-slab h2,
.strip-link h2,
.page-altar__copy h1,
.pathway-step__body h2,
.reliquary h2,
.contact-band h2 {
    font-size: 2.65rem;
}

.ritual-list,
.support-list,
.edict-list,
.stone-list {
    list-style: none;
    padding: 0;
}

.ritual-list {
    display: grid;
    gap: 0.85rem;
    counter-reset: ritual;
}

.ritual-list li {
    position: relative;
    padding-left: 2.1rem;
    color: var(--text-soft);
}

.ritual-list li::before {
    content: counter(ritual, decimal-leading-zero);
    counter-increment: ritual;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brass);
    font-size: 0.8rem;
}

.support-list,
.edict-list {
    display: grid;
    gap: 0.95rem;
}

.support-list li,
.edict-list li {
    padding-top: 0.95rem;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
}

.minimal-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(ellipse at 90% 10%, rgba(130, 27, 36, 0.14), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%),
        rgba(13, 10, 9, 0.9);
    box-shadow: var(--shadow-md);
}

.minimal-cta h2 {
    margin-top: 0.75rem;
    font-size: 2.35rem;
}

.minimal-cta p {
    color: var(--text-soft);
}

.stone-slab,
.stone-note,
.reliquary {
    position: relative;
    padding: 1.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 46%),
        radial-gradient(ellipse at 100% 0%, rgba(180, 147, 91, 0.08), transparent 32%),
        var(--surface-0);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.stone-slab::before,
.stone-note::before,
.reliquary::before,
.price-monolith::before,
.contact-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(135deg, transparent 0 28px, rgba(230, 214, 188, 0.02) 28px 29px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%);
}

.page-subscription .price-monolith::before,
.page-subscription .reliquary::before,
.page-contacts .stone-note::before,
.page-contacts .contact-tile::before {
    content: none;
}

.stone-slab > *,
.stone-note > *,
.reliquary > *,
.price-monolith > *,
.contact-tile > * {
    position: relative;
    z-index: 1;
}

.stone-slab {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stone-slab__lead,
.reliquary__note,
.field-help {
    color: var(--text-soft);
}

.contact-band {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line-strong);
}

.contact-band h2 {
    margin-top: 0.9rem;
    max-width: 18ch;
}

.contact-band__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem 1.2rem;
}

.contact-band__links a:not(.text-link) {
    color: var(--text-soft);
    transition: color var(--transition);
}

.contact-band__links a:not(.text-link):hover {
    color: var(--text);
}

.page-altar {
    padding-top: 5.4rem;
}

.page-subscription .page-altar,
.page-contacts .page-altar {
    padding-top: clamp(4.8rem, 7vw, 6.8rem);
}

.page-subscription .narrow {
    width: min(1080px, calc(100% - 2rem));
}

.page-altar__frame {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
    gap: 1.4rem;
    align-items: stretch;
    padding: 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(ellipse at 82% 18%, rgba(130, 27, 36, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 44%),
        rgba(10, 7, 6, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.page-altar__frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(230, 214, 188, 0.04);
    border-radius: var(--radius-sm);
    pointer-events: none;
}

.page-altar__frame--contacts {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
    gap: 1rem;
    padding: 1rem;
    border-color: rgba(242, 231, 228, 0.12);
    border-radius: 32px;
    background:
        radial-gradient(ellipse at 18% 0%, rgba(242, 231, 228, 0.055), transparent 34%),
        radial-gradient(ellipse at 88% 8%, rgba(122, 18, 26, 0.12), transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.036), transparent 50%),
        rgba(5, 4, 4, 0.42);
    -webkit-backdrop-filter: blur(26px) saturate(1.08);
    backdrop-filter: blur(26px) saturate(1.08);
    box-shadow:
        0 38px 130px rgba(0, 0, 0, 0.66),
        inset 0 1px 0 rgba(255, 255, 255, 0.052);
}

.page-altar__frame--contacts .contact-grid {
    grid-column: 1 / -1;
    position: relative;
    z-index: 1;
}

.page-contacts .page-altar__copy {
    min-height: 16.5rem;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border: 1px solid rgba(242, 231, 228, 0.08);
    border-radius: 24px;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(242, 231, 228, 0.045), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 56%),
        rgba(8, 7, 7, 0.34);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.18),
        0 18px 54px rgba(0, 0, 0, 0.24);
}

.page-contacts .page-altar__copy h1 {
    max-width: 16ch;
    font-size: clamp(2.45rem, 4.2vw, 3.45rem);
    line-height: 0.94;
}

.page-contacts .page-altar__copy p {
    max-width: 34rem;
    font-size: 1rem;
}

.contacts-layout {
    display: grid;
    gap: clamp(1.6rem, 3vw, 2.4rem);
    padding-bottom: 4.2rem;
}

.contacts-hero {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.contacts-hero .section-kicker {
    justify-content: center;
}

.contacts-hero h1 {
    max-width: 15ch;
    color: #fff8f4;
    font-family: var(--font-body);
    font-size: clamp(2.6rem, 5.2vw, 5rem);
    font-weight: 800;
    line-height: 0.94;
    text-shadow:
        0 18px 54px rgba(0, 0, 0, 0.72),
        0 0 34px rgba(122, 18, 26, 0.24);
}

.contacts-hero p {
    max-width: 43rem;
    color: rgba(242, 231, 228, 0.76);
    font-size: 1.02rem;
    line-height: 1.55;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.68);
}

.contacts-board {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 0.82rem;
    border: 1px solid rgba(242, 231, 228, 0.11);
    border-radius: 30px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(242, 231, 228, 0.04), transparent 44%),
        rgba(5, 4, 4, 0.34);
    box-shadow:
        0 38px 130px rgba(0, 0, 0, 0.66),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(26px) saturate(1.08);
    backdrop-filter: blur(26px) saturate(1.08);
}

.contact-card {
    --social: #d8c6b8;
    --social-glow: rgba(122, 18, 26, 0.18);
    position: relative;
    display: grid;
    align-content: end;
    gap: 0.48rem;
    min-height: 10rem;
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(242, 231, 228, 0.08);
    border-radius: 22px;
    color: var(--text);
    background:
        radial-gradient(ellipse at 100% 0%, var(--social-glow), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 52%),
        rgba(8, 7, 7, 0.3);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.016),
        0 14px 42px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

a.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(213, 201, 196, 0.24);
    background:
        radial-gradient(ellipse at 100% 0%, var(--social-glow), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 52%),
        rgba(8, 7, 7, 0.42);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.022),
        0 22px 64px rgba(0, 0, 0, 0.34);
}

.contact-card__icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(242, 231, 228, 0.12);
    border-radius: 999px;
    color: #fff7f1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 58%),
        var(--social);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 0 22px var(--social-glow);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.contact-card__icon svg {
    display: block;
    width: 1.08rem;
    height: 1.08rem;
    fill: currentColor;
}

.contact-card__icon--discord svg {
    transform: translateX(-0.075rem);
}

.contact-card--vk {
    --social: #4d6f96;
    --social-glow: rgba(77, 111, 150, 0.2);
}

.contact-card--telegram {
    --social: #2b89b8;
    --social-glow: rgba(43, 137, 184, 0.2);
}

.contact-card--youtube {
    --social: #9f1c28;
    --social-glow: rgba(159, 28, 40, 0.24);
}

.contact-card--discord {
    --social: #636d9f;
    --social-glow: rgba(99, 109, 159, 0.2);
}

.contact-card--tiktok {
    --social: #151112;
    --social-glow: rgba(242, 231, 228, 0.15);
}

.contact-card strong {
    min-width: 0;
    overflow-wrap: anywhere;
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 760;
    line-height: 1.05;
}

.contact-card > span:not(.caption):not(.contact-card__icon):not(.copy-feedback) {
    color: rgba(242, 231, 228, 0.58);
    font-size: 0.82rem;
}

.contact-card .caption {
    color: rgba(242, 231, 228, 0.48);
}

.contact-card.is-disabled {
    color: rgba(240, 229, 211, 0.56);
}

.page-altar__copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 1rem;
    min-height: 24rem;
    padding: 2.4rem 2rem;
}

.page-altar__copy h1 {
    max-width: 13ch;
    font-size: 4.55rem;
}

.page-altar__copy p {
    max-width: 40rem;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.page-altar__seal {
    position: relative;
    z-index: 1;
    display: grid;
}

.guide-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.5rem;
    align-items: start;
}

.pathway {
    position: relative;
    padding-left: 1.7rem;
}

.pathway::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    bottom: 0.7rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(180, 147, 91, 0.5), rgba(230, 214, 188, 0.05));
}

.pathway-step {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1.3rem;
    padding: 1.6rem 0;
    border-top: 1px solid var(--line);
}

.pathway-step:first-child {
    border-top: 0;
}

.pathway-step__index {
    color: rgba(180, 147, 91, 0.82);
    font-family: var(--font-display);
    font-size: 2.45rem;
    line-height: 1;
}

.pathway-step__body {
    display: grid;
    gap: 0.6rem;
}

.pathway-step__body p {
    max-width: 42rem;
    color: var(--text-soft);
}

.guide-sidebar {
    position: sticky;
    top: 6.4rem;
    display: grid;
    gap: 1rem;
}

.stone-note {
    display: grid;
    gap: 0.85rem;
}

.stone-note--ip {
    border-color: rgba(180, 147, 91, 0.22);
}

.stone-note strong {
    font-size: 1.75rem;
}

.stone-note p {
    color: var(--text-soft);
}

.stone-list {
    display: grid;
    gap: 0.78rem;
}

.stone-list li {
    position: relative;
    padding-left: 1.05rem;
    color: var(--text-soft);
}

.stone-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.33rem;
    height: 0.33rem;
    background: var(--brass);
    transform: rotate(45deg);
}

.page-altar__frame--offer {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.premium-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(242, 231, 228, 0.12);
    border-radius: 34px;
    background:
        radial-gradient(ellipse at 22% 0%, rgba(242, 231, 228, 0.05), transparent 34%),
        radial-gradient(ellipse at 78% 0%, rgba(122, 18, 26, 0.13), transparent 42%),
        rgba(5, 4, 4, 0.38);
    box-shadow:
        0 40px 140px rgba(0, 0, 0, 0.68),
        inset 0 1px 0 rgba(255, 255, 255, 0.052);
    -webkit-backdrop-filter: blur(26px) saturate(1.08);
    backdrop-filter: blur(26px) saturate(1.08);
    overflow: hidden;
}

.price-monolith {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 0.82rem;
    padding: 1.65rem;
    border: 1px solid rgba(180, 147, 91, 0.22);
    border-radius: var(--radius);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(130, 27, 36, 0.2), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 44%),
        rgba(16, 12, 10, 0.96);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.price-monolith__seal {
    display: flex;
    justify-content: center;
    padding-bottom: 0.3rem;
}

.price-monolith--premium {
    border: 1px solid rgba(242, 231, 228, 0.08);
    border-radius: 26px;
    min-height: 380px;
    padding: clamp(1.45rem, 3vw, 2.2rem);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(130, 27, 36, 0.14), transparent 44%),
        radial-gradient(ellipse at 0% 100%, rgba(180, 147, 91, 0.05), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 50%),
        rgba(8, 7, 7, 0.3);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.2),
        0 18px 56px rgba(0, 0, 0, 0.26);
}

.price-monolith--premium .price-monolith__seal {
    justify-content: flex-start;
}

.premium-logo {
    width: min(100%, 190px);
    height: auto;
    filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 26px rgba(122, 18, 26, 0.2));
}

.price-monolith strong {
    font-size: 3.75rem;
}

.price-monolith p,
.price-monolith span:last-child {
    color: var(--text-soft);
}

.offer-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 1.5rem;
    align-items: start;
}

.stone-slab--offer {
    min-height: 100%;
}

.reliquary {
    display: grid;
    gap: 1rem;
}

.reliquary--premium {
    border: 1px solid rgba(242, 231, 228, 0.08);
    border-radius: 26px;
    align-content: center;
    padding: clamp(1.45rem, 3vw, 2.35rem);
    background:
        radial-gradient(ellipse at 100% 0%, rgba(180, 147, 91, 0.055), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 50%),
        rgba(8, 7, 7, 0.32);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.2),
        0 18px 56px rgba(0, 0, 0, 0.24);
}

.purchase-form {
    display: grid;
    gap: 1.1rem;
    margin-top: 0.4rem;
}

.form-field {
    display: grid;
    gap: 0.55rem;
}

.form-field label {
    color: var(--text);
}

.form-field input {
    width: 100%;
    min-height: 3.35rem;
    padding: 0.88rem 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 48%),
        rgba(0, 0, 0, 0.24);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field input:focus {
    border-color: rgba(180, 147, 91, 0.48);
    box-shadow: 0 0 0 4px rgba(180, 147, 91, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.052), transparent 46%),
        rgba(255, 255, 255, 0.034);
}

.form-field.has-error input {
    border-color: rgba(240, 110, 92, 0.72);
    box-shadow:
        0 0 0 4px rgba(130, 27, 36, 0.16),
        0 14px 34px rgba(0, 0, 0, 0.24);
}

.form-errors,
.field-error {
    display: grid;
    gap: 0.4rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid rgba(240, 110, 92, 0.34);
    border-radius: 16px;
    color: #f0b9aa;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(130, 27, 36, 0.22), transparent 42%),
        rgba(14, 7, 7, 0.72);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.018),
        0 14px 34px rgba(0, 0, 0, 0.24);
    font-size: 0.9rem;
    line-height: 1.35;
}

.field-error--client {
    animation: error-pop 180ms ease;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.contact-grid--compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0;
}

.contact-tile {
    position: relative;
    display: grid;
    gap: 0.7rem;
    min-height: 220px;
    min-width: 0;
    align-content: end;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background:
        radial-gradient(ellipse at top right, rgba(180, 147, 91, 0.12), transparent 42%),
        rgba(13, 10, 9, 0.86);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-tile--compact {
    min-height: 6.75rem;
    align-content: end;
    gap: 0.45rem;
    padding: 1rem;
    border-radius: 22px;
    border-color: rgba(242, 231, 228, 0.08);
    background:
        radial-gradient(ellipse at 100% 0%, rgba(122, 18, 26, 0.09), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 50%),
        rgba(8, 7, 7, 0.3);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.018),
        0 14px 42px rgba(0, 0, 0, 0.24);
}

a.contact-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(180, 147, 91, 0.4);
    box-shadow: var(--shadow-lg);
}

.contact-tile.is-disabled {
    color: rgba(240, 229, 211, 0.58);
}

.contact-tile__mark {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    color: rgba(240, 229, 211, 0.08);
    font-family: var(--font-display);
    font-size: 5.2rem;
    line-height: 1;
}

.contact-tile--compact .contact-tile__mark {
    top: 0.62rem;
    right: 0.78rem;
    color: rgba(213, 201, 196, 0.075);
    font-size: 3.2rem;
}

.contact-tile strong {
    min-width: 0;
    overflow-wrap: anywhere;
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
}

.contact-tile--compact strong {
    font-size: 1.28rem;
}

.contact-tile span:last-child {
    color: var(--text-soft);
}

.contact-tile--vk,
.contact-tile--telegram,
.contact-tile--discord,
.contact-tile--tiktok,
.contact-tile--youtube,
.contact-tile--mail {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(122, 18, 26, 0.09), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 50%),
        rgba(8, 7, 7, 0.3);
}

.strip-list {
    display: grid;
    gap: 1rem;
}

.strip-link {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1.35rem 1.45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    box-shadow: var(--shadow-md);
}

.strip-link__copy {
    display: grid;
    gap: 0.35rem;
}

.strip-link__copy p {
    color: var(--text-soft);
}

.strip-link__arrow {
    color: var(--brass);
    font-size: 1.25rem;
}

.stone-slab--receipt {
    gap: 1.45rem;
}

.receipt-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
}

.receipt-grid--payment {
    padding-top: 0.2rem;
}

.receipt-item {
    display: grid;
    gap: 0.38rem;
    min-width: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.receipt-item strong {
    font-size: 1.45rem;
}

.site-footer {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding: 1rem 0 3.4rem;
    border-top: 1px solid rgba(230, 214, 188, 0.08);
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 147, 91, 0.42), transparent);
}

.footer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px minmax(0, 0.9fr);
    gap: 2rem;
    padding-top: 2rem;
}

.footer-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 2rem;
}

.footer-column {
    display: grid;
    gap: 0.8rem;
    align-content: start;
}

.footer-column h2 {
    font-size: 2.25rem;
}

.footer-copy {
    max-width: 28rem;
    color: var(--text-soft);
}

.footer-ip-block {
    display: grid;
    gap: 0.35rem;
}

.footer-ip-block strong {
    font-size: 1.75rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
}

.footer-links a {
    color: var(--text-soft);
    transition: color var(--transition);
}

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

.has-motion .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.has-motion .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.has-motion .delay-1 {
    transition-delay: 80ms;
}

.has-motion .delay-2 {
    transition-delay: 150ms;
}

@keyframes drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(1rem, -0.7rem, 0);
    }
}

@keyframes error-pop {
    from {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding: 0.75rem 0;
    }

    .site-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        order: 3;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .hero-sanctum__layout,
    .premium-panel,
    .season-panel,
    .guide-stage,
    .offer-stage,
    .footer-layout,
    .page-altar__frame,
    .page-altar__frame--offer {
        grid-template-columns: 1fr;
    }

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

    .hero-visual {
        padding: 0 1rem 1rem;
    }

    .guide-sidebar {
        position: static;
    }

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

    .contacts-board {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

}

@media (max-width: 900px) {
    .hero {
        min-height: 100svh;
        padding: 0;
    }

    .hero-sanctum--cover,
    .hero-sanctum--cover .hero-sanctum__layout,
    .hero-cover__content {
        min-height: 100svh;
    }

    .hero-sanctum::before {
        font-size: 6rem;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-copy h1 {
        font-size: 5rem;
    }

    .page-altar__copy h1 {
        font-size: 3.45rem;
    }

    .section-split {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .section-split h2,
    .section-head h2 {
        font-size: 3.15rem;
    }

    .hero-ledger,
    .receipt-grid {
        grid-template-columns: 1fr;
    }

    .contact-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-band__links {
        justify-content: flex-start;
    }

    .contacts-board {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(100%, 720px);
    }

    .minimal-cta {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-simple {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    body {
        padding: 0;
    }

    .site-shell {
        width: 100%;
        min-height: 100vh;
        border: 0;
        border-radius: 0;
    }

    body {
        font-size: 15px;
    }

    .wrapper,
    .narrow {
        width: min(100% - 1.25rem, 100%);
    }

    .header-inner {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        min-height: 0;
    }

    .brand {
        width: 100%;
    }

    .header-access {
        width: 100%;
        justify-content: stretch;
    }

    .server-copy {
        max-width: none;
        flex: 1 1 auto;
    }

    .header-cta {
        flex: 0 0 auto;
    }

    .site-nav {
        width: 100%;
        justify-content: center;
        gap: clamp(0.9rem, 5vw, 1.35rem);
        overflow-x: visible;
        padding-bottom: 0;
        text-align: center;
    }

    .hero-sanctum__layout,
    .page-altar__frame {
        padding: 0.7rem;
    }

    .hero-copy,
    .page-altar__copy,
    .season-panel__copy,
    .stone-slab,
    .stone-note,
    .reliquary,
    .reliquary--premium,
    .price-monolith {
        padding: 1.25rem;
    }

    .price-monolith--premium {
        min-height: 0;
    }

    .hero-copy h1 {
        font-size: 3.25rem;
    }

    .hero-cover__image {
        opacity: 1;
    }

    .hero-cover__shade {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16) 50%, rgba(0, 0, 0, 0.72)),
            linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.86));
    }

    .hero-cover__content {
        align-items: center;
        min-height: 100svh;
        padding: 2rem 1.25rem 2.2rem;
    }

    .hero-copy__text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 4.4rem;
    }

    .hero-main-cta {
        width: min(100%, 19rem);
        min-height: 3.65rem;
    }

    .hero-window {
        min-height: 23rem;
    }

    .page-window {
        min-height: 17rem;
    }

    .hero-ledger__ip strong,
    .hero-ledger__offer strong,
    .price-monolith strong {
        font-size: 2.25rem;
    }

    .section {
        padding-top: 3.6rem;
    }

    .section-split h2,
    .section-head h2,
    .season-panel h2,
    .stone-slab h2,
    .minimal-cta h2,
    .strip-link h2,
    .pathway-step__body h2,
    .reliquary h2,
    .contact-band h2 {
        font-size: 2.35rem;
    }

    .page-altar__copy h1 {
        font-size: 2.8rem;
    }

    .pillar-row,
    .pathway-step,
    .strip-link {
        grid-template-columns: 1fr;
    }

    .pathway {
        padding-left: 1rem;
    }

    .pillar-row__index,
    .pathway-step__index {
        font-size: 2.1rem;
    }

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

    .contacts-layout {
        gap: 1.35rem;
    }

    .contacts-board {
        grid-template-columns: 1fr;
        padding: 0.7rem;
        border-radius: 26px;
    }

    .contact-card {
        min-height: 9.5rem;
        border-radius: 20px;
    }

    .contact-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .contact-tile {
        min-height: 170px;
    }

    .contact-tile--compact {
        min-height: 6.4rem;
        padding: 0.85rem;
    }

    .contact-tile--compact strong {
        font-size: 1.08rem;
    }

    .hero-actions,
    .contact-band__links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .button,
    .contact-band__links .text-link {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .brand-copy__name {
        font-size: 1.12rem;
    }

    .brand-copy__sub {
        display: none;
    }

    .brand-mark {
        width: 2.45rem;
        height: 2.45rem;
        padding: 0.16rem;
    }

    .hero-copy h1 {
        font-size: 2.68rem;
    }

    .hero-title {
        font-size: 3.35rem;
    }

    .page-altar__copy h1 {
        font-size: 2.35rem;
    }

    .section-split h2,
    .season-panel h2,
    .stone-slab h2,
    .minimal-cta h2,
    .pathway-step__body h2,
    .reliquary h2,
    .contact-band h2 {
        font-size: 2.05rem;
    }

    .button {
        min-height: 3.1rem;
        padding-inline: 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .has-motion .reveal {
        opacity: 1;
        transform: none;
    }
}
