/* ============================================
   PAUSBAR — brand tokens
   ============================================ */
@font-face {
  font-family: "Hero";
  src: url("assets/fonts/HeroLight-Light.woff") format("woff"),
       url("assets/fonts/HeroLight-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hero";
  src: url("assets/fonts/HeroLight-Regular.woff") format("woff"),
       url("assets/fonts/HeroLight-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hero";
  src: url("assets/fonts/HeroLight-Bold.woff") format("woff"),
       url("assets/fonts/HeroLight-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --mint-100: #E6F4EA;
  --mint-300: #A9DBB9;
  --mint-500: #7DC796;
  --mint-pkg:  #B7DFB4;
  --mint-pkg-dark: #9AC99C;
  --berry-100: #F3E3F1;
  --berry-700: #8A4A83;
  --pine-700: #5A5A5D;
  --pine-900: #3A3A3D;
  --cream:    #FAF8F3;
  --ink:      #3A3A3D;
  --ink-soft: #6B6B6E;
  --line:     rgba(28, 32, 29, 0.12);
  --warn-bg:  #FFFFFF;

  --font-display: "Hero", system-ui, sans-serif;
  --font-body: "Hero", system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, monospace;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--pine-900);
  text-decoration: none;
}
.nav-logo .bubble {
  width: 30px;
  height: 30px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--pine-900); }
.nav-cta {
  background: var(--pine-900);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--pine-700); }

/* ---------- Mobile hamburger menu ---------- */
.nav-hamburger {
  display: none;
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-hamburger span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--pine-900);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-hamburger span:nth-child(1) { top: 13px; }
.nav-hamburger span:nth-child(2) { top: 21px; }
.nav-hamburger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { top: 17px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: max-height .25s ease;
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 12px 4px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.active { color: var(--pine-900); font-weight: 700; }
.mobile-menu a.nav-cta {
  color: var(--cream) !important;
  text-align: center;
  border-bottom: none;
  margin-top: 8px;
  border-radius: 999px;
  padding: 12px 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--pine-900); color: var(--cream); }
.btn-primary:hover { background: var(--pine-700); }
.btn-outline { background: transparent; border-color: var(--pine-900); color: var(--pine-900); }
.btn-outline:hover { background: var(--mint-100); }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mint-100);
  color: var(--pine-700);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: .02em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* ---------- Flavor rows (hero) ---------- */
.flavor-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.flavor-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.flavor-row .eyebrow {
  margin-bottom: 0;
  white-space: nowrap;
}
.eyebrow-berry {
  background: var(--berry-100);
  color: var(--berry-700);
}
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.status-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-chip.in-stock { color: #2F7D45; }
.status-chip.in-stock .dot { background: #3FAE5C; }
.status-chip.coming-soon { color: #9A6B22; }
.status-chip.coming-soon .dot { background: #D69A3E; }
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  line-height: 1.03;
  margin: 0 0 20px;
  color: var(--pine-900);
  font-weight: 700;
}
h1 em {
  font-style: normal;
  color: var(--mint-500);
}
.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-actions .btn { width: 210px; justify-content: center; }
.product-hero .hero-actions { justify-content: center; }
.product-hero .hero-actions .btn { width: auto; white-space: nowrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
}
.hero-stats div { }
.hero-stats .num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--pine-900);
}
.hero-stats .lbl {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- Pause demo (signature element) ---------- */
.demo-card {
  background: linear-gradient(160deg, var(--mint-300), var(--mint-500));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--pine-900);
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.demo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255,255,255,.35), transparent 60%);
  pointer-events: none;
}
.demo-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.demo-head h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
}
.demo-head span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  opacity: .75;
}

/* Real device render, with LED glow + smoke */
.device-stage {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 18px;
}
.device-render-wrap {
  position: relative;
  width: 116px;
  margin: 0 auto 14px;
}
.device-render {
  width: 100%;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(26, 40, 30, .18));
}
.device-glow {
  position: absolute;
  left: 2%;
  top: 25%;
  width: 13%;
  height: 66%;
  border-radius: 50%;
  background: #57E58C;
  filter: blur(7px);
  opacity: 0;
  transition: opacity .2s ease, background-color .12s ease;
  pointer-events: none;
}
.device-glow.on {
  opacity: .95;
  box-shadow: 0 0 18px 7px rgba(87,229,140,.7);
}
.device-glow.flash {
  background: #ffffff;
  box-shadow: 0 0 22px 9px rgba(255,255,255,.9);
}
.smoke-wrap {
  position: absolute;
  left: 54%;
  top: -6px;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.85), rgba(255,255,255,0) 70%);
  opacity: 0;
  filter: blur(1px);
}
.smoke-wrap.active .smoke {
  animation: smokeRise 1.6s ease-out infinite;
}
.smoke-wrap.active .s1 { animation-delay: 0s; left: -4px; }
.smoke-wrap.active .s2 { animation-delay: .5s; left: 2px; }
.smoke-wrap.active .s3 { animation-delay: 1s; left: -1px; }
@keyframes smokeRise {
  0% { opacity: 0; transform: translateY(0) scale(.6); }
  20% { opacity: .55; }
  100% { opacity: 0; transform: translateY(-48px) scale(1.7); }
}
.device-status-line {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pine-900);
  opacity: .7;
  margin-bottom: 8px;
}
.device-status-line.paused { color: #B8860B; opacity: .9; }
.device-copy {
  font-size: 0.85rem;
  color: var(--pine-900);
  opacity: .85;
  margin: 0;
  line-height: 1.4;
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.demo-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--pine-900);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  cursor: pointer;
  transition: opacity .15s ease, transform .1s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.demo-btn:active { transform: scale(.98); }
.demo-btn:disabled { opacity: .5; cursor: not-allowed; }
.demo-note {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  opacity: .7;
  margin-top: 12px;
  text-align: center;
}

/* ---------- Packaging-mint section (brand consistency block) ---------- */
.pkg-section {
  background: var(--mint-pkg);
  border-radius: var(--radius-lg);
  padding: 64px 48px 64px;
  position: relative;
  overflow: hidden;
}
.pkg-section .puffgraphic {
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 640px;
  max-width: 66%;
  z-index: 0;
  pointer-events: none;
}
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.pkg-text-col {
  padding-top: 81px;
  position: relative;
}
.pkg-text-top {
  padding: 0;
}
.pkg-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.pkg-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pine-900);
}
.pkg-badge img { width: 20px; height: 20px; object-fit: contain; }
.pkg-watermark {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 320px;
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}
.pkg-grid .product-shot {
  position: relative;
  justify-self: center;
}
.pkg-grid .product-shot img {
  position: relative;
  z-index: 1;
  width: 315px;
  max-width: 100%;
  margin-left: 88px;
  filter: drop-shadow(30px 46px 26px rgba(14, 28, 20, .45));
}

/* ---------- How it works ---------- */
.section { padding: 72px 0; }
.section-head { max-width: 56ch; margin-bottom: 44px; }
.section-head .eyebrow { margin-bottom: 14px; }
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--pine-900);
  margin: 0 0 12px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.step .bubble { width: 40px; height: 40px; margin-bottom: 18px; margin-left: auto; margin-right: auto; }
.step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--pine-900);
}
.step p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

/* ---------- Proof strip ---------- */
.proof {
  background: var(--pine-900);
  color: var(--cream);
}
.proof .wrap {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 28px;
  flex-wrap: wrap;
}
.proof-num {
  font-family: var(--font-mono);
  font-size: 2.6rem;
  color: var(--mint-300);
  line-height: 1;
}
.proof-lbl { font-size: 0.92rem; opacity: .8; max-width: 22ch; }
.proof-item { display: flex; align-items: center; gap: 16px; }

/* ---------- Wholesale CTA banner ---------- */
.cta-banner {
  background: var(--mint-100);
  border-radius: var(--radius-lg);
  padding: 52px;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { color: var(--ink-soft); margin: 0 0 28px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  margin-top: 72px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pine-900);
  font-size: 1.1rem;
}
.footer-warn {
  max-width: 52ch;
  font-size: 0.78rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.privacy-note {
  text-align: center;
  white-space: nowrap;
}
.footer-links { display: flex; gap: 20px; font-size: 0.85rem; }
.footer-links a { text-decoration: none; color: var(--ink-soft); }
.footer-links a:hover { color: var(--pine-900); }
footer .wrap.footer-bottom {
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: block;
}

/* ---------- Warning box (matches packaging) ---------- */
.warn-box {
  background: var(--warn-bg);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Product page ---------- */
.product-hero .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding-top: 56px;
}
.packaging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.product-shot {
  background: linear-gradient(160deg, var(--mint-100), #fff);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
}
.spec {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  background: #fff;
}
.spec .k { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 6px; }
.spec .v { font-family: var(--font-mono); font-size: 1.25rem; color: var(--pine-900); }
.flavor-tag {  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mint-100);
  color: var(--pine-700);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 18px;
  white-space: nowrap;
}
.flavor-tag-berry {
  background: var(--berry-100);
  color: var(--berry-700);
}
.flavor-row .flavor-tag { margin-bottom: 0; }

/* ---------- Contact page ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 56px 0;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 28px; }
.info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 1px solid var(--line); }
.info-row .k { font-size: 0.82rem; color: var(--ink-soft); width: 120px; flex-shrink: 0; }
.info-row .v { font-weight: 600; color: var(--ink); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pine-900);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--mint-500);
  outline-offset: 1px;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

/* ---------- Age gate ---------- */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--pine-900);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#age-gate.hidden { display: none; }
.age-card {
  max-width: 420px;
  text-align: center;
}
.age-card .bubble { width: 56px; height: 56px; margin: 0 auto 20px; }
.age-card h2 { color: var(--cream); font-size: 1.6rem; }
.age-card p { color: rgba(250,248,243,.75); margin-bottom: 28px; }
.age-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.age-actions .btn-outline { border-color: var(--cream); color: var(--cream); }
.age-actions .btn-outline:hover { background: rgba(255,255,255,.1); }
.age-actions .btn-primary { background: var(--mint-300); color: var(--pine-900); }
.age-actions .btn-primary:hover { background: var(--mint-500); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .flavor-row .flavor-tag { width: auto; white-space: nowrap; font-size: 0.76rem; padding: 6px 12px; gap: 6px; }
  .flavor-row:has(.flavor-tag) .status-chip { font-size: 0.7rem; }
  .packaging-grid { grid-template-columns: 1fr; }
  .hero .wrap, .product-hero .wrap, .contact-wrap, .pkg-grid { grid-template-columns: 1fr; }
  .pkg-section { padding: 36px 24px 145px; }
  .pkg-watermark { display: none; }
  .pkg-section .puffgraphic { width: calc(100% - 14px); max-width: none; left: 7px; bottom: 0; transform: none; }
  .privacy-note { white-space: normal; }
  footer .wrap { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-warn { margin: 0 auto; }
  footer .wrap.footer-bottom { text-align: center; }
  .pkg-text-top { padding: 0; }
  .pkg-text-col { padding-top: 0; }
  .pkg-grid .product-shot img { margin-left: 0; width: 234px; }
  .steps { grid-template-columns: 1fr; }
  .step { text-align: center; }
  .step .bubble { margin-left: auto; margin-right: auto; }
  .nav-links { display: none; }
  .nav .wrap { justify-content: space-between; position: relative; }
  .nav-hamburger { display: flex; position: relative; left: auto; top: 0; transform: none; order: 2; }
  .mobile-menu { display: block; }
  .mobile-menu.open { max-height: 240px; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .proof .wrap { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-stats { gap: 20px; }
  .hero-stats .num { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
