:root {
    --color-peach: #ffb77a;
    --color-fuchsia: #ff4ca3;
    --color-aqua: #4dd6ff;
    --color-lime: #cfff7a;
    --color-lavender: #cda4ff;
    --color-bg-deep: #0f0b14;
    --color-bg-mid: #1a1224;
    --color-surface: rgba(255, 255, 255, 0.06);
    --color-border: rgba(255, 255, 255, 0.12);
    --color-border-strong: rgba(255, 255, 255, 0.2);
    --color-text: #f4f0f8;
    --color-text-muted: rgba(244, 240, 248, 0.72);
    --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-glow-fuchsia: 0 0 40px rgba(255, 76, 163, 0.25);
    --shadow-glow-aqua: 0 0 36px rgba(77, 214, 255, 0.22);
    --radius-card: 24px;
    --radius-button: 18px;
    --radius-input: 14px;
    --space-section-y-desktop: clamp(7.5rem, 12vw, 10rem);
    --space-section-y-mobile: clamp(4rem, 10vw, 5rem);
    --space-card: clamp(1.5rem, 3vw, 2rem);
    --space-grid: clamp(1.5rem, 2.5vw, 2rem);
    --tracking-tight: -0.02em;
    --transition-fast: 0.3s ease;
    --transition-med: 0.45s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 450;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg-deep);
    background-image:
        radial-gradient(ellipse 90% 60% at 10% 0%, rgba(255, 76, 163, 0.12), transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 20%, rgba(77, 214, 255, 0.1), transparent 50%),
        linear-gradient(180deg, var(--color-bg-mid) 0%, var(--color-bg-deep) 45%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--color-aqua);
    text-decoration: none;
    transition: color var(--transition-fast), box-shadow var(--transition-fast);
}

a:hover {
    color: var(--color-peach);
}

.link-underline {
    position: relative;
    display: inline-block;
}

.link-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-fuchsia), var(--color-aqua));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-fast);
}

.link-underline:hover::after {
    transform: scaleX(1);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: var(--tracking-tight);
    line-height: 1.15;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;
}

p {
    margin: 0 0 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.85rem clamp(1rem, 4vw, 2rem);
    background: rgba(15, 11, 20, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: var(--tracking-tight);
    color: var(--color-text);
}

.brand:hover {
    color: var(--color-peach);
}

.nav-main {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    justify-content: flex-end;
}

.nav-main a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-main a:hover {
    color: var(--color-text);
}

main {
    overflow-x: hidden;
}

.section {
    padding: var(--space-section-y-mobile) clamp(1rem, 4vw, 2rem);
}

@media (min-width: 768px) {
    .section {
        padding-top: var(--space-section-y-desktop);
        padding-bottom: var(--space-section-y-desktop);
    }
}

.section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section__head {
    max-width: 640px;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-aqua);
    margin-bottom: 0.75rem;
}

.section__title {
    margin: 0 0 0.75rem;
}

.section__lead {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.hero {
    padding-top: clamp(2rem, 6vw, 3rem);
}

.hero__grid {
    display: grid;
    gap: var(--space-grid);
    align-items: start;
}

@media (min-width: 960px) {
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero__visual {
    position: relative;
    order: 1;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    overflow: visible;
}

@media (min-width: 960px) {
    .hero__visual {
        order: unset;
    }
}

.hero__orbs {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.55;
    animation: orbDrift 14s ease-in-out infinite;
}

.hero__orb--a {
    width: 140px;
    height: 140px;
    top: 8%;
    left: 0;
    background: radial-gradient(circle, rgba(255, 76, 163, 0.65), transparent 68%);
    animation-delay: 0s;
}

.hero__orb--b {
    width: 100px;
    height: 100px;
    bottom: 18%;
    right: 8%;
    background: radial-gradient(circle, rgba(77, 214, 255, 0.55), transparent 70%);
    animation-delay: -4s;
    animation-duration: 11s;
}

.hero__orb--c {
    width: 80px;
    height: 80px;
    top: 42%;
    right: 0;
    background: radial-gradient(circle, rgba(207, 255, 122, 0.4), transparent 72%);
    animation-delay: -7s;
    animation-duration: 16s;
}

@keyframes orbDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(12px, -18px) scale(1.08);
    }

    66% {
        transform: translate(-16px, 12px) scale(0.94);
    }
}

.hero__glow {
    position: absolute;
    inset: 10% 5% 15%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 183, 122, 0.45), rgba(255, 76, 163, 0.15) 45%, transparent 70%);
    filter: blur(2px);
    z-index: 0;
    border-radius: 50%;
    animation: glowBreathe 6s ease-in-out infinite;
}

@keyframes glowBreathe {

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

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

.hero__visual::after {
    content: "";
    position: absolute;
    width: min(92%, 360px);
    height: min(78%, 480px);
    max-height: 90%;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(77, 214, 255, 0.06) inset;
    z-index: 0;
    pointer-events: none;
    animation: frameGlow 5s ease-in-out infinite;
}

@keyframes frameGlow {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 1px rgba(77, 214, 255, 0.05) inset;
    }

    50% {
        border-color: rgba(255, 183, 122, 0.22);
        box-shadow: 0 0 24px rgba(255, 76, 163, 0.12) inset;
    }
}

.hero__product-wrap {
    position: relative;
    z-index: 1;
    animation: floatY 5s ease-in-out infinite;
}

.hero__product-wrap::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: calc(var(--radius-card) + 6px);
    background: linear-gradient(135deg, rgba(255, 76, 163, 0.25), rgba(77, 214, 255, 0.12), rgba(207, 255, 122, 0.15));
    opacity: 0.45;
    z-index: -1;
    animation: rimRotate 10s linear infinite;
    filter: blur(8px);
}

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

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero__product-img {
    border-radius: var(--radius-card);
    filter: drop-shadow(var(--shadow-glow-fuchsia));
    animation: heroImgGlow 5s ease-in-out infinite;
}

@keyframes heroImgGlow {

    0%,
    100% {
        filter: drop-shadow(0 12px 28px rgba(255, 76, 163, 0.38)) drop-shadow(0 0 36px rgba(77, 214, 255, 0.12));
    }

    50% {
        filter: drop-shadow(0 16px 40px rgba(77, 214, 255, 0.42)) drop-shadow(0 0 48px rgba(255, 183, 122, 0.18));
    }
}

.hero__stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero__form-wrap {
    width: 100%;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
}

.hero .trust-row {
    animation: heroFadeUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--color-peach);
}

.stars--fa {
    gap: 4px;
}

.stars--fa i {
    font-size: 0.85rem;
}

.stars--fa .fa-regular.fa-star {
    opacity: 0.42;
}

.hero .badge-pill {
    animation: badgeIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s both;
}

.hero .badge-pill--accent {
    animation: badgeIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.58s both;
}

@keyframes badgeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.92);
    }

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

.badge-pill {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-muted);
}

.badge-pill--accent {
    border-color: rgba(77, 214, 255, 0.35);
    color: var(--color-aqua);
}

.hero__title {
    margin: 0;
    animation: titleSoft 1s ease 0.1s both;
}

.hero__desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.hero .hero__desc {
    animation: heroFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero .price-block {
    animation: heroFadeUp 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}

.price-block__current {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--color-lime);
}

.hero .price-block__current {
    display: inline-block;
    animation: pricePulse 3s ease-in-out 1s infinite;
}

@keyframes pricePulse {

    0%,
    100% {
        filter: brightness(1);
        text-shadow: 0 0 0 transparent;
    }

    50% {
        filter: brightness(1.12);
        text-shadow: 0 0 20px rgba(207, 255, 122, 0.35);
    }
}

.price-block__old {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.35);
}

.highlights {
    display: grid;
    gap: 0.75rem;
}

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

.highlight-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    font-size: 0.88rem;
    color: var(--color-text-muted);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.highlight-item__ico {
    flex-shrink: 0;
    width: 1.75rem;
    text-align: center;
    color: var(--color-aqua);
    font-size: 1.05rem;
    line-height: 1.4;
}

.highlight-item__text strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 0.95rem;
}

.highlight-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 76, 163, 0.35);
    box-shadow: var(--shadow-glow-aqua);
}

.hero .highlight-item:nth-child(1) {
    animation: heroFadeUp 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

.hero .highlight-item:nth-child(2) {
    animation: heroFadeUp 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.hero .highlight-item:nth-child(3) {
    animation: heroFadeUp 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.82s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

.form-card {
    margin-top: 0.5rem;
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow-soft);
}

.hero .form-card {
    animation: formCardEnter 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.hero .form-card:hover {
    border-color: rgba(77, 214, 255, 0.28);
    box-shadow: var(--shadow-soft), 0 0 40px rgba(77, 214, 255, 0.08);
}

@keyframes formCardEnter {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.98);
    }

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

.form-card__title {
    margin: 0 0 1.25rem;
    font-size: 1.1rem;
}

.field {
    position: relative;
    margin-bottom: 1.1rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 1.1rem 0.95rem 0.55rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: rgba(10, 8, 16, 0.65);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field textarea {
    min-height: 110px;
    resize: vertical;
}

.field label {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: transform var(--transition-fast), font-size var(--transition-fast), color var(--transition-fast), top var(--transition-fast);
}

.field--textarea label {
    top: 1.35rem;
    transform: translateY(0);
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(77, 214, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(77, 214, 255, 0.15), var(--shadow-glow-aqua);
}

.field input:focus+label,
.field input:not(:placeholder-shown)+label,
.field textarea:focus+label,
.field textarea:not(:placeholder-shown)+label {
    top: 0.45rem;
    transform: translateY(0);
    font-size: 0.72rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-aqua);
}

.field--textarea textarea:focus+label,
.field--textarea textarea:not(:placeholder-shown)+label {
    top: 0.5rem;
}

.field-error {
    display: none;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: var(--color-fuchsia);
}

.field.is-invalid input,
.field.is-invalid textarea {
    border-color: rgba(255, 76, 163, 0.55);
}

.field.is-invalid .field-error {
    display: block;
}

.checkbox-field {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.checkbox-field input {
    margin-top: 0.25rem;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--color-fuchsia);
}

.checkbox-field label {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.checkbox-field .field-error {
    display: none;
    width: 100%;
    flex-basis: 100%;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: var(--color-fuchsia);
}

.checkbox-field.is-invalid .field-error {
    display: block;
}

.checkbox-field a {
    color: var(--color-peach);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: transform var(--transition-fast), filter var(--transition-fast), box-shadow var(--transition-fast);
}

.btn--primary {
    width: 100%;
    color: #0f0b14;
    background: linear-gradient(135deg, var(--color-lime), var(--color-aqua));
    box-shadow: var(--shadow-glow-aqua);
}

.btn--primary:hover {
    transform: scale(1.03);
    filter: brightness(1.06);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn--ghost:hover {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.35);
}

.bento {
    display: grid;
    gap: var(--space-grid);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .bento {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(120px, auto);
    }

    .bento__item--wide {
        grid-column: span 2;
    }

    .bento__item--tall {
        grid-row: span 2;
    }
}

.bento__item {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.bento__item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 183, 122, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow-soft);
}

.bento__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 0.85rem;
    color: var(--color-aqua);
    font-size: 1.35rem;
}

.bento__item h3 {
    margin: 0 0 0.5rem;
}

.bento__item p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.split {
    display: grid;
    gap: var(--space-grid);
    align-items: center;
}

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

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

.figure-caption {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.product-overview-figure {
    margin: 0;
}

.product-overview-figure__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.2);
}

.product-overview-figure__ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-peach);
}

.product-overview-figure__ring:nth-child(2) {
    color: var(--color-lime);
}

.product-overview-figure__ring:nth-child(3) {
    color: var(--color-aqua);
}

.spec-grid {
    display: grid;
    gap: var(--space-grid);
}

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

@media (min-width: 1024px) {
    .spec-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.spec-grid .bento__item--wide {
    grid-column: span 2;
}

@media (max-width: 767px) {
    .spec-grid .bento__item--wide {
        grid-column: span 1;
    }
}

.spec-row {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.spec-row strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0.35rem;
}

.steps {
    display: grid;
    gap: var(--space-grid);
}

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

.step-card {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 214, 255, 0.35);
}

.step-card__num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-fuchsia);
    margin-bottom: 0.5rem;
}

.ingredient-grid {
    display: grid;
    gap: var(--space-grid);
    grid-template-columns: 1fr;
}

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

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

.ingredient-card {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    text-align: center;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.ingredient-card:hover {
    transform: translateY(-4px);
    border-color: rgba(207, 255, 122, 0.35);
}

.ingredient-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--color-fuchsia);
}

.ingredient-card:nth-child(2) .ingredient-card__icon {
    color: var(--color-aqua);
}

.ingredient-card:nth-child(3) .ingredient-card__icon {
    color: var(--color-peach);
}

.ingredient-card:nth-child(4) .ingredient-card__icon {
    color: var(--color-lime);
}

.ingredient-card:nth-child(5) .ingredient-card__icon {
    color: var(--color-lavender);
}

.ingredient-card:nth-child(6) .ingredient-card__icon {
    color: var(--color-peach);
}

.ingredient-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.instructions {
    counter-reset: step;
    display: grid;
    gap: 1rem;
}

.instruction-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
}

.instruction-row::before {
    counter-increment: step;
    content: counter(step);
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    border: 1px solid var(--color-border-strong);
    color: var(--color-peach);
}

.reviews-grid {
    display: grid;
    gap: var(--space-grid);
}

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

.review-card {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(205, 164, 255, 0.1), transparent);
    transition: transform var(--transition-fast);
}

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

.review-card .stars {
    margin-bottom: 0.75rem;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.is-open {
    border-color: rgba(255, 183, 122, 0.35);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-trigger__ico {
    flex-shrink: 0;
    font-size: 0.85rem;
    opacity: 0.85;
    transition: transform var(--transition-fast);
}

.faq-item.is-open .faq-trigger__ico {
    transform: rotate(180deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-panel-inner {
    padding: 0 1.25rem 1.15rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.cta-final {
    text-align: center;
    padding: var(--space-section-y-mobile) clamp(1rem, 4vw, 2rem);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 76, 163, 0.15), transparent 55%), var(--color-surface);
}

.cta-final .btn {
    max-width: 280px;
    margin-top: 1rem;
    display: inline-flex;
}

.steps-figure {
    margin-bottom: 2rem;
    text-align: center;
}

.steps-figure--fa {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    padding: 1.25rem 1rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-aqua);
}

.steps-figure--fa .fa-arrow-right-long {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.instruction-row__icon {
    flex-shrink: 0;
}

.instruction-row__icon--aqua {
    color: var(--color-aqua);
}

.instruction-row__icon--fuchsia {
    color: var(--color-fuchsia);
}

.instruction-row__icon--peach {
    color: var(--color-peach);
}

.price-legal {
    margin: 0.5rem 0 0;
    max-width: 36rem;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

.ads-transparency {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: rgba(77, 214, 255, 0.03);
}

.ads-transparency__grid {
    display: grid;
    gap: var(--space-grid);
}

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

.ads-transparency__card {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.ads-transparency__card:hover {
    border-color: rgba(255, 183, 122, 0.25);
    box-shadow: var(--shadow-soft);
}

.ads-transparency__card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
}

.ads-transparency__card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.disclaimer {
    padding: 2rem clamp(1rem, 4vw, 2rem);
    border-top: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.25);
}

.disclaimer__inner {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.disclaimer__inner p+p {
    margin-top: 1rem;
}

.site-footer {
    padding: 2.5rem clamp(1rem, 4vw, 2rem) 2rem;
    border-top: 1px solid var(--color-border);
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.footer-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1rem;
    transform: translateY(110%);
    transition: transform var(--transition-med);
}

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

.cookie-banner__box {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(15, 11, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.cookie-banner__actions .btn {
    width: auto;
    min-width: 120px;
}

.cookie-settings {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    display: none;
}

.cookie-settings.is-open {
    display: block;
}

.cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.cookie-toggle-row:last-child {
    border-bottom: none;
}

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

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    transition: background var(--transition-fast);
    cursor: pointer;
}

.switch-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--color-text);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.switch input:checked+.switch-slider {
    background: rgba(77, 214, 255, 0.45);
}

.switch input:checked+.switch-slider::before {
    transform: translateX(20px);
}

.switch input:disabled+.switch-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med);
}

.modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.policy-article {
    max-width: 800px;
    margin: 0 auto;
}

.policy-article h1 {
    margin-bottom: 1rem;
}

.policy-article h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.policy-article ul {
    padding-left: 1.25rem;
    color: var(--color-text-muted);
}

.policy-article li {
    margin-bottom: 0.5rem;
}

.policy-article address {
    font-style: normal;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: var(--radius-input);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

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

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

.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you__card {
    max-width: 520px;
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

@media (max-width: 959px) {
    .hero__grid {
        display: flex;
        flex-direction: column;
    }

    .hero__visual {
        order: 1;
    }

    .hero__stack {
        order: 2;
    }
}

.hero--mesh {
    position: relative;
    overflow: hidden;
}

.hero__mesh {
    position: absolute;
    inset: -20% -10% auto;
    height: 70%;
    background: radial-gradient(ellipse 50% 80% at 30% 20%, rgba(255, 76, 163, 0.18), transparent 55%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(77, 214, 255, 0.14), transparent 50%);
    pointer-events: none;
    animation: meshPulse 14s ease-in-out infinite;
}

@keyframes meshPulse {

    0%,
    100% {
        opacity: 0.85;
        transform: scale(1) translate(0, 0);
    }

    50% {
        opacity: 1;
        transform: scale(1.03) translate(2%, -1%);
    }
}

@keyframes titleSoft {
    from {
        opacity: 0;
        transform: translateY(12px);
        letter-spacing: 0.02em;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: var(--tracking-tight);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero__mesh,
    .hero__orb,
    .hero__glow,
    .hero__visual::after,
    .hero__product-wrap,
    .hero__product-wrap::before,
    .hero__product-img,
    .hero .badge-pill,
    .hero .badge-pill--accent,
    .hero .price-block__current {
        animation: none !important;
    }

    .hero .trust-row,
    .hero .hero__desc,
    .hero .price-block,
    .hero .highlight-item,
    .hero .form-card {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .hero__title {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

.bento--stagger .bento__item {
    opacity: 0;
    transform: translateY(18px);
}

.reveal.is-visible .bento--stagger .bento__item {
    animation: cardRise 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal.is-visible .bento--stagger .bento__item:nth-child(1) {
    animation-delay: 0.05s;
}

.reveal.is-visible .bento--stagger .bento__item:nth-child(2) {
    animation-delay: 0.12s;
}

.reveal.is-visible .bento--stagger .bento__item:nth-child(3) {
    animation-delay: 0.19s;
}

.reveal.is-visible .bento--stagger .bento__item:nth-child(4) {
    animation-delay: 0.26s;
}

.reveal.is-visible .bento--stagger .bento__item:nth-child(5) {
    animation-delay: 0.33s;
}

.reveal.is-visible .bento--stagger .bento__item:nth-child(6) {
    animation-delay: 0.4s;
}

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

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    z-index: 170;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.nav-burger:hover {
    border-color: rgba(255, 183, 122, 0.35);
    background: rgba(255, 255, 255, 0.1);
}

.nav-burger__line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.site-header.is-nav-open .nav-burger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.is-nav-open .nav-burger__line:nth-child(2) {
    opacity: 0;
}

.site-header.is-nav-open .nav-burger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 155;
    background: rgba(5, 3, 10, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-backdrop.is-visible {
    display: block;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 899px) {
    .nav-burger {
        display: flex;
    }

    .nav-main {
        position: fixed;
        top: 0;
        right: 0;
        width: min(100% - 3.5rem, 300px);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 5.5rem 1.5rem 2rem;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.25rem;
        background: linear-gradient(180deg, rgba(20, 14, 32, 0.98), rgba(15, 11, 20, 0.99));
        border-left: 1px solid var(--color-border);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 160;
        overflow-y: auto;
    }

    .site-header.is-nav-open .nav-main {
        transform: translateX(0);
    }

    .nav-main a {
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 1rem;
    }
}

.section--rhythm {
    background: linear-gradient(180deg, transparent, rgba(77, 214, 255, 0.04) 40%, transparent);
}

.rhythm-lab {
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.rhythm-lab__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 1rem 0;
    border-bottom: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.2);
}

.rhythm-tab {
    flex: 1;
    min-width: 5.5rem;
    padding: 0.75rem 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 14px 14px 0 0;
    cursor: pointer;
    transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.rhythm-tab:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.rhythm-tab.is-active {
    color: var(--color-bg-deep);
    background: linear-gradient(135deg, var(--color-lime), var(--color-aqua));
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.rhythm-lab__panels {
    padding: 1.5rem 1.25rem 1.75rem;
    min-height: 14rem;
}

.rhythm-panel {
    display: none;
    animation: panelFade 0.45s ease both;
}

.rhythm-panel.is-active {
    display: block;
}

@keyframes panelFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.rhythm-panel__visual {
    margin-bottom: 1rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.25);
    padding: 0.75rem;
    display: flex;
    justify-content: center;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.rhythm-panel.is-active .rhythm-panel__visual {
    box-shadow: 0 0 32px rgba(77, 214, 255, 0.12);
}

.rhythm-panel__visual--fa {
    flex-wrap: wrap;
    gap: 0.65rem 0.85rem;
    color: var(--color-peach);
}

.rhythm-panel__visual--fa .fa-arrow-right-long {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    opacity: 0.85;
}

.rhythm-panel__visual--fa i {
    font-size: 1.65rem;
}

.rhythm-panel__title {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.rhythm-panel__text {
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.rhythm-panel__list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.rhythm-panel__list li {
    margin-bottom: 0.4rem;
}

.legal-creative {
    min-height: 100vh;
    background: var(--color-bg-deep);
    background-image:
        radial-gradient(ellipse 80% 50% at 0% 0%, rgba(255, 76, 163, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 20%, rgba(205, 164, 255, 0.1), transparent 45%),
        linear-gradient(180deg, var(--color-bg-mid), var(--color-bg-deep));
}

.legal-creative .site-header {
    position: relative;
}

.legal-shell {
    max-width: 920px;
    margin: 0 auto;
    padding: 2rem clamp(1rem, 4vw, 2rem) 4rem;
}

.legal-hero {
    position: relative;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    overflow: hidden;
}

.legal-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(77, 214, 255, 0.2), transparent 65%);
    pointer-events: none;
}

.legal-hero__inner {
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.legal-meta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-aqua);
    letter-spacing: 0.04em;
}

.legal-meta time {
    color: var(--color-peach);
}

.legal-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .legal-grid--aside {
        grid-template-columns: 200px 1fr;
        align-items: start;
    }
}

.legal-toc {
    position: sticky;
    top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
}

.legal-toc strong {
    display: block;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
}

.legal-toc a {
    display: block;
    padding: 0.35rem 0;
    color: var(--color-text-muted);
    border-left: 2px solid transparent;
    padding-left: 0.5rem;
    margin-left: -0.5rem;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.legal-toc a:hover {
    color: var(--color-peach);
    border-left-color: var(--color-fuchsia);
}

.legal-body {
    padding: 0 0 2rem;
}

.legal-body h2 {
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.2rem;
}

.legal-body h2:first-of-type {
    margin-top: 0;
}

.legal-body p,
.legal-body li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-body code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    padding: 0.1em 0.35em;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--color-lime);
}

.legal-body ul {
    padding-left: 1.25rem;
}

.legal-callout {
    margin: 1.5rem 0;
    padding: 1.25rem 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(77, 214, 255, 0.25);
    background: rgba(77, 214, 255, 0.06);
}

.legal-callout--lavender {
    border-color: rgba(205, 164, 255, 0.3);
    background: rgba(205, 164, 255, 0.08);
}

.legal-callout--peach {
    border-color: rgba(255, 183, 122, 0.3);
    background: rgba(255, 183, 122, 0.06);
}

.legal-address-card {
    margin: 1.25rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-input);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.25);
    font-style: normal;
    line-height: 1.6;
}

.legal-address-card a {
    color: var(--color-lime);
}

.thank-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--color-bg-deep);
    background-image: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 76, 163, 0.2), transparent 55%), linear-gradient(180deg, var(--color-bg-mid), var(--color-bg-deep));
}

.thank-page main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 3rem;
}

.thank-card {
    width: 100%;
    max-width: 560px;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: thankEnter 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes thankEnter {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }

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

.thank-card::after {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(77, 214, 255, 0.08), transparent 40%);
    animation: thankSpin 12s linear infinite;
    pointer-events: none;
}

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

.thank-card__inner {
    position: relative;
    z-index: 1;
}

.thank-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    border: 1px solid rgba(207, 255, 122, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(207, 255, 122, 0.08);
    animation: iconPop 0.6s ease 0.3s both;
    font-size: 2rem;
    color: var(--color-lime);
}

@keyframes iconPop {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-card h1 {
    margin-bottom: 0.75rem;
}

.thank-card p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.thank-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.thank-actions .btn {
    width: auto;
    min-width: 160px;
}

.thank-next {
    margin-top: 1.5rem;
    text-align: left;
}

.thank-next p {
    margin: 0;
}

.thank-next p+p {
    margin-top: 0.5rem;
}

.policy-page main {
    padding: 0;
}

@media (max-width: 320px) {
    html {
        font-size: 15px;
    }

    .site-header {
        padding: 0.65rem 0.75rem;
    }

    .brand {
        font-size: 0.88rem;
        max-width: calc(100vw - 5rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .hero {
        padding-top: 1.25rem;
    }

    .hero__visual {
        padding: 1rem 0;
    }

    .price-block__current {
        font-size: 1.65rem;
    }

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

    .form-card {
        padding: 1rem;
    }

    .field input,
    .field textarea {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .rhythm-lab__tabs {
        flex-direction: column;
        padding: 0.75rem;
    }

    .rhythm-tab {
        border-radius: 14px;
        width: 100%;
    }

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

    .bento__item--wide,
    .bento__item--tall {
        grid-column: auto;
        grid-row: auto;
    }

    .cta-final {
        padding: 2rem 0.75rem;
    }

    .cookie-banner__box {
        padding: 1rem;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__actions .btn {
        width: 100%;
        min-width: 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .legal-shell {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .legal-hero {
        padding: 1.5rem 1rem;
    }

    .legal-grid--aside {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: relative;
        top: 0;
    }

    .thank-card {
        padding: 1.75rem 1rem;
    }
}