/* Polako Landing — 2026 */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.page {
    position: relative;
    min-height: 100dvh;
    padding-bottom: 140px;
}

/* Background */
.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 15% 0%, rgba(var(--purple-rgb), 0.22) 0%, transparent 58%),
        radial-gradient(ellipse 70% 55% at 88% 18%, rgba(var(--cyan-rgb), 0.12) 0%, transparent 52%),
        radial-gradient(ellipse 55% 45% at 70% 75%, rgba(var(--amber-rgb), 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 100% 70% at 50% 100%, rgba(var(--cyan-rgb), 0.07) 0%, transparent 50%),
        var(--bg-deep);
    z-index: -4;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -3;
    opacity: 0.85;
}

.bg-glow--1 {
    width: 480px;
    height: 480px;
    top: -140px;
    left: -120px;
    background: rgba(var(--purple-rgb), 0.18);
    animation: float 18s ease-in-out infinite;
}

.bg-glow--2 {
    width: 420px;
    height: 420px;
    top: 38%;
    right: -140px;
    background: rgba(var(--cyan-rgb), 0.1);
    animation: float 22s ease-in-out infinite reverse;
}

.bg-glow--warm {
    width: 360px;
    height: 360px;
    bottom: 18%;
    left: 20%;
    background: rgba(var(--amber-rgb), 0.09);
    animation: float 26s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(24px, 16px); }
}

/* Atmosphere — soft human presence */
.atmosphere {
    position: absolute;
    inset: 0 0 auto;
    height: min(92vh, 820px);
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.atmosphere__window {
    position: absolute;
    top: 12%;
    right: 8%;
    width: min(42vw, 380px);
    height: min(48vw, 420px);
    border-radius: 40% 40% 48% 48%;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(var(--amber-rgb), 0.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 45% 55%, rgba(255, 220, 180, 0.08) 0%, transparent 65%);
    filter: blur(28px);
    opacity: 0.7;
    animation: breathe 10s ease-in-out infinite;
}

.atmosphere__figure {
    position: absolute;
    bottom: 18%;
    width: 120px;
    height: 200px;
    border-radius: 50% 50% 40% 40%;
    filter: blur(22px);
    opacity: 0.35;
}

.atmosphere__figure--a {
    left: 18%;
    background: linear-gradient(180deg, rgba(var(--purple-rgb), 0.35) 0%, rgba(var(--amber-rgb), 0.15) 100%);
    animation: figureDrift 14s ease-in-out infinite;
}

.atmosphere__figure--b {
    left: 28%;
    width: 100px;
    height: 180px;
    background: linear-gradient(180deg, rgba(var(--cyan-rgb), 0.22) 0%, rgba(var(--purple-rgb), 0.12) 100%);
    animation: figureDrift 16s ease-in-out infinite reverse;
}

@keyframes breathe {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.04); }
}

@keyframes figureDrift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.lang-switch__form {
    display: inline;
    margin: 0;
}

.lang-switch__btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.45rem 0.7rem;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switch__btn:hover {
    color: var(--text);
}

.lang-switch__btn.is-active {
    color: #fff;
    background: var(--gradient);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
    opacity: 0.9;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
}

.icon-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

.icon-toggle svg {
    width: 20px;
    height: 20px;
}

.icon-toggle__on { display: none; }
.icon-toggle.is-active .icon-toggle__off { display: none; }
.icon-toggle.is-active .icon-toggle__on { display: block; }
.icon-toggle:not(.is-active) .icon-toggle__on { display: none; }
.icon-toggle:not(.is-active) .icon-toggle__off { display: block; }

.icon-toggle--cyan:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--cyan);
    border-color: rgba(var(--cyan-rgb), 0.28);
}

.icon-toggle--cyan.is-active {
    color: var(--cyan);
    border-color: rgba(var(--cyan-rgb), 0.35);
    box-shadow: 0 0 28px rgba(var(--cyan-rgb), 0.12);
}

/* Hero */
.hero {
    text-align: center;
    padding: 3.5rem 1.5rem 4rem;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__brand {
    font-family: var(--font-display);
    font-size: clamp(3rem, 11vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
    animation: heroIn 1.1s var(--ease-out) both;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 4.2vw, 2.15rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1rem;
    max-width: 22ch;
    animation: heroIn 1.1s var(--ease-out) 0.12s both;
}

.hero__offer {
    font-size: clamp(0.92rem, 2.5vw, 1.05rem);
    font-weight: 600;
    color: var(--cyan);
    max-width: 26rem;
    margin: 0 auto 1.75rem;
    padding: 0.55rem 1rem;
    border-radius: 100px;
    background: rgba(var(--cyan-rgb), 0.08);
    border: 1px solid rgba(var(--cyan-rgb), 0.22);
    animation: heroIn 1.1s var(--ease-out) 0.18s both;
}

.hero__cta-wrap {
    animation: heroIn 1.1s var(--ease-out) 0.22s both;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__whisper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    max-width: 28rem;
    margin-bottom: 1.75rem;
}

.hero__tagline {
    font-size: 1rem;
    color: var(--text-muted);
}

.hero__lead {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-style: italic;
}

.hero__lead .text-gradient {
    font-weight: 600;
    font-style: normal;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 2.1rem;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.btn--primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 28px rgba(var(--purple-rgb), 0.28);
}

.btn--primary:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 36px rgba(var(--purple-rgb), 0.36), 0 0 48px rgba(var(--cyan-rgb), 0.1);
    transform: scale(1.02);
}

.btn--primary:active {
    transform: scale(0.99);
    filter: brightness(0.98);
}

.btn--full {
    width: 100%;
    padding: 1rem 2rem;
}

.share-widget {
    text-align: center;
}

.share-widget__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
}

.share-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
}

.share-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 0.75rem;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.share-option svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.share-option:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.share-option--telegram { --share-accent: #2aabee; --share-accent-rgb: 42, 171, 238; }
.share-option--whatsapp { --share-accent: #25d366; --share-accent-rgb: 37, 211, 102; }
.share-option--vk { --share-accent: #4c75a3; --share-accent-rgb: 76, 117, 163; }
.share-option--x { --share-accent: #e7e9ea; --share-accent-rgb: 231, 233, 234; }
.share-option--email { --share-accent: var(--amber); --share-accent-rgb: var(--amber-rgb); }
.share-option--copy { --share-accent: var(--cyan); --share-accent-rgb: var(--cyan-rgb); }
.share-option--more { --share-accent: var(--purple); --share-accent-rgb: var(--purple-rgb); }

[class*="share-option--"]:hover {
    color: var(--share-accent);
    border-color: rgba(var(--share-accent-rgb), 0.35);
}

.subscribe__share {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.share-feedback {
    margin-top: 0.65rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cyan);
}

.share-feedback.is-visible {
    animation: tooltipIn 0.45s var(--ease-out) both;
}

.btn.is-loading .btn__text { opacity: 0; }
.btn.is-loading .btn__loader {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Manifesto */
.manifesto {
    max-width: 640px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.statement {
    text-align: center;
    padding: 0.5rem 0;
}

.statement__text {
    font-size: clamp(1.2rem, 3vw, 1.45rem);
    line-height: 1.65;
    color: var(--text-muted);
}

.statement__text strong {
    color: var(--text);
    font-weight: 600;
}

.statement--quiet .statement__text {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 34rem;
    margin: 0 auto;
}

.statement--glow {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
    background: var(--gradient-soft);
    border: 1px solid rgba(var(--purple-rgb), 0.18);
}

.statement--glow .statement__text {
    color: rgba(244, 240, 248, 0.78);
}

/* Manifesto divider replaces pause */
/* Triad */
.triad {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    margin: 1rem 0;
}

.triad__item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.35rem 0 0.35rem 1.25rem;
    border-left: 2px solid transparent;
    border-image: linear-gradient(180deg, rgba(var(--purple-rgb), 0.7), rgba(var(--cyan-rgb), 0.5)) 1;
}

.triad__less {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.triad__more {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
}

/* Closing beat */
.closing {
    text-align: center;
    padding: 2rem 1rem 0.5rem;
}

.closing__line {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.45rem);
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.closing__accent {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.closing__soft {
    font-size: 1rem;
    color: var(--text-dim);
}

/* Subscribe */
.subscribe {
    padding: 2.5rem 1.5rem 4rem;
    scroll-margin-top: 2rem;
}

.subscribe__inner {
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 2.85rem 2.15rem;
    backdrop-filter: blur(28px);
    background:
        linear-gradient(rgba(18, 10, 28, 0.72), rgba(18, 10, 28, 0.72)),
        var(--gradient-soft);
    border: 1px solid rgba(var(--purple-rgb), 0.35);
    box-shadow:
        0 0 0 1px rgba(var(--cyan-rgb), 0.08),
        0 16px 56px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(var(--purple-rgb), 0.18);
    position: relative;
}

.subscribe__ribbon {
    position: absolute;
    top: -1px;
    right: -1px;
    z-index: 2;
    max-width: 11rem;
    padding: calc(0.55rem + 1px) calc(1rem + 1px) 0.55rem 1.15rem;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-align: right;
    color: #fff;
    background: var(--gradient);
    border-bottom-left-radius: var(--radius);
    border-top-right-radius: var(--radius-lg);
    box-shadow: 0 6px 20px rgba(var(--purple-rgb), 0.32);
}

.subscribe__inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.55), rgba(var(--cyan-rgb), 0.35));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.subscribe__inner > :not(.subscribe__ribbon) {
    position: relative;
    z-index: 1;
}

.subscribe__title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 4vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.55rem;
}

.subscribe__desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.subscribe__perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.subscribe__perk {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.45rem 0.85rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form */
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: none;
}

.field__label,
legend.field__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    width: 100%;
    padding: 0 1.05rem;
    box-sizing: border-box;
}

.required {
    color: var(--cyan);
}

.field__input {
    width: 100%;
    padding: 0.9rem 1.05rem;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text);
    background-color: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    border-radius: var(--radius);
    outline: none;
    transition: var(--transition);
}

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

.field__input:focus {
    border-color: rgba(var(--cyan-rgb), 0.45);
    box-shadow: var(--focus-ring);
    background-color: rgba(0, 0, 0, 0.28);
}

.field__input.input-validation-error,
.field__input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: var(--error);
}

.field__textarea {
    resize: none;
    min-height: 90px;
    overflow-y: hidden;
    field-sizing: content;
}

.field__error,
.text-danger {
    font-size: 0.8rem;
    color: var(--error);
}

.form-message {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.form-message--error {
    background: rgba(255, 107, 138, 0.1);
    border: 1px solid rgba(255, 107, 138, 0.25);
    color: var(--error);
}

.form-reassure {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 0.35rem;
    line-height: 1.5;
}

.form-notice {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 0.35rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* Gender */
.gender-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gender-option {
    cursor: pointer;
}

.gender-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gender-option__pill {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    transition: var(--transition);
}

.gender-option input:checked + .gender-option__pill {
    color: #fff;
    background: var(--gradient);
    border-color: transparent;
    box-shadow: 0 2px 16px rgba(var(--purple-rgb), 0.28);
}

.gender-option:hover .gender-option__pill {
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.22);
}

/* Alert */
.alert {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    text-align: left;
}

.alert--success {
    background: rgba(var(--cyan-rgb), 0.08);
    border: 1px solid rgba(var(--cyan-rgb), 0.22);
}

.alert__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

.alert p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1.5rem 3rem;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Ocean waves */
.ocean {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    background-size: 50% 100%;
}

.wave--1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z' fill='rgba(10,221,233,0.05)'/%3E%3C/svg%3E");
    animation: wave 14s linear infinite;
    opacity: 0.7;
}

.wave--2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C200,20 400,100 600,50 C800,0 1000,80 1200,40 L1200,120 L0,120 Z' fill='rgba(122,23,170,0.06)'/%3E%3C/svg%3E");
    animation: wave 20s linear infinite reverse;
    opacity: 0.55;
}

.wave--3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C300,90 500,10 800,60 C950,85 1100,30 1200,70 L1200,120 L0,120 Z' fill='rgba(232,168,124,0.04)'/%3E%3C/svg%3E");
    animation: wave 26s linear infinite;
    opacity: 0.45;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.9s var(--ease-out),
        transform 0.9s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}

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

/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 100;
    pointer-events: none;
}

.progress-bar__fill {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--gradient);
    box-shadow: 0 0 12px rgba(var(--cyan-rgb), 0.4);
    transition: width 0.1s linear;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(var(--bg-deep-rgb), 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s var(--ease-out), opacity 0.35s ease;
}

.sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta__brand {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}

.btn--sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

/* Sound tooltip */
.sound-wrap {
    position: relative;
}

.sound-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    white-space: nowrap;
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(var(--bg-deep-rgb), 0.95);
    border: 1px solid rgba(var(--cyan-rgb), 0.28);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: tooltipIn 0.5s var(--ease-out) both;
    z-index: 10;
}

.sound-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 16px;
    width: 10px;
    height: 10px;
    background: rgba(var(--bg-deep-rgb), 0.95);
    border-left: 1px solid rgba(var(--cyan-rgb), 0.28);
    border-top: 1px solid rgba(var(--cyan-rgb), 0.28);
    transform: rotate(45deg);
}

@keyframes tooltipIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero eyebrow */
.hero__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    padding: 0.4rem 0.85rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(var(--cyan-rgb), 0.28);
    border-radius: 100px;
    background: rgba(var(--cyan-rgb), 0.06);
    animation: heroIn 1.1s var(--ease-out) both;
}

/* How it works */
.how {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 3rem;
}

.how__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.how__steps {
    display: grid;
    gap: 1.25rem;
}

.how__step {
    padding: 1.5rem 1.35rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.how__step:hover {
    border-color: rgba(var(--purple-rgb), 0.22);
    background: rgba(255, 255, 255, 0.045);
}

.how__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.85rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient);
    border-radius: 50%;
}

.how__step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.how__step-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Triad hover */
.triad__item {
    transition: var(--transition);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.triad__item:hover,
.triad__item:focus-within {
    padding-left: 1.5rem;
    background: rgba(255, 255, 255, 0.025);
}

.triad__item:hover .triad__less,
.triad__item:focus-within .triad__less {
    opacity: 0.55;
}

.triad__item:hover .triad__more,
.triad__item:focus-within .triad__more {
    color: var(--cyan);
    text-shadow: 0 0 24px rgba(var(--cyan-rgb), 0.25);
}

.triad__less {
    transition: opacity var(--transition);
}

.triad__more {
    transition: color var(--transition), text-shadow var(--transition);
}

/* FAQ */
.faq {
    max-width: 640px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 3rem;
}

.faq__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq__item {
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq__item[open] {
    border-color: rgba(var(--purple-rgb), 0.22);
}

.faq__question {
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dim);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
    color: var(--cyan);
}

.faq__answer {
    padding: 0 1.25rem 1.15rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.field__optional {
    font-weight: 400;
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Success celebration */
.success-celebrate {
    animation: successPop 0.7s var(--ease-out) both;
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    60% {
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-celebrate .alert__icon {
    animation: successIcon 0.6s var(--ease-out) 0.15s both;
}

@keyframes successIcon {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Confetti canvas */
.confetti {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 200;
}

/* Parallax layers */
.parallax-layer {
    will-change: transform;
}

@media (min-width: 768px) {
    .how__steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .sticky-cta {
        padding: 0.85rem 2rem;
    }

    .share-menu {
        grid-template-columns: repeat(3, 1fr);
    }

    .header {
        padding: 1.5rem 2rem;
    }

    .hero {
        padding: 4rem 2rem 4.5rem;
    }

    .manifesto {
        padding: 1rem 2rem 4.5rem;
        gap: 2rem;
    }

    .subscribe__inner {
        padding: 3rem 2.5rem;
    }

    .atmosphere__figure--a {
        left: 22%;
    }

    .atmosphere__figure--b {
        left: 32%;
    }
}

@media (max-width: 640px) {
    .atmosphere__figure {
        opacity: 0.22;
        left: 6% !important;
    }

    .atmosphere__figure--b {
        left: 18% !important;
    }

    .atmosphere__window {
        right: -5%;
        opacity: 0.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .hero__brand,
    .hero__title,
    .hero__offer,
    .hero__cta-wrap,
    .hero__eyebrow,
    .hero__whisper {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .parallax-layer {
        transform: none !important;
    }
}

/* Error page */
.page--centered {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.error-panel {
    max-width: 480px;
    text-align: center;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
}

.error-panel__title {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.error-panel__body {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.error-panel__meta {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.error-panel__meta--spaced {
    margin-top: 1rem;
}

.error-panel__cta {
    margin-top: 2rem;
}
