@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

  :root {
    /* Brand extracted from Ikaria: warm reds, golden yellows, dark navy */
    --background: 40 30% 98%;
    --foreground: 220 30% 12%;

    --card: 40 20% 97%;
    --card-foreground: 220 30% 12%;

    --popover: 0 0% 100%;
    --popover-foreground: 220 30% 12%;

    /* Deep coral-red from product branding */
    --primary: 4 78% 52%;
    --primary-foreground: 0 0% 100%;

    /* Warm cream */
    --secondary: 38 40% 94%;
    --secondary-foreground: 220 30% 18%;

    --muted: 38 20% 93%;
    --muted-foreground: 220 12% 50%;

    /* Golden accent from product label */
    --accent: 42 92% 56%;
    --accent-foreground: 220 30% 12%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;

    --border: 38 20% 88%;
    --input: 38 20% 88%;
    --ring: 4 78% 52%;

    --radius: 0.75rem;

    /* Product accents */
    --a1: 4 78% 52%;    /* deep coral-red */
    --a2: 42 92% 56%;   /* golden */
    --a3: 220 40% 18%;  /* dark navy */

    /* Modern pastels */
    --p1: 16 60% 90%;   /* peach blush */
    --p2: 38 50% 88%;   /* warm cream */
    --p3: 160 30% 88%;  /* sage mist */

    /* Gradients */
    --g1: radial-gradient(ellipse at 20% 50%, hsl(16 60% 90% / 0.5), transparent 60%),
          radial-gradient(ellipse at 80% 20%, hsl(38 50% 88% / 0.4), transparent 50%);
    --g2: linear-gradient(135deg, hsl(4 78% 52% / 0.08), hsl(42 92% 56% / 0.06));
    --cta-grad: linear-gradient(135deg, hsl(4 78% 52%), hsl(16 80% 58%));
    --cta-grad-hover: linear-gradient(135deg, hsl(4 78% 48%), hsl(16 80% 52%));

    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }

  .dark {
    --background: 220 30% 7%;
    --foreground: 38 20% 93%;

    --card: 220 28% 10%;
    --card-foreground: 38 20% 93%;

    --popover: 220 28% 10%;
    --popover-foreground: 38 20% 93%;

    --primary: 4 78% 58%;
    --primary-foreground: 0 0% 100%;

    --secondary: 220 20% 16%;
    --secondary-foreground: 38 20% 93%;

    --muted: 220 20% 16%;
    --muted-foreground: 220 12% 60%;

    --accent: 42 80% 52%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 100%;

    --border: 220 20% 18%;
    --input: 220 20% 18%;
    --ring: 4 78% 58%;

    --a1: 4 78% 58%;
    --a2: 42 80% 52%;
    --a3: 220 20% 80%;

    --p1: 16 30% 18%;
    --p2: 38 20% 16%;
    --p3: 160 15% 16%;

    --g1: radial-gradient(ellipse at 20% 50%, hsl(4 78% 52% / 0.08), transparent 60%),
          radial-gradient(ellipse at 80% 20%, hsl(42 80% 52% / 0.06), transparent 50%);
    --g2: linear-gradient(135deg, hsl(4 78% 58% / 0.05), hsl(42 80% 52% / 0.03));
    --cta-grad: linear-gradient(135deg, hsl(4 78% 58%), hsl(16 80% 62%));
    --cta-grad-hover: linear-gradient(135deg, hsl(4 78% 52%), hsl(16 80% 56%));

    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

  * {
    border-color: hsl(var(--border));
  }

  html, body {
    overflow-x: clip;
  }

  body {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'DM Sans', system-ui, sans-serif;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
}

  .container-main {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    padding-inline: 1.25rem;
  }

  @media (min-width: 640px) {
    .container-main {
      padding-inline: 2rem;
    }
  }

  .section-padding {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }

  .bg-creative {
    position: relative;
    background-image: var(--g1), var(--g2);
  }

  .bg-creative::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  .bg-creative > * {
    position: relative;
    z-index: 1;
  }

  /* CTA Button */
  .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--cta-grad);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px hsl(4 78% 52% / 0.3);
    position: relative;
    overflow: hidden;
  }

  .btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 45%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.2) 55%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }

  .btn-cta:hover {
    background: var(--cta-grad-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px hsl(4 78% 52% / 0.4);
  }

  .btn-cta:hover::after {
    transform: translateX(100%);
  }

  .btn-cta:focus-visible {
    outline: 3px solid hsl(var(--ring));
    outline-offset: 2px;
  }

  /* Card hover effect */
  .card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px hsl(var(--a1) / 0.12);
  }

  /* Gradient border */
  .gradient-border {
    position: relative;
    border-radius: var(--radius);
  }

  .gradient-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius) + 1px);
    background: linear-gradient(135deg, hsl(var(--a1) / 0.3), hsl(var(--a2) / 0.3));
    z-index: -1;
  }

  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* Floating CTA mobile */
  @media (max-width: 900px) {
    .floating-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 40;
      padding: 0.75rem 1rem;
      background: hsl(var(--background) / 0.95);
      backdrop-filter: blur(8px);
      border-top: 1px solid hsl(var(--border));
    }
  }

  @media (min-width: 901px) {
    .floating-cta {
      display: none;
    }
  }
}

  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .btn-cta::after {
      display: none;
    }
    .card-hover:hover {
      transform: none;
    }
  }
}



/* ---- Vanilla layout (no Tailwind) ---- */
:root { color-scheme: light dark; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) body { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  /* Apply dark variables */
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  html:not([data-theme="light"]) { }
  /* We toggle .dark class via JS for consistency */
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

* { box-sizing: border-box; }
body { margin: 0; }
img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid hsl(var(--ring)); outline-offset: 2px; border-radius: 10px; }

.container-main { max-width: 1200px; padding-inline: 1.25rem; margin-inline: auto; width: 100%; }
@media (min-width: 640px) { .container-main { padding-inline: 2rem; } }

.section-padding { padding-block: 2.25rem; }
@media (min-width: 768px) { .section-padding { padding-block: 3.25rem; } }

.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { margin: 0 0 .5rem; font-weight: 800; letter-spacing: -0.02em; color: hsl(var(--foreground)); }
.section-title p { margin: 0 auto; max-width: 46rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }

.text-muted { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.bg-card { background: hsl(var(--card)); color: hsl(var(--card-foreground)); }
.border { border: 1px solid hsl(var(--border)); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + .25rem); }

.header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.header.is-scrolled {
  background: hsl(var(--background) / .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; width:100%; height:100%; gap: 12px; }
.brand { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; letter-spacing: -0.02em; font-size: 1.125rem; }
.brand span { color: hsl(var(--primary)); }
.nav { display:flex; gap: 1.25rem; align-items:center; }
.nav a { font-size: .95rem; font-weight: 600; color: hsl(var(--muted-foreground)); transition: color .2s ease; }
.nav a:hover { color: hsl(var(--foreground)); }

.header-actions { display:flex; align-items:center; gap: .75rem; }
.lang-btn {
  font-size: .9rem;
  font-weight: 600;
  padding: .45rem .6rem;
  border-radius: 12px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
  cursor:pointer;
}
.lang-btn:hover { color: hsl(var(--foreground)); }
.lang-menu {
  position:absolute; right:0; top: calc(100% + 8px);
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
  overflow:hidden;
  min-width: 160px;
  z-index: 60;
}
.lang-menu button {
  width:100%;
  text-align:left;
  padding: .65rem .85rem;
  background: transparent;
  border: 0;
  color: hsl(var(--foreground));
  cursor:pointer;
  font-size: .95rem;
}
.lang-menu button:hover { background: hsl(var(--secondary)); }
.lang-menu button.active { color: hsl(var(--primary)); font-weight: 800; }

.hamburger { display:none; border:0; background:transparent; padding:.5rem; cursor:pointer; color: hsl(var(--foreground)); }

@media (max-width: 900px) {
  .nav, .header-actions .desktop-cta { display:none; }
  .hamburger { display:inline-flex; }
  .lang-btn { font-size: .78rem; padding: .4rem .5rem; border-radius: 10px; }
}

/* Mobile drawer */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(6px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.drawer {
  position: fixed; inset: 0 0 0 auto;
  width: 320px; max-width: 82vw;
  background: hsl(var(--card));
  border-left: 1px solid hsl(var(--border));
  z-index: 100;
  transform: translateX(100%);
  transition: transform .25s ease;
  padding: 80px 18px 18px;
}
.drawer a {
  display:block;
  padding: .85rem .9rem;
  border-radius: 14px;
  color: hsl(var(--foreground));
  font-weight: 700;
}
.drawer a:hover { background: hsl(var(--secondary)); }
.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.drawer-open .drawer { transform: translateX(0); }
.drawer-open body { overflow: hidden; }

/* Progress bar */
.progress {
  height: 2px;
  background: transparent;
}
.progress > div {
  height: 100%;
  width: 0%;
  background: hsl(var(--primary));
  transition: width .1s linear;
}

/* Main spacing */
main { padding-top: 64px; }
section { scroll-margin-top: 84px; }

/* Hero */
.hero { min-height: 90vh; display:flex; align-items:center; padding-top: 32px; }
.hero-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items:center; }
.hero h1 { margin:0 0 .75rem; font-size: clamp(1.9rem, 3.2vw, 3.35rem); line-height:1.12; font-weight: 900; }
.hero p.lead { margin:0 0 1.25rem; color: hsl(var(--muted-foreground)); max-width: 40rem; line-height: 1.65; font-size: 1.05rem; }
.hero ul { list-style:none; padding:0; margin: 0 0 1.5rem; display:grid; gap:.75rem; }
.bullet { display:flex; gap:.75rem; align-items:flex-start; }
.bullet .check {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: hsl(var(--primary) / .10);
  display:flex; align-items:center; justify-content:center;
  margin-top: 2px;
}
.hero-img { display:flex; justify-content:center; }
.hero-img img { width: min(420px, 80vw); filter: drop-shadow(0 24px 44px rgba(0,0,0,.18)); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero { text-align:center; padding-top: 18px; }
  .hero p.lead { margin-inline:auto; }
  .hero ul { justify-items: start; max-width: 520px; margin-inline:auto; }
}

/* Grids & cards */
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display:grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.grid-2 { display:grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

.card { padding: 1.25rem; border-radius: var(--radius); border: 1px solid hsl(var(--border)); background: hsl(var(--card)); }
.card h3 { margin: 0 0 .5rem; font-size: 1.05rem; font-weight: 900; letter-spacing:-0.01em; }
.card p { margin:0; color: hsl(var(--muted-foreground)); line-height:1.6; font-size: .95rem; }
.icon { font-size: 1.9rem; margin-bottom: .75rem; }
.center { text-align:center; }
.max-4xl { max-width: 64rem; margin-inline: auto; }
.max-5xl { max-width: 72rem; margin-inline: auto; }
.max-3xl { max-width: 48rem; margin-inline: auto; }
.max-2xl { max-width: 42rem; margin-inline: auto; }

/* Ingredients gradients */
.ing-1 { background: linear-gradient(135deg, hsl(var(--primary) / .10), hsl(var(--accent) / .10)); }
.ing-2 { background: linear-gradient(135deg, hsl(var(--accent) / .10), hsl(var(--p1))); }
.ing-3 { background: linear-gradient(135deg, hsl(var(--p1)), hsl(var(--p3))); }
.ing-4 { background: linear-gradient(135deg, hsl(var(--p3)), hsl(var(--primary) / .10)); }

/* Pricing cards */
.pricing-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.plan { position: relative; display:flex; flex-direction:column; }
.plan.highlight { border-color: hsl(var(--primary)); box-shadow: 0 18px 60px rgba(0,0,0,.12); }
.badge {
  position:absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: .35rem .75rem;
  border-radius: 999px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.plan .plan-head { text-align:center; margin-bottom: 1rem; }
.plan .plan-head h3 { margin: 0; }
.plan .plan-head p { margin: .25rem 0 0; color: hsl(var(--muted-foreground)); font-size: .92rem; }
.plan .plan-img { display:flex; justify-content:center; margin: 1rem 0; }
.plan .plan-img img { width: 180px; }
.price { text-align:center; margin: .25rem 0; }
.price strong { font-size: 2rem; }
.price small { color: hsl(var(--muted-foreground)); font-weight: 700; }
.strike { text-align:center; color: hsl(var(--muted-foreground)); font-size: .95rem; text-decoration: line-through; margin: 0; }
.bonus { text-align:center; color: hsl(var(--primary)); font-weight: 900; font-size: .8rem; margin:.35rem 0; }
.ship { text-align:center; color: hsl(var(--muted-foreground)); font-size: .85rem; margin: 0 0 1rem; }
.plan .cta-wrap { margin-top:auto; padding-top: .5rem; }
.btn-cta.full { width: 100%; justify-content:center; }
.guar { text-align:center; color: hsl(var(--muted-foreground)); font-size: .8rem; margin-top: .65rem; }

/* Bonuses */
.bonus-card img { width: 96px; margin: 0 auto 1rem; }
.free-line { font-size: .85rem; font-weight: 900; color: hsl(var(--primary)); margin: .25rem 0 .75rem; }
.free-line .was { color: hsl(var(--muted-foreground)); text-decoration: line-through; font-weight: 700; }

/* FAQ */
.faq-item { border-radius: var(--radius); border: 1px solid hsl(var(--border)); background: hsl(var(--card)); overflow:hidden; }
.faq-q {
  width:100%;
  display:flex; justify-content:space-between; align-items:center;
  gap: 12px;
  padding: 1rem 1.1rem;
  background: transparent;
  border: 0;
  cursor:pointer;
  text-align:left;
  font-weight: 900;
  color: hsl(var(--foreground));
}
.faq-q:hover { background: hsl(var(--secondary) / .5); }
.faq-a {
  max-height: 0;
  opacity: 0;
  overflow:hidden;
  transition: max-height .2s ease, opacity .2s ease;
}
.faq-a p { margin: 0; padding: 0 1.1rem 1rem; color: hsl(var(--muted-foreground)); line-height: 1.7; font-size: .95rem; }
.faq-item.open .faq-a { max-height: 420px; opacity: 1; }
.chev { transition: transform .2s ease; flex: 0 0 auto; }
.faq-item.open .chev { transform: rotate(180deg); }

/* Footer */
.footer { border-top: 1px solid hsl(var(--border)); text-align:center; }
.footer p { margin: 0 auto .9rem; max-width: 72rem; color: hsl(var(--muted-foreground)); font-size: .82rem; line-height: 1.6; }
.footer p:last-child { margin-bottom:0; }

/* Floating CTA already defined in original CSS; add spacing so it doesn't cover content */
@media (max-width: 900px) {
  body { padding-bottom: 88px; }
}

/* Small helpers */
.mt-0 { margin-top:0; }
.mb-0 { margin-bottom:0; }
