/* ==========================================================================
   buywulf.in — site.css  (round 2, 2026-09-10)

   The page is the pack's world photographed: dawn through pines, mist, the
   black bottle. Photography carries the layout; type is set INTO it.
   Art direction and tokens: DESIGN-UPGRADE.md. Plan: DESIGN-PLAN.md.

   Order:
     0  reset + tokens          6  inside the bottle (paper)
     1  type + helpers          7  how to use
     2  icons                   8  price frame
     3  buttons + chrome        9  feel band
     4  hero                   10  straight talk / faq / creators
     5  marquee + four jobs    11  footer, sticky bar, float, inner pages
   ========================================================================== */

/* ============================================================ 0. tokens */
:root {
  /* the pack's world */
  --night: #070A08;
  --pine: #0F1A12;
  --moss: #1B3222;
  --fern: #3F7A31;
  --green: #6FA83F;
  --leaf: #9BD36A;
  --dawn: #E9B85B;
  --cream: #F4EFE3;
  --bone: #E8E1D2;
  --mist: rgba(244, 239, 227, .10);
  --mist-2: rgba(244, 239, 227, .18);
  --soft: rgba(244, 239, 227, .68);

  /* the one paper section */
  --ink: #12160F;
  --ink-soft: #4C5647;
  --ink-line: rgba(18, 22, 15, .14);

  --nav-h: 56px;
  --gutter: 16px;
  --radius: 20px;
  --maxw: 1200px;

  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display: 'Bebas Neue', 'Oswald', 'Arial Narrow', Impact, sans-serif;
  --script: 'Kaushan Script', 'Segoe Script', cursive;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 76px;          /* clearance for the sticky buy bar */
}

img, picture, svg, video { max-width: 100%; }
img { height: auto; border: 0; display: block; }

/* every full-bleed photograph fills its frame */
.hero__media picture,
.jobs__bg picture,
.feel__bg picture,
.how__media picture { display: block; width: 100%; height: 100%; }

/* Film grain. One fixed overlay so no flat fill ever reads as a screen. */
body::after {
  content: '';
  position: fixed;
  inset: -20%;
  z-index: 200;
  pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--dawn); color: var(--night); }

:focus-visible {
  outline: 3px solid var(--dawn);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 300;
  background: var(--dawn);
  color: var(--night);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
}
.skip:focus { top: 12px; }

/* ================================================== 1. type + helpers */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .012em;
  line-height: .9;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.5rem, 15.8vw, 4.4rem);
  line-height: .88;
}

h2 {
  font-size: clamp(2.7rem, 11.4vw, 3.5rem);
  line-height: .92;
}

h3 { font-size: 1.75rem; line-height: .96; }

p { margin: 0; }
p + p { margin-top: 1rem; }

a { color: inherit; }

.lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--soft);
}

.measure { max-width: 34rem; }
.measure-s { max-width: 22rem; }

.small { font-size: .875rem; line-height: 1.5; color: var(--soft); }

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--dawn);
  letter-spacing: 0;
  line-height: 1.4;
}

.u-sr {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: 60px; position: relative; }
.section--tight { padding-block: 44px; }

.section__head { max-width: 34rem; }
.section__head h2 + .lead { margin-top: 1.1rem; }

/* =========================================================== 2. icons */
.ic {
  width: 24px; height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic--fill { fill: currentColor; stroke: none; width: 24px; height: 24px; flex: none; }

/* ============================================== 3. buttons and chrome */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--green);
  color: #071008;
  font: 600 1rem/1 var(--sans);
  letter-spacing: .005em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background .2s, transform .12s, border-color .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
@media (hover: hover) {
  .btn:hover { background: var(--leaf); }
}

.btn--lg { min-height: 56px; font-size: 1.0625rem; padding: 0 1.6rem; }
.btn--block { display: flex; width: 100%; }

.btn--ghost {
  background: transparent;
  border-color: var(--mist-2);
  color: var(--cream);
}
@media (hover: hover) {
  .btn--ghost:hover { background: rgba(244, 239, 227, .08); border-color: var(--mist-2); }
}

.btn--gold { background: var(--dawn); color: #1B1305; }
@media (hover: hover) { .btn--gold:hover { background: #F2C877; } }

/* a quiet text link with a down-chevron */
.linkdown {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  color: var(--cream);
  font-size: 1rem;
  text-decoration: none;
  opacity: .86;
}
.linkdown .ic { width: 18px; height: 18px; }
.linkdown:active { opacity: 1; }

.link-u { color: var(--leaf); text-decoration: underline; text-underline-offset: 3px; }
.paper .link-u { color: #2C6420; }

/* -------------------------------------------------------------- nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.is-stuck {
  background: rgba(7, 10, 8, .84);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: var(--mist);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* the pack's own lockups, inlined from assets/brand (currentColor, no request) */
.lockup {
  display: inline-flex;
  align-items: center;
  min-height: 44px;   /* tap target, not the mark size */
  color: var(--cream);
  text-decoration: none;
}
.lockup__h { width: 117px; height: 31px; flex: none; }   /* 452.5 x 120 */
.lockup__v { width: 96px; height: 76px; flex: none; }    /* 375.2 x 297.3 */
.paper .lockup { color: var(--ink); }

.nav__spacer { flex: 1 1 auto; }

.nav__links { display: none; }

.nav__actions { display: flex; align-items: center; gap: 8px; }

.nav__buy { min-height: 44px; padding: 0 1.05rem; font-size: .9375rem; }
.nav__buy-long { display: none; }

.menu { position: relative; }
.menu > summary {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--mist-2);
  color: var(--cream);
  cursor: pointer;
  list-style: none;
}
.menu > summary::-webkit-details-marker { display: none; }
.menu[open] > summary { background: rgba(244, 239, 227, .08); }

.menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 218px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(10, 16, 11, .97);
  border: 1px solid var(--mist-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .55);
  display: grid;
}
.menu__panel a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
}
.menu__panel a:active { background: rgba(244, 239, 227, .1); }
.menu__panel a:last-child { color: var(--leaf); font-weight: 600; }

/* ============================================================= 4. hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
}

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* scrims: night -> transparent, never grey */
.hero__media::before,
.hero__media::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  pointer-events: none;
}
.hero__media::before {
  top: 0; height: 46%;
  background: linear-gradient(180deg, rgba(7, 10, 8, .94) 0%, rgba(7, 10, 8, .74) 38%, rgba(7, 10, 8, 0) 100%);
}
.hero__media::after {
  bottom: 0; height: 56%;
  background: linear-gradient(0deg, rgba(7, 10, 8, .97) 12%, rgba(7, 10, 8, .84) 40%, rgba(7, 10, 8, 0) 100%);
}

/* the only glow on the page, part one */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(58% 34% at 34% 26%, rgba(233, 184, 91, .16), rgba(233, 184, 91, 0) 72%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 8px);
  padding-bottom: 84px;   /* the WhatsApp float lives down here */
}

.hero__copy { grid-row: 1; }

.hero__script { font-size: 1.375rem; margin-bottom: .35rem; }

.hero h1 { max-width: 12ch; }

/* row 2 is deliberately empty — that is where the bottle reads */
.hero__foot {
  grid-row: 3;
  display: grid;
  gap: 14px;
  /* the type never sits on bare photography: its own scrim travels with it */
  margin-inline: calc(var(--gutter) * -1);
  padding: 30px var(--gutter) 0;
  background: linear-gradient(180deg,
    rgba(7, 10, 8, 0) 0%,
    rgba(7, 10, 8, .72) 16%,
    rgba(7, 10, 8, .92) 38%,
    rgba(7, 10, 8, .96) 100%);
}

.hero__sub {
  max-width: 21rem;
  font-size: 1rem;
  color: rgba(244, 239, 227, .92);
}

.hero__cta { display: grid; gap: 6px; }

.hero__note {
  margin-top: 1rem;
  font-size: .8125rem;
  letter-spacing: .01em;
  color: rgba(244, 239, 227, .84);
  /* this one line can land on the bottle's white shoulder */
  text-shadow: 0 1px 14px rgba(7, 10, 8, .95), 0 0 4px rgba(7, 10, 8, .8);
}

/* ---------------------------------------------------- the price ticket */
.ticket {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .5rem 1rem .5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(233, 184, 91, .4);
  background:
    radial-gradient(120% 180% at 0% 50%, rgba(233, 184, 91, .22), rgba(233, 184, 91, .05) 70%),
    rgba(7, 10, 8, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}
.ticket__price {
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: .8;
  color: var(--dawn);
}
.ticket__meta {
  display: grid;
  gap: 1px;
  padding-left: .85rem;
  border-left: 1px solid rgba(233, 184, 91, .3);
  font-size: .8125rem;
  line-height: 1.35;
}
.ticket__mrp { color: rgba(244, 239, 227, .55); text-decoration: line-through; }
.ticket__del {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-left: auto;
  font-size: .75rem;
  line-height: 1.25;
  color: rgba(244, 239, 227, .78);
  text-align: left;
}
.ticket__del .ic { width: 18px; height: 18px; color: var(--leaf); }

/* At 360 the ticket cannot hold four facts on one line without shrinking the
   type past readable — so it becomes a two-row tag instead. */
@media (max-width: 402px) {
  .hero__inner { padding-bottom: 96px; }
  .ticket { flex-wrap: wrap; row-gap: 4px; padding-bottom: .6rem; }
  .ticket__del {
    width: 100%;
    margin-left: 0;
    padding-top: 4px;
    border-top: 1px solid rgba(233, 184, 91, .22);
    font-size: .8125rem;
  }
}

/* ============================================ 5. marquee + four jobs */
.strip {
  background: var(--moss);
  border-block: 1px solid var(--mist);
}
.marquee { overflow: hidden; padding-block: 13px; }
.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 42s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  padding-inline: 1.15rem;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(244, 239, 227, .9);
}
.marquee__item::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dawn);
}
.marquee:hover .marquee__track,
.marquee:active .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translate3d(-50%, 0, 0); } }

.strip__answer {
  padding-block: 26px 28px;
  font-family: var(--display);
  font-size: clamp(2.25rem, 9.5vw, 3rem);
  line-height: .95;
  color: var(--cream);
  background: var(--night);
}

/* --------------------------------------------------------- four jobs */
.jobs {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
  padding-block: 56px 64px;
}
.jobs__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 190%;                 /* crops past the render's baked-in text */
  transform: translate(-50%, -50%);
  z-index: 0;
  overflow: hidden;
}
.jobs__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(.85) blur(1px);
}
.jobs__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 8, .9) 0%, rgba(7, 10, 8, .66) 32%, rgba(7, 10, 8, .74) 68%, rgba(7, 10, 8, .94) 100%);
}
.jobs .container { position: relative; z-index: 1; }

.jobs .lead { color: rgba(244, 239, 227, .84); }
.jobs__list { margin-top: 30px; }

.job {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  row-gap: 8px;
  padding-block: 22px;
}
.job__rule {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--mist-2);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .65s cubic-bezier(.22, .7, .3, 1) var(--d, 0ms);
}
.job:first-child .job__rule { display: none; }
.jobs__list.is-lit .job__rule { transform: scaleX(1); }

.job__ico {
  position: relative;
  grid-row: 1 / span 2;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  color: rgba(244, 239, 227, .3);
  transition: color .55s ease var(--d, 0ms);
}
.job__ico .ic { width: 34px; height: 34px; stroke-width: 1.6; }
.job__ico::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(233, 184, 91, .55), rgba(233, 184, 91, 0));
  opacity: 0;
}
.jobs__list.is-lit .job__ico { color: var(--leaf); }
.jobs__list.is-lit .job__ico::before { animation: spark 1s ease var(--d, 0ms) both; }
@keyframes spark {
  0% { opacity: 0; transform: scale(.6); }
  35% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

.job h3 { align-self: end; }
.job p {
  grid-column: 2;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(244, 239, 227, .82);
  max-width: 30rem;
}

/* ============================================ 6. inside the bottle */
.paper {
  background: var(--bone);
  color: var(--ink);
  position: relative;
}
.paper::before,
.paper::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(7, 10, 8, .25);
}
.paper::before { top: 0; }
.paper::after { bottom: 0; }
.paper .lead, .paper .small { color: var(--ink-soft); }

/* the pack sets "Forest" in script above the product name — quoted once, here */
.paper h2 .script {
  color: #2F6B2A;
  font-size: .74em;
  padding-right: .06em;
}

.scent {
  margin-top: 34px;
  padding: 22px 20px;
  border-radius: var(--radius);
  background: rgba(18, 22, 15, .05);
  border: 1px solid var(--ink-line);
}
.scent h3 { font-size: 1.5rem; }
.scent p { margin-top: .6rem; font-size: 1rem; color: var(--ink-soft); }

.scent__bar {
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #26571F 0%, #6FA83F 46%, #E9B85B 100%);
}
.scent__stops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.scent__stop { display: grid; gap: 1px; }
.scent__stop:nth-child(2) { text-align: center; }
.scent__stop:nth-child(3) { text-align: right; }
.scent__note {
  font-family: var(--display);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: .02em;
}
.scent__role { font-size: .75rem; color: var(--ink-soft); }

.bots { margin-top: 34px; }
.bot {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  padding-block: 20px;
  border-top: 1px solid var(--ink-line);
}
.bot:first-child { border-top: 0; padding-top: 0; }
.bot__ico { grid-row: 1 / span 2; color: #2F6B2A; }
.bot__ico .ic { width: 32px; height: 32px; stroke-width: 1.5; }
.bot h3 { font-size: 1.5rem; align-self: end; }
.bot p { grid-column: 2; font-size: 1rem; color: var(--ink-soft); max-width: 30rem; }

.free { margin-top: 34px; }
.free__h {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
}
.stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.stamp {
  position: relative;
  width: 98px; height: 98px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  border: 1.5px solid rgba(18, 22, 15, .5);
  font-family: var(--display);
  font-size: 1.0625rem;
  line-height: 1.05;
  letter-spacing: .03em;
  color: var(--ink);
  padding: 10px;
}
.stamp::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(18, 22, 15, .22);
}
.stamps li:nth-child(1) .stamp { transform: rotate(-6deg); }
.stamps li:nth-child(2) .stamp { transform: rotate(4deg); }
.stamps li:nth-child(3) .stamp { transform: rotate(-3deg); }

/* ======================================================= 7. how to use */
.how { position: relative; background: var(--night); }

.how__band {
  position: relative;
  isolation: isolate;
  min-height: 48svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-block: 40px 26px;
}
.how__band .container { position: relative; z-index: 2; }
.how__media { position: absolute; inset: 0; z-index: 0; }
.how__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.how__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 8, .96) 6%, rgba(7, 10, 8, .55) 46%, rgba(7, 10, 8, .35) 100%);
}

.rail {
  display: flex;
  gap: 14px;
  margin: 0;
  list-style: none;
  padding: 26px var(--gutter) 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rail::-webkit-scrollbar { display: none; }

.rail__card {
  flex: 0 0 84%;
  scroll-snap-align: center;
  padding: 20px 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--mist-2);
  background: linear-gradient(180deg, rgba(27, 50, 34, .62), rgba(15, 26, 18, .72));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.rail__n {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  color: var(--dawn);
}
.rail__card h3 { margin-top: .35rem; font-size: 1.625rem; }
.rail__card p { margin-top: .55rem; font-size: 1rem; color: var(--soft); }

.rail__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-bottom: 6px;
}
.rail__dots i {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--mist-2);
  transition: width .25s, background .25s;
}
.rail__dots i.is-on { width: 22px; background: var(--dawn); }

/* ====================================================== 8. price frame */
.price {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--pine);
  text-align: center;
  padding-block: 54px 60px;
  border-block: 1px solid var(--mist);
}
/* the only glow on the page, part two */
.price__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(50% 34% at 50% 62%, rgba(233, 184, 91, .17), rgba(233, 184, 91, 0) 70%);
}
.price .container { position: relative; z-index: 1; }

.price__shot {
  display: block;
  margin: 24px auto 0;
  height: clamp(240px, 44svh, 400px);
  width: auto;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, .7));
}

.price__name {
  margin-top: 26px;
  font-family: var(--display);
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: .015em;
}
.price__size {
  margin-top: .5rem;
  font-size: .9375rem;
  color: var(--soft);
  letter-spacing: .02em;
}

.price__amount {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(5rem, 24vw, 7rem);
  line-height: .82;
  color: var(--dawn);
}
.price__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .5rem;
}
.price__mrp { color: rgba(244, 239, 227, .55); text-decoration: line-through; font-size: 1rem; }
.price__off {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 .7rem;
  border-radius: 999px;
  background: var(--green);
  color: #071008;
  font-weight: 600;
  font-size: .875rem;
}
.price__del {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
  font-size: .9375rem;
  color: var(--soft);
}
.price__del .ic { width: 20px; height: 20px; color: var(--leaf); }
.price .btn--block { margin-top: 1.25rem; }
.price__search { margin-top: .9rem; }
.price__note { margin-top: .7rem; font-size: .75rem; color: rgba(244, 239, 227, .5); }

/* ========================================================= 9. feel band */
.feel {
  position: relative;
  isolation: isolate;
  min-height: 60svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-block: 60px 34px;
  background: var(--night);
}
.feel__bg {
  position: absolute;
  left: 50%; top: 50%;
  width: 100%; height: 190%;
  transform: translate(-50%, -50%);
  z-index: 0;
  overflow: hidden;
}
.feel__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.62) saturate(.9); }
.feel__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 8, .96) 4%, rgba(7, 10, 8, .62) 44%, rgba(7, 10, 8, .32) 100%);
}
.feel .container { position: relative; z-index: 1; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 38px;
  padding: 0 .85rem;
  border-radius: 999px;
  border: 1px solid var(--mist-2);
  background: rgba(7, 10, 8, .5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: .9375rem;
}
.chip .ic { width: 17px; height: 17px; color: var(--leaf); }

/* ====================================== 10. straight talk / faq / creators */
.talk__h { max-width: 15ch; }
.talk__body { margin-top: 1.4rem; font-size: 1.125rem; line-height: 1.62; max-width: 34rem; color: var(--ink-soft); }
.talk__sign { margin-top: 1.4rem; font-style: italic; color: var(--ink); }

.faq { background: var(--pine); }
.faq__list { margin-top: 26px; border-top: 1px solid var(--mist); }
.faq details { border-bottom: 1px solid var(--mist); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding-block: 14px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
/* keep the chevron out of the column the WhatsApp float rides in */
@media (max-width: 1023px) { .faq summary { padding-right: 54px; } }
.faq summary .ic { width: 20px; height: 20px; color: var(--leaf); transition: transform .25s ease; }
.faq details[open] summary .ic { transform: rotate(180deg); }
.faq__a {
  padding-bottom: 20px;
  font-size: 1rem;
  color: var(--soft);
  max-width: 36rem;
}

.creband {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--moss);
  border: 1px solid var(--mist);
  padding: 30px 20px 32px;
}
.creband__mark {
  position: absolute;
  right: -46px;
  bottom: -34px;
  width: 232px;
  height: 239px;
  color: var(--cream);
  opacity: .08;
  pointer-events: none;
}
.creband h2,
.creband p,
.creband .btn-row { position: relative; z-index: 1; }
.creband p { margin-top: 1rem; color: rgba(244, 239, 227, .82); max-width: 34rem; }
.creband .btn-row { margin-top: 1.5rem; }

.btn-row { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }

/* ================================ 11. footer, sticky bar, float, pages */
.footer {
  background: var(--night);
  border-top: 1px solid var(--mist);
  padding-block: 44px 30px;
}
.footer__script { margin-top: .6rem; font-size: 1.5rem; }
.footer__wa {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  margin-top: 1rem;
  color: var(--cream);
  text-decoration: none;
  font-size: .9375rem;
}
.footer__wa .ic--fill { width: 20px; height: 20px; color: var(--leaf); }

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
}
.footer__cols a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--soft);
  text-decoration: none;
  font-size: .9375rem;
}
.footer__cols a:active { color: var(--cream); }

.footer__legal { margin-top: 22px; display: grid; gap: .7rem; }
.footer__legal .small { color: rgba(244, 239, 227, .5); }
.footer__buy { margin-top: 22px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  color: var(--soft);
}
.badge .ic { width: 15px; height: 15px; color: var(--leaf); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 26px;
  padding-top: 18px;
  padding-right: 72px;   /* the WhatsApp float parks in this corner */
  border-top: 1px solid var(--mist);
}

/* --------------------------------------------------------- sticky bar */
.buybar {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px var(--gutter) calc(9px + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 10, 8, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--mist);
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
}
.buybar.is-on { transform: none; }
.buybar__price {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--dawn);
  white-space: nowrap;
}
.buybar .btn { flex: 1 1 auto; min-height: 48px; }

.wafloat {
  position: fixed;
  right: var(--gutter);
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #06301A;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .5);
  transition: bottom .35s cubic-bezier(.2, .7, .3, 1);
}
.wafloat.is-raised { bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
.wafloat .ic--fill { width: 27px; height: 27px; }

/* ------------------------------------------------------- inner pages */
.pagehead {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 46px);
  padding-bottom: 38px;
  background: var(--pine);
  border-bottom: 1px solid var(--mist);
}
/* the same forest, quieter: a dark texture under a night scrim */
.pagehead::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/img/tex-forest-2-1920.webp') 50% 40% / cover no-repeat;
  opacity: .62;
}
.pagehead::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 62% at 14% 0%, rgba(63, 122, 49, .34), rgba(63, 122, 49, 0) 70%),
    linear-gradient(180deg, rgba(7, 10, 8, .52) 0%, rgba(7, 10, 8, .78) 55%, rgba(7, 10, 8, .93) 100%);
}
.pagehead .container { position: relative; z-index: 1; }
.pagehead h1 { font-size: clamp(3rem, 13vw, 4rem); }
.pagehead .lead { margin-top: 1rem; }
.pagehead .btn-row { margin-top: 1.75rem; }

.tiles { display: grid; gap: 14px; }
.tile {
  padding: 24px 20px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--mist);
  background: linear-gradient(180deg, rgba(27, 50, 34, .42), rgba(15, 26, 18, .52));
}
.tile h2, .tile h3 { font-size: 1.75rem; }
.tile p { margin-top: .8rem; color: var(--soft); font-size: 1rem; }
.tile .btn-row { margin-top: 1.4rem; }
.tile--wide { margin-top: 14px; }

/* a small informative label — what this block is, not a decorative eyebrow */
.tile__label {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .7rem;
  font-size: .875rem;
  color: var(--leaf);
}
.tile__label .ic, .tile__label .ic--fill { width: 16px; height: 16px; }

/* the highlighted panel on the inner pages */
.band {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--moss);
  border: 1px solid var(--mist);
  padding: 28px 20px 30px;
  margin-bottom: 14px;
}
.band .lead { margin-top: 1rem; }
.band .btn-row { margin-top: 1.5rem; }
.band .small { margin-top: 1.25rem; }
.band .small .ic {
  width: 16px; height: 16px;
  color: var(--leaf);
  display: inline-block;
  vertical-align: -3px;
  margin-right: 6px;
}

.checks { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: 13px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; color: var(--soft); font-size: 1rem; }
.checks .ic { width: 20px; height: 20px; color: var(--leaf); margin-top: 3px; }

.no-bar .buybar { display: none; }

.prose { max-width: 38rem; }
.prose h2 {
  font-size: 1.875rem;
  margin-top: 2.25rem;
  color: var(--cream);
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: .9rem; color: var(--soft); font-size: 1rem; line-height: 1.65; }
.prose ul { margin: .9rem 0 0; padding-left: 1.1rem; color: var(--soft); font-size: 1rem; }
.prose li { margin-top: .5rem; }
.prose .updated {
  margin-top: 2.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mist);
  font-size: .875rem;
  color: rgba(244, 239, 227, .5);
}

.nf {
  position: relative;
  overflow: hidden;
  min-height: 78svh;
  display: grid;
  align-content: center;
  padding-top: var(--nav-h);
  padding-bottom: 40px;
  background:
    radial-gradient(60% 44% at 50% 24%, rgba(233, 184, 91, .14), rgba(233, 184, 91, 0) 70%),
    var(--night);
}
.nf__mark { width: 96px; height: 99px; color: var(--cream); opacity: .85; }
.nf h1 { margin-top: 22px; }
.nf .lead { margin-top: 1rem; }
.nf .btn-row { margin-top: 1.75rem; }

/* ====================================================== breakpoints */
@media (min-width: 480px) {
  .btn-row { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .btn-row .btn { flex: 0 1 auto; }
  .hero__cta { grid-template-columns: auto auto; align-items: center; justify-content: start; gap: 14px; }
  .rail__card { flex-basis: 66%; }
}

@media (min-width: 700px) {
  :root { --gutter: 24px; --radius: 24px; }
  .section { padding-block: 84px; }
  .section--tight { padding-block: 60px; }
  .jobs { padding-block: 80px; }
  .bots, .jobs__list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; }
  .job:nth-child(2) .job__rule { display: none; }
  .bot:nth-child(2) { border-top: 0; padding-top: 0; }
  .rail__card { flex-basis: 44%; }
  .stamp { width: 112px; height: 112px; font-size: 1.125rem; }
  .price__shot { height: clamp(300px, 46svh, 440px); }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
  .tiles { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  :root { --nav-h: 68px; --gutter: 32px; --radius: 28px; }

  body { padding-bottom: 0; }

  h1 { font-size: clamp(4.75rem, 7.4vw, 7.4rem); }
  h2 { font-size: clamp(3.25rem, 4.4vw, 4.25rem); }

  .nav__links { display: flex; align-items: center; gap: 26px; margin-left: 34px; }
  .nav__links a {
    color: rgba(244, 239, 227, .78);
    text-decoration: none;
    font-size: .9375rem;
    padding-block: 8px;
    transition: color .2s;
  }
  .nav__links a:hover { color: var(--cream); }
  .nav__buy-long { display: inline; }
  .nav__buy-short { display: none; }
  .nav__buy { min-height: 44px; padding: 0 1.25rem; }
  .menu { display: none; }

  .hero__inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    gap: 0 40px;
    padding-block: calc(var(--nav-h) + 40px) 56px;
  }
  .hero__copy { grid-column: 1; grid-row: 1; }
  /* on desktop the whole left column is already scrimmed — the foot needs none */
  .hero__foot {
    grid-column: 1;
    grid-row: 2;
    margin: 30px 0 0;
    padding: 0;
    background: none;
  }
  .hero h1 { max-width: 11ch; }
  .hero__sub { max-width: 26rem; font-size: 1.125rem; }
  .hero__media img { object-position: 62% 50%; }
  .hero__media::before { height: 100%; background: linear-gradient(100deg, rgba(7, 10, 8, .97) 0%, rgba(7, 10, 8, .86) 34%, rgba(7, 10, 8, .18) 62%, rgba(7, 10, 8, .1) 100%); }
  .hero__media::after { height: 34%; background: linear-gradient(0deg, rgba(7, 10, 8, .9) 0%, rgba(7, 10, 8, 0) 100%); }
  .ticket { align-self: start; width: fit-content; }

  .marquee__item { font-size: 2.125rem; }
  .strip__answer { padding-block: 40px 42px; }

  .jobs__list { column-gap: 56px; row-gap: 0; margin-top: 44px; }
  .job { padding-block: 30px; grid-template-columns: 52px 1fr; }
  .job__ico { width: 52px; height: 52px; }
  .job__ico .ic { width: 40px; height: 40px; }

  .inside__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .inside__grid .scent { margin-top: 0; }
  .bots { margin-top: 0; }

  .how__band { min-height: 54svh; padding-block: 90px 44px; }
  .rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: visible;
    padding: 44px var(--gutter) 0;
    max-width: var(--maxw);
    margin-inline: auto;
  }
  .rail__card { flex: none; }
  .rail__dots { display: none; }

  .price { padding-block: 90px; text-align: left; }
  .price__inner {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
  }
  .price__shot { margin: 0 auto; height: clamp(420px, 62svh, 600px); }
  .price__row { justify-content: flex-start; }
  .price__del { display: flex; width: fit-content; }
  .price .btn--block { width: auto; min-width: 320px; display: inline-flex; }
  .price__glow { background: radial-gradient(38% 46% at 26% 52%, rgba(233, 184, 91, .18), rgba(233, 184, 91, 0) 70%); }

  .feel { min-height: 66svh; padding-block: 110px 56px; }

  .creband { padding: 52px 48px 54px; }
  .creband__mark { width: 320px; height: 330px; right: 12px; bottom: -46px; }

  .footer { padding-block: 66px 34px; }
  .footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .footer__cols { margin-top: 0; padding-top: 0; border-top: 0; grid-template-columns: 1fr 1fr; }
  .buybar { display: none; }
  .wafloat, .wafloat.is-raised { bottom: 24px; width: 56px; height: 56px; }

  .pagehead { padding-top: calc(var(--nav-h) + 72px); padding-bottom: 56px; }
  .tiles { gap: 20px; }
  .talk__body { font-size: 1.1875rem; }
}

@media (min-width: 1280px) {
  .hero__inner { gap: 64px; }
}

/* --------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .marquee__track { animation: none; transform: none; }
  .job__rule { transform: scaleX(1); }
  .job__ico { color: var(--leaf); }
}
