:root {
  --bee-yellow: #FFD43B;
  --bee-gold: #F5B800;
  --bee-light: #FFF1A8;
  --bee-cream: #FFF8EA;
  --bee-soft: #FFF3D2;
  --bee-orange: #F59E32;
  --bee-apricot: #FFB86B;
  --ink: #071018;
  --ink-soft: #101722;
  --dark-bg: #060A0F;
  --dark-surface: #101722;
  --light-bg: #FFF8EA;
  --light-surface: #FFFFFF;
  --light-surface-warm: #FFFDF7;
  --border-yellow: rgba(255, 212, 59, 0.28);
  --border-light: rgba(7, 16, 24, 0.10);
  --shadow-soft: 0 24px 70px rgba(7, 16, 24, 0.14);
  --bg: var(--dark-bg);
  --surface: var(--dark-surface);
  --surface-strong: #151f2b;
  --text: #FFF3D8;
  --muted: #D5CAB7;
  --border: var(--border-yellow);
  --shadow: 0 24px 76px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg: var(--light-bg);
  --surface: var(--light-surface);
  --surface-strong: var(--light-surface-warm);
  --text: var(--ink);
  --muted: #5D574D;
  --border: var(--border-light);
  --shadow: var(--shadow-soft);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 212, 59, 0.18), transparent 30rem),
    radial-gradient(circle at 86% 14%, rgba(255, 184, 107, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg), var(--bee-yellow) 2%) 55%, var(--bg) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 212, 59, 0.34), transparent 28rem),
    radial-gradient(circle at 88% 9%, rgba(255, 184, 107, 0.24), transparent 26rem),
    linear-gradient(180deg, #FFF8EA 0%, #FFF3D2 48%, #FFF8EA 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--bee-yellow), white 16%);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.52rem 0.6rem;
  border: 1px solid color-mix(in srgb, var(--border), transparent 38%);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface), transparent 18%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
}

:root[data-theme="light"] .site-header {
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 18px 54px rgba(7, 16, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 22%;
  background: color-mix(in srgb, #05080c, var(--bee-yellow) 4%);
  border: 1px solid rgba(255, 212, 59, 0.24);
  overflow: hidden;
}

.brand-mark img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}

.brand-text {
  font-size: 1.03rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.22rem;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
}

.site-nav a {
  padding: 0.58rem 0.72rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 780;
  letter-spacing: 0.01em;
}

.nav-products {
  color: var(--text) !important;
  border: 1px solid color-mix(in srgb, var(--border), transparent 45%);
  background: rgba(255, 212, 59, 0.09);
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.site-nav a:hover {
  background: rgba(255, 212, 59, 0.1);
}

.header-actions,
.badge-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.header-actions {
  justify-content: flex-end;
}

.segmented {
  display: inline-flex;
  padding: 0.2rem;
  border: 1px solid color-mix(in srgb, var(--border), transparent 22%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg), var(--surface) 36%);
}

.segmented button,
.icon-button,
.menu-toggle {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.segmented button {
  min-width: 2.35rem;
  min-height: 2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.segmented button[aria-pressed="true"] {
  color: #0d1116;
  background: var(--bee-yellow);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid color-mix(in srgb, var(--border), transparent 22%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface), transparent 18%);
}

.icon-button:hover {
  color: var(--text);
  border-color: rgba(255, 212, 59, 0.5);
  background: rgba(255, 212, 59, 0.12);
}

.icon-button svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--bee-yellow);
  box-shadow: inset -0.28rem -0.16rem 0 0 #101722;
}

:root[data-theme="light"] .theme-icon {
  box-shadow: 0 0 0 0.22rem rgba(216, 138, 29, 0.2);
}

.menu-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid color-mix(in srgb, var(--border), transparent 22%);
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.24rem auto;
  background: currentColor;
}

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: min(820px, calc(100vh - 6rem));
  padding: clamp(3.5rem, 7vw, 5rem) 0 3.75rem;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin-bottom: 1.05rem;
  padding: 0.45rem 0.7rem 0.45rem 0.45rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface), transparent 18%);
  color: var(--bee-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-pill:hover {
  border-color: rgba(255, 212, 59, 0.5);
  background: rgba(255, 212, 59, 0.1);
}

.product-pill img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--bee-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-subtitle {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1.03;
  font-weight: 800;
}

.hero-body {
  max-width: 41rem;
  font-size: 1.07rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 8px;
  transition: transform 160ms ease, filter 160ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  filter: saturate(1.06) brightness(1.04);
}

.store-badge img {
  width: auto;
  height: 3.05rem;
  object-fit: contain;
}

.text-link,
.primary-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.75rem;
  margin-top: 1.1rem;
  color: var(--text);
  font-weight: 800;
}

.text-link::after,
.primary-link::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  margin-left: 0.55rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.primary-link {
  padding: 0 1.05rem;
  border: 1px solid rgba(255, 212, 59, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 212, 59, 0.18), rgba(255, 184, 107, 0.1));
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 34rem;
}

.visual-glow {
  position: absolute;
  width: min(34rem, 100%);
  aspect-ratio: 1;
  border-radius: 28%;
  background:
    radial-gradient(circle, rgba(255, 212, 59, 0.28) 0%, rgba(255, 184, 107, 0.16) 34%, transparent 68%);
  filter: blur(8px);
}

.visual-disc {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 25.5rem);
  aspect-ratio: 1;
  margin-left: auto;
  border: 1px solid rgba(255, 212, 59, 0.16);
  border-radius: 24%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 241, 168, 0.12), transparent 38%),
    #070707;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

:root[data-theme="light"] .visual-disc {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 212, 59, 0.3), transparent 42%),
    rgba(255, 253, 247, 0.72);
  border-color: rgba(245, 158, 50, 0.18);
}

.visual-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 28px 36px rgba(255, 212, 59, 0.08));
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.mode-card,
.download-section,
.trust-section,
.policy-content {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface), transparent 3%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
}

.info-card,
.mode-card {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.info-card {
  min-height: 12rem;
  position: relative;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.card-marker {
  display: block;
  width: 2rem;
  height: 0.42rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bee-yellow), var(--bee-apricot));
}

.info-card h3,
.mode-card h3 {
  color: var(--text);
}

.mode-card {
  min-height: 17rem;
  background:
    linear-gradient(145deg, rgba(255, 212, 59, 0.10), rgba(255, 184, 107, 0.04) 36%, transparent 58%),
    color-mix(in srgb, var(--surface), transparent 3%);
}

.mode-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(255, 212, 59, 0.38);
  border-radius: 999px;
  color: var(--bee-yellow);
  background: rgba(255, 212, 59, 0.1);
  font-weight: 900;
}

.soft-band {
  margin: 1rem 0 clamp(4rem, 8vw, 7rem);
  border-block: 1px solid color-mix(in srgb, var(--border), transparent 36%);
  background:
    linear-gradient(90deg, rgba(255, 212, 59, 0.08), rgba(255, 184, 107, 0.05), transparent),
    color-mix(in srgb, var(--surface), transparent 38%);
}

.calm-section {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1.9rem;
  align-items: center;
  padding: clamp(1.7rem, 4vw, 3rem) 0;
}

.calm-bee {
  display: grid;
  place-items: center;
  width: 9rem;
  aspect-ratio: 1;
  border-radius: 24%;
  padding: 1.05rem;
  background: #070B10;
  border: 1px solid rgba(255, 212, 59, 0.22);
  box-shadow: 0 18px 32px rgba(255, 212, 59, 0.12);
}

.calm-bee img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: brightness(1.22) saturate(0.72) sepia(0.08);
}

:root[data-theme="light"] .calm-bee {
  background: #101722;
  border-color: rgba(7, 16, 24, 0.18);
  box-shadow: 0 18px 34px rgba(7, 16, 24, 0.18);
}

.calm-section p {
  max-width: 48rem;
}

.download-section,
.trust-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 212, 59, 0.12), rgba(255, 184, 107, 0.06) 40%, transparent),
    color-mix(in srgb, var(--surface), transparent 3%);
}

.download-section {
  margin-bottom: 1.25rem;
}

.download-section h2,
.trust-section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.download-section p,
.trust-section p {
  max-width: 44rem;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 1.05fr) minmax(22rem, 1.8fr);
  gap: 2rem;
  align-items: center;
  width: min(1120px, calc(100% - 2rem));
  margin: 5rem auto 0;
  padding: 1.6rem 0 2.5rem;
  border-top: 1px solid color-mix(in srgb, var(--border), transparent 32%);
}

.footer-product {
  display: grid;
  gap: 0.75rem;
}

.lightball-card {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  min-height: 2.35rem;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
}

.lightball-card::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.15rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.lightball-card:hover {
  color: var(--text);
}

.lightball-card img {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
}

.lightball-card span {
  color: currentColor;
  font-weight: 750;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: end;
  gap: 0.75rem 1.15rem;
  align-items: center;
}

.site-footer nav a {
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.2;
}

.footer-brand .brand-mark {
  width: 2rem;
  height: 2rem;
}

.copyright {
  grid-column: 2;
  justify-self: end;
  margin: -0.95rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}

.policy-hero {
  padding: 5rem 0 1.5rem;
}

.policy-hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.policy-content {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.policy-content section {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.policy-content section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-content h2 {
  font-size: 1.35rem;
}

.policy-content a {
  color: var(--bee-yellow);
  font-weight: 800;
}

[hidden] {
  display: none !important;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-header.is-open .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding-top: 0.4rem;
  }

  .site-header.is-open .header-actions {
    justify-content: flex-start;
    padding-top: 0.2rem;
  }

  .hero,
  .card-grid.three,
  .card-grid.two,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-visual {
    min-height: 25rem;
  }

  .visual-disc {
    margin: 0 auto;
  }

  .site-footer,
  .copyright {
    text-align: left;
  }

  .site-footer {
    align-items: start;
    gap: 1.25rem;
  }

  .site-footer nav {
    grid-template-columns: repeat(2, minmax(8rem, 1fr));
    justify-content: start;
    gap: 0.85rem 1rem;
  }

  .copyright {
    grid-column: 1;
    justify-self: start;
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 1rem, 1120px);
  }

  .site-header {
    margin-top: 0.5rem;
  }

  .site-nav a {
    padding: 0.72rem 0.8rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 3.8rem);
  }

  .hero-subtitle {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    max-width: 16ch;
  }

  .hero-visual {
    display: grid;
    gap: 0.75rem;
    min-height: auto;
  }

  .visual-disc {
    width: min(100%, 22rem);
  }

  .calm-section,
  .download-section,
  .trust-section {
    display: grid;
    grid-template-columns: 1fr;
  }

  .calm-bee {
    width: 7rem;
  }

  .download-section .badge-row,
  .hero .badge-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-badge img {
    height: 2.85rem;
  }

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