/* Sharp Queen — cloned from primalqueen.com structure (Inter 800 headings, 52px h2, 430x60 CTAs, splashes, bordered photo cards). Palette: Teal & Coral. */
:root {
  --plum: #0B3D3A; --plum-2: #12504B; --violet: #FF5A7A; --violet-deep: #E63E60; --magenta: #FF8A9E;
  --lime: #32CD32; --lime-deep: #00AD21; --yellow: #F5F65A; --yellow-deep: #E0E13A;
  --lilac: #FFF2F0; --lilac-2: #FFE9E5; --lilac-3: #FFF8F6; --lilac-4: #FFDCD6;
  --ink: #000; --ink-2: #333; --gray: #555; --white: #fff;
  --font: "Inter", "Helvetica Neue", Arial, sans-serif; --marker: "Permanent Marker", "Comic Sans MS", cursive;
  --wrap: 1170px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; position: relative; }
@media (min-width: 1000px) { .wrap { padding: 0 20px; } }

/* Type scale (reference: h2 52/800 centered plum; h3 29 / 33 / 40; body 16 black) */
.h2 { font-size: 34px; font-weight: 800; line-height: 1.25; color: var(--plum); text-align: center; margin: 0 0 28px; }
@media (min-width: 900px) { .h2 { font-size: 52px; line-height: 1.2; margin-bottom: 40px; } }
.h2--left { text-align: left; }
.h2--36 { font-size: 28px; } @media (min-width: 900px) { .h2--36 { font-size: 36px; } }
.h2--40 { font-size: 30px; } @media (min-width: 900px) { .h2--40 { font-size: 40px; } }
.h2--45 { font-size: 32px; } @media (min-width: 900px) { .h2--45 { font-size: 45px; } }
.h2 em, .h3-mid em, .h3-28 em, .alert__panel em, .hero__h1 em { font-style: normal; color: var(--violet); }
.h3-small { font-size: 20px; font-weight: 800; line-height: 1.45; margin: 0 0 14px; }
.h3-mid { font-size: 24px; font-weight: 800; line-height: 1.35; margin: 0 0 16px; color: var(--plum); }
@media (min-width: 900px) { .h3-mid { font-size: 29px; } }
.h3-33 { font-size: 26px; font-weight: 700; color: var(--plum); margin: 0 0 14px; } @media (min-width: 900px) { .h3-33 { font-size: 33px; } }
.h3-40 { font-size: 30px; font-weight: 700; color: var(--plum); margin: 0 0 14px; } @media (min-width: 900px) { .h3-40 { font-size: 40px; } }
.h3-28 { font-size: 22px; font-weight: 700; margin: 0; line-height: 1.35; } @media (min-width: 900px) { .h3-28 { font-size: 28px; } }
p { margin: 0 0 18px; }
.sub-center { text-align: center; font-size: 20px; color: var(--plum); margin: -10px 0 40px; } @media (min-width: 900px) { .sub-center { font-size: 25px; } }

/* Sections and backgrounds */
.sec { position: relative; padding: 56px 0; overflow: hidden; }
@media (min-width: 900px) { .sec { padding: 70px 0; } }
.sec--lilac { background: var(--lilac); }
.sec--lavender { background: var(--lilac-2); }
.splash { position: absolute; pointer-events: none; z-index: 0; width: 520px; opacity: 0.95; }
.sec > .wrap { position: relative; z-index: 1; }

/* Layout helpers */
.two-col { display: grid; gap: 28px; align-items: center; margin-bottom: 48px; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 72px; } .two-col--rev .two-col__media { order: -1; } }
.two-col__text p { font-size: 16px; } @media (min-width: 900px) { .two-col__text p { font-size: 18px; } }

/* Countdown bar (reference: 92px, purple gradient, yellow tiles) */
.countdown-bar { background: linear-gradient(90deg, #0E4B47 0%, var(--plum) 45%, #167A72 100%); color: var(--white); }
.countdown-bar__inner { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 64px; padding: 8px 12px; }
@media (min-width: 900px) { .countdown-bar__inner { min-height: 92px; gap: 22px; } }
.countdown-bar__mark { width: 34px; height: 34px; }
.countdown-bar__label { display: flex; flex-direction: column; line-height: 1.05; }
.countdown-bar__label strong { font-size: 15px; font-weight: 800; color: var(--yellow); letter-spacing: 0.5px; } @media (min-width: 900px) { .countdown-bar__label strong { font-size: 22px; } }
.countdown-bar__label span { font-size: 12px; font-weight: 700; opacity: 0.9; } @media (min-width: 900px) { .countdown-bar__label span { font-size: 17px; } }
.tiles { display: flex; gap: 6px; } @media (min-width: 900px) { .tiles { gap: 10px; } }
.tile { background: var(--yellow); color: var(--plum); width: 50px; height: 50px; border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; }
.tile b { font-size: 18px; font-weight: 700; } .tile span { font-size: 9px; font-weight: 600; margin-top: 3px; letter-spacing: 0.3px; }
@media (min-width: 900px) { .tile { width: 88px; height: 70px; } .tile b { font-size: 26px; } .tile span { font-size: 13px; } }
.tiles--dark .tile { background: var(--plum); color: var(--yellow); }

/* Header */
.site-header { background: var(--lilac-3); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.burger { background: none; border: 0; width: 44px; height: 44px; display: flex; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.burger span { display: block; height: 2px; background: var(--plum); width: 24px; }
.logo__img { display: block; width: 168px; height: auto; } @media (min-width: 900px) { .logo__img { width: 224px; } }
.logo__img--footer { width: 220px; margin: 0 auto 20px; } @media (min-width: 900px) { .logo__img--footer { width: 260px; } }
.cart { position: relative; width: 44px; height: 44px; border-radius: 50%; background: #FFE3DE; color: var(--plum); display: flex; align-items: center; justify-content: center; text-decoration: none; }
.cart svg { width: 22px; height: 22px; }
.cart__count { position: absolute; right: -2px; bottom: -2px; background: var(--violet); color: #fff; font-size: 11px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Hero (reference: 911px, pink gradient bg with splashes, pill, h1 36/800, CTA, social row, review card, arch) */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #FFF4F2 0%, #FFE3DE 55%, #FFF7F5 100%); padding: 24px 0 40px; }
@media (min-width: 900px) { .hero { padding: 44px 0 52px; min-height: 860px; } }
.splash--hero-1 { right: -200px; top: -200px; width: 520px; opacity: 0.85; z-index: 0; }
.splash--hero-2 { left: -220px; bottom: -220px; width: 520px; opacity: 0.5; }
.hero__grid { display: grid; gap: 28px; position: relative; z-index: 1; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; gap: 40px; } }
.sale-pill { display: inline-block; background: linear-gradient(90deg, #0E4B47, var(--plum-2)); color: #fff; font-weight: 700; font-size: 14px; padding: 8px 14px; border-radius: 3px; margin-bottom: 18px; letter-spacing: 0.3px; }
@media (min-width: 900px) { .sale-pill { font-size: 16px; padding: 8px 20px; } }
.sale-pill__k { color: var(--yellow); }
.hero__h1 { font-size: 26px; font-weight: 800; line-height: 1.35; color: var(--plum); margin: 0 0 16px; }
@media (min-width: 900px) { .hero__h1 { font-size: 36px; line-height: 1.5; } }
.hero__kicker { display: block; color: var(--violet); font-size: 30px; letter-spacing: 0.5px; } @media (min-width: 900px) { .hero__kicker { font-size: 38px; } }
.hero__sub { font-size: 18px; line-height: 1.45; margin: 0 0 26px; color: var(--ink); } @media (min-width: 900px) { .hero__sub { font-size: 24px; } }

/* CTA (reference: 430x60, #00AD21, 21px/700 uppercase, shadow, crown, bracket corners) */
.cta-wrap { position: relative; display: inline-block; padding: 8px; margin: 6px 0 10px; }
.cta-wrap::before, .cta-wrap::after { content: ""; position: absolute; width: 16px; height: 16px; border: 2px solid var(--lime-deep); }
.cta-wrap::before { left: 0; top: 0; border-right: 0; border-bottom: 0; }
.cta-wrap::after { right: 0; bottom: 0; border-left: 0; border-top: 0; }
.cta-wrap > .cta::before, .cta-wrap > .cta::after { content: ""; position: absolute; width: 16px; height: 16px; border: 2px solid var(--lime-deep); }
.cta-wrap > .cta::before { right: -8px; top: -8px; border-left: 0; border-bottom: 0; }
.cta-wrap > .cta::after { left: -8px; bottom: -8px; border-right: 0; border-top: 0; }
.cta { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-width: 300px; width: 100%; max-width: 430px; height: 60px; padding: 0 28px; background: var(--lime); color: #fff; font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 0.3px; text-decoration: none; box-shadow: 0 3px 3px rgba(0,0,0,0.2); transition: background 120ms; }
@media (min-width: 900px) { .cta { font-size: 21px; width: 430px; } }
.cta:hover { background: var(--lime-deep); }
.cta__mark { width: 26px; height: 26px; }
.cta--cart { font-size: 22px; width: 100%; max-width: 100%; } @media (min-width: 900px) { .cta--cart { font-size: 24px; } }
.cta-wrap:not(.cta-wrap--left) { display: block; width: fit-content; margin-left: auto; margin-right: auto; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; font-size: 14px; font-weight: 500; color: var(--ink); margin: 6px 0 18px; }
.trust-row--left { justify-content: flex-start; }
.trust-row--small { font-size: 12.5px; gap: 6px 12px; }
.check { display: inline-flex; align-items: center; gap: 6px; }
.check::before { content: "✓"; display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; background: var(--lime-deep); color: #fff; font-size: 11px; font-weight: 800; }
.social-row { display: flex; align-items: center; gap: 10px; font-size: 15px; margin: 10px 0 6px; flex-wrap: wrap; }
.avatars { display: inline-flex; } .avatars img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; margin-right: -10px; }
.stars { color: var(--lime-deep); letter-spacing: 1px; font-size: 15px; } .stars--violet { color: var(--violet); } .stars--gold { color: #FFC700; }
.hero-review { display: grid; grid-template-columns: 90px 1fr; gap: 16px; align-items: center; background: #fff; border: 2px solid var(--plum); border-radius: 8px; padding: 16px; max-width: 540px; margin-top: 12px; }
.hero-review__avatar { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; }
.hero-review p { font-style: italic; font-size: 15px; margin: 0 0 8px; }
.hero-review__meta { display: flex; justify-content: space-between; align-items: center; }
.hero-review__name { color: var(--violet); font-weight: 700; }
.dots { display: flex; gap: 12px; justify-content: center; margin-top: 18px; max-width: 540px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: #E8CFCB; } .dots i.on { background: var(--violet); }
.hero__media { position: relative; display: flex; justify-content: center; z-index: 1; }
.arch { position: relative; width: 100%; max-width: 400px; aspect-ratio: 400 / 650; border-radius: 200px; overflow: hidden; background: var(--violet); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch--magenta { background: var(--magenta); border: 3px solid #fff; box-shadow: 0 0 0 1px #FFD6DC; }
.arch--photo { max-width: 440px; aspect-ratio: 440 / 520; border-radius: 220px 220px 24px 24px; }
.arch__label { position: absolute; left: 50%; top: 47%; transform: translate(-50%, -50%) rotate(-6deg); font-family: var(--marker); color: #fff; font-size: 24px; white-space: nowrap; text-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.round-badge { width: 142px; height: 142px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #FF9DB0, var(--violet) 55%, #E63E60); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.05; font-size: 14px; font-weight: 600; box-shadow: 0 6px 18px rgba(230, 62, 96, 0.35); border: 3px solid var(--yellow); }
.round-badge b { color: var(--yellow); font-size: 19px; font-weight: 900; }
.round-badge--hero { position: absolute; right: 0; bottom: 40px; }

/* Marquee (reference: 47px purple gradient strip) */
.marquee { background: linear-gradient(90deg, #0E4B47, var(--plum), #167A72); color: #fff; overflow: hidden; height: 47px; display: flex; align-items: center; }
.marquee__track { display: flex; gap: 0; white-space: nowrap; animation: marquee 22s linear infinite; font-weight: 800; font-size: 17px; letter-spacing: 0.3px; }
.marquee__track span { padding: 0 22px; } .marquee__track em { font-style: normal; color: var(--yellow); margin-right: 8px; } .marquee__track i { font-style: normal; color: var(--magenta); margin-left: 14px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* Photo cards (reference: 3px pink border, 12-16px radius) */
.photo-card { border: 3px solid var(--violet); border-radius: 14px; overflow: hidden; background: #fff; position: relative; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card--plum { border-color: var(--plum); }
.photo-card--tall { aspect-ratio: 3 / 4; }
.scribble { position: absolute; left: 14px; bottom: 14px; font-family: var(--marker); color: var(--yellow); font-size: 26px; transform: rotate(-4deg); text-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.gray-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; grid-template-rows: 1fr 1fr; gap: 8px; max-width: 460px; }
.gray-grid img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); border-radius: 8px; }
.gray-grid img:first-child { grid-row: 1 / 3; aspect-ratio: 3 / 4; }
.gray-grid__small { aspect-ratio: 4 / 3; }
.gray { filter: grayscale(1); border-radius: 12px; }

/* Bottle composite + orbit words */
.bottle-scene { position: relative; max-width: 440px; margin: 0 auto; }
.bottle { position: relative; }
.bottle img { border-radius: 12px; }
.bottle__tint { position: absolute; left: 33%; top: 44.4%; width: 37.2%; height: 33.6%; background: #0B3D3A; mix-blend-mode: multiply; opacity: 0.92; border-radius: 4% / 6%; }
.bottle__label { position: absolute; left: 33.3%; top: 44.8%; width: 36.6%; height: 32.8%; border-radius: 0; object-fit: fill; }
.orbit { list-style: none; margin: 0; padding: 0; }
.orbit li { position: absolute; left: var(--x); top: var(--y); background: #fff; border: 2px solid var(--violet); border-radius: 999px; padding: 6px 12px; font-weight: 700; font-size: 14px; color: var(--plum); box-shadow: 0 4px 12px rgba(11,61,58,0.15); white-space: nowrap; }
.lab-banner { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; background: linear-gradient(90deg, #12504B, var(--plum)); border: 2px solid var(--violet); color: #fff; padding: 22px 28px; border-radius: 4px; }
.lab-banner__icon { width: 56px; height: 56px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; } .lab-banner__icon svg { width: 30px; height: 30px; }
.lab-banner__text { font-size: 20px; font-weight: 700; flex: 1; min-width: 240px; } @media (min-width: 900px) { .lab-banner__text { font-size: 28px; } }
.lab-banner__btn { background: var(--magenta); color: #fff; font-weight: 700; font-size: 19px; padding: 12px 26px; border-radius: 4px; text-decoration: none; }

/* Belief */
.belief .two-col { margin-bottom: 0; }
.splash--belief { right: -100px; top: -60px; width: 480px; opacity: 0.7; }

/* Timeline (reference: 2290px, white, vertical line, alternating cards) */
.timeline { background: #fff; }
.deco--tl { position: absolute; left: -60px; top: 120px; width: 300px; opacity: 0.9; border-radius: 12px; transform: rotate(-8deg); display: none; } @media (min-width: 1200px) { .deco--tl { display: block; } }
.tl { list-style: none; margin: 0 auto; padding: 0; position: relative; max-width: 1020px; }
.tl::before { content: ""; position: absolute; left: 24px; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--violet), var(--plum)); }
@media (min-width: 900px) { .tl::before { left: 50%; margin-left: -1.5px; } }
.tl__item { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 0 0 40px 0; align-items: start; }
.tl__when { font-size: 26px; font-weight: 600; color: var(--plum); line-height: 1.2; grid-column: 2; margin-bottom: 8px; }
.tl__dot { grid-column: 1; grid-row: 1 / 3; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 22px; position: relative; z-index: 1; }
.tl__dot--violet { background: var(--violet); } .tl__dot--plum { background: var(--plum); }
.tl__card { grid-column: 2; background: var(--lilac-2); border: 2px solid var(--plum); border-radius: 12px; padding: 22px 26px; position: relative; font-size: 18px; line-height: 1.5; max-width: 420px; }
.tl__card p { margin: 0; } .tl__icon { display: block; font-size: 26px; margin-bottom: 8px; }
@media (min-width: 900px) {
  .tl__item { grid-template-columns: 1fr 56px 1fr; gap: 0 40px; padding-bottom: 56px; }
  .tl__dot { grid-column: 2; grid-row: 1; justify-self: center; }
  .tl__item--right .tl__when { grid-column: 1; text-align: right; font-size: 44px; align-self: start; padding-top: 4px; }
  .tl__item--right .tl__card { grid-column: 3; grid-row: 1; }
  .tl__item--left .tl__when { grid-column: 3; text-align: left; font-size: 44px; padding-top: 4px; }
  .tl__item--left .tl__card { grid-column: 1; grid-row: 1; justify-self: end; }
  .tl__item--right .tl__card::before { content: ""; position: absolute; left: -12px; top: 26px; border: 10px solid transparent; border-right-color: var(--plum); border-left: 0; }
  .tl__item--left .tl__card::after { content: ""; position: absolute; right: -12px; top: 26px; border: 10px solid transparent; border-left-color: var(--plum); border-right: 0; }
}
.fda-box { border: 1px solid var(--plum); padding: 10px 16px; font-size: 12px; text-align: center; max-width: 920px; margin: 8px auto 24px; }

/* How to use */
.howto { background: #fff; }
.splash--howto-1 { left: -180px; top: 60px; width: 520px; opacity: 0.85; } .splash--howto-2 { right: -160px; top: 120px; width: 460px; opacity: 0.6; } .splash--howto-3 { left: 30%; top: -200px; width: 420px; opacity: 0.6; }
.steps-line { display: none; } @media (min-width: 900px) { .steps-line { display: flex; align-items: center; justify-content: center; max-width: 900px; margin: 0 auto 30px; } }
.steps-line span { width: 64px; height: 64px; border-radius: 50%; background: var(--plum); color: #fff; font-weight: 800; font-size: 26px; display: flex; align-items: center; justify-content: center; border: 5px solid var(--violet); }
.steps-line i { flex: 1; height: 0; border-top: 3px dotted var(--plum); }
.steps { display: grid; gap: 22px; } @media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 60px; } }
.step { margin: 0; text-align: center; } .step figcaption { font-weight: 700; font-size: 18px; color: var(--plum); margin-top: 18px; line-height: 1.4; } @media (min-width: 900px) { .step figcaption { font-size: 20px; } }
.steps__note { text-align: center; font-size: 16px; margin: 26px 0 0; }

/* Nutrient cards (reference: 6 cards, purple header, white body, pink footer) */
.splash--nut-1 { left: -140px; top: 240px; width: 520px; opacity: 0.9; } .splash--nut-2 { right: -160px; bottom: 120px; width: 520px; opacity: 0.55; }
.ncards { display: grid; gap: 22px; margin-bottom: 30px; } @media (min-width: 700px) { .ncards { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1000px) { .ncards { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.ncard { border-radius: 14px; overflow: hidden; background: #fff; border: 3px solid var(--plum); display: flex; flex-direction: column; }
.ncard header { background: var(--plum); color: #fff; font-weight: 700; font-size: 22px; padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; }
.ncard header i { font-style: normal; width: 44px; height: 44px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.ncard__body { padding: 22px 20px; text-align: center; flex: 1; }
.ncard__big { display: block; font-size: 64px; font-weight: 900; color: var(--violet); line-height: 1; }
.ncard__vs { display: block; font-size: 15px; color: var(--gray); margin-top: 6px; }
.ncard footer { background: var(--violet); color: #fff; font-weight: 600; font-size: 14px; text-align: center; padding: 12px 16px; }
.promise { margin-top: 50px; }
.promise__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 10px; text-align: center; font-size: 15px; }
@media (min-width: 900px) { .promise__list { grid-template-columns: repeat(6, 1fr); font-size: 18px; } }
.promise__list i { display: flex; align-items: center; justify-content: center; width: 86px; height: 86px; margin: 0 auto 10px; border: 3px solid var(--plum); border-radius: 50%; font-size: 34px; font-style: normal; background: #fff; font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif; }

/* Alert card (reference: pink-bordered card, purple panel) */
.alert { background: #fff; }
.splash--alert-1 { left: -200px; top: 40px; width: 560px; } .splash--alert-2 { right: -200px; top: 20px; width: 560px; opacity: 0.9; }
.alert__card { display: grid; border: 4px solid var(--violet); border-radius: 22px; overflow: hidden; background: var(--plum); }
@media (min-width: 900px) { .alert__card { grid-template-columns: 1fr 1fr; min-height: 520px; } }
.alert__media { background: #FFE3DE; } .alert__media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.alert__panel { color: #fff; padding: 40px 28px; display: flex; flex-direction: column; justify-content: center; }
.alert__panel h3 { font-size: 30px; font-weight: 800; line-height: 1.25; margin: 0 0 30px; } @media (min-width: 900px) { .alert__panel h3 { font-size: 36px; } }
.alert__panel .cta-wrap::before, .alert__panel .cta-wrap::after, .alert__panel .cta::before, .alert__panel .cta::after { border-color: var(--lime); }

/* Reviews showcase (reference: Facebook comment screenshots on pink) */
.splash--show-1 { right: -140px; top: 60px; width: 420px; opacity: 0.8; }
.sample-note { text-align: center; color: var(--violet-deep); font-weight: 600; font-size: 14px; border: 1.5px dashed var(--violet); border-radius: 8px; padding: 8px 14px; max-width: 560px; margin: -14px auto 30px; background: #fff; }
.comments { max-width: 970px; margin: 0 auto; display: grid; gap: 34px; }
.comment { background: #242526; color: #E4E6EB; padding: 34px 40px; display: grid; grid-template-columns: 80px 1fr; gap: 20px; align-items: start; }
.comment img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.comment b { display: block; font-size: 26px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.comment .blur { filter: blur(6px); }
.comment p { font-size: 25px; line-height: 1.45; margin: 0 0 14px; background: #3A3B3C; border-radius: 18px; padding: 0; }
.comment__meta { font-size: 20px; color: #B0B3B8; font-weight: 600; display: flex; justify-content: space-between; } .comment__meta i { font-style: normal; }
@media (max-width: 700px) { .comment { padding: 20px; grid-template-columns: 56px 1fr; } .comment img { width: 56px; height: 56px; } .comment b { font-size: 20px; } .comment p { font-size: 18px; } .comment__meta { font-size: 15px; } }

/* Founder */
.splash--founder { left: -200px; top: -80px; width: 480px; opacity: 0.6; }
.founder__top { display: grid; gap: 26px; align-items: start; margin-bottom: 48px; } @media (min-width: 900px) { .founder__top { grid-template-columns: 360px 1fr; gap: 60px; } }
.founder__card { border-radius: 14px; overflow: hidden; background: var(--magenta); position: relative; }
.founder__card img { width: 100%; aspect-ratio: 4 / 4.3; object-fit: cover; }
.founder__caption { background: var(--plum); color: #fff; text-align: center; padding: 14px; }
.founder__caption b { display: block; font-size: 24px; font-weight: 800; } .founder__caption span { font-size: 14px; font-weight: 700; letter-spacing: 0.4px; color: var(--yellow); }
.placeholder-tag { display: inline-block; margin: 10px 0 0; border: 1.5px dashed var(--magenta); color: var(--magenta); font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: 6px; background: #fff; }
.founder__card .placeholder-tag { position: absolute; left: 12px; top: 12px; margin: 0; }
.founder__lead { font-size: 20px; margin-bottom: 14px; } @media (min-width: 900px) { .founder__lead { font-size: 22px; } }
.xlist { list-style: none; padding: 0; margin: 0 0 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; font-size: 18px; font-weight: 500; }
.xlist li::before { content: "✕ "; color: var(--magenta); font-weight: 800; }
.founder__mid .two-col__text p { font-size: 18px; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border: 3px solid var(--plum); border-radius: 12px; overflow: hidden; background: var(--plum); max-width: 420px; }
.before-after figure { margin: 0; position: relative; } .before-after img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.before-after figcaption { background: var(--plum); color: #fff; text-align: center; font-weight: 700; font-size: 18px; padding: 8px; } .before-after figcaption span { position: absolute; left: 8px; top: 8px; font-size: 12px; background: rgba(0,0,0,0.55); padding: 2px 6px; border-radius: 3px; }
.dotlist { list-style: none; padding: 0; margin: 0 0 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; font-weight: 700; font-size: 18px; }
.dotlist li::before { content: "● "; color: var(--violet); font-size: 12px; vertical-align: middle; }
.plumlist { padding-left: 20px; font-size: 18px; } .plumlist li { margin-bottom: 8px; }

/* Founder 2 */
.love-card { border: 3px solid var(--violet); border-radius: 22px; padding: 34px 28px; background: transparent; margin-bottom: 60px; position: relative; }
.love-card__grid { display: grid; gap: 30px; } @media (min-width: 900px) { .love-card__grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.hearts { list-style: none; padding: 0; margin: 0; font-size: 20px; display: grid; gap: 12px; }
.hearts li::before { content: "♥ "; color: var(--magenta); font-size: 22px; }
.ingred-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: center; font-weight: 700; font-size: 16px; }
.ingred-grid i { display: flex; align-items: center; justify-content: center; width: 96px; height: 96px; margin: 0 auto 8px; border-radius: 50%; background: #FFE3DE; font-size: 44px; font-style: normal; }
.problem-row .two-col__media { display: grid; gap: 22px; }
.capsule-line { display: grid; grid-template-columns: 70px 1fr; gap: 16px; align-items: center; border-top: 1px solid #F3CFC8; border-bottom: 1px solid #F3CFC8; padding: 16px 0; margin: 18px 0; }
.capsule-line__icon { width: 70px; height: 70px; border-radius: 50%; background: var(--violet); display: flex; align-items: center; justify-content: center; font-size: 34px; }

/* Supplement Facts board */
.facts { background: #fff; }
.splash--facts-1 { left: -120px; top: 140px; width: 560px; } .splash--facts-2 { right: -160px; top: 120px; width: 560px; opacity: 0.85; }
.facts__board { max-width: 900px; margin: 0 auto 40px; background: var(--yellow); border: 2px solid var(--plum); padding: 26px; position: relative; overflow: hidden; }
.facts__board::before { content: ""; position: absolute; right: -80px; top: -60px; width: 300px; height: 300px; background: var(--magenta); border-radius: 50%; opacity: 0.85; }
.facts__board::after { content: ""; position: absolute; left: -90px; bottom: -120px; width: 320px; height: 320px; background: var(--violet); border-radius: 50%; opacity: 0.8; }
.facts__board > * { position: relative; z-index: 1; }
.facts__use { font-weight: 800; font-size: 18px; color: var(--plum); margin-bottom: 18px; }
.sf { background: #fff; border: 3px solid #000; padding: 12px 14px; font-family: "Helvetica Neue", Arial, sans-serif; color: #000; }
.sf h3 { font-size: 30px; font-weight: 900; margin: 0 0 4px; letter-spacing: -0.5px; }
.sf__serv { font-size: 14px; border-bottom: 7px solid #000; padding-bottom: 6px; margin-bottom: 8px; }
.sf__cols { display: grid; gap: 0 26px; } @media (min-width: 800px) { .sf__cols { grid-template-columns: 1fr 1fr; } }
.sf table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.sf th { text-align: right; font-weight: 700; font-size: 11px; padding: 4px 0; border-bottom: 1px solid #000; } .sf th:first-child { text-align: left; }
.sf td { padding: 4px 0; border-bottom: 1px solid #000; vertical-align: top; } .sf td:nth-child(2), .sf td:nth-child(3) { text-align: right; white-space: nowrap; padding-left: 8px; }
.sf__blend td { border-top: 4px solid #000; } .sf__blend small { font-size: 10.5px; line-height: 1.3; display: block; }
.sf__foot { font-size: 12px; margin-top: 8px; line-height: 1.4; }
.facts__fda { background: #fff; border: 2px solid #000; font-size: 13px; padding: 10px 14px; margin: 18px 0 0; }
.badges { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; font-weight: 700; font-size: 18px; max-width: 900px; margin: 0 auto; }
@media (min-width: 800px) { .badges { grid-template-columns: repeat(4, 1fr); } }
.badges i { display: flex; align-items: center; justify-content: center; width: 90px; height: 90px; margin: 0 auto 10px; border-radius: 50%; background: var(--yellow); border: 3px solid var(--magenta); font-size: 38px; font-style: normal; }

/* Buy boxes (reference: pink sparkly bg, two boxes, hot pink + light) */
.join { background: radial-gradient(circle at 20% 20%, #FFF0ED 0%, #FFE0DA 40%, #FFF6F4 100%); }
.join__timer { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.join__timer .round-badge { width: 130px; height: 130px; }
.join__note { text-align: center; font-size: 16px; background: rgba(255,255,255,0.7); border-radius: 30px; padding: 8px 20px; width: fit-content; margin: 0 auto 36px; }
.boxes { display: grid; gap: 30px; align-items: start; } @media (min-width: 900px) { .boxes { grid-template-columns: 1fr 1fr; gap: 60px; max-width: 900px; margin: 0 auto; } }
.box { border-radius: 14px; padding: 0 0 24px; position: relative; }
.box--hot { background: var(--violet); color: #fff; box-shadow: 0 12px 30px rgba(230,62,96,0.35); }
.box--light { background: var(--lilac-3); color: var(--plum); border: 2px solid var(--plum); }
.box__sale { background: var(--yellow); color: var(--plum); text-align: center; padding: 12px; border-radius: 14px 14px 0 0; line-height: 1.2; }
.box__sale b { display: block; font-size: 24px; font-weight: 800; } .box__sale span { font-size: 20px; }
.box__title { text-align: center; font-size: 30px; font-weight: 800; line-height: 1.15; margin: 20px 0 14px; } @media (min-width: 900px) { .box__title { font-size: 32px; } }
.box__gallery { padding: 0 18px; }
.box__main { position: relative; background: #FFF0ED; border-radius: 8px; padding: 26px; min-height: 300px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.box__main .bottle--small { width: 180px; } .box__main .bottle--small img { border-radius: 8px; }
.box__main .bottle--behind { position: absolute; left: 26px; bottom: 26px; width: 150px; opacity: 0.95; transform: rotate(-6deg); }
.free-tag { position: absolute; right: 18px; top: 22px; background: var(--plum); color: #fff; font-weight: 800; font-size: 14px; width: 74px; height: 74px; border-radius: 50%; display: flex; align-items: center; justify-content: center; clip-path: polygon(50% 0,61% 9%,75% 5%,82% 18%,96% 22%,95% 36%,100% 50%,95% 64%,96% 78%,82% 82%,75% 95%,61% 91%,50% 100%,39% 91%,25% 95%,18% 82%,4% 78%,5% 64%,0 50%,5% 36%,4% 22%,18% 18%,25% 5%,39% 9%); }
.gift { position: absolute; right: 30px; bottom: 30px; font-size: 64px; }
.box__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.box__thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: 4px; border: 2px solid rgba(255,255,255,0.6); }
.box__list { list-style: none; padding: 0 18px; margin: 18px 0 0; font-size: 16px; font-weight: 600; }
.box__list li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.35); }
.box--light .box__list li { border-color: #F3CFC8; }
.box__list li > span:first-child::before { content: "✓"; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: var(--lime-deep); color: #fff; font-size: 12px; margin-right: 10px; }
.box--light .box__list li > span:first-child::before { background: transparent; color: var(--plum); font-weight: 900; font-size: 16px; }
.box__list em { font-style: normal; color: var(--yellow); font-weight: 800; } .box--light .box__list em { color: var(--magenta); }
.box__list s { opacity: 0.8; }
.box__qty-row { display: flex; justify-content: space-between; align-items: flex-end; padding: 18px 18px 0; gap: 12px; }
.box__qty-row label { font-weight: 700; display: flex; flex-direction: column; gap: 8px; }
.qty { display: inline-flex; border: 2px solid currentColor; border-radius: 4px; overflow: hidden; }
.qty button { background: transparent; color: inherit; border: 0; width: 44px; height: 44px; font-size: 22px; cursor: pointer; } .qty output { width: 56px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.box__price { font-size: 40px; font-weight: 900; line-height: 1; } .box__price s { font-size: 26px; font-weight: 600; opacity: 0.7; margin-right: 6px; }
.box .cta-wrap { display: block; width: auto; margin: 22px 18px 6px; padding: 8px; }
.box .cta-wrap::before, .box .cta-wrap::after, .box .cta::before, .box .cta::after { border-color: var(--lime); }
.box .trust-row { padding: 0 18px; }
.ships { text-align: center; font-size: 14px; font-weight: 500; border-top: 1px solid rgba(255,255,255,0.35); margin: 12px 18px 0; padding-top: 14px; } .box--light .ships { border-color: #F3CFC8; }
.ships mark { background: var(--yellow); color: var(--plum); font-weight: 700; padding: 1px 4px; } .ships b { color: var(--lime); } .box--light .ships b { color: var(--lime-deep); }
.allergen { max-width: 900px; margin: 30px auto 0; font-size: 12.5px; color: var(--plum-2); text-align: center; line-height: 1.5; }

/* Review wall (reference: keyword filters, Stamped widget) */
.wall { background: #fff; }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 0 0 34px; }
.filter { border: 2px solid var(--violet); background: var(--lilac); color: #000; font-weight: 700; font-size: 18px; padding: 10px 16px; border-radius: 8px; text-decoration: none; }
.filter.on { background: var(--violet); color: #fff; }
.wall__summary { display: grid; gap: 22px; align-items: center; margin-bottom: 30px; } @media (min-width: 900px) { .wall__summary { grid-template-columns: 200px 1fr 1fr; gap: 30px; } }
.wall__score b { font-size: 48px; font-weight: 700; display: block; line-height: 1; } .wall__score small { display: block; color: var(--gray); margin-top: 6px; }
.wall__bars div { display: grid; grid-template-columns: 90px 1fr 60px; gap: 10px; align-items: center; font-size: 13px; color: #888; margin-bottom: 4px; }
.wall__bars i { height: 12px; background: #eee; position: relative; } .wall__bars i::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--w); background: #FFC700; }
.wall__photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; max-width: 300px; } .wall__photos img { aspect-ratio: 1; object-fit: cover; }
.wall__tabs { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; margin-bottom: 20px; font-size: 15px; }
.wall__tabs .on { border-bottom: 3px solid #333; padding: 8px 0; font-weight: 600; } .wall__tabs .on b { background: #f2f2f2; padding: 2px 8px; margin-left: 6px; font-weight: 600; }
.wall__sort { border: 1px solid #ddd; padding: 8px 14px; font-size: 13px; color: #555; }
.reviews { display: grid; gap: 0; }
.rev { border-bottom: 1px solid #eee; padding: 24px 0; font-family: "Open Sans", var(--font); }
.rev__who { display: grid; grid-template-columns: 46px 1fr auto; gap: 12px; align-items: center; margin-bottom: 12px; }
.rev__who i { width: 46px; height: 46px; border-radius: 50%; background: #f1f1f1; color: #999; display: flex; align-items: center; justify-content: center; font-style: normal; font-weight: 600; position: relative; }
.rev__who i::after { content: "✓"; position: absolute; right: -4px; bottom: -4px; width: 16px; height: 16px; border-radius: 50%; background: #22B573; color: #fff; font-size: 10px; display: flex; align-items: center; justify-content: center; }
.rev__who b { font-size: 14px; } .rev__who em { font-style: normal; color: #22B573; font-size: 14px; margin-left: 6px; } .rev__who small { display: block; color: #666; font-size: 12px; }
.rev__who time { color: #666; font-size: 13px; }
.rev__title { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.rev p { font-size: 14px; margin: 0 0 12px; color: #222; }
.rev__photos { display: flex; gap: 10px; margin-bottom: 12px; } .rev__photos img { width: 130px; height: 130px; object-fit: cover; }
.rev__share { font-size: 13px; color: #333; }
.wall__more { text-align: center; margin-top: 30px; } .btn-dark { display: inline-block; background: #333; color: #fff; padding: 12px 18px; font-size: 15px; text-decoration: none; }

/* FAQ (reference: white cards, purple 2px border, radius 8, yellow shadow when open) */
.faq { background: #fff; }
.faq__list { max-width: 830px; margin: 0 auto 30px; display: grid; gap: 22px; }
.faq details { background: #fff; border: 2px solid var(--plum); border-radius: 8px; padding: 0 26px; transition: box-shadow 150ms; }
.faq details[open] { box-shadow: -8px 8px 0 var(--yellow); }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; font-size: 20px; padding: 22px 40px 22px 0; position: relative; }
@media (min-width: 900px) { .faq summary { font-size: 22px; } }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 18px; font-size: 30px; font-weight: 300; }
.faq details[open] summary::after { content: "×"; }
.faq__a { padding: 0 0 22px; font-size: 18px; color: #222; line-height: 1.55; }

/* Footer (reference: purple #0B3D3A, centered) */
.footer { background: var(--plum); color: #fff; padding: 40px 0 120px; text-align: center; }
.footer__logo { display: flex; justify-content: center; }
.footer__email { font-weight: 700; margin-bottom: 18px; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 0; margin-bottom: 26px; font-weight: 600; }
.footer__links a { color: #fff; text-decoration: none; padding: 0 12px; border-right: 1px solid rgba(255,255,255,0.6); } .footer__links a:last-child { border-right: 0; }
.footer__box { border: 1px solid #fff; padding: 12px 18px; max-width: 1030px; margin: 0 auto 20px; font-size: 14px; font-weight: 600; }
.footer__legal { max-width: 1000px; margin: 26px auto; font-size: 14px; font-weight: 600; line-height: 1.5; }
.footer__social { display: flex; justify-content: center; gap: 30px; font-size: 22px; margin-bottom: 20px; }
.footer__copy { font-weight: 600; font-size: 14px; }

/* Sticky bottom bar (reference: purple gradient, green button) */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: linear-gradient(90deg, #0E4B47, var(--plum), #167A72); color: #fff; display: flex; align-items: center; justify-content: center; gap: 24px; padding: 10px 16px; transform: translateY(110%); transition: transform 220ms; }
.sticky-bar.show { transform: translateY(0); }
.sticky-bar__text { display: flex; flex-direction: column; line-height: 1.05; } .sticky-bar__text b { color: var(--yellow); font-size: 18px; font-weight: 800; } .sticky-bar__text span { font-size: 14px; font-weight: 700; }
.sticky-bar__btn { background: var(--lime-deep); color: #fff; font-weight: 800; font-size: 16px; padding: 12px 20px; border-radius: 4px; text-decoration: none; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .sticky-bar { transition: none; } }

/* Mobile fixes */
@media (max-width: 899px) {
  .splash--hero-1 { right: -260px; top: -260px; width: 420px; opacity: 0.55; }
  .orbit { display: none; }
  .bottle-scene { max-width: 340px; }
  .facts__board { padding: 14px 10px; }
  .sf { padding: 10px 8px; }
  .sf table { font-size: 11.5px; }
  .sf td:nth-child(2), .sf td:nth-child(3) { white-space: normal; padding-left: 6px; }
  .sf h3 { font-size: 24px; }
  .facts__board::before { width: 200px; height: 200px; } .facts__board::after { width: 220px; height: 220px; }
  .join__timer .round-badge { width: 100px; height: 100px; font-size: 12px; } .join__timer .round-badge b { font-size: 15px; }
  .comment p { font-size: 17px; }
}
