:root {
    --c-plum: #1C0B2B;
    --c-plum-90: rgba(28, 11, 43, .9);
    --c-plum-80: rgba(28, 11, 43, .8);
    --c-plum-60: rgba(28, 11, 43, .6);
    --c-plum-20: rgba(28, 11, 43, .2);
    --c-plum-light: #2a1040;
    --c-violet: #6A00F4;
    --c-violet-light: #8a30ff;
    --c-pink: #FF4FD8;
    --c-pink-light: #ff7fe3;
    --c-blue: #3A86FF;
    --c-blue-light: #6ba3ff;
    --c-cream: #FFF3E6;
    --c-cream-dark: #f5e6d5;
    --c-white: #ffffff;
    --c-text-on-dark: rgba(255, 243, 230, .85);
    --c-text-muted: rgba(255, 243, 230, .5);
    --c-text-dark: #1C0B2B;
    --c-text-dark-muted: rgba(28, 11, 43, .6);

    --grad-brand: linear-gradient(135deg, #6A00F4 0%, #FF4FD8 100%);
    --grad-cool: linear-gradient(135deg, #3A86FF 0%, #6A00F4 100%);
    --grad-warm: linear-gradient(135deg, #FF4FD8 0%, #3A86FF 100%);
    --grad-text: linear-gradient(135deg, #6A00F4 0%, #FF4FD8 55%, #3A86FF 100%);
    --grad-dark: linear-gradient(160deg, #1C0B2B 0%, #2a1040 100%);
    --grad-orb-v: radial-gradient(circle, rgba(106, 0, 244, .35) 0%, transparent 70%);
    --grad-orb-p: radial-gradient(circle, rgba(255, 79, 216, .25) 0%, transparent 70%);
    --grad-orb-b: radial-gradient(circle, rgba(58, 134, 255, .2) 0%, transparent 70%);

    --ff-display: 'Syne', system-ui, sans-serif;
    --ff-body: 'Inter', system-ui, sans-serif;

    --fs-xs: clamp(.7rem, 1.5vw, .8125rem);
    --fs-sm: clamp(.8125rem, 1.8vw, .9375rem);
    --fs-base: clamp(.9375rem, 2vw, 1.0625rem);
    --fs-lg: clamp(1rem, 2.2vw, 1.1875rem);
    --fs-xl: clamp(1.125rem, 2.5vw, 1.375rem);
    --fs-2xl: clamp(1.375rem, 3vw, 1.75rem);
    --fs-3xl: clamp(1.75rem, 3.5vw, 2.25rem);
    --fs-4xl: clamp(2.125rem, 4.5vw, 3rem);
    --fs-5xl: clamp(2.75rem, 6vw, 4.25rem);
    --fs-6xl: clamp(3.25rem, 7.5vw, 5.5rem);

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-black: 900;

    --lh-tight: 1.1;
    --lh-snug: 1.25;
    --lh-normal: 1.6;
    --lh-relaxed: 1.8;

    --sp-1: .25rem;
    --sp-2: .5rem;
    --sp-3: .75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-2xl: 48px;
    --r-full: 9999px;

    --sh-xs: 0 1px 4px rgba(28, 11, 43, .12);
    --sh-sm: 0 3px 12px rgba(28, 11, 43, .18);
    --sh-md: 0 8px 32px rgba(28, 11, 43, .22);
    --sh-lg: 0 20px 64px rgba(28, 11, 43, .3);
    --sh-xl: 0 40px 100px rgba(28, 11, 43, .4);
    --sh-violet: 0 8px 40px rgba(106, 0, 244, .45);
    --sh-pink: 0 8px 40px rgba(255, 79, 216, .38);
    --sh-blue: 0 8px 40px rgba(58, 134, 255, .35);

    --glass-bg: rgba(255, 255, 255, .06);
    --glass-bg-h: rgba(255, 255, 255, .1);
    --glass-border: rgba(255, 255, 255, .1);
    --glass-border-h: rgba(255, 255, 255, .2);
    --glass-blur: blur(20px);

    --t-fast: 150ms ease;
    --t-base: 260ms ease;
    --t-slow: 420ms ease;
    --t-spring: 420ms cubic-bezier(.34, 1.56, .64, 1);

    --header-h: 72px;
    --container-max: 1280px;
    --container-pad: clamp(1rem, 4vw, 2.5rem);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--c-text-dark);
    background: var(--c-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.container--narrow {
    max-width: 800px;
}

.container--wide {
    max-width: 1440px;
}

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

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

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

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

.section {
    position: relative;
    padding: var(--sp-24) 0;
    overflow: hidden;
}

.section--sm {
    padding: var(--sp-16) 0;
}

.section--lg {
    padding: var(--sp-32) 0;
}

.section--dark {
    background: var(--grad-dark);
    color: var(--c-cream);
}

.section--cream {
    background: var(--c-cream);
    color: var(--c-text-dark);
}

.section--plum {
    background: var(--c-plum);
    color: var(--c-cream);
}

.section--white {
    background: var(--c-white);
    color: var(--c-text-dark);
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-violet);
    margin-bottom: var(--sp-4);
}

.section__label--light {
    color: var(--c-pink-light);
}

.section__label i {
    font-size: 1em;
}

.section__heading {
    font-family: var(--ff-display);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-black);
    line-height: var(--lh-tight);
    margin-bottom: var(--sp-5);
}

.section__sub {
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    opacity: .8;
    max-width: 600px;
}

.section__header {
    margin-bottom: var(--sp-16);
}

.section__header--center {
    text-align: center;
}

.section__header--center .section__sub {
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-slow);
}

.site-header--scrolled {
    background: var(--c-plum-90);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 1px 0 var(--glass-border), var(--sh-md);
}

.site-header--hidden {
    transform: translateY(-100%);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: var(--sp-6);
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-shrink: 0;
    z-index: 10;
}

.brand__mark {
    width: 36px;
    height: 36px;
    border-radius: var(--r-md);
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--sh-violet);
}

.brand__name {
    font-family: var(--ff-display);
    font-weight: var(--fw-black);
    font-size: 12px;
    color: var(--c-cream);
    letter-spacing: -.02em;
    white-space: nowrap;
}

.brand__name span {
    color: var(--c-pink);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
}

.nav__link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--c-text-on-dark);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--r-full);
    transition: color var(--t-fast), background var(--t-fast);
}

.nav__link:hover,
.nav__link--active {
    color: var(--c-cream);
    background: var(--glass-bg-h);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--c-white);
    background: var(--grad-brand);
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--r-full);
    transition: opacity var(--t-fast), transform var(--t-fast), box-shadow var(--t-base);
    box-shadow: var(--sh-violet);
    white-space: nowrap;
}

.nav__cta:hover {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 12px 40px rgba(106, 0, 244, .5);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    gap: 5px;
    z-index: 10;
    transition: background var(--t-fast);
}

.nav__toggle:hover {
    background: var(--glass-bg-h);
}

.nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--c-cream);
    border-radius: 2px;
    transition: transform var(--t-base), opacity var(--t-base);
}

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

.nav__toggle--active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--c-plum-80);
    z-index: 99;
    opacity: 0;
    transition: opacity var(--t-base);
}

.nav__overlay--visible {
    opacity: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-h) + var(--sp-12));
    padding-bottom: var(--sp-20);
    background: var(--grad-dark);
    color: var(--c-cream);
    position: relative;
    overflow: hidden;
}

.hero--split .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;
}

.hero--center .hero__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero--center .hero__actions {
    justify-content: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-pink-light);
    background: rgba(255, 79, 216, .12);
    border: 1px solid rgba(255, 79, 216, .25);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--r-full);
    margin-bottom: var(--sp-6);
}

.hero__badge i {
    font-size: 1em;
}

.hero__heading {
    font-family: var(--ff-display);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-black);
    line-height: var(--lh-tight);
    letter-spacing: -.03em;
    margin-bottom: var(--sp-6);
    color: var(--c-cream);
}

.hero__sub {
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    color: var(--c-text-on-dark);
    margin-bottom: var(--sp-10);
    max-width: 540px;
}

.hero--center .hero__sub {
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-4);
}

.hero__disclaimer {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    margin-top: var(--sp-6);
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
}

.hero__disclaimer i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--c-blue-light);
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__visual--photo {
    align-items: center;
    min-height: 420px;
}

.hero__photo {
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--sh-lg), 0 0 60px rgba(106, 0, 244, .25);
}

.hero__photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(28, 11, 43, .7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(106, 0, 244, .15) 0%, transparent 50%, rgba(255, 79, 216, .12) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__photo-accent {
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--r-xl) + 2px);
    background: var(--grad-brand);
    z-index: -1;
    opacity: .35;
}

.hero__photo-card {
    position: absolute;
    bottom: var(--sp-6);
    left: calc(-1 * var(--sp-6));
    z-index: 2;
    max-width: 300px;
    box-shadow: var(--sh-xl);
}

.hero__photo-floats {
    position: absolute;
    bottom: var(--sp-8);
    right: calc(-1 * var(--sp-4));
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    width: min(280px, 88%);
    z-index: 2;
}

.hero__float-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    padding: var(--sp-4) var(--sp-5);
    color: var(--c-cream);
    box-shadow: var(--sh-md);
}

.hero__float-card__head {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-2);
}

.hero__float-card__head strong {
    font-size: var(--fs-sm);
}

.hero__float-card p {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    line-height: var(--lh-normal);
}

.hero__float-card .card__icon {
    width: 40px;
    height: 40px;
    margin: 0;
    flex-shrink: 0;
}

.hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    margin-bottom: var(--sp-6);
}

.hero__breadcrumb a {
    color: var(--c-text-muted);
    transition: color var(--t-fast);
}

.hero__breadcrumb a:hover {
    color: var(--c-cream);
}

.hero__breadcrumb i {
    font-size: .7em;
}

.stats-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    width: 100%;
    max-width: 340px;
}

.stats-card__title {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: var(--sp-6);
}

.stats-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

.stats-card__item {
    padding: var(--sp-4);
    background: var(--glass-bg);
    border-radius: var(--r-md);
    border: 1px solid var(--glass-border);
}

.stats-card__value {
    font-family: var(--ff-display);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-black);
    color: var(--c-cream);
    line-height: 1;
    margin-bottom: var(--sp-1);
}

.stats-card__value span {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card__label {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    line-height: 1.3;
}

.stats-card__bar {
    margin-top: var(--sp-6);
}

.stats-card__bar-label {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    margin-bottom: var(--sp-2);
}

.stats-card__bar-label strong {
    color: var(--c-cream);
}

.stats-card__track {
    height: 6px;
    background: var(--glass-bg-h);
    border-radius: var(--r-full);
    overflow: hidden;
}

.stats-card__fill {
    height: 100%;
    background: var(--grad-brand);
    border-radius: var(--r-full);
    width: 94%;
}

.orb-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: var(--r-full);
    filter: blur(80px);
    pointer-events: none;
}

.orb--violet {
    background: rgba(106, 0, 244, .3);
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
}

.orb--pink {
    background: rgba(255, 79, 216, .2);
    width: clamp(200px, 35vw, 450px);
    height: clamp(200px, 35vw, 450px);
}

.orb--blue {
    background: rgba(58, 134, 255, .2);
    width: clamp(250px, 40vw, 500px);
    height: clamp(250px, 40vw, 500px);
}

.orb--1 {
    top: -15%;
    left: -10%;
}

.orb--2 {
    top: 30%;
    right: -15%;
}

.orb--3 {
    bottom: -20%;
    left: 30%;
}

.orb--4 {
    top: 50%;
    right: 5%;
}

.orb--5 {
    bottom: 10%;
    right: -10%;
}

.section__content {
    position: relative;
    z-index: 1;
}

.trust-bar {
    padding: var(--sp-8) 0;
    background: var(--c-cream-dark);
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-6);
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--c-text-dark);
    padding: var(--sp-3) var(--sp-5);
    background: var(--c-white);
    border-radius: var(--r-full);
    box-shadow: var(--sh-xs);
}

.trust-badge i {
    color: var(--c-violet);
    font-size: 1.1em;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: var(--sp-6);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: var(--sp-6);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    align-items: center;
}

.card {
    padding: var(--sp-8);
    border-radius: var(--r-xl);
    transition: transform var(--t-base), box-shadow var(--t-base);
}

.card:hover {
    transform: translateY(-4px);
}

.card--glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--c-cream);
}

.card--glass:hover {
    background: var(--glass-bg-h);
    border-color: var(--glass-border-h);
    box-shadow: var(--sh-lg);
}

.card--light {
    background: var(--c-white);
    border: 1px solid rgba(28, 11, 43, .08);
    box-shadow: var(--sh-sm);
    color: var(--c-text-dark);
}

.card--light:hover {
    box-shadow: var(--sh-md);
}

.card--outline {
    background: transparent;
    border: 1px solid rgba(106, 0, 244, .25);
    color: var(--c-text-dark);
}

.card--outline:hover {
    border-color: var(--c-violet);
    background: rgba(106, 0, 244, .04);
    box-shadow: 0 4px 24px rgba(106, 0, 244, .12);
}

.card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: var(--sp-6);
    flex-shrink: 0;
}

.card__icon--violet {
    background: rgba(106, 0, 244, .15);
    color: var(--c-violet-light);
}

.card__icon--pink {
    background: rgba(255, 79, 216, .15);
    color: var(--c-pink-light);
}

.card__icon--blue {
    background: rgba(58, 134, 255, .15);
    color: var(--c-blue-light);
}

.card__icon--gradient {
    background: var(--grad-brand);
    color: var(--c-white);
    box-shadow: var(--sh-violet);
}

.card__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
    opacity: .6;
}

.card__heading {
    font-family: var(--ff-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    margin-bottom: var(--sp-3);
}

.card__body {
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    opacity: .75;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--c-violet-light);
    margin-top: var(--sp-5);
    transition: gap var(--t-fast);
}

.card--light .card__link {
    color: var(--c-violet);
}

.card__link:hover {
    gap: var(--sp-3);
}

.card__tag {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--r-full);
    background: rgba(106, 0, 244, .15);
    color: var(--c-violet-light);
    margin-bottom: var(--sp-4);
}

.card--light .card__tag {
    background: rgba(106, 0, 244, .1);
    color: var(--c-violet);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    padding: var(--sp-4) var(--sp-8);
    border-radius: var(--r-full);
    transition: transform var(--t-fast), box-shadow var(--t-base), opacity var(--t-fast);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    text-decoration: none;
}

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

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--grad-brand);
    color: var(--c-white);
    box-shadow: var(--sh-violet);
}

.btn--primary:hover {
    box-shadow: 0 16px 48px rgba(106, 0, 244, .5);
    opacity: .95;
}

.btn--ghost {
    background: transparent;
    color: var(--c-cream);
    border: 1.5px solid var(--glass-border-h);
}

.btn--ghost:hover {
    background: var(--glass-bg);
    border-color: rgba(255, 255, 255, .3);
}

.btn--outline {
    background: transparent;
    color: var(--c-violet);
    border: 1.5px solid var(--c-violet);
}

.btn--outline:hover {
    background: var(--c-violet);
    color: var(--c-white);
    box-shadow: var(--sh-violet);
}

.btn--light {
    background: var(--c-white);
    color: var(--c-violet);
    box-shadow: var(--sh-sm);
}

.btn--light:hover {
    box-shadow: var(--sh-md);
}

.btn--sm {
    font-size: var(--fs-xs);
    padding: var(--sp-3) var(--sp-5);
}

.btn--lg {
    font-size: var(--fs-base);
    padding: var(--sp-5) var(--sp-10);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;
}

.split-section__visual {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
}

.visual-block {
    border-radius: var(--r-2xl);
    background: var(--grad-dark);
    border: 1px solid var(--glass-border);
    padding: var(--sp-8);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.visual-block--light {
    background: var(--c-white);
    border-color: rgba(28, 11, 43, .08);
    box-shadow: var(--sh-md);
}

.visual-block__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(106, 0, 244, .1) 1px, transparent 1px);
    background-size: 24px 24px;
}

.visual-block__content {
    position: relative;
    z-index: 1;
}

.visual-block__orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--grad-orb-v);
    top: -60px;
    right: -60px;
    filter: blur(50px);
}

.visual-metric {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    padding: var(--sp-4);
    backdrop-filter: var(--glass-blur);
}

.visual-metric--light {
    background: var(--c-cream);
    border-color: rgba(28, 11, 43, .08);
}

.visual-metric__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    font-size: 1rem;
    flex-shrink: 0;
}

.visual-metric__text strong {
    display: block;
    font-family: var(--ff-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-black);
    line-height: 1;
    margin-bottom: 2px;
}

.visual-metric__text span {
    font-size: var(--fs-xs);
    opacity: .65;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
}

.feature-item__icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    background: rgba(106, 0, 244, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-violet-light);
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.section--dark .feature-item__icon {
    background: rgba(255, 79, 216, .15);
    color: var(--c-pink-light);
}

.feature-item__text strong {
    display: block;
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--sp-1);
}

.feature-item__text p {
    font-size: var(--fs-sm);
    opacity: .7;
    line-height: var(--lh-relaxed);
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: var(--sp-5);
}

.number-item {
    padding: var(--sp-6);
    border-radius: var(--r-xl);
    position: relative;
}

.number-item--glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--c-cream);
}

.number-item--light {
    background: var(--c-white);
    border: 1px solid rgba(28, 11, 43, .07);
    box-shadow: var(--sh-sm);
    color: var(--c-text-dark);
}

.number-item__num {
    font-family: var(--ff-display);
    font-size: var(--fs-6xl);
    font-weight: var(--fw-black);
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--sp-4);
    opacity: .25;
}

.number-item__heading {
    font-family: var(--ff-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--sp-2);
}

.number-item__body {
    font-size: var(--fs-sm);
    opacity: .7;
    line-height: var(--lh-relaxed);
}

.stats-band {
    padding: var(--sp-20) 0;
    background: var(--c-plum);
    color: var(--c-cream);
    position: relative;
    overflow: hidden;
}

.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
    gap: var(--sp-6);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: var(--sp-6);
    border-radius: var(--r-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.stat-item__value {
    font-family: var(--ff-display);
    font-size: var(--fs-5xl);
    font-weight: var(--fw-black);
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--sp-2);
}

.stat-item__suffix {
    font-size: var(--fs-2xl);
}

.stat-item__label {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    line-height: var(--lh-snug);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--c-violet), var(--c-pink));
    opacity: .3;
}

.timeline__item {
    display: flex;
    gap: var(--sp-6);
    padding-bottom: var(--sp-10);
    position: relative;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__step {
    width: 56px;
    height: 56px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: var(--fs-base);
    font-weight: var(--fw-black);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline__step--violet {
    background: rgba(106, 0, 244, .15);
    color: var(--c-violet-light);
    border: 2px solid rgba(106, 0, 244, .3);
}

.timeline__step--pink {
    background: rgba(255, 79, 216, .15);
    color: var(--c-pink-light);
    border: 2px solid rgba(255, 79, 216, .3);
}

.timeline__step--blue {
    background: rgba(58, 134, 255, .15);
    color: var(--c-blue-light);
    border: 2px solid rgba(58, 134, 255, .3);
}

.timeline__content {
    padding-top: var(--sp-3);
}

.timeline__title {
    font-family: var(--ff-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--sp-2);
}

.timeline__text {
    font-size: var(--fs-sm);
    opacity: .75;
    line-height: var(--lh-relaxed);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.faq__item {
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: box-shadow var(--t-base);
}

.faq__item--glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.faq__item--light {
    background: var(--c-white);
    border: 1px solid rgba(28, 11, 43, .08);
    box-shadow: var(--sh-xs);
}

.faq__item--open.faq__item--light {
    box-shadow: var(--sh-sm);
    border-color: rgba(106, 0, 244, .2);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    width: 100%;
    padding: var(--sp-6) var(--sp-6);
    text-align: left;
    cursor: pointer;
    color: inherit;
    transition: background var(--t-fast);
}

.faq__item--glass .faq__question:hover {
    background: var(--glass-bg-h);
}

.faq__item--light .faq__question:hover {
    background: rgba(106, 0, 244, .03);
}

.faq__q-text {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-snug);
}

.faq__icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-full);
    background: var(--glass-bg-h);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-violet-light);
    flex-shrink: 0;
    transition: transform var(--t-base), background var(--t-base);
}

.faq__item--light .faq__icon {
    background: rgba(106, 0, 244, .1);
    color: var(--c-violet);
}

.faq__item--open .faq__icon {
    transform: rotate(45deg);
    background: var(--grad-brand);
    color: var(--c-white);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow);
}

.faq__answer-inner {
    padding: 0 var(--sp-6) var(--sp-6);
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    opacity: .75;
}

.tabs__nav {
    display: flex;
    gap: var(--sp-2);
    flex-wrap: wrap;
    margin-bottom: var(--sp-8);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: var(--sp-2);
    border-radius: var(--r-full);
    width: fit-content;
}

.tabs__nav--light {
    background: rgba(28, 11, 43, .06);
    border-color: rgba(28, 11, 43, .1);
}

.tab {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    padding: var(--sp-3) var(--sp-5);
    border-radius: var(--r-full);
    color: var(--c-text-muted);
    transition: background var(--t-fast), color var(--t-fast);
    cursor: pointer;
    border: none;
    background: none;
}

.tabs__nav--light .tab {
    color: var(--c-text-dark-muted);
}

.tab--active {
    background: var(--grad-brand);
    color: var(--c-white);
    box-shadow: var(--sh-violet);
}

.panel {
    display: none;
}

.panel--active {
    display: block;
    animation: fadeInUp var(--t-base) ease;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: var(--sp-5);
    align-items: start;
}

.testimonial {
    padding: var(--sp-8);
    border-radius: var(--r-xl);
}

.testimonial--glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--c-cream);
}

.testimonial--light {
    background: var(--c-white);
    border: 1px solid rgba(28, 11, 43, .08);
    box-shadow: var(--sh-sm);
}

.testimonial__stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-4);
}

.testimonial__quote {
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-6);
    opacity: .85;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: var(--fw-black);
    font-size: var(--fs-sm);
    color: var(--c-white);
    flex-shrink: 0;
}

.testimonial__name {
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    line-height: 1.2;
}

.testimonial__role {
    font-size: var(--fs-xs);
    opacity: .55;
}

.cta-band {
    padding: var(--sp-24) 0;
    background: var(--grad-brand);
    color: var(--c-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='white' opacity='.15'/%3E%3C/svg%3E");
    background-size: 30px 30px;
}

.cta-band .section__heading {
    color: var(--c-white);
}

.cta-band .section__sub {
    color: rgba(255, 255, 255, .85);
    margin: 0 auto var(--sp-10);
}

.cta-band__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--sp-4);
}

.site-footer {
    background: var(--c-plum);
    color: var(--c-text-on-dark);
    padding: var(--sp-20) 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    padding-bottom: var(--sp-16);
    border-bottom: 1px solid var(--glass-border);
}

.footer__brand {
    max-width: 320px;
}

.footer__brand .brand__name {
    font-size: var(--fs-2xl);
    display: block;
    margin-bottom: var(--sp-4);
}

.footer__desc {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-6);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
}

.footer__contact-item i {
    color: var(--c-violet-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__contact-item a {
    color: var(--c-text-muted);
    transition: color var(--t-fast);
}

.footer__contact-item a:hover {
    color: var(--c-cream);
}

.footer__col-title {
    font-family: var(--ff-display);
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    color: var(--c-cream);
    margin-bottom: var(--sp-5);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer__link {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    transition: color var(--t-fast);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.footer__link:hover {
    color: var(--c-cream);
}

.footer__bottom {
    padding: var(--sp-6) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-4);
}

.footer__copy {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
}

.footer__policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
}

.footer__policy-link {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    transition: color var(--t-fast);
}

.footer__policy-link:hover {
    color: var(--c-cream);
}

.footer__disclaimer {
    padding: var(--sp-5) 0;
    border-top: 1px solid var(--glass-border);
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    line-height: var(--lh-relaxed);
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    transform: translateY(110%);
    transition: transform var(--t-slow);
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    background: var(--c-plum-90);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: var(--sp-5) var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-4);
    max-width: 100%;
}

.cookie-banner__text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner__text strong {
    display: block;
    color: var(--c-cream);
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-1);
}

.cookie-banner__text p {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    line-height: var(--lh-relaxed);
}

.cookie-banner__text a {
    color: var(--c-violet-light);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.cookie-btn {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    padding: var(--sp-3) var(--sp-5);
    border-radius: var(--r-full);
    cursor: pointer;
    border: none;
    transition: transform var(--t-fast), opacity var(--t-fast), box-shadow var(--t-base);
    white-space: nowrap;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn--accept {
    background: var(--grad-brand);
    color: var(--c-white);
    box-shadow: var(--sh-violet);
}

.cookie-btn--reject {
    background: var(--glass-bg-h);
    color: var(--c-cream);
    border: 1px solid var(--glass-border);
}

.cookie-btn--settings {
    background: none;
    color: var(--c-text-muted);
    text-decoration: underline;
}

.cookie-settings {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--sp-4);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--t-base);
}

.cookie-settings--visible {
    pointer-events: all;
    opacity: 1;
}

.cookie-settings__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 11, 43, .7);
    backdrop-filter: blur(4px);
}

.cookie-settings__panel {
    position: relative;
    z-index: 1;
    background: #20103a;
    border: 1px solid var(--glass-border-h);
    border-radius: var(--r-2xl) var(--r-2xl) var(--r-xl) var(--r-xl);
    padding: var(--sp-8);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform var(--t-slow);
}

.cookie-settings--visible .cookie-settings__panel {
    transform: translateY(0);
}

.cookie-settings__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-6);
}

.cookie-settings__title {
    font-family: var(--ff-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--c-cream);
}

.cookie-settings__close {
    width: 36px;
    height: 36px;
    border-radius: var(--r-full);
    background: var(--glass-bg-h);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: background var(--t-fast), color var(--t-fast);
}

.cookie-settings__close:hover {
    background: rgba(255, 79, 216, .2);
    color: var(--c-cream);
}

.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-5);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    margin-bottom: var(--sp-3);
}

.cookie-category__info strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--c-cream);
    margin-bottom: 2px;
}

.cookie-category__info span {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-switch__track {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    border-radius: var(--r-full);
    cursor: pointer;
    transition: background var(--t-base);
}

.toggle-switch input:checked~.toggle-switch__track {
    background: var(--grad-brand);
}

.toggle-switch input:disabled~.toggle-switch__track {
    opacity: .5;
    cursor: not-allowed;
}

.toggle-switch__thumb {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: var(--c-white);
    border-radius: var(--r-full);
    transition: transform var(--t-base);
    pointer-events: none;
}

.toggle-switch input:checked~.toggle-switch__track~.toggle-switch__thumb,
.toggle-switch input:checked+.toggle-switch__track+.toggle-switch__thumb {
    transform: translateX(20px);
}

.cookie-settings__save {
    width: 100%;
    margin-top: var(--sp-6);
    padding: var(--sp-4);
    background: var(--grad-brand);
    color: var(--c-white);
    border: none;
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    box-shadow: var(--sh-violet);
    transition: opacity var(--t-fast), transform var(--t-fast);
}

.cookie-settings__save:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.form__grid {
    display: grid;
    gap: var(--sp-5);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.form__label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--c-text-dark);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: var(--sp-4) var(--sp-5);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--c-text-dark);
    background: var(--c-white);
    border: 1.5px solid rgba(28, 11, 43, .15);
    border-radius: var(--r-md);
    outline: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(28, 11, 43, .35);
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--c-violet);
    box-shadow: 0 0 0 3px rgba(106, 0, 244, .12);
}

.form__textarea {
    resize: vertical;
    min-height: 140px;
}

.form__field--error .form__input,
.form__field--error .form__textarea {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, .1);
}

.form__field--valid .form__input,
.form__field--valid .form__textarea {
    border-color: #38a169;
}

.form__error {
    font-size: var(--fs-xs);
    color: #e53e3e;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    gap: var(--sp-1);
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    cursor: pointer;
}

.form__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: var(--r-sm);
    border: 1.5px solid rgba(28, 11, 43, .25);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background var(--t-fast), border-color var(--t-fast);
    position: relative;
}

.form__checkbox input[type="checkbox"]:checked {
    background: var(--c-violet);
    border-color: var(--c-violet);
}

.form__checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.form__checkbox-label {
    font-size: var(--fs-sm);
    color: var(--c-text-dark);
    line-height: var(--lh-relaxed);
}

.form__checkbox-label a {
    color: var(--c-violet);
    text-decoration: underline;
}

.form__submit {
    margin-top: var(--sp-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.contact-info__item {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-lg);
    background: rgba(106, 0, 244, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-violet);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-text-dark-muted);
    margin-bottom: var(--sp-1);
}

.contact-info__value {
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    color: var(--c-text-dark);
    line-height: var(--lh-snug);
}

.contact-info__value a {
    color: var(--c-violet);
    transition: opacity var(--t-fast);
}

.contact-info__value a:hover {
    opacity: .8;
}

.policy-page {
    background: var(--c-cream);
    min-height: 100vh;
}

.policy-hero {
    background: var(--grad-dark);
    color: var(--c-cream);
    padding: var(--sp-20) 0;
    position: relative;
    overflow: hidden;
}

.policy-hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-pink-light);
    margin-bottom: var(--sp-5);
}

.policy-hero__title {
    font-family: var(--ff-display);
    font-size: var(--fs-5xl);
    font-weight: var(--fw-black);
    line-height: var(--lh-tight);
    margin-bottom: var(--sp-5);
}

.policy-hero__meta {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

.policy-hero__meta span {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.policy-content {
    padding: var(--sp-16) 0;
}

.policy-body {
    max-width: 780px;
}

.policy-body h2 {
    font-family: var(--ff-display);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--c-plum);
    margin-top: var(--sp-12);
    margin-bottom: var(--sp-5);
    padding-top: var(--sp-6);
    border-top: 2px solid rgba(106, 0, 244, .1);
}

.policy-body h3 {
    font-family: var(--ff-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--c-plum);
    margin-top: var(--sp-8);
    margin-bottom: var(--sp-4);
}

.policy-body p {
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    color: var(--c-text-dark);
    margin-bottom: var(--sp-5);
    opacity: .85;
}

.policy-body ul,
.policy-body ol {
    margin-bottom: var(--sp-5);
    padding-left: var(--sp-6);
}

.policy-body li {
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    color: var(--c-text-dark);
    margin-bottom: var(--sp-2);
    opacity: .85;
    list-style: disc;
}

.policy-body ol li {
    list-style: decimal;
}

.policy-body a {
    color: var(--c-violet);
    text-decoration: underline;
}

.policy-body strong {
    font-weight: var(--fw-semibold);
    color: var(--c-plum);
    opacity: 1;
}

.policy-box {
    background: rgba(106, 0, 244, .06);
    border-left: 3px solid var(--c-violet);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: var(--sp-5) var(--sp-6);
    margin-bottom: var(--sp-6);
}

.policy-box p {
    margin-bottom: 0;
    font-size: var(--fs-sm);
}

.thankyou-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--sp-12) var(--container-pad);
    background: var(--grad-dark);
    color: var(--c-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thankyou__icon {
    width: 80px;
    height: 80px;
    border-radius: var(--r-full);
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--c-white);
    margin: 0 auto var(--sp-8);
    box-shadow: var(--sh-violet);
    animation: popIn var(--t-spring) both;
}

.thankyou__heading {
    font-family: var(--ff-display);
    font-size: var(--fs-5xl);
    font-weight: var(--fw-black);
    line-height: var(--lh-tight);
    margin-bottom: var(--sp-5);
}

.thankyou__text {
    font-size: var(--fs-lg);
    color: var(--c-text-on-dark);
    max-width: 500px;
    margin: 0 auto var(--sp-10);
    line-height: var(--lh-relaxed);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    margin-bottom: var(--sp-8);
}

.breadcrumb a {
    color: var(--c-text-muted);
    transition: color var(--t-fast);
}

.breadcrumb a:hover {
    color: var(--c-cream);
}

.breadcrumb i {
    font-size: .7em;
    opacity: .6;
}

.breadcrumb span {
    color: var(--c-cream);
    opacity: .7;
}

.disclaimer-bar {
    background: rgba(58, 134, 255, .1);
    border: 1px solid rgba(58, 134, 255, .2);
    border-radius: var(--r-lg);
    padding: var(--sp-4) var(--sp-6);
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    color: var(--c-text-dark);
    line-height: var(--lh-relaxed);
}

.disclaimer-bar--dark {
    background: rgba(58, 134, 255, .12);
    border-color: rgba(58, 134, 255, .2);
    color: var(--c-text-on-dark);
}

.disclaimer-bar i {
    color: var(--c-blue);
    flex-shrink: 0;
    font-size: 1.1em;
    margin-top: 2px;
}

.disclaimer-bar--dark i {
    color: var(--c-blue-light);
}

.programs-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
}

.program-card {
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    position: relative;
    overflow: hidden;
}

.program-card--featured {
    background: var(--grad-brand);
    color: var(--c-white);
}

.program-card--glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--c-cream);
}

.program-card--light {
    background: var(--c-white);
    border: 1px solid rgba(28, 11, 43, .08);
    box-shadow: var(--sh-sm);
    color: var(--c-text-dark);
}

.program-card__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--r-full);
    margin-bottom: var(--sp-5);
}

.program-card--featured .program-card__badge {
    background: rgba(255, 255, 255, .2);
    color: var(--c-white);
}

.program-card--glass .program-card__badge {
    background: rgba(255, 79, 216, .15);
    color: var(--c-pink-light);
}

.program-card--light .program-card__badge {
    background: rgba(106, 0, 244, .1);
    color: var(--c-violet);
}

.program-card__title {
    font-family: var(--ff-display);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-black);
    line-height: var(--lh-snug);
    margin-bottom: var(--sp-3);
}

.program-card__desc {
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    opacity: .8;
    margin-bottom: var(--sp-6);
}

.program-card__features {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-8);
}

.program-card__feature {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
}

.program-card__feature i {
    font-size: .9em;
    flex-shrink: 0;
}

.program-card--featured .program-card__feature i {
    color: rgba(255, 255, 255, .7);
}

.program-card--glass .program-card__feature i {
    color: var(--c-pink-light);
}

.program-card--light .program-card__feature i {
    color: var(--c-violet);
}

.info-block {
    background: var(--c-white);
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    border: 1px solid rgba(28, 11, 43, .07);
    box-shadow: var(--sh-sm);
}

.info-block__title {
    font-family: var(--ff-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--c-plum);
    margin-bottom: var(--sp-6);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.info-block__title i {
    color: var(--c-violet);
}

.myth-grid {
    display: grid;
    gap: var(--sp-5);
}

.myth-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    align-items: start;
}

.myth-col {
    padding: var(--sp-5);
    border-radius: var(--r-lg);
}

.myth-col--false {
    background: rgba(229, 62, 62, .06);
    border: 1px solid rgba(229, 62, 62, .15);
}

.myth-col--true {
    background: rgba(56, 161, 105, .06);
    border: 1px solid rgba(56, 161, 105, .15);
}

.myth-col__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: var(--sp-2);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.myth-col--false .myth-col__label {
    color: #e53e3e;
}

.myth-col--true .myth-col__label {
    color: #38a169;
}

.myth-col__text {
    font-size: var(--fs-sm);
    color: var(--c-text-dark);
    opacity: .8;
    line-height: var(--lh-relaxed);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--t-slow), transform var(--t-slow);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-28px);
}

[data-reveal="left"].revealed {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(28px);
}

[data-reveal="right"].revealed {
    transform: translateX(0);
}

[data-reveal="scale"] {
    transform: scale(.95);
}

[data-reveal="scale"].revealed {
    transform: scale(1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        transform: scale(.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(106, 0, 244, .4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(106, 0, 244, 0);
    }
}

.pulse {
    animation: pulse-glow 2.5s ease infinite;
}

@media (min-width: 480px) {
    .form__row {
        grid-template-columns: 1fr 1fr;
    }

    .stats-card__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-layout {
        grid-template-columns: 1fr 1fr;
    }

    .myth-grid {
        gap: var(--sp-6);
    }
}

@media (min-width: 768px) {

    .nav__toggle,
    .nav__overlay {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: #1a0c30;
        border-left: 1px solid var(--glass-border);
        z-index: 100;
        padding: calc(var(--header-h) + var(--sp-8)) var(--sp-8) var(--sp-8);
        transform: translateX(100%);
        transition: transform var(--t-slow);
        overflow-y: auto;
    }

    .nav__menu--open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--sp-2);
    }

    .nav__link {
        font-size: var(--fs-base);
        padding: var(--sp-4) var(--sp-5);
        border-radius: var(--r-md);
    }

    .nav__cta {
        display: none;
    }

    .nav__overlay {
        position: fixed;
    }

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

    .split-section,
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

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

    .stats-band__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {

    .nav__toggle,
    .nav__overlay {
        display: none;
    }

    .nav__menu {
        position: static;
        width: auto;
        background: none;
        border: none;
        padding: 0;
        transform: none;
        overflow: visible;
    }

    .nav__list {
        flex-direction: row;
        align-items: center;
    }

    .nav__cta {
        display: inline-flex;
    }

    .hero--split .hero__inner {
        grid-template-columns: 60fr 40fr;
        gap: var(--sp-16);
    }

    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .programs-layout {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .nav__overlay {
        display: none;
    }

    .nav__overlay--visible {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(300px, 85vw);
        background: #1a0c30;
        border-left: 1px solid var(--glass-border);
        z-index: 100;
        padding: calc(var(--header-h) + var(--sp-8)) var(--sp-6) var(--sp-8);
        transform: translateX(100%);
        transition: transform var(--t-slow);
        overflow-y: auto;
    }

    .nav__menu--open {
        height: 100vh;
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--sp-2);
    }

    .nav__link {
        font-size: var(--fs-base);
        padding: var(--sp-4) var(--sp-5);
        border-radius: var(--r-md);
        display: block;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__cta {
        display: none;
    }

    .myth-item {
        grid-template-columns: 1fr;
    }

    .hero__visual--photo {
        min-height: auto;
        flex-direction: column;
        gap: var(--sp-6);
    }

    .hero__photo {
        max-width: 100%;
        aspect-ratio: 16 / 11;
    }

    .hero__photo-card {
        position: static;
        max-width: 100%;
    }

    .hero__photo-floats {
        position: static;
        width: 100%;
    }
}

@media (max-width: 320px) {
    :root {
        --container-pad: .625rem;
        --header-h: 64px;
        --sp-24: 3.5rem;
        --sp-20: 3rem;
        --sp-16: 2.5rem;
        --sp-12: 2rem;
        --fs-6xl: 2.25rem;
        --fs-5xl: 1.875rem;
        --fs-4xl: 1.625rem;
        --fs-3xl: 1.5rem;
        --fs-2xl: 1.25rem;
        --fs-xl: 1.0625rem;
        --fs-lg: .9375rem;
    }

    .header__inner {
        gap: var(--sp-2);
    }

    .brand {
        min-width: 0;
        flex: 1;
    }

    .brand__name {
        font-size: .6875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 11.5rem;
    }

    .brand__mark {
        width: 32px;
        height: 32px;
        font-size: .95rem;
    }

    .nav__toggle {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .nav__menu {
        width: 100vw;
        padding-left: var(--sp-5);
        padding-right: var(--sp-5);
    }

    .nav__link {
        padding: var(--sp-3) var(--sp-4);
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-h) + var(--sp-6));
        padding-bottom: var(--sp-12);
    }

    .hero__heading {
        font-size: var(--fs-3xl);
        letter-spacing: -.02em;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .hero__sub {
        font-size: var(--fs-base);
        margin-bottom: var(--sp-6);
    }

    .hero__badge {
        font-size: .625rem;
        letter-spacing: .06em;
        padding: var(--sp-1) var(--sp-3);
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero__disclaimer {
        font-size: .6875rem;
    }

    .hero__breadcrumb {
        flex-wrap: wrap;
        font-size: .6875rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
        justify-content: center;
        padding-left: var(--sp-4);
        padding-right: var(--sp-4);
    }

    .hero__photo {
        aspect-ratio: 4 / 3;
        border-radius: var(--r-lg);
    }

    .hero__float-card {
        padding: var(--sp-3) var(--sp-4);
    }

    .btn {
        white-space: normal;
    }

    .btn--lg {
        font-size: var(--fs-sm);
        padding: var(--sp-4) var(--sp-5);
    }

    .section {
        padding: var(--sp-16) 0;
    }

    .section--lg {
        padding: var(--sp-20) 0;
    }

    .section__header {
        margin-bottom: var(--sp-10);
    }

    .section__heading {
        font-size: var(--fs-3xl);
        overflow-wrap: anywhere;
    }

    .section__sub {
        font-size: var(--fs-base);
    }

    .card {
        padding: var(--sp-5);
    }

    .card__heading {
        font-size: var(--fs-lg);
    }

    .card__icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-bottom: var(--sp-4);
    }

    .trust-bar {
        padding: var(--sp-5) 0;
    }

    .trust-bar__inner {
        flex-direction: column;
        align-items: stretch;
        gap: var(--sp-3);
    }

    .trust-badge {
        justify-content: center;
        font-size: var(--fs-xs);
        padding: var(--sp-2) var(--sp-4);
    }

    .stats-card {
        max-width: 100%;
        padding: var(--sp-5);
    }

    .stats-card__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-3);
    }

    .stats-card__item {
        padding: var(--sp-3);
    }

    .stats-card__value {
        font-size: var(--fs-xl);
    }

    .stats-band {
        padding: var(--sp-12) 0;
    }

    .stats-band__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-3);
    }

    .stat-item {
        padding: var(--sp-4);
    }

    .stat-item__value {
        font-size: var(--fs-3xl);
    }

    .program-card {
        padding: var(--sp-5);
    }

    .faq__question {
        padding: var(--sp-4);
        gap: var(--sp-3);
    }

    .faq__q-text {
        font-size: var(--fs-sm);
    }

    .faq__answer-inner {
        padding: 0 var(--sp-4) var(--sp-4);
    }

    .timeline::before {
        left: 21px;
    }

    .timeline__step {
        width: 44px;
        height: 44px;
        font-size: var(--fs-sm);
    }

    .timeline__item {
        gap: var(--sp-4);
    }

    .timeline__title {
        font-size: var(--fs-lg);
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        padding: var(--sp-4) var(--container-pad);
    }

    .cookie-banner__text {
        min-width: 0;
        flex: none;
        width: 100%;
    }

    .cookie-banner__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .cookie-settings {
        padding: var(--sp-2);
    }

    .cookie-settings__panel {
        padding: var(--sp-5);
        border-radius: var(--r-xl) var(--r-xl) var(--r-lg) var(--r-lg);
    }

    .cookie-category {
        flex-wrap: wrap;
        gap: var(--sp-3);
        padding: var(--sp-4);
    }

    .cta-band {
        padding: var(--sp-16) 0;
    }

    .cta-band__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-band__actions .btn {
        width: 100%;
    }

    .tabs__nav {
        flex-direction: column;
        border-radius: var(--r-xl);
        width: 100%;
        padding: var(--sp-2);
    }

    .tab {
        width: 100%;
        text-align: center;
        padding: var(--sp-3) var(--sp-4);
    }

    .testimonial {
        padding: var(--sp-5);
    }

    .testimonial__quote {
        font-size: var(--fs-sm);
    }

    .site-footer {
        padding-top: var(--sp-12);
    }

    .footer__grid {
        gap: var(--sp-8);
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-3);
    }

    .footer__policy-links {
        flex-direction: column;
        gap: var(--sp-2);
        width: 100%;
    }

    .form__input,
    .form__textarea,
    .form__select {
        font-size: 16px;
    }

    .contact-info__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .policy-body h2 {
        font-size: var(--fs-2xl);
        margin-top: var(--sp-8);
    }

    .policy-body h3 {
        font-size: var(--fs-lg);
    }

    .visual-block {
        padding: var(--sp-5);
        aspect-ratio: auto;
        min-height: 200px;
    }

    .visual-metric {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-3);
    }

    .info-block {
        padding: var(--sp-5);
    }

    .number-item {
        padding: var(--sp-4);
    }

    .number-item__num {
        font-size: var(--fs-4xl);
    }

    .myth-col {
        padding: var(--sp-4);
    }

    .grid-3,
    .grid-4,
    .testimonials__grid {
        gap: var(--sp-4);
    }

    .feature-item {
        gap: var(--sp-3);
    }
}