@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700&family=Newsreader:opsz,wght@6..72,500;6..72,600&display=swap');

:root {
  --night: #061725;
  --night-2: #0b2230;
  --paper: #fffdf8;
  --cream: #f3eee4;
  --ink: #10222d;
  --muted: #60717a;
  --line: rgba(16, 34, 45, .13);
  --gold: #d9a84f;
  --gold-soft: #f0d9a4;
  --green: #247a66;
  --green-light: #71ccb4;
  --blue: #5a79c8;
  --lavender: #8a83cf;
  --danger: #a94a43;
  --shadow: 0 24px 70px rgba(4, 20, 30, .14);
  --radius: 28px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 3px solid var(--green-light); outline-offset: 4px; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }

.topbar {
  position: relative;
  z-index: 20;
  color: #fff;
  background: var(--night);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.topbar-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; display: grid; place-items: center; }
.brand-mark::before { content: '✦'; color: var(--gold-soft); font-size: 15px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-family: 'Manrope', sans-serif; font-size: 14px; letter-spacing: .18em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.54); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.top-link { color: rgba(255,255,255,.7); font-size: 13px; text-decoration: none; }
.top-link:hover { color: #fff; }

.hero {
  --accent: var(--green-light);
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 15%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 30%),
    linear-gradient(135deg, var(--night) 0%, var(--night-2) 62%, #0f2a35 100%);
}
.hero::after { content: ''; position: absolute; inset: auto -12% -45% auto; width: 65vw; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012); pointer-events: none; }
.hero[data-family='digestive'] { --accent: #93ba78; }
.hero[data-family='sleep'] { --accent: #918ad8; }
.hero[data-family='remedies'] { --accent: #caa766; }
.hero-grid { min-height: 700px; padding: 80px 0 88px; display: grid; grid-template-columns: 1.08fr .82fr; gap: 76px; align-items: center; position: relative; z-index: 2; }
.short-page .hero-grid { min-height: 620px; padding-block: 66px 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font: 700 11px/1.3 'Manrope', sans-serif; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3 { margin-top: 0; }
h1 { max-width: 760px; margin: 20px 0 24px; font-family: 'Newsreader', serif; font-size: clamp(48px, 6.7vw, 86px); line-height: .98; letter-spacing: -.04em; font-weight: 600; }
.short-page h1 { font-size: clamp(46px, 5.8vw, 76px); }
.hero-subtitle { max-width: 680px; margin: 0 0 30px; color: rgba(255,255,255,.76); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.65; }
.slogan { margin: 0 0 28px; color: var(--gold-soft); font-family: 'Newsreader', serif; font-size: 21px; font-style: italic; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border: 0; border-radius: 999px; background: var(--gold); color: #122027; font: 700 14px 'Manrope', sans-serif; text-decoration: none; box-shadow: 0 12px 30px rgba(217,168,79,.2); transition: transform .16s var(--ease-out), background .18s var(--ease-out), box-shadow .18s var(--ease-out); }
.btn:hover { background: #e5b65e; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(217,168,79,.28); }
.btn:active { transform: scale(.97); }
.btn.secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); box-shadow: none; }
.btn.secondary:hover { border-color: rgba(255,255,255,.7); }
.btn.dark { background: var(--night); color: #fff; }
.microcopy { margin-top: 16px; color: rgba(255,255,255,.5); font-size: 12px; }
.hero-visual { position: relative; justify-self: end; width: min(100%, 480px); }
.hero-visual::before { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent); border-radius: 54% 30% 46% 26%; opacity: .6; }
.hero-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 52% 28% 44% 24%; box-shadow: 0 40px 90px rgba(0,0,0,.35); position: relative; z-index: 1; }
.offer-chip { position: absolute; z-index: 3; left: -36px; bottom: 42px; width: 170px; padding: 17px 18px; border: 1px solid rgba(255,255,255,.23); background: rgba(4,24,36,.82); backdrop-filter: blur(14px); border-radius: 18px; }
.offer-chip strong { display: block; color: #fff; font: 700 22px 'Manrope', sans-serif; }
.offer-chip span { color: rgba(255,255,255,.62); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 90px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-item { min-height: 46px; display: flex; align-items: center; gap: 13px; padding: 0 26px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; color: var(--green); background: #e9f5f1; font-size: 15px; }
.trust-item strong { display: block; font-size: 13px; }
.trust-item span { display: block; color: var(--muted); font-size: 12px; }

.section { padding: 96px 0; }
.section.soft { background: var(--cream); }
.section.dark { color: #fff; background: var(--night); }
.section-header { max-width: 760px; margin-bottom: 48px; }
.section-header.center { margin-inline: auto; text-align: center; }
.kicker { margin-bottom: 12px; color: var(--green); font: 700 11px 'Manrope', sans-serif; letter-spacing: .17em; text-transform: uppercase; }
.section.dark .kicker { color: var(--green-light); }
h2 { margin-bottom: 18px; font: 600 clamp(36px, 4.4vw, 58px)/1.06 'Newsreader', serif; letter-spacing: -.025em; }
.section-header p { margin: 0; color: var(--muted); font-size: 17px; }
.section.dark .section-header p { color: rgba(255,255,255,.64); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.82); box-shadow: 0 8px 30px rgba(4,20,30,.04); }
.card .number { width: 42px; height: 42px; margin-bottom: 30px; display: grid; place-items: center; border-radius: 14px; background: var(--night); color: #fff; font: 700 13px 'Manrope', sans-serif; }
.card h3 { margin-bottom: 12px; font: 700 18px 'Manrope', sans-serif; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature { display: flex; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.feature::before { content: '✓'; flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: #e4f4ee; color: var(--green); font-weight: 700; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.split .sticky { position: sticky; top: 28px; }
.included { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.included li { position: relative; padding: 22px 10px 22px 42px; border-bottom: 1px solid var(--line); color: var(--muted); }
.included li::before { content: ''; position: absolute; left: 5px; top: 27px; width: 9px; height: 9px; border: 2px solid var(--green); transform: rotate(45deg); }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.audience-item { padding: 20px 22px; border-radius: 18px; color: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); }

.offer-panel { position: relative; overflow: hidden; padding: 58px; border-radius: 38px; background: linear-gradient(135deg, #123529, #0a221c); color: #fff; box-shadow: var(--shadow); }
.offer-panel::after { content: ''; position: absolute; width: 280px; height: 280px; right: -70px; top: -90px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018); }
.offer-panel > * { position: relative; z-index: 1; }
.offer-panel h2 { max-width: 720px; }
.offer-panel p { max-width: 760px; color: rgba(255,255,255,.68); }
.offer-panel .btn { margin-top: 12px; }
.offer-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 6px; }
.offer-meta span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.68); font-size: 11px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; border: 0; background: none; color: var(--ink); text-align: left; font: 700 16px 'Manrope', sans-serif; cursor: pointer; }
.faq-question span:last-child { color: var(--green); font-size: 20px; transition: transform .18s var(--ease-out); }
.faq-item[open] .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { padding: 0 48px 24px 0; color: var(--muted); font-size: 15px; }
.faq-answer p { margin: 0; }
.disclaimer { margin-top: 34px; padding: 22px 24px; border-left: 3px solid var(--gold); background: #fff8e9; color: #635843; font-size: 12px; border-radius: 0 14px 14px 0; }

.catalog-hero { padding: 92px 0 70px; background: linear-gradient(135deg, var(--night), #10303d); color: #fff; }
.catalog-hero h1 { max-width: 900px; }
.catalog-hero p { max-width: 720px; color: rgba(255,255,255,.68); font-size: 18px; }
.catalog-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.catalog-nav a { padding: 9px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.75); text-decoration: none; font-size: 12px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { position: relative; min-height: 270px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 26px; background: #fff; text-decoration: none; overflow: hidden; transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card::after { content: ''; position: absolute; width: 130px; height: 130px; right: -40px; bottom: -45px; border-radius: 50%; background: color-mix(in srgb, var(--green-light) 20%, transparent); }
.product-card small { color: var(--green); font: 700 10px 'Manrope', sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.product-card h3 { margin: 18px 0 12px; font: 600 28px/1.05 'Newsreader', serif; }
.product-card p { margin: 0; color: var(--muted); font-size: 14px; }
.product-card span { margin-top: auto; padding-top: 24px; color: var(--ink); font-weight: 700; font-size: 13px; }

.site-footer { padding: 76px 0 24px; background: var(--night); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .8fr .9fr 1fr; gap: 56px; }
.footer-intro p { max-width: 430px; margin: 26px 0; color: rgba(255,255,255,.54); font-size: 13px; }
.kiwify-badge { display: inline-flex; align-items: center; gap: 9px; color: #9bd449; font-size: 12px; }
.kiwify-badge svg { width: 18px; height: 18px; stroke: currentColor; }
.footer-col h3 { margin: 4px 0 20px; color: rgba(255,255,255,.36); font: 600 10px 'Manrope', sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a { display: block; margin: 0 0 12px; color: rgba(255,255,255,.58); font-size: 12px; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-company { margin-top: 58px; padding: 26px 0; display: grid; grid-template-columns: .95fr 1.35fr .7fr; gap: 28px; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.4); font-size: 10px; }
.footer-company strong { color: rgba(255,255,255,.63); }
.footer-company a { color: #9bd449; text-decoration: none; }
.footer-bottom { padding-top: 24px; display: grid; grid-template-columns: .7fr 1.5fr; gap: 50px; color: rgba(255,255,255,.25); font-size: 9px; }

.legal-hero { padding: 80px 0 64px; background: var(--cream); border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 900px; margin-bottom: 14px; color: var(--ink); }
.legal-hero p { color: var(--muted); }
.legal { padding: 70px 0 100px; }
.legal article { color: var(--muted); }
.legal h2 { margin-top: 48px; font-size: 34px; color: var(--ink); }
.legal h3 { margin-top: 32px; color: var(--ink); font: 700 17px 'Manrope', sans-serif; }
.legal a { color: var(--green); }
.legal table { width: 100%; border-collapse: collapse; margin: 26px 0; }
.legal th, .legal td { padding: 14px; text-align: left; border: 1px solid var(--line); vertical-align: top; }
.legal th { color: var(--ink); background: var(--cream); }

.cookie-banner { position: fixed; z-index: 100; left: 18px; right: 18px; bottom: 18px; margin: auto; max-width: 920px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.72); background: rgba(4,20,30,.96); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,.32); font-size: 12px; backdrop-filter: blur(16px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--green-light); }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-width: 90px; min-height: 36px; padding: 0 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: transparent; color: #fff; cursor: pointer; }
.cookie-actions .accept { color: var(--night); background: var(--green-light); border-color: var(--green-light); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr .7fr; gap: 38px; }
  .offer-chip { left: -16px; }
  .card-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
  .footer-company { grid-template-columns: 1fr 1.2fr; }
  .footer-company a { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .shell, .narrow { width: min(100% - 28px, 1180px); }
  .topbar-inner { min-height: 66px; }
  .brand-copy small { display: none; }
  .top-link { font-size: 11px; }
  .hero-grid, .short-page .hero-grid { min-height: auto; padding: 60px 0 78px; grid-template-columns: 1fr; gap: 46px; }
  h1, .short-page h1 { font-size: clamp(45px, 14vw, 66px); }
  .hero-visual { width: min(88%, 410px); justify-self: center; }
  .offer-chip { left: -8%; bottom: 24px; }
  .trust-grid { grid-template-columns: 1fr; padding: 16px 0; }
  .trust-item { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .card-grid, .feature-list, .audience-grid, .product-grid, .split { grid-template-columns: 1fr; }
  .split { gap: 38px; }
  .split .sticky { position: static; }
  .offer-panel { padding: 34px 24px; border-radius: 28px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 34px 22px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-company, .footer-bottom { grid-template-columns: 1fr; gap: 12px; }
  .footer-company a { grid-column: auto; }
  .cookie-banner { align-items: flex-start; flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .cta-row .btn { width: 100%; }
  .hero-visual { width: 94%; }
  .offer-chip { left: -3%; width: 150px; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
  .reveal.visible { opacity: 1; transform: none; }
}
