/* ---------- Tokens ---------- */
:root {
  --orange: #F58220;
  --orange-bright: #FF9530;
  --orange-deep: #D86A0E;
  --green: #1FA956;
  --green-deep: #137A3D;
  --ink: #0d0d0d;
  --ink-2: #1a1a1a;
  --paper: #ffffff;
  --bg-soft: #f5f5f5;
  --rule: #e5e5e5;
  --max: 1500px;
  --display: 'Archivo Black', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -.01em; }
p { margin: 0; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Announcement ---------- */
.announcement {
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  text-align: center;
  letter-spacing: .04em;
  font-size: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.announcement .bolt { font-size: 16px; }
.announcement-text { white-space: nowrap; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.header-inner {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
}

.primary-nav {
  display: flex;
  gap: 44px;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 14px;
  color: var(--ink);
}
.primary-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
}
.icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.cart-count {
  position: absolute;
  top: -6px; right: -10px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  line-height: 1.4;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 680px;
}
.hero-left {
  background-color: var(--orange);
  background-image:
    linear-gradient(rgba(245, 130, 32, .78), rgba(245, 130, 32, .78)),
    url('assets/mango-pattern.png');
  background-repeat: repeat;
  background-size: auto, 2800px auto;
  background-blend-mode: normal, screen;
  position: relative;
  z-index: 1;
  padding: 56px 36px 130px max(28px, calc((100vw - var(--max)) / 2 + 28px));
}
.hero-right {
  background-color: var(--green);
  background-image: url('assets/wintergreen-pattern.png');
  background-repeat: repeat;
  background-size: 2800px auto;
  position: relative;
  z-index: 2;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 4% 100%);
  margin-left: -14%;
  filter: drop-shadow(-6px 0 0 #0d0d0d);
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(48px, 6.4vw, 86px);
  color: var(--ink);
  line-height: .92;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hl-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
}
.hl-underline::after {
  content: "";
  position: absolute;
  left: -1%;
  right: -3%;
  bottom: 0;
  height: 26px;
  background-image: url('assets/underline-white.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.hero-lead {
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 460px;
}
.hero-sub {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.55;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}
.btn .chev { font-size: 18px; line-height: 1; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.18); }

.btn-outline-orange {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-orange:hover { background: var(--ink); color: #fff; }

.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-green:hover { background: var(--green-deep); border-color: var(--green-deep); }

.btn-orange-solid {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-orange-solid:hover { background: var(--orange-deep); border-color: var(--orange-deep); }

.btn-green-solid {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-green-solid:hover { background: var(--green-deep); border-color: var(--green-deep); }

.btn-ink-solid {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-ink-solid:hover { background: #000; border-color: #000; }

/* Hide all shop / e-commerce elements while we're in launch-list mode */
.shop-only { display: none !important; }

/* Header CTA button */
.btn-header-cta {
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: .1em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-features {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  width: min(960px, calc(100% - 56px));
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  z-index: 10;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 22px;
  border-right: 1px solid #e8e8e8;
  min-width: 0;
  justify-content: flex-start;
}
.hero-features li:last-child { border-right: none; }
.hf-icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hf-icon svg, .hf-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hf-text {
  font-weight: 900;
  font-size: 11.5px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}

/* Cans overlay — positioned on top of both panels so they can layer over the orange/green divide */
.hero-cans {
  position: absolute;
  top: 50%;
  left: 62%;
  transform: translate(-35%, -55%);
  width: 56%;
  max-width: 760px;
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.18));
  pointer-events: none;
  z-index: 6;
}

/* ---------- Section Title ---------- */
.section-title {
  font-family: var(--display);
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--ink);
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
}
.bolts { color: var(--orange); font-size: .9em; }

/* ---------- Why State ---------- */
.why-state { padding: 64px 0 64px; background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 22px 22px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
}
.why-icon svg, .why-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.why-content { display: flex; flex-direction: column; gap: 6px; }
.why-card h3 {
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: .03em;
  line-height: 1.1;
  margin: 0;
}
.why-card p {
  font-size: 13.5px;
  color: #2b2b2b;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Energy zones ---------- */
.energy-zones {
  background: #f4f4f4;
  padding: 56px 0;
}
.ez-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  border-bottom: none;
}
.ez-left { position: relative; }
.ez-title {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 56px);
  text-transform: uppercase;
  color: var(--ink);
  line-height: .98;
  border-right: 1px solid #d4d4d4;
  padding-right: 24px;
}
.ez-accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}
.ez-accent::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -4%;
  bottom: -2px;
  height: 22px;
  background-image: url('assets/underline-black.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.ez-lead {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ink);
}
.ez-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 22px;
  background: #fff;
  border: 1.5px solid #d8d8d8;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .1em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--ink);
}
.pill-icon { width: 26px; height: 26px; flex-shrink: 0; object-fit: contain; }

/* ---------- Keep the Pouch ---------- */
.keep-pouch {
  background-color: var(--green);
  background-image: url('assets/wintergreen-pattern.png');
  background-repeat: repeat;
  background-size: 2800px auto;
  color: #fff;
  padding: 90px 0;
}
.kp-grid {
  display: grid;
  grid-template-columns: 160px 1.1fr 1fr;
  gap: 28px 40px;
  align-items: center;
}
.kp-icon { width: 160px; height: 160px; flex-shrink: 0; }
.kp-icon svg, .kp-icon img { width: 100%; height: 100%; display: block; object-fit: contain; }
.kp-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  letter-spacing: .005em;
}
.kp-body p { font-size: 16px; line-height: 1.55; }
.kp-body p + p { margin-top: 14px; }
.kp-tag { font-size: 17px; }

/* ---------- Flavors ---------- */
.flavors {
  background: #f7f7f7;
  padding: 60px 0 70px;
}
.flavors-title {
  position: relative;
  gap: 14px;
}
.flavors-title .rule {
  flex: 1;
  height: 1px;
  background: #d0d0d0;
  max-width: 120px;
}
.accent-orange { color: var(--orange); }
.accent-green  { color: var(--green); }

.flavor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.flavor-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1fr;
  align-items: center;
  gap: 40px;
  border-radius: 12px;
  padding: 18px 28px 18px 0;
  background: #ffffff;
  border: 2px solid transparent;
  overflow: visible;
}
.flavor-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 28%;
  z-index: 0;
  border-radius: 10px 0 0 10px;
}
.flavor-mango { border-color: var(--orange); }
.flavor-mango::before {
  background-color: var(--orange);
  background-image:
    linear-gradient(rgba(245, 130, 32, .78), rgba(245, 130, 32, .78)),
    url('assets/mango-pattern.png');
  background-repeat: repeat;
  background-size: auto, 2400px auto;
  background-blend-mode: normal, screen;
}
.flavor-wintergreen { border-color: var(--green); }
.flavor-wintergreen::before {
  background-color: var(--green);
  background-image:
    linear-gradient(rgba(31, 169, 86, .60), rgba(31, 169, 86, .60)),
    url('assets/wintergreen-pattern.png');
  background-repeat: repeat;
  background-size: auto, 2400px auto;
}
.flavor-can {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  margin: -40px 0 -40px 10px;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.22));
}
.flavor-copy { position: relative; z-index: 1; }
.flavor-name {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: .02em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.flavor-tagline { font-size: 15px; margin-bottom: 4px; }
.flavor-desc { font-size: 14px; color: #333; margin-bottom: 14px; max-width: 32ch; }
.flavor-card .btn { padding: 11px 18px; font-size: 13px; }

/* ---------- Footer CTA ---------- */
.cta-footer {
  background: #0d0d0d;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.04), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(255,255,255,.04), transparent 50%);
  color: #fff;
  padding: 32px 0 36px;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}
.cta-title {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 40px);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.cta-text > p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 16px;
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.cta-action { display: flex; justify-content: flex-end; }
.btn-cta {
  padding: 18px 28px;
  font-size: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .hero-cans { left: 64%; width: 50%; max-width: 560px; }
}

@media (max-width: 1024px) {
  .ez-grid { grid-template-columns: 1fr; gap: 28px; }
  .ez-title { border-right: 0; padding-right: 0; }
  .ez-pills { grid-template-columns: repeat(3, 1fr); }
  .kp-grid { grid-template-columns: 110px 1fr; gap: 24px 28px; }
  .kp-icon { width: 110px; height: 110px; }
  .kp-body { grid-column: 2 / -1; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-action { justify-content: flex-start; }
  .header-inner { padding: 12px 22px; gap: 16px; }
  .primary-nav { gap: 28px; }
  .hero-grid { padding-bottom: 0; }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .flavor-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .primary-nav { display: none; }
  /* Stack logo + button vertically and center them on mobile */
  .header-inner {
    padding: 18px 18px 32px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .logo img { height: 80px; }
  .header-actions { justify-content: center; }
  .btn-header-cta { padding: 14px 28px; font-size: 14px; }

  /* Hero: stack vertically — green on top, then orange, then pills */
  .hero { background: var(--orange); }
  .hero-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-right {
    order: 1;
    clip-path: none;
    margin-left: 0;
    height: 360px;
    filter: none;
    border-bottom: 4px solid #0d0d0d;
    z-index: 1;
    overflow: hidden;
    background-image:
      url('assets/hero-cans.png'),
      url('assets/wintergreen-pattern.png');
    background-repeat: no-repeat, repeat;
    background-position: center bottom -8px, center;
    background-size: min(520px, 90%) auto, 1800px auto;
  }
  .hero-left {
    order: 2;
    padding: 36px 22px 28px;
    z-index: 2;
    background-size: auto, 1800px auto;
  }
  .hero-cans { display: none; }
  /* Feature pills: become a static block below the orange section with breathing room */
  .hero-features {
    position: static;
    transform: none;
    width: calc(100% - 32px);
    margin: 24px auto 24px;
    padding: 12px 14px;
  }
  .hf-text { font-size: 11px; }

  .keep-pouch { padding: 56px 0; }
  .kp-title { font-size: 28px; }
  .kp-icon { width: 90px; height: 90px; }
  .kp-grid { grid-template-columns: 90px 1fr; gap: 18px 22px; }
}

@media (max-width: 640px) {
  .announcement { font-size: 12px; padding: 8px 12px; }
  .announcement-text { white-space: normal; }

  .why-grid { grid-template-columns: 1fr; }
  .why-state { padding: 48px 0; }

  .ez-pills { grid-template-columns: repeat(2, 1fr); }
  .pill { font-size: 12px; padding: 11px 14px; gap: 8px; letter-spacing: .06em; }
  .pill-icon { width: 22px; height: 22px; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  /* Feature pills stack vertically into 3 separate capsules on small mobile */
  .hero-features {
    grid-template-columns: 1fr;
    border-radius: 18px;
    padding: 8px 0;
  }
  .hero-features li {
    padding: 10px 18px;
    border-right: none;
    border-bottom: 1px solid #ececec;
  }
  .hero-features li:last-child { border-bottom: none; }

  .section-title {
    display: block !important;
    font-size: 17px;
    padding: 0 8px;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
  }
  .bolts { display: inline-block; font-size: .9em; margin: 0 6px; }
  .flavors-title .rule { display: none; }

  .flavor-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 18px;
    overflow: hidden;
  }
  .flavor-card::before {
    width: 100%;
    height: 220px;
    bottom: auto;
    border-radius: 10px 10px 0 0;
  }
  .flavor-can {
    margin: 18px auto;
    max-width: 220px;
  }
  .flavor-copy { padding: 0 22px; text-align: center; }
  .flavor-desc { margin-left: auto; margin-right: auto; }

  .kp-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .kp-icon { width: 80px; height: 80px; }
  .kp-body { grid-column: 1 / -1; text-align: center; }
  .kp-body p { max-width: 38ch; margin-left: auto; margin-right: auto; }

  .cta-title { font-size: 24px; }
  .cta-trust { gap: 14px; }
  .trust { font-size: 11px; }

  .ez-title { font-size: 32px; }
  .energy-zones { padding: 40px 0; }
}

@media (max-width: 420px) {
  .logo img { height: 72px; }
  .header-inner { padding: 16px 14px 28px; gap: 16px; }
  .header-actions { gap: 12px; }

  .hero-left { padding: 32px 18px 24px; }
  .hero-headline { font-size: 44px; }
  .hero-lead { font-size: 16px; }
  .hero-sub { font-size: 14px; }
  .hero-right { height: 280px; }
  .hero-cans { width: 100%; max-width: 420px; transform: translate(-50%, 18%); }

  .container { padding: 0 18px; }

  .why-card { padding: 18px; gap: 12px; }
  .why-card h3 { font-size: 14px; }
  .why-card p { font-size: 13px; }

  .ez-pills { grid-template-columns: 1fr; }
  .pill { font-size: 12px; padding: 11px 18px; }

  .kp-title { font-size: 24px; }

  .flavor-name { font-size: 26px; }
  .flavor-card::before { height: 180px; }
  .flavor-can { max-width: 180px; }

  .cta-footer { padding: 28px 0 32px; }
  .btn-cta { padding: 14px 22px; font-size: 14px; }
}
