:root {
    --color-forest: #2E4600;
    --color-olive: #486B00;
    --color-leaf: #A2C523;
    --color-soil: #7D4427;
    --color-cream: #F4F1DE;
    --color-cream-muted: rgba(244, 241, 222, 0.72);
    --color-surface: rgba(244, 241, 222, 0.06);
    --color-border: rgba(255, 255, 255, 0.12);
    --color-glow: rgba(162, 197, 35, 0.35);
    --font-display: "DM Sans", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;
    --shadow-soft: 0 24px 80px rgba(46, 70, 0, 0.35);
    --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.22);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --space-section-desktop: clamp(120px, 12vw, 160px);
    --space-section-mobile: clamp(64px, 10vw, 80px);
    --space-card: clamp(24px, 2vw, 32px);
    --transition-ui: 0.3s ease;
    --transition-reveal: 0.55s 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-cream);
    background: radial-gradient(120% 80% at 50% 0%, #486B00 0%, #2E4600 45%, #1a2800 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--color-leaf);
    text-decoration: none;
    transition: color var(--transition-ui), opacity var(--transition-ui);
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: var(--color-forest);
    color: var(--color-cream);
    border-radius: var(--radius-md);
    z-index: 2000;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(46, 70, 0, 0.55);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 1.15rem;
    color: var(--color-cream);
}

.brand span {
    color: var(--color-leaf);
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.site-nav a {
    position: relative;
    color: var(--color-cream-muted);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--color-leaf);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-ui);
}

.site-nav a:hover {
    color: var(--color-cream);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    color: var(--color-cream);
    cursor: pointer;
    font-size: 0.9rem;
}

main {
    overflow-x: hidden;
}

.section {
    padding: var(--space-section-desktop) 24px;
}

.section--tight-top {
    padding-top: clamp(48px, 6vw, 72px);
}

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

.section-head {
    max-width: 720px;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-leaf);
    font-weight: 600;
    margin: 0 0 12px;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.12;
    margin: 0 0 16px;
    color: var(--color-cream);
}

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

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

h3 {
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

p {
    margin: 0 0 1rem;
    color: var(--color-cream-muted);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

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

.hero {
    padding-top: clamp(48px, 6vw, 80px);
    padding-bottom: var(--space-section-desktop);
}

.hero-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}

.hero-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

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

.stars .bx {
    font-size: 18px;
    line-height: 1;
}

.stars .bx.star-muted {
    opacity: 0.35;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-cream-muted);
}

.trust-pill .bx {
    font-size: 16px;
    line-height: 1;
    color: var(--color-leaf);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 20px 0 24px;
}

.price-current {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-cream);
    letter-spacing: -0.02em;
}

.price-old {
    font-size: 1.1rem;
    color: rgba(244, 241, 222, 0.45);
    text-decoration: line-through;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.highlight {
    padding: 14px 16px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    font-size: 0.88rem;
    color: var(--color-cream-muted);
    transition: transform var(--transition-ui), border-color var(--transition-ui), box-shadow var(--transition-ui);
}

.highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(162, 197, 35, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.highlight strong {
    display: block;
    color: var(--color-cream);
    font-weight: 700;
    margin-bottom: 4px;
}

.order-card {
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(46, 70, 0, 0.45);
    padding: var(--space-card);
    box-shadow: var(--shadow-card);
}

.order-card h2 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.field {
    position: relative;
}

.field input,
.field textarea {
    width: 100%;
    padding: 22px 16px 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(244, 241, 222, 0.06);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-ui), box-shadow var(--transition-ui), background var(--transition-ui);
}

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

.field:not(.checkbox-field) label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: rgba(244, 241, 222, 0.55);
    pointer-events: none;
    transition: top var(--transition-ui), font-size var(--transition-ui), color var(--transition-ui), transform var(--transition-ui);
}

.field--textarea:not(.checkbox-field) label {
    top: 22px;
    transform: translateY(0);
}

.field:not(.checkbox-field) input:focus,
.field:not(.checkbox-field) textarea:focus {
    border-color: rgba(162, 197, 35, 0.65);
    box-shadow: 0 0 0 1px rgba(162, 197, 35, 0.25), 0 0 24px rgba(162, 197, 35, 0.12);
    background: rgba(244, 241, 222, 0.08);
}

.field:not(.checkbox-field) input:focus+label,
.field:not(.checkbox-field) input:not(:placeholder-shown)+label,
.field:not(.checkbox-field) textarea:focus+label,
.field:not(.checkbox-field) textarea:not(:placeholder-shown)+label {
    top: 10px;
    font-size: 0.72rem;
    color: var(--color-leaf);
    transform: translateY(0);
}

.field--textarea:not(.checkbox-field) textarea:focus+label,
.field--textarea:not(.checkbox-field) textarea:not(:placeholder-shown)+label {
    top: 10px;
}

.field-error {
    display: none;
    font-size: 0.8rem;
    color: #ffb4a8;
    margin-top: 6px;
}

.field.is-invalid:not(.checkbox-field) input,
.field.is-invalid:not(.checkbox-field) textarea {
    border-color: rgba(255, 120, 100, 0.65);
}

.field.checkbox-field.is-invalid label {
    color: #ffb4a8;
}

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

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-field input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-leaf);
    flex-shrink: 0;
}

.checkbox-field label {
    position: static;
    font-size: 0.88rem;
    color: var(--color-cream-muted);
    pointer-events: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--transition-ui), filter var(--transition-ui), background var(--transition-ui), border-color var(--transition-ui);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-leaf), var(--color-olive));
    color: #142200;
}

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

.btn--ghost {
    background: transparent;
    border-color: var(--color-border);
    color: var(--color-cream);
}

.btn--ghost:hover {
    transform: scale(1.03);
    border-color: rgba(162, 197, 35, 0.45);
}

.btn-block {
    width: 100%;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.cta-actions--start {
    justify-content: flex-start;
    margin-top: 16px;
}

.footer-copy--center {
    margin-top: 28px;
    text-align: center;
}

.brand-spaced {
    margin-bottom: 12px;
}

.social-proof {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.12);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-card);
    align-items: start;
}

.proof-stat {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: transform var(--transition-ui), border-color var(--transition-ui);
}

.proof-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(162, 197, 35, 0.3);
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-cream);
    letter-spacing: -0.02em;
}

.proof-label {
    font-size: 0.9rem;
    color: var(--color-cream-muted);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.review-card {
    padding: 22px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    transition: transform var(--transition-ui), border-color var(--transition-ui);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(162, 197, 35, 0.28);
}

.review-meta {
    font-size: 0.85rem;
    color: rgba(244, 241, 222, 0.55);
    margin-top: 12px;
}

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bento-card {
    grid-column: span 4;
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(244, 241, 222, 0.04);
    transition: transform var(--transition-ui), border-color var(--transition-ui), box-shadow var(--transition-ui);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(162, 197, 35, 0.32);
    box-shadow: var(--shadow-soft);
}

.bento-card--wide {
    grid-column: span 8;
}

.bento-card--tall {
    grid-column: span 6;
    min-height: 220px;
}

.bento-icon {
    display: block;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 14px;
    color: var(--color-leaf);
}

.product-overview-figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.18);
}

.product-overview-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(162, 197, 35, 0.35);
    background: radial-gradient(circle at 40% 35%, rgba(162, 197, 35, 0.15), transparent 65%);
    color: var(--color-leaf);
}

.product-overview-icon .bx {
    font-size: 72px;
    line-height: 1;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

.spec-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.spec-card {
    grid-column: span 4;
    padding: 22px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-ui), border-color var(--transition-ui);
}

.spec-card:hover {
    transform: translateY(-4px);
    border-color: rgba(162, 197, 35, 0.28);
}

.spec-card--span {
    grid-column: span 6;
}

.spec-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(244, 241, 222, 0.5);
    margin-bottom: 8px;
}

.spec-value {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--color-cream);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: transform var(--transition-ui), border-color var(--transition-ui);
}

.step:hover {
    transform: translateY(-4px);
    border-color: rgba(162, 197, 35, 0.3);
}

.step-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-leaf);
}

.step-icon-lg {
    font-size: 44px;
    line-height: 1;
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ingredient-card {
    padding: 22px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(125, 68, 39, 0.12);
    transition: transform var(--transition-ui), border-color var(--transition-ui);
}

.ingredient-card:hover {
    transform: translateY(-4px);
    border-color: rgba(162, 197, 35, 0.28);
}

.instructions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.instruction-icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: rgba(162, 197, 35, 0.08);
    color: var(--color-leaf);
}

.instruction-icon {
    font-size: 28px;
    line-height: 1;
}

.faq-list {
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.12);
}

.faq-item+.faq-item {
    border-top: 1px solid var(--color-border);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--color-cream);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background var(--transition-ui);
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-icon {
    font-size: 22px;
    line-height: 1;
    color: var(--color-leaf);
    flex-shrink: 0;
    transition: transform var(--transition-ui);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-panel {
    display: none;
    padding: 0 24px 20px;
    color: var(--color-cream-muted);
}

.faq-item.is-open .faq-panel {
    display: block;
}

.cta-final {
    text-align: center;
    padding: var(--space-section-desktop) 24px;
    border-radius: var(--radius-xl);
    margin: 0 24px;
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(162, 197, 35, 0.12), rgba(46, 70, 0, 0.5));
    box-shadow: var(--shadow-soft);
}

.cta-final .section-inner {
    max-width: 720px;
}

.disclaimer {
    padding: 48px 24px 120px;
    border-top: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.2);
}

.disclaimer-inner {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.88rem;
    color: rgba(244, 241, 222, 0.6);
}

.disclaimer-inner p {
    margin-bottom: 1rem;
}

.hero-rating-note {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(244, 241, 222, 0.45);
    margin: 0 0 16px;
    max-width: 36rem;
}

.price-legal {
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(244, 241, 222, 0.45);
    margin: 0 0 20px;
    max-width: 38rem;
}

.fda-banner {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(162, 197, 35, 0.22);
    background: rgba(0, 0, 0, 0.25);
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(244, 241, 222, 0.72);
}

.fda-banner p {
    margin: 0;
    color: inherit;
}

.metric-disclaimer {
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(244, 241, 222, 0.4);
    margin: 16px 0 0;
    max-width: 52rem;
}

.footer-legal-note {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    font-size: 0.78rem;
    line-height: 1.45;
}

.site-footer {
    padding: 48px 24px 32px;
    border-top: 1px solid var(--color-border);
    background: #152208;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.footer-links a {
    color: var(--color-cream-muted);
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--color-leaf);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-ui);
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

.footer-copy {
    font-size: 0.88rem;
    color: rgba(244, 241, 222, 0.45);
    margin: 0;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    padding: 20px;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(21, 34, 8, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

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

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

.cookie-save-btn {
    margin-top: 12px;
}

.cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-toggle-row span {
    font-size: 0.92rem;
    color: var(--color-cream-muted);
}

.switch {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

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

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

.slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background: var(--color-cream);
    border-radius: 50%;
    transition: transform var(--transition-ui);
}

.switch input:checked+.slider {
    background: rgba(162, 197, 35, 0.55);
}

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

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

.legal-page {
    padding: 48px 24px 120px;
}

.legal-inner {
    max-width: 820px;
    margin: 0 auto;
}

.legal-inner h2 {
    margin-top: 40px;
    font-size: 1.35rem;
}

.legal-inner h3 {
    margin-top: 28px;
}

.legal-inner ul {
    padding-left: 1.25rem;
    color: var(--color-cream-muted);
}

.thankyou {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

@media (max-width: 1024px) {
    .hero-mosaic {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        order: 1;
    }

    .hero-stack {
        order: 2;
    }

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

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

    .review-cards {
        grid-template-columns: 1fr;
    }

    .bento-card,
    .bento-card--wide,
    .bento-card--tall {
        grid-column: span 12;
    }

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

    .spec-card,
    .spec-card--span {
        grid-column: span 12;
    }

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

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

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

@media (max-width: 768px) {
    .section {
        padding: var(--space-section-mobile) 20px;
    }

    .hero {
        padding-bottom: var(--space-section-mobile);
    }

    .cta-final {
        margin: 0 16px;
        padding: var(--space-section-mobile) 20px;
    }

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

.hero--cinema {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-mesh-gradient {
    position: absolute;
    inset: -20% -10%;
    background: conic-gradient(from 200deg at 70% 20%,
            rgba(162, 197, 35, 0.15),
            transparent 35%,
            rgba(72, 107, 0, 0.2) 55%,
            transparent 75%,
            rgba(125, 68, 39, 0.12) 100%);
    animation: heroMeshShift 18s ease-in-out infinite;
}

@keyframes heroMeshShift {

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

    50% {
        transform: rotate(8deg) scale(1.05);
        opacity: 0.92;
    }
}

.hero-fine-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(244, 241, 222, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 241, 222, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    animation: heroGridDrift 24s linear infinite;
}

@keyframes heroGridDrift {
    to {
        background-position: 48px 48px;
    }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    animation: heroBlobDrift 16s ease-in-out infinite;
}

.hero-blob--x {
    width: min(50vw, 400px);
    height: min(50vw, 400px);
    background: radial-gradient(circle, rgba(162, 197, 35, 0.55) 0%, transparent 68%);
    top: -12%;
    left: -8%;
}

.hero-blob--y {
    width: min(42vw, 340px);
    height: min(42vw, 340px);
    background: radial-gradient(circle, rgba(125, 68, 39, 0.45) 0%, transparent 70%);
    bottom: 0;
    right: -6%;
    animation-delay: -5s;
}

.hero-blob--z {
    width: min(32vw, 260px);
    height: min(32vw, 260px);
    background: radial-gradient(circle, rgba(72, 107, 0, 0.5) 0%, transparent 72%);
    top: 38%;
    left: 28%;
    animation-delay: -9s;
}

@keyframes heroBlobDrift {

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

    40% {
        transform: translate(4%, -5%) scale(1.06);
    }

    70% {
        transform: translate(-5%, 4%) scale(0.94);
    }
}

.hero-shimmer-sweep {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(244, 241, 222, 0.06) 48%,
            rgba(162, 197, 35, 0.08) 50%,
            rgba(244, 241, 222, 0.05) 52%,
            transparent 58%);
    background-size: 200% 100%;
    animation: heroShimmer 7s ease-in-out infinite;
    mix-blend-mode: overlay;
}

@keyframes heroShimmer {

    0%,
    100% {
        background-position: 120% 0;
    }

    50% {
        background-position: -20% 0;
    }
}

.hero-arc {
    position: absolute;
    border: 1px solid rgba(162, 197, 35, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.hero-arc--one {
    width: min(90vw, 520px);
    height: min(90vw, 520px);
    top: 50%;
    left: 50%;
    transform: translate(-48%, -42%);
    animation: heroArcPulse 10s ease-in-out infinite;
}

.hero-arc--two {
    width: min(70vw, 420px);
    height: min(70vw, 420px);
    top: 50%;
    left: 50%;
    transform: translate(-46%, -40%);
    border-color: rgba(244, 241, 222, 0.06);
    animation: heroArcPulse 10s ease-in-out infinite reverse;
    animation-delay: -2s;
}

@keyframes heroArcPulse {

    0%,
    100% {
        opacity: 0.28;
    }

    50% {
        opacity: 0.55;
    }
}

.hero-shell {
    position: relative;
    z-index: 1;
}

.hero-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: min(72vw, 420px);
    padding: 24px 0 40px;
}

.hero-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(162, 197, 35, 0.25);
    pointer-events: none;
    opacity: 0.45;
    animation: heroOrbitGlow 7s ease-in-out infinite;
}

.hero-orbit--a {
    width: min(78vw, 380px);
    height: min(78vw, 380px);
    animation-delay: 0s;
}

.hero-orbit--b {
    width: min(64vw, 310px);
    height: min(64vw, 310px);
    border-color: rgba(244, 241, 222, 0.12);
    animation-delay: -2.3s;
}

.hero-orbit--c {
    width: min(52vw, 250px);
    height: min(52vw, 250px);
    border-style: dashed;
    border-color: rgba(162, 197, 35, 0.28);
    animation-delay: -4.1s;
}

@keyframes heroOrbitGlow {

    0%,
    100% {
        opacity: 0.32;
        filter: blur(0);
    }

    50% {
        opacity: 0.72;
        filter: blur(0.5px);
    }
}

.hero-core-glow {
    position: absolute;
    width: min(55vw, 280px);
    height: min(55vw, 280px);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(162, 197, 35, 0.35) 0%, transparent 62%);
    filter: blur(12px);
    animation: heroCorePulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes heroCorePulse {

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

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

.hero-dust {
    position: absolute;
    inset: 10%;
    z-index: 1;
    pointer-events: none;
}

.hero-dust span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(244, 241, 222, 0.35);
    box-shadow: 0 0 8px rgba(162, 197, 35, 0.4);
    animation: heroDustFloat 5s ease-in-out infinite;
}

.hero-dust span:nth-child(1) {
    top: 12%;
    left: 22%;
    animation-delay: 0s;
}

.hero-dust span:nth-child(2) {
    top: 28%;
    right: 18%;
    animation-delay: 0.6s;
}

.hero-dust span:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 1.1s;
}

.hero-dust span:nth-child(4) {
    bottom: 18%;
    right: 25%;
    animation-delay: 0.3s;
}

.hero-dust span:nth-child(5) {
    top: 45%;
    left: 8%;
    animation-delay: 1.6s;
}

.hero-dust span:nth-child(6) {
    top: 55%;
    right: 12%;
    animation-delay: 0.9s;
}

.hero-dust span:nth-child(7) {
    top: 20%;
    left: 55%;
    animation-delay: 1.3s;
}

.hero-dust span:nth-child(8) {
    bottom: 42%;
    right: 40%;
    animation-delay: 0.45s;
}

@keyframes heroDustFloat {

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

    50% {
        transform: translate(6px, -10px) scale(1.2);
        opacity: 0.95;
    }
}

.hero-product-frame {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: min(92vw, 400px);
    padding: 12px;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: heroProductFloat 6s ease-in-out infinite, heroFrameGlow 5s ease-in-out infinite;
}

.hero-product-frame img {
    border-radius: calc(var(--radius-xl) - 8px);
}

@keyframes heroProductFloat {

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

    33% {
        transform: translateY(-12px) rotate(-0.5deg);
    }

    66% {
        transform: translateY(-6px) rotate(0.4deg);
    }
}

@keyframes heroFrameGlow {

    0%,
    100% {
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 0 rgba(162, 197, 35, 0);
    }

    50% {
        box-shadow: 0 28px 96px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 48px rgba(162, 197, 35, 0.15);
    }
}

.hero-pill-float {
    position: absolute;
    bottom: 8%;
    right: 4%;
    z-index: 3;
    margin: 0;
    animation: heroPillBob 3.5s ease-in-out infinite;
}

.hero-pill-float span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-cream);
    background: rgba(46, 70, 0, 0.55);
    border: 1px solid rgba(162, 197, 35, 0.35);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@keyframes heroPillBob {

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

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

.hero-title-cinema {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.hero-title-brand {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    background: linear-gradient(120deg, var(--color-cream) 0%, var(--color-leaf) 45%, var(--color-cream) 90%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroTitleShine 8s ease-in-out infinite;
}

@keyframes heroTitleShine {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-title-line {
    font-size: clamp(1.25rem, 2.8vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-cream);
    line-height: 1.2;
    max-width: 18ch;
}

.hero-lead {
    display: block;
}

.hero-main.reveal:not(.is-visible) .hero-line-in {
    opacity: 0;
    transform: translateY(16px);
    animation: none;
}

.hero-main.reveal.is-visible .hero-line-in {
    animation: heroLineIn 0.85s ease forwards;
}

.hero-main.reveal.is-visible .hero-line-in--2 {
    animation-delay: 0.12s;
}

.hero-main.reveal.is-visible .hero-line-in--3 {
    animation-delay: 0.22s;
}

.hero-main.reveal.is-visible .hero-line-in--4 {
    animation-delay: 0.34s;
}

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

.hero-main.reveal.is-visible .hero-rating.hero-line-in {
    animation-delay: 0.05s;
}

.hero-stars-pulse .bx {
    animation: heroStarTwinkle 2.4s ease-in-out infinite;
}

.hero-stars-pulse .bx:nth-child(1) {
    animation-delay: 0s;
}

.hero-stars-pulse .bx:nth-child(2) {
    animation-delay: 0.08s;
}

.hero-stars-pulse .bx:nth-child(3) {
    animation-delay: 0.16s;
}

.hero-stars-pulse .bx:nth-child(4) {
    animation-delay: 0.24s;
}

.hero-stars-pulse .bx:nth-child(5) {
    animation-delay: 0.32s;
}

@keyframes heroStarTwinkle {

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

    50% {
        transform: scale(1.08);
        opacity: 0.75;
    }
}

.hero-price-cinema {
    position: relative;
    flex-wrap: wrap;
    align-items: center;
}

.price-current--live {
    position: relative;
    color: var(--color-cream);
}

.hero-main.reveal:not(.is-visible) .price-current--live {
    animation: none;
    opacity: 0.65;
    transform: scale(0.96);
}

.hero-main.reveal.is-visible .price-current--live {
    animation: heroPricePop 0.6s ease 0.45s both;
}

@keyframes heroPricePop {
    from {
        transform: scale(0.92);
        opacity: 0.5;
    }

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

.price-badge {
    margin-left: 8px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    background: rgba(162, 197, 35, 0.2);
    color: var(--color-leaf);
    border: 1px solid rgba(162, 197, 35, 0.35);
    animation: heroBadgePulse 2.5s ease-in-out infinite;
}

@keyframes heroBadgePulse {

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

    50% {
        transform: scale(1.04);
        opacity: 0.85;
    }
}

.hero-main.reveal:not(.is-visible) .hero-highlights .highlight--rise {
    opacity: 0;
    transform: translateY(20px);
    animation: none;
}

.hero-main.reveal.is-visible .hero-highlights .highlight--rise {
    animation: heroHighlightRise 0.6s ease forwards;
}

.hero-main.reveal.is-visible .hero-highlights .highlight--rise:nth-child(1) {
    animation-delay: 0.55s;
}

.hero-main.reveal.is-visible .hero-highlights .highlight--rise:nth-child(2) {
    animation-delay: 0.68s;
}

.hero-main.reveal.is-visible .hero-highlights .highlight--rise:nth-child(3) {
    animation-delay: 0.8s;
}

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

.hero-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(244, 241, 222, 0.55);
    transition: color 0.35s ease, gap 0.35s ease;
}

.hero-scroll-hint:hover {
    color: var(--color-leaf);
    gap: 14px;
}

.hero-scroll-hint-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(162, 197, 35, 0.4);
    position: relative;
}

.hero-scroll-hint-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -60%) rotate(45deg);
    animation: heroChevronBounce 1.8s ease-in-out infinite;
}

@keyframes heroChevronBounce {

    0%,
    100% {
        transform: translate(-50%, -60%) rotate(45deg);
    }

    50% {
        transform: translate(-50%, -35%) rotate(45deg);
    }
}

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

    .hero-mesh-gradient,
    .hero-fine-grid,
    .hero-blob,
    .hero-shimmer-sweep,
    .hero-arc,
    .hero-orbit,
    .hero-core-glow,
    .hero-dust span,
    .hero-product-frame,
    .hero-pill-float,
    .hero-title-brand,
    .hero-main .hero-line-in,
    .hero-stars-pulse .bx,
    .price-current--live,
    .price-badge,
    .hero-main .hero-highlights .highlight--rise,
    .hero-scroll-hint-icon::after {
        animation: none !important;
    }

    .hero-main .hero-line-in,
    .hero-main .hero-highlights .highlight--rise {
        opacity: 1;
        transform: none;
    }

    .hero-product-frame {
        transform: none;
    }

    .hero-title-brand {
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        color: var(--color-cream);
    }
}

.experience-studio {
    position: relative;
}

.studio-tabs {
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    padding: clamp(20px, 4vw, 32px);
    margin-bottom: 40px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.studio-tablist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.studio-tab {
    flex: 1;
    min-width: min(140px, 100%);
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-cream-muted);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.studio-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(162, 197, 35, 0.35);
    color: var(--color-cream);
}

.studio-tab.is-active {
    background: linear-gradient(135deg, rgba(162, 197, 35, 0.25), rgba(46, 70, 0, 0.6));
    border-color: rgba(162, 197, 35, 0.45);
    color: var(--color-cream);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.studio-panel {
    display: none;
    animation: panelIn 0.5s ease forwards;
}

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

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.studio-list {
    margin: 16px 0 0;
    padding-left: 1.2rem;
    color: var(--color-cream-muted);
}

.signal-board {
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    padding: 24px;
    margin-bottom: 32px;
    background: rgba(0, 0, 0, 0.22);
}

.signal-board-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(244, 241, 222, 0.45);
    margin: 0 0 16px;
}

.signal-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    height: 100px;
}

.signal-bar {
    flex: 1;
    min-height: 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--color-leaf), var(--color-olive));
    transform-origin: bottom;
    animation: barPulse 1.2s ease-in-out infinite;
    opacity: 0.85;
}

.signal-bar:nth-child(1) {
    animation-delay: 0s;
}

.signal-bar:nth-child(2) {
    animation-delay: 0.08s;
}

.signal-bar:nth-child(3) {
    animation-delay: 0.16s;
}

.signal-bar:nth-child(4) {
    animation-delay: 0.24s;
}

.signal-bar:nth-child(5) {
    animation-delay: 0.32s;
}

.signal-bar:nth-child(6) {
    animation-delay: 0.4s;
}

.signal-bar:nth-child(7) {
    animation-delay: 0.48s;
}

.signal-bar:nth-child(8) {
    animation-delay: 0.56s;
}

.signal-bar:nth-child(9) {
    animation-delay: 0.64s;
}

.signal-bar:nth-child(10) {
    animation-delay: 0.72s;
}

.signal-bar:nth-child(11) {
    animation-delay: 0.8s;
}

.signal-bar:nth-child(12) {
    animation-delay: 0.88s;
}

@keyframes barPulse {

    0%,
    100% {
        transform: scaleY(0.35);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.metric-ribbon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-chip {
    padding: 22px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(244, 241, 222, 0.04);
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.metric-chip:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(162, 197, 35, 0.35);
}

.metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-cream);
    line-height: 1.1;
}

.metric-caption {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: rgba(244, 241, 222, 0.55);
}

.burger {
    width: 48px;
    height: 48px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
    z-index: 1002;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.burger:hover {
    background: rgba(162, 197, 35, 0.12);
    border-color: rgba(162, 197, 35, 0.35);
}

.burger-box {
    width: 22px;
    height: 16px;
    position: relative;
    display: block;
}

.burger-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--color-cream);
    transition: transform 0.4s ease, opacity 0.3s ease, top 0.4s ease;
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 7px;
}

.burger-line:nth-child(3) {
    top: 14px;
}

.nav-toggle.is-open .burger-line:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.nav-toggle.is-open .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.is-open .burger-line:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 4, 0.65);
    backdrop-filter: blur(4px);
    z-index: 998;
}

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

body.body--nav-open {
    overflow: hidden;
}

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 80px 24px 48px;
        background: linear-gradient(165deg, rgba(21, 34, 8, 0.97) 0%, rgba(46, 70, 0, 0.94) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: 100vh;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .site-nav a {
        font-size: 1.15rem;
        padding: 14px 20px;
        display: inline-block;
    }

    .metric-ribbon {
        grid-template-columns: 1fr;
    }
}

.legal-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 120px;
}

.legal-hero {
    position: relative;
    padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
    margin-bottom: 48px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-top: none;
    background: linear-gradient(135deg, rgba(162, 197, 35, 0.12) 0%, rgba(46, 70, 0, 0.5) 45%, rgba(125, 68, 39, 0.15) 100%);
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 20%, rgba(162, 197, 35, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 60%, rgba(125, 68, 39, 0.18) 0%, transparent 50%);
    pointer-events: none;
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.legal-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.policy-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.25);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-leaf);
}

.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 100px;
    padding: 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
}

.legal-toc-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-leaf);
    margin: 0 0 14px;
    font-weight: 700;
}

.legal-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-toc a {
    display: block;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--color-cream-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.legal-toc a:hover {
    color: var(--color-cream);
    padding-left: 6px;
}

.legal-article {
    min-width: 0;
}

.legal-block {
    margin-bottom: 48px;
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.12);
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.legal-block:hover {
    border-color: rgba(162, 197, 35, 0.2);
    transform: translateY(-2px);
}

.legal-block h2 {
    margin-top: 0;
    font-size: 1.35rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block h3 {
    font-size: 1.05rem;
    margin-top: 24px;
}

.legal-block ul {
    padding-left: 1.25rem;
    color: var(--color-cream-muted);
}

.legal-callout {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-leaf);
    background: rgba(162, 197, 35, 0.08);
    font-size: 0.92rem;
    color: var(--color-cream-muted);
}

.thankyou-page {
    padding: 0;
}

.thankyou-hero {
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(48px, 10vw, 100px) 24px;
    position: relative;
    overflow: hidden;
}

.thankyou-hero::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(from 180deg at 50% 50%, rgba(162, 197, 35, 0.08), transparent 40%, rgba(125, 68, 39, 0.1), transparent 75%);
    animation: thankSpin 28s linear infinite;
    pointer-events: none;
}

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

.thankyou-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.thankyou-check {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 2px solid rgba(162, 197, 35, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: checkPop 0.7s ease forwards;
}

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

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

.thankyou-check .bx {
    font-size: 36px;
    line-height: 1;
    color: var(--color-leaf);
}

.thankyou-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.thankyou-card {
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
}

.thankyou-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--color-cream);
}

@media (max-width: 700px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
    }

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

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

    .header-inner {
        padding: 12px 14px;
        gap: 12px;
    }

    .brand {
        font-size: 0.95rem;
        line-height: 1.25;
        max-width: calc(100vw - 76px);
    }

    .burger {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .section {
        padding: 48px 14px;
    }

    .section--tight-top {
        padding-top: 36px;
    }

    .hero {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .hero-blob--x,
    .hero-blob--y {
        width: 75vw;
        height: 75vw;
        max-width: 240px;
        max-height: 240px;
    }

    .hero-stage {
        min-height: 320px;
        padding-bottom: 32px;
    }

    .hero-title-line {
        max-width: none;
    }

    .hero-scroll-hint {
        margin-top: 16px;
    }

    .price-row {
        flex-wrap: wrap;
    }

    .highlights {
        gap: 10px;
    }

    .highlight {
        padding: 12px 14px;
        font-size: 0.82rem;
    }

    .order-card {
        padding: 18px 14px;
    }

    .field input,
    .field textarea {
        padding: 20px 14px 10px;
        font-size: 16px;
    }

    .btn {
        padding: 14px 20px;
        min-height: 44px;
    }

    .studio-tab {
        min-width: 100%;
        font-size: 0.88rem;
        padding: 12px 14px;
    }

    .signal-bars {
        height: 72px;
        gap: 4px;
    }

    .metric-chip {
        padding: 16px 12px;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .bento-card,
    .spec-card,
    .ingredient-card,
    .instruction {
        padding: 18px 14px;
    }

    .faq-trigger {
        padding: 16px 14px;
        font-size: 0.95rem;
    }

    .cta-final {
        margin: 0 10px;
        padding: 48px 14px;
    }

    .cookie-inner {
        padding: 16px;
    }

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

    .cookie-actions .btn {
        width: 100%;
    }

    .legal-shell {
        padding: 0 14px 80px;
    }

    .legal-block {
        padding: 18px 14px;
        margin-bottom: 32px;
    }

    .legal-hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-footer {
        padding: 36px 14px 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}