
:root {
    --bg: #ffffff;
    --text: #1b1c20;
    --primary: #2155ff;
    --secondary: #0f1f4b;
    --muted: #f5f7fb;
    --accent: #f97316;
    --radius: 16px;
    --shadow: 0 18px 40px -24px rgba(15, 31, 75, 0.45);
    --container: 1120px;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 0px;
}

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: -999px;
    background: var(--primary);
    color: #fff;
    padding: var(--space-2) var(--space-4);
    border-radius: 999px;
    z-index: 999;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section {
    padding: var(--space-7) 0;
}

.section--muted {
    background: var(--muted);
}

.section__header {
    margin-bottom: var(--space-5);
    text-align: center;
}


.why-subtext {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}




.section__inner {
    display: grid;
    gap: var(--space-6);
}

.section__inner--split {
    align-items: center;
}

.section__inner--reverse {
    direction: rtl;
}

.section__inner--reverse > * {
    direction: ltr;
}

.section__media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.section__media--what {
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__media--what img {
    width: 100%;
    max-width: 480px;
    height: auto;
}


.section__content {
    display: grid;
    gap: var(--space-4);
}

.section__lede {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text);
}

.tabs {
    display: grid;
    gap: var(--space-4);
    width: 100%;
}

.tabs__list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: var(--space-1);
    padding: var(--space-1);
    border-radius: calc(var(--radius) * 0.75);
    background: rgba(33, 85, 255, 0.08);
    border: 1px solid rgba(33, 85, 255, 0.14);
    overflow: hidden;
    max-width: 100%;
}

.tabs__list::-webkit-scrollbar {
    display: none;
}

.tabs__trigger {
    border: none;
    background: transparent;
    padding: var(--space-3) var(--space-5);
    border-radius: calc(var(--radius) * 0.5);
    font-weight: 600;
    color: var(--secondary);
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    flex: 1 1 0%;
    text-align: center;
}

.tabs__trigger:hover {
    color: var(--secondary);
    background: rgba(15, 31, 75, 0.1);
}

.tabs__trigger:focus-visible {
    outline: 3px solid rgba(33, 85, 255, 0.35);
    outline-offset: 2px;
}

.tabs__trigger.is-active {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 18px 28px -20px rgba(15, 31, 75, 0.4);
}

.tabs__panel {
    display: none;
    gap: var(--space-3);
    color: var(--text);
}

.tabs__panel.is-active {
    display: grid;
}

.tabs__panel p,
.tabs__panel li {
    color: inherit;
}

.tabs__panel p {
    margin: 0;
}

.tabs__panel .list {
    gap: var(--space-2);
}

.ingredients {
    display: grid;
    gap: var(--space-5);
}

.ingredients__list {
    display: grid;
    gap: var(--space-2);
}

 param($match)
    $body = $match.Groups[1].Value
    if ($body -notmatch 'width: 100%') { $body += "\n    width: 100%;" }
    if ($body -notmatch 'justify-content: flex-start') { $body += "\n    justify-content: flex-start;" }
    if ($body -notmatch 'min-height') { $body += "\n    min-height: 48px;" }
    if ($body -notmatch 'display: flex') { $body = "\n    display: flex;" + $body }
.ingredients__trigger {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: calc(var(--radius) * 0.75);
    border: 1px solid rgba(33, 85, 255, 0.12);
    background: rgba(33, 85, 255, 0.08);
    color: var(--secondary);
    width: 100%;
    justify-content: flex-start;
    font-weight: 600;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    min-height: 48px;
}

"


.ingredients__trigger:hover {
    background: rgba(33, 85, 255, 0.18);
}

.ingredients__trigger.is-active {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 22px 32px -24px rgba(15, 31, 75, 0.4);
}

.ingredients__trigger:focus-visible {
    outline: 3px solid rgba(33, 85, 255, 0.35);
    outline-offset: 3px;
}

.ingredients__panel {
    display: none;
    background: #fff;
    border-radius: calc(var(--radius) * 1.1);
    border: 1px solid rgba(33, 85, 255, 0.1);
    box-shadow: var(--shadow);
    padding: var(--space-6);
    gap: var(--space-4);
}

.ingredients__panel.is-active {
    display: grid;
}

.ingredients__panel h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: var(--secondary);
}

.ingredients__description {
    margin: 0;
    color: rgba(27, 28, 32, 0.78);
}

.ingredients__meta {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(27, 28, 32, 0.72);
}

.ingredients__meta strong {
    color: var(--secondary);
}

.ingredients__benefits {
    display: grid;
    gap: var(--space-3);
}

.ingredients__benefits h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--secondary);
}

.ingredients__benefits .list {
    margin: 0;
}

@media (min-width: 768px) {
    .ingredients {
        grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
        align-items: stretch;
    }

    .ingredients__panel {
        min-height: 100%;
    }
}

@media (max-width: 767px) {
    .ingredients__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ingredients__panel {
        padding: var(--space-5);
    }
}


.section__content--accordion {
    gap: var(--space-3);
}

.section__intro {
    text-align: center;
    margin-bottom: var(--space-6);
    display: grid;
    gap: var(--space-3);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(33, 85, 255, 0.1);
    color: var(--secondary);
    letter-spacing: 0.02em;
}

.badge--accent {
    background: rgba(249, 115, 22, 0.12);
    color: var(--accent);
}

.badge--muted {
    background: rgba(15, 31, 75, 0.06);
    color: var(--secondary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow);
}

.btn--secondary {
    background: var(--secondary);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--secondary);
    border-color: rgba(33, 85, 255, 0.2);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible {
    outline: 3px solid rgba(33, 85, 255, 0.35);
    outline-offset: 2px;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: var(--space-5);
    box-shadow: var(--shadow);
    display: grid;
    gap: var(--space-3);
}

.card--stacked {
    gap: var(--space-4);
}

.feature-card {
    text-align: left;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(33, 85, 255, 0.08);
}

.list {
    padding-left: 1.2rem;
    display: grid;
    gap: var(--space-2);
}

.list--check {
    list-style: none;
    padding-left: 0;
    gap: var(--space-3);
}

.list--check li {
    position: relative;
    padding-left: 28px;
}

.list--check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(33, 85, 255, 0.12);
    border: 2px solid var(--primary);
}

.list--badges {
    list-style: none;
    padding-left: 0;
}

.list--badges li + li {
    margin-top: var(--space-2);
}

.highlight-bar {
    margin-top: var(--space-6);
    border-radius: var(--radius);
    background: linear-gradient(90deg, rgba(33, 85, 255, 0.08), rgba(249, 115, 22, 0.08));
    padding: var(--space-4);
    display: grid;
    gap: var(--space-3);
}

.highlight-bar__item {
    display: grid;
    gap: 4px;
}

.highlight-bar__value {
    font-size: 1.75rem;
    font-weight: 700;
}

.grid {
    display: grid;
    gap: var(--space-4);
}

.grid--features {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--two {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-6);
}

.grid--three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--four {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid--pricing {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: center;
}

.trust-badges__item {
    display: grid;
    place-items: center;
    gap: 6px;
    text-align: center;
    font-size: 0.85rem;
}

.hero {
    position: relative;
    padding: var(--space-8) 0 var(--space-7);
    overflow: hidden;
    background: radial-gradient(circle at 50% -15%, rgba(33, 85, 255, 0.08), transparent 65%);
}

.hero--retro {
    --hero-grid-angle: 68deg;
    --hero-grid-size: 64px;
    --hero-grid-line-light: rgba(33, 85, 255, 0.18);
    --hero-grid-line-dark: rgba(15, 31, 75, 0.32);
}

.hero__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    inset: -20% -20% auto -20%;
    height: 90%;
    background: radial-gradient(ellipse at top, rgba(33, 85, 255, 0.35), rgba(33, 85, 255, 0));
    filter: blur(18px);
    opacity: 0.6;
}

.hero__grid {
    position: absolute;
    inset: -70vh -150vw -40vh -150vw;
    transform: rotateX(var(--hero-grid-angle)) skewY(-6deg);
    transform-origin: center top;
    background-image: linear-gradient(to right, var(--hero-grid-line-light) 1px, transparent 1px), linear-gradient(to bottom, var(--hero-grid-line-light) 1px, transparent 1px);
    background-size: var(--hero-grid-size) var(--hero-grid-size);
    opacity: 0.45;
    animation: hero-grid-drift 18s linear infinite;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-6);
    justify-items: center;
    text-align: center;
}

.hero__body {
    display: grid;
    gap: var(--space-4);
    justify-items: center;
    max-width: 720px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(33, 85, 255, 0.14), rgba(249, 115, 22, 0.12));
    border: 1px solid rgba(15, 31, 75, 0.08);
    color: rgba(27, 28, 32, 0.75);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
}

.hero__eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(33, 85, 255, 0.1);
    color: var(--primary);
}

.hero__title {
    margin: 0;
    display: grid;
    gap: var(--space-2);
}

.hero__title-line {
    display: block;
    font-size: clamp(2.4rem, 6vw, 3.75rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero__title-line--accent {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__subtitle {
    margin: 0;
    font-size: 1rem;
    color: rgba(27, 28, 32, 0.72);
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.hero__cta-shell {
    position: relative;
    display: inline-flex;
    padding: 2px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(33, 85, 255, 0.32);
    flex-shrink: 0;
}

.hero__cta-glow {
    position: absolute;
    inset: -200%;
    background: conic-gradient(from 90deg, rgba(226, 203, 255, 0.6), rgba(57, 59, 178, 0.75), rgba(226, 203, 255, 0.6));
    animation: hero-cta-spin 4s linear infinite;
    opacity: 0.85;
    transform-origin: 50% 50%;
    z-index: 0;
}

.hero__cta-btn {
    position: relative;
    z-index: 1;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    border: 1px solid rgba(33, 85, 255, 0.18);
    box-shadow: 0 22px 35px -22px rgba(33, 85, 255, 0.6);
}

.hero__cta-secondary {
    border-color: rgba(33, 85, 255, 0.25);
}

.hero__trust {
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.hero__preview {
    position: relative;
    width: min(100%, 960px);
    border-radius: calc(var(--radius) * 1.5);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 48px 88px -60px rgba(15, 31, 75, 0.65);
    backdrop-filter: blur(18px);
}

.hero__preview::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(33, 85, 255, 0.12);
    pointer-events: none;
}

.hero__image {
    width: 100%;
    border-radius: calc(var(--radius) * 1.3);
    border: 1px solid rgba(15, 31, 75, 0.06);
    box-shadow: 0 32px 60px -40px rgba(33, 85, 255, 0.4);
    background: #fff;
}

@keyframes hero-grid-drift {
    0% {
        transform: rotateX(var(--hero-grid-angle)) skewY(-6deg) translateX(0);
    }
    100% {
        transform: rotateX(var(--hero-grid-angle)) skewY(-6deg) translateX(6%);
    }
}

@keyframes hero-cta-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (prefers-color-scheme: dark) {
    .hero {
        background: radial-gradient(circle at 50% -20%, rgba(120, 119, 198, 0.35), transparent 70%);
    }

    .hero--retro {
        --hero-grid-line-light: rgba(226, 203, 255, 0.2);
    }

    .hero__glow {
        background: radial-gradient(ellipse at top, rgba(120, 119, 198, 0.5), rgba(120, 119, 198, 0));
        opacity: 0.75;
    }

    .hero__grid {
        background-image: linear-gradient(to right, var(--hero-grid-line-dark) 1px, transparent 1px), linear-gradient(to bottom, var(--hero-grid-line-dark) 1px, transparent 1px);
    }

    .hero__subtitle {
        color: rgba(236, 238, 255, 0.78);
    }

    .hero__eyebrow {
        border-color: rgba(226, 203, 255, 0.25);
        color: rgba(245, 245, 255, 0.8);
        background: linear-gradient(135deg, rgba(120, 119, 198, 0.28), rgba(33, 85, 255, 0.24));
    }

    .hero__cta-btn {
        background: rgba(16, 23, 48, 0.88);
        color: #fff;
        border-color: rgba(119, 114, 255, 0.45);
        box-shadow: 0 22px 35px -22px rgba(14, 20, 60, 0.7);
    }

    .hero__cta-secondary {
        color: #fff;
        border-color: rgba(119, 114, 255, 0.32);
    }

    .hero__preview {
        background: rgba(13, 15, 35, 0.78);
        border: 1px solid rgba(119, 114, 255, 0.22);
    }

    .hero__preview::before {
        border-color: rgba(119, 114, 255, 0.28);
    }

    .hero__image {
        border-color: rgba(119, 114, 255, 0.25);
        background: rgba(10, 12, 26, 0.92);
        box-shadow: 0 32px 60px -40px rgba(7, 8, 20, 0.85);
    }
    .nav {
        background: rgba(8, 10, 24, 0.92);
    }

    .nav__tray {
        background: rgba(13, 15, 32, 0.85);
        border-color: rgba(119, 114, 255, 0.25);
        box-shadow: 0 24px 45px -28px rgba(8, 10, 25, 0.75);
    }

    .site-header.is-stuck .nav__tray {
        background: rgba(13, 15, 32, 0.92);
    }

    .nav__indicator {
        background: linear-gradient(135deg, rgba(119, 114, 255, 0.32), rgba(249, 115, 22, 0.22));
        box-shadow: 0 22px 48px -18px rgba(8, 10, 25, 0.7);
    }

    .nav__indicator-lamp {
        background: linear-gradient(90deg, rgba(119, 114, 255, 0.6), rgba(119, 114, 255, 0));
        box-shadow: 0 0 26px rgba(119, 114, 255, 0.45);
    }

    .nav__link {
        background: rgba(19, 21, 38, 0.7);
        border-color: rgba(119, 114, 255, 0.18);
        color: rgba(236, 238, 255, 0.85);
    }

    .nav__link:hover {
        color: #fff;
        background: rgba(33, 85, 255, 0.2);
    }

    .nav__link.is-active {
        color: #fff;
        border-color: rgba(119, 114, 255, 0.35);
        background: rgba(119, 114, 255, 0.28);
    }

    .section__lede {
        color: var(--text);
    }

    .tabs__list {
        background: rgba(33, 85, 255, 0.08);
        border-color: rgba(33, 85, 255, 0.14);
    }

    .tabs__trigger {
        color: var(--secondary);
    }

    .tabs__trigger:hover {
        color: var(--secondary);
        background: rgba(15, 31, 75, 0.1);
    }

    .tabs__trigger.is-active {
        background: var(--secondary);
        color: #fff;
        box-shadow: 0 18px 28px -20px rgba(15, 31, 75, 0.4);
    }

    .tabs__panel {
        color: var(--text);
    }

    .nav__icon {
        background: rgba(119, 114, 255, 0.22);
        color: #fff;
    }

}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 31, 75, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-stuck {
    box-shadow: 0 12px 24px -16px rgba(15, 31, 75, 0.35);
    background: rgba(255, 255, 255, 0.98);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    min-height: 64px;
}

.site-header__logo,
.footer__logo {
    width: 120px;
    height: 36px;
    border-radius: 8px;
    background: rgba(33, 85, 255, 0.12);
}

.site-header__toggle {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    display: inline-flex;
    color: var(--secondary);
}

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    padding: var(--space-5) var(--space-4) var(--space-6);
    width: 100%;
    box-shadow: 0 32px 60px -32px rgba(15, 31, 75, 0.3);
    z-index: 998;
}

.nav.is-open {
    transform: translateY(0);
}

.nav__tray {
    position: relative;
    display: block;
}

.nav__indicator {
    position: absolute;
    top: 8px;
    left: 0;
    height: calc(100% - 16px);
    width: var(--indicator-width, 0px);
    transform: translateX(var(--indicator-x, 0px));
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(33, 85, 255, 0.16), rgba(249, 115, 22, 0.12));
    box-shadow: 0 14px 30px -20px rgba(33, 85, 255, 0.6);
    pointer-events: none;
    opacity: 0;
    overflow: visible;
}

.nav__indicator-lamp {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 34px;
    height: 10px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, rgba(33, 85, 255, 0.45), rgba(33, 85, 255, 0));
    transform: translateX(-50%);
    box-shadow: 0 0 22px rgba(33, 85, 255, 0.35);
}

.nav__indicator[data-state="on"] {
    opacity: 1;
}

.nav__list {
    list-style: none;
    margin: 0;
    padding: var(--space-5) var(--space-4) var(--space-4);
    display: grid;
    gap: var(--space-2);
}

.nav__item {
    position: relative;
}

.nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    border-radius: calc(var(--radius) * 0.75);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(15, 31, 75, 0.1);
    font-weight: 600;
    color: rgba(27, 28, 32, 0.78);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    z-index: 1;
}

.nav__link:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.9);
}

.nav__link.is-active {
    color: var(--primary);
    border-color: rgba(33, 85, 255, 0.3);
    background: rgba(33, 85, 255, 0.1);
}

.nav__link:focus-visible {
    outline: 3px solid rgba(33, 85, 255, 0.35);
    outline-offset: 4px;
}

.nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(33, 85, 255, 0.12);
    color: var(--primary);
    flex-shrink: 0;
}

.nav__label {
    display: inline-flex;
    align-items: center;
}

.social-proof {
    display: grid;
    gap: var(--space-5);
}

.social-proof__metrics {
    order: 2;
}

.social-proof__testimonials {
    order: 1;
}

.score-bar {
    display: grid;
    gap: var(--space-3);
}

.score-bar__meter {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(33, 85, 255, 0.12);
    overflow: hidden;
}

.score-bar__meter span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), rgba(33, 85, 255, 0.65));
}

.stars {
    font-size: 1.5rem;
    color: #ffb800;
}

.avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(33, 85, 255, 0.15);
    border: 3px solid #fff;
}

.carousel {
    position: relative;
}

.carousel__track {
    display: flex;
    gap: var(--space-4);
    transition: transform 0.4s ease;
}

.carousel__control {
    min-width: 80px;
}

.carousel__controls {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-3);
    gap: var(--space-3);
}

.testimonial {
    min-width: min(280px, 100%);
}

.info-card,
.proof-card,
.pricing-card,
.testimonial {
    align-content: start;
}

.pros-cons {
    display: grid;
    gap: var(--space-5);
}

.pros-cons__column {
    background: #fff;
    border-radius: var(--radius);
    padding: var(--space-5);
    box-shadow: var(--shadow);
}

.note {
    margin-top: var(--space-5);
    font-size: 0.95rem;
    color: rgba(27, 28, 32, 0.72);
    text-align: center;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    margin: 0 auto var(--space-5);
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(15, 31, 75, 0.06);
}

.switch {
    position: relative;
    width: 48px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch__slider {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 75, 0.25);
    border-radius: 999px;
    transition: background 0.3s ease;
}

.switch__slider::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 2px;
    top: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(33, 85, 255, 0.25);
    transition: transform 0.3s ease;
}

.switch input:checked + .switch__slider {
    background: var(--primary);
}

.switch input:checked + .switch__slider::before {
    transform: translateX(22px);
}

.pricing-card {
    border: 1px solid rgba(15, 31, 75, 0.08);
    position: relative;
}

.pricing-card--highlight {
    border-color: var(--primary);
    transform: translateY(-8px);
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.pricing-card__note {
    margin: 0;
    color: rgba(27, 28, 32, 0.6);
}

.guarantee {
    font-size: 0.9rem;
    color: rgba(27, 28, 32, 0.72);
}

.faq {
    display: grid;
    gap: var(--space-3);
}

.accordion {
    border: 1px solid rgba(15, 31, 75, 0.1);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
}

.accordion__trigger {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: var(--space-4) var(--space-5);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
}

.accordion__trigger::after {
    content: "+";
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion__trigger[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.accordion__panel {
    padding: 0 var(--space-5) var(--space-5);
}

.steps {
    list-style: none;
    counter-reset: steps;
    display: grid;
    gap: var(--space-4);
    padding-left: 0;
}

.steps li {
    position: relative;
    border-left: 3px solid rgba(33, 85, 255, 0.15);
    padding-left: var(--space-4);
}

.steps li::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: -26px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.trust-seals {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.final-cta {
    padding: var(--space-7) 0;
    background: linear-gradient(120deg, rgba(33, 85, 255, 0.1), rgba(33, 85, 255, 0.05));
}

.final-cta__inner {
    display: grid;
    gap: var(--space-4);
    align-items: center;
}

.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-6) 0 var(--space-4);
}

.footer__inner {
    display: grid;
    gap: var(--space-5);
}

.footer__nav,
.footer__social {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.footer__nav a,
.footer__social a {
    color: rgba(255, 255, 255, 0.85);
}

.footer__legal {
    margin: var(--space-5) 0 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: var(--space-2);
}

.mt-3 {
    margin-top: var(--space-3);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-5 {
    margin-top: var(--space-5);
}

.mb-0 {
    margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.avatars {
    display: flex;
    align-items: center;
}

.avatars .avatar {
    margin-left: -12px;
}

.avatars .avatar:first-child {
    margin-left: 0;
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 48px;
    }

    .nav {
        padding-top: 72px;
    }

    .nav__tray {
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
    }

    .nav__indicator {
        display: none;
    }

    .nav__list {
        padding: var(--space-5) var(--space-4) var(--space-4);
        gap: var(--space-3);
    }

    .nav__link {
        border-radius: var(--radius);
        padding: var(--space-4);
    }

    .nav__icon svg {
        width: 20px;
        height: 20px;
    }

    .hero__preview {
        padding: var(--space-3);
        border-radius: calc(var(--radius) * 1.2);
    }

    .hero__preview::before {
        border-radius: calc(var(--radius) * 1.2);
    }

    .hero__title-line {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .carousel__track {
        width: 100%;
    }

    .carousel__track .testimonial {
        width: 100%;
    }
}

@media (min-width: 600px) {
    .highlight-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .site-header__toggle {
        display: none;
    }

    .nav {
        position: static;
        transform: none !important;
        background: transparent;
        box-shadow: none;
        padding: 0;
        width: auto;
    }

    .nav__tray {
        display: flex;
        align-items: center;
        gap: var(--space-1);
        padding: 6px 8px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid rgba(15, 31, 75, 0.1);
        box-shadow: 0 24px 45px -30px rgba(15, 31, 75, 0.5);
        backdrop-filter: blur(22px);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .nav__tray::-webkit-scrollbar {
        display: none;
    }

    .site-header.is-stuck .nav__tray {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 18px 40px -28px rgba(15, 31, 75, 0.45);
    }

    .nav__indicator {
        display: block;
    }

    .nav__list {
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: var(--space-1);
    }

    .nav__link {
        padding: 10px 18px;
        border-radius: 999px;
        background: transparent;
        border: 1px solid transparent;
        color: rgba(27, 28, 32, 0.68);
    }

    .nav__icon {
        display: none;
    }

    .nav__label {
        display: inline;
    }

    .nav__link:hover {
        background: transparent;
        color: var(--secondary);
    }

    .nav__link.is-active {
        background: transparent;
        border-color: transparent;
        color: var(--primary);
    }

    .site-header__inner {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .nav {
        justify-self: center;
    }

    .section__inner--split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section__inner--reverse {
        direction: ltr;
    }

    .section__inner--reverse .section__content {
        order: 2;
    }

    .social-proof {
        grid-template-columns: 1.2fr 1fr;
        align-items: stretch;
    }

    .social-proof__metrics {
        order: 1;
    }

    .social-proof__testimonials {
        order: 2;
    }

    .carousel__controls {
        display: none;
    }

    .carousel__track {
        transform: none !important;
    }

    .carousel__track .testimonial {
        min-width: 0;
    }

    .pros-cons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .final-cta__inner {
        grid-template-columns: 1fr auto;
    }

    .footer__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: center;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 17px;
    }

    .section {
        padding: var(--space-8) 0;
    }

    .hero {
        padding-top: var(--space-8);
    }

    .nav__list {
        gap: var(--space-5);
    }

    .grid--features {
        gap: var(--space-5);
    }

    .social-proof {
        gap: var(--space-6);
    }
}

@media (max-width: 480px) {
    .pricing-toggle {
        width: 100%;
        justify-content: center;
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__cta-shell,
    .hero__cta-secondary {
        width: 100%;
    }
}
.carousel.is-mobile .carousel__track {
    display: grid;
}

.carousel.is-mobile .testimonial {
    display: none;
}

.carousel.is-mobile .testimonial.is-active {
    display: grid;
}
.nav {
    inset: 0 0 auto 0;
}
.hero,
.section,
.final-cta,
.footer {
    scroll-margin-top: 48px;
}




.ingredients__text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
}











