@font-face {
  font-family: "Graphik AMPM";
  src: url("public/assets/fonts/Graphik-Medium-Desktop.otf") format("opentype");
  font-style: normal;
  font-weight: 400 650;
  font-display: swap;
}

@font-face {
  font-family: "Graphik AMPM";
  src: url("public/assets/fonts/Graphik-Bold-Desktop.otf") format("opentype");
  font-style: normal;
  font-weight: 700 950;
  font-display: swap;
}

@font-face {
  font-family: "Minion AMPM";
  src: url("public/assets/fonts/MinionPro-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #050505;
  --paper: #f7f0e6;
  --cream: #fff7de;
  --morning: #f4c53a;
  --morning-hot: #ebff25;
  --day: #24c5c8;
  --day-soft: #bdf6f1;
  --evening: #b69be6;
  --evening-hot: #b83eea;
  --green: #344034;
  --muted: rgba(5, 5, 5, 0.62);
  --radius: 8px;
  --header: 68px;
  font-family: "Graphik AMPM", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  hyphens: none;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  hyphens: none;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: visible;
}

body.is-loading {
  overflow: hidden;
}

body.theme-morning,
body.theme-day,
body.theme-evening {
  background: var(--paper);
}

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

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__clock {
  position: relative;
  width: min(64vw, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.loader__clock img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spinClock 2.2s cubic-bezier(0.75, 0, 0.2, 1) infinite;
}

.loader__time {
  position: relative;
  font-size: clamp(54px, 11vw, 126px);
  font-weight: 950;
  line-height: 0.85;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.loader__caption {
  position: absolute;
  bottom: 8vh;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 950;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 4vw, 72px);
  padding: 10px clamp(18px, 4vw, 72px);
  background: rgba(247, 240, 230, 0.7);
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  backdrop-filter: blur(18px);
}

.ampm-logo-mark {
  position: relative;
  display: block;
  line-height: 0;
}

.ampm-logo-mark::after {
  content: "";
  position: absolute;
  top: 38%;
  right: 1.5%;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
}

.ampm-logo-mark img {
  width: 100%;
  height: auto;
}

.brand .ampm-logo-mark {
  width: clamp(62px, 3.2vw, 68px);
}

.nav {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: clamp(22px, 3.2vw, 72px);
  font-size: clamp(18px, 1.08vw, 24px);
  font-weight: 950;
  text-transform: uppercase;
}

.nav a {
  white-space: nowrap;
}

.section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding: clamp(56px, 6.5vw, 104px) clamp(18px, 5vw, 72px);
  background-color: transparent;
  overflow-x: hidden;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 950;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 950;
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2,
h3,
p,
a,
span,
button,
summary,
li {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h3 {
  font-size: clamp(25px, 3.2vw, 44px);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 950;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-3px) rotate(-0.4deg);
}

.button--dark {
  background: var(--ink);
  color: white;
}

.poster {
  --hero-step-gap: clamp(18px, 2.1vh, 26px);
  --poster-inline: clamp(18px, 5vw, 72px);
  --poster-ticker-size: clamp(26px, 3.2vw, 46px);
  height: auto;
  max-height: none;
  min-height: 100svh;
  width: 100%;
  max-width: 100vw;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3.5vw, 58px);
  padding-inline: var(--poster-inline);
  padding-top: calc(var(--header) + clamp(30px, 5.5vh, 70px));
  padding-bottom: clamp(18px, 2.5vh, 32px);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
  contain: layout paint;
}

.poster__dial {
  position: absolute;
  z-index: 0;
  top: clamp(-260px, -26vh, -180px);
  right: clamp(-260px, -18vw, -150px);
  width: min(56vw, 700px);
  height: auto;
  pointer-events: none;
  opacity: 0.34;
  mix-blend-mode: multiply;
}

.poster .hero-product {
  position: relative;
  z-index: 6;
  max-width: min(100%, 1220px);
  margin-bottom: clamp(18px, 3.2vh, 38px);
  font-size: clamp(14px, 1.38vw, 26px);
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  letter-spacing: 0;
  transform: none;
}

.poster__copy,
.poster__visual,
.rhythm-track,
.product-section__copy,
.product-section__visual,
.kit__copy,
.kit__visual {
  min-width: 0;
}

.poster__copy {
  position: relative;
  z-index: 5;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: min(100%, 940px);
}

.poster__copy h1 {
  margin-bottom: var(--hero-step-gap);
  font-size: clamp(74px, 8.1vw, 156px);
  line-height: 0.84;
  white-space: nowrap;
}

.poster__tagline {
  max-width: 620px;
  margin-bottom: var(--hero-step-gap);
  font-size: clamp(32px, 3.1vw, 58px);
  line-height: 0.96;
  font-weight: 950;
}

.time-pills {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hero-step-gap);
  max-width: 760px;
  margin-bottom: var(--hero-step-gap);
  pointer-events: auto;
}

.time-pill {
  position: relative;
  z-index: 1;
  min-height: clamp(56px, 4.5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 10px;
  font-size: clamp(13px, 0.86vw, 18px);
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  pointer-events: auto;
}

.time-pills span {
  font-size: clamp(26px, 2.8vw, 48px);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.poster__visual {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  height: auto;
  min-height: clamp(480px, 70svh, 780px);
  display: grid;
  place-items: center;
  align-self: center;
  margin-top: 0;
  overflow: hidden;
}

.poster__sun {
  position: absolute;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(235, 255, 37, 0.24);
  box-shadow: none;
  opacity: 0.38;
  animation: pulseSun 5s ease-in-out infinite;
}

.poster__bottles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.poster__ticker {
  --ticker-size: var(--poster-ticker-size);
  position: relative;
  z-index: 0;
  left: auto;
  right: auto;
  bottom: auto;
  grid-column: 1 / -1;
  grid-row: 2;
  width: auto;
  height: calc(var(--ticker-size) * 1.08);
  margin-right: calc(0px - var(--poster-inline));
  margin-left: calc(0px - var(--poster-inline));
  overflow: hidden;
  contain: strict;
  white-space: nowrap;
  pointer-events: none;
}

.poster__ticker-track {
  display: inline-flex;
  width: max-content;
  min-width: 200vw;
  color: rgba(5, 5, 5, 0.12);
  font-size: var(--ticker-size);
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  animation: tickerMove 58s linear infinite;
  will-change: transform;
}

.poster__ticker-track span {
  flex: 0 0 auto;
  padding-right: 0.42em;
}

.rhythm {
  background: transparent;
  color: var(--ink);
  overflow: visible;
  padding-bottom: clamp(96px, 9vw, 150px);
  isolation: isolate;
}

.rhythm::before {
  content: "";
  position: absolute;
  left: clamp(28px, 5vw, 96px);
  top: 24%;
  width: min(30vw, 390px);
  aspect-ratio: 1;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 56%, rgba(36, 197, 200, 0.16) 0 31%, transparent 32%);
  opacity: 0.72;
  pointer-events: none;
}

.rhythm::after {
  content: "";
  position: absolute;
  right: clamp(42px, 7vw, 126px);
  bottom: clamp(42px, 6vw, 96px);
  width: min(34vw, 450px);
  aspect-ratio: 1;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 46%, rgba(182, 155, 230, 0.28) 0 34%, transparent 35%);
  opacity: 0.78;
  pointer-events: none;
}

.rhythm .section-heading,
.rhythm-track {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 960px;
  margin-bottom: clamp(18px, 2.5vw, 34px);
}

.section-heading h2 {
  font-size: clamp(42px, 5.25vw, 82px);
  line-height: 0.9;
}

.rhythm .section-heading h2 {
  white-space: nowrap;
}

.rhythm-slogan {
  max-width: 980px;
  margin: clamp(12px, 1.4vw, 20px) 0 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1.04;
  font-weight: 950;
}

.rhythm-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rhythm-track__line {
  display: none;
}

.rhythm-step {
  position: relative;
  min-height: 270px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(18px, 2.5vw, 32px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 78%, color-mix(in srgb, var(--step) 42%, transparent) 0 24%, transparent 50%),
    rgba(255, 255, 255, 0.34);
}

.rhythm-step::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--step);
  opacity: 0.28;
}

.rhythm-step img {
  position: absolute;
  right: clamp(8px, 1.2vw, 18px);
  bottom: 0;
  z-index: 1;
  width: clamp(82px, 8.4vw, 120px);
  max-height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.rhythm-step span {
  color: var(--step);
  font-size: clamp(40px, 5.2vw, 78px);
  line-height: 0.78;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  margin-bottom: clamp(18px, 2.2vw, 30px);
}

.rhythm-step strong {
  position: relative;
  z-index: 2;
  max-width: 58%;
  min-height: 2em;
  margin: 0;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 0.94;
  font-weight: 950;
}

.rhythm-step em {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: start;
  max-width: min(62%, 270px);
  margin: clamp(16px, 1.8vw, 26px) 0 0;
  border: 0;
  border-left: 5px solid var(--step);
  border-radius: 0;
  padding: 0 0 0 10px;
  background: transparent;
  color: rgba(5, 5, 5, 0.7);
  font-size: clamp(11px, 0.78vw, 14px);
  line-height: 1.04;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.rhythm-step--morning {
  --step: var(--morning-hot);
}

.rhythm-step--morning span {
  color: var(--morning);
  text-shadow: none;
}

.rhythm-step--morning em {
  border-left-color: var(--morning);
}

.rhythm-step--day {
  --step: var(--day);
}

.rhythm-step--evening {
  --step: var(--evening);
}

.rhythm-step--evening strong {
  max-width: 60%;
}

.rhythm-step--evening em {
  max-width: min(62%, 270px);
}

.product-section {
  --product-subheading-size: clamp(24px, 1.9vw, 34px);
  --product-body-size: clamp(16px, 1.12vw, 22px);
  --product-card-title-size: clamp(17px, 1.28vw, 24px);
  --product-card-caption-size: clamp(12px, 0.82vw, 15px);
  min-height: 100svh;
  margin-bottom: -1px;
  scroll-margin-top: var(--header);
  display: grid;
  grid-template-columns: minmax(82px, 0.15fr) minmax(420px, 0.92fr) minmax(390px, 0.93fr);
  gap: clamp(18px, 2.8vw, 56px);
  align-items: start;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.product-section--morning {
  --section-accent: var(--morning-hot);
}

.product-section--day {
  --section-accent: var(--day);
}

.product-section--evening {
  --section-accent: var(--evening);
}

.product-section::before {
  content: "";
  position: absolute;
  right: clamp(-120px, -8vw, -40px);
  top: clamp(46px, 7.2vw, 118px);
  z-index: -1;
  width: min(48vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--section-accent) 30%, transparent);
  filter: blur(3px);
}

.product-section::after {
  content: "";
  position: absolute;
  left: clamp(-160px, -9vw, -54px);
  bottom: 2%;
  z-index: -1;
  width: min(34vw, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--section-accent) 16%, transparent);
}

.product-section__time {
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(8px, 0.9vw, 14px);
  margin-top: 0;
  font-variant-numeric: tabular-nums;
}

.product-section__time-value {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.product-section__time-value {
  font-size: clamp(70px, 7.2vw, 142px);
  line-height: 0.78;
  font-weight: 950;
  white-space: nowrap;
}

.product-title-row {
  max-width: 920px;
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1.3vw, 18px);
  margin-bottom: 12px;
}

.product-section__copy h2 {
  margin: 0;
  flex: 0 0 min-content;
  width: min-content;
  min-width: 0;
  font-size: clamp(46px, 4.8vw, 86px);
  line-height: 0.9;
  overflow-wrap: normal;
}

.product-section__copy > h2 {
  margin-bottom: 12px;
  font-size: clamp(46px, 4.8vw, 86px);
  line-height: 0.9;
  overflow-wrap: normal;
}

.product-badge {
  flex: 0 0 auto;
  margin-top: clamp(4px, 0.75vw, 12px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 8px 11px;
  color: var(--ink);
  font-size: clamp(12px, 0.8vw, 15px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-2deg);
}

.product-badge--morning {
  background: var(--morning-hot);
}

.product-badge--evening {
  background: var(--evening);
}

.product-section__copy h3 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: var(--product-subheading-size);
  line-height: 1.04;
  font-weight: 950;
}

.product-section__copy p {
  max-width: 670px;
  color: rgba(5, 5, 5, 0.72);
  font-size: var(--product-body-size);
  line-height: 1.16;
  font-weight: 850;
}

.product-section__copy .product-sugar-note {
  max-width: 760px;
  margin: -2px 0 12px;
  color: rgba(5, 5, 5, 0.42);
  font-size: clamp(9px, 0.62vw, 12px);
  line-height: 1.25;
  font-weight: 600;
}

.product-composition {
  max-width: 760px;
  margin: 0 0 14px;
}

.product-composition h4 {
  margin: 0 0 10px;
  font-size: var(--product-subheading-size);
  line-height: 1.04;
  font-weight: 950;
}

.product-composition__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.product-composition__grid span {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(14px, 1.25vw, 20px);
  background: rgba(255, 255, 255, 0.36);
  color: rgba(5, 5, 5, 0.66);
  font-size: var(--product-card-caption-size);
  line-height: 1.04;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-composition__grid strong {
  display: block;
  color: var(--ink);
  font-size: var(--product-card-title-size);
  line-height: 0.95;
}

.composition-details {
  width: min(100%, 760px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 92%, white);
  overflow: hidden;
}

.composition-details summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  cursor: pointer;
  font-size: clamp(18px, 1.28vw, 24px);
  font-weight: 950;
  text-transform: uppercase;
  list-style: none;
  background: inherit;
}

.composition-details summary::-webkit-details-marker {
  display: none;
}

.composition-details summary::after {
  content: "+";
  font-size: 32px;
  line-height: 0.8;
}

.composition-details[open] summary::after {
  content: "-";
}

.composition-details img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top: 2px solid var(--ink);
  background: transparent;
}

.product-composition .composition-details {
  position: relative;
  z-index: 8;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.product-composition .composition-details img {
  position: static;
  width: 100%;
  max-height: none;
  object-fit: cover;
  background: color-mix(in srgb, var(--paper) 94%, white);
  box-shadow: none;
}

.product-section__visual {
  position: relative;
  z-index: 1;
  align-self: start;
  min-height: min(68vh, 700px);
  display: grid;
  align-items: center;
  justify-items: end;
  padding: 24px 0;
  isolation: isolate;
}

.product-motion {
  position: absolute;
  left: 0;
  top: 8%;
  z-index: 2;
  width: min(30vw, 500px);
  aspect-ratio: 16 / 9;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 8px 8px 0 rgba(5, 5, 5, 0.92);
  transform: rotate(-2deg);
}

.product-motion video,
.product-motion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autoplay-static-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity 120ms linear, visibility 0s linear 0s;
}

.autoplay-static-frame.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 120ms linear, visibility 0s linear 120ms;
}

.product-motion--day {
  top: 6%;
  transform: rotate(2deg);
}

.product-motion--evening {
  top: 7%;
  transform: rotate(-1deg);
}

.product-clock {
  position: absolute;
  right: -2%;
  bottom: -5%;
  z-index: 0;
  width: min(34vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 4px 42% no-repeat,
    linear-gradient(65deg, transparent 0 48%, var(--ink) 48% 51%, transparent 51%) center / 58% 58% no-repeat,
    repeating-conic-gradient(rgba(5, 5, 5, 0.38) 0deg 2deg, transparent 2deg 12deg);
  mask: radial-gradient(circle, transparent 0 54%, #000 55%);
  opacity: 0.18;
  animation: slowRotate 18s linear infinite;
}

.product-packshot {
  position: relative;
  z-index: 3;
  width: min(18vw, 270px);
  max-height: min(68vh, 560px);
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.2));
  transform: rotate(var(--tilt));
  animation: bottleBob 4.4s ease-in-out infinite;
}

.product-packshot--morning {
  --tilt: -5deg;
}

.product-packshot--day {
  --tilt: 4deg;
}

.product-packshot--evening {
  --tilt: -3deg;
}

.product-bottle {
  position: relative;
  z-index: 1;
  width: min(34vw, 205px);
  height: min(66vh, 470px);
  border: 2px solid rgba(5, 5, 5, 0.32);
  border-radius: 112px 112px 82px 82px;
  background: #fbfbf5;
  box-shadow:
    inset -18px 0 0 rgba(0, 0, 0, 0.04),
    0 32px 38px rgba(0, 0, 0, 0.18);
  transform: rotate(var(--tilt));
  animation: bottleBob 4.4s ease-in-out infinite;
}

.product-bottle::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 74px;
  height: 74px;
  border: 2px solid rgba(5, 5, 5, 0.24);
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--cap);
}

.product-bottle::after {
  content: "AM. PM";
  position: absolute;
  top: 104px;
  left: 34px;
  width: 84px;
  font-size: 33px;
  line-height: 0.78;
  font-weight: 950;
}

.product-bottle span {
  position: absolute;
  right: -31px;
  top: 210px;
  transform: rotate(-90deg);
  color: var(--cap);
  font-size: 58px;
  line-height: 1;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.product-bottle--morning {
  --cap: var(--morning);
  --tilt: -7deg;
}

.product-bottle--day {
  --cap: var(--day);
  --tilt: 5deg;
}

.product-bottle--evening {
  --cap: var(--evening-hot);
  --tilt: -4deg;
}

.composition {
  min-height: auto;
  margin-top: -1px;
  scroll-margin-top: var(--header);
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 0.78fr) minmax(0, 1.18fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: stretch;
  padding-top: clamp(42px, 6vw, 86px);
  padding-bottom: clamp(54px, 7vw, 110px);
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.composition::before {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 5, 5, 0.4), transparent);
  opacity: 0;
}

.composition::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 12%;
  z-index: -1;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--section-accent) 22%, transparent);
  pointer-events: none;
}

.composition--morning {
  --section-accent: var(--morning-hot);
}

.composition--day {
  --section-accent: var(--day);
}

.composition--evening {
  --section-accent: var(--evening);
}

.composition__label span {
  display: block;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.82;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.composition__label p {
  margin: 10px 0 0;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.composition__label {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  border: 2px solid rgba(5, 5, 5, 0.28);
  border-radius: var(--radius);
  padding: clamp(16px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.26);
}

.composition__copy h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1;
}

.composition__copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(5, 5, 5, 0.7);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.16;
  font-weight: 850;
}

.composition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  transform: none;
}

.composition-card {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(15px, 1.7vw, 22px);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

.composition-card:nth-child(even) {
  transform: none;
}

.composition-card strong {
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.composition-card span {
  color: rgba(5, 5, 5, 0.66);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.composition-bridge {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(5, 5, 5, 0.24);
  font-size: clamp(28px, 4.4vw, 62px);
  line-height: 0.85;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

.composition-bridge::before {
  content: "";
  height: 3px;
  flex: 1;
  order: 2;
  background: currentColor;
}

.composition-bridge span:last-child {
  order: 3;
}

.advantages {
  background: transparent;
  overflow: hidden;
  isolation: isolate;
}

.advantages::before,
.advantages::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}

.advantages::before {
  left: -6vw;
  top: 16%;
  width: min(34vw, 430px);
  background: rgba(182, 155, 230, 0.16);
}

.advantages::after {
  right: -4vw;
  bottom: 10%;
  width: min(36vw, 460px);
  background: rgba(235, 255, 37, 0.2);
}

.advantages .section-heading h2 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 72px);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.advantage-card {
  min-height: 240px;
  display: grid;
  grid-template-rows: 70px 82px 1fr;
  align-items: start;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(18px, 2vw, 28px);
  background: rgba(255, 255, 255, 0.34);
}

.advantage-card span {
  display: block;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.8;
  font-weight: 950;
}

.advantage-card h3 {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1;
}

.advantage-card p {
  align-self: start;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 800;
}

.video-band {
  min-height: 100svh;
  display: block;
  padding: 0;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.video-band::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 14%;
  z-index: -1;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(36, 197, 200, 0.13);
  pointer-events: none;
}

.video-band::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 4%;
  z-index: -1;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(182, 155, 230, 0.14);
  pointer-events: none;
}

.video-band video,
.video-band img {
  width: 100%;
  height: 100svh;
  display: block;
  object-fit: cover;
  opacity: 1;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.video-band .autoplay-static-frame {
  position: absolute;
  inset: 0;
}

.kit {
  min-height: 100svh;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding-top: clamp(36px, 4.2vw, 70px);
  padding-bottom: clamp(36px, 4.2vw, 70px);
  background: transparent;
  overflow: hidden;
  isolation: isolate;
}

.kit::before,
.kit::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}

.kit::before {
  left: 8%;
  top: 18%;
  width: min(44vw, 560px);
  background:
    radial-gradient(circle at 34% 36%, rgba(235, 255, 37, 0.48) 0 24%, transparent 25%),
    radial-gradient(circle at 62% 48%, rgba(36, 197, 200, 0.34) 0 26%, transparent 27%),
    radial-gradient(circle at 76% 70%, rgba(182, 155, 230, 0.34) 0 24%, transparent 25%);
}

.kit::after {
  right: -8vw;
  bottom: 2%;
  width: min(36vw, 460px);
  background: rgba(235, 255, 37, 0.18);
}

.kit__visual img {
  width: min(58vw, 640px);
  max-height: min(72svh, 660px);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.22));
  animation: floatBottles 5s ease-in-out infinite;
}

.kit__copy h2 {
  max-width: 860px;
  margin-bottom: clamp(24px, 3.2vw, 44px);
  font-size: clamp(56px, min(6.6vw, 10.6svh), 106px);
  line-height: 1.03;
}

.kit-list {
  display: grid;
  gap: clamp(4px, 0.8vh, 10px);
  margin: 0 0 clamp(18px, 2.2vw, 28px);
}

.kit-list span {
  display: grid;
  grid-template-columns: 3.85ch auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 0.22em;
  border-bottom: 2px solid rgba(5, 5, 5, 0.26);
  padding-bottom: clamp(6px, 0.8vh, 9px);
  font-size: clamp(22px, min(2.4vw, 4.8svh), 38px);
  line-height: 0.95;
  font-weight: 950;
}

.kit-list strong,
.kit-list i,
.kit-list em {
  font: inherit;
  font-style: normal;
}

.kit-list strong {
  font-variant-numeric: tabular-nums;
}

.kit-list i {
  justify-self: center;
}

.availability-note {
  max-width: 620px;
  margin: 0;
  border-left: 6px solid var(--morning);
  padding-left: 16px;
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.12;
  font-weight: 950;
}

.footer {
  position: relative;
  z-index: 0;
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 78px);
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  overflow: hidden;
  isolation: isolate;
}

.footer__brand .ampm-logo-mark {
  width: min(28vw, 210px);
  color: var(--ink);
}

.footer__brand img {
  filter: none;
}

.footer__contacts {
  display: grid;
  gap: 10px;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.18;
}

.footer__contacts p {
  max-width: 900px;
  margin: 0 0 16px;
}

.footer__policy {
  width: fit-content;
  margin-top: 12px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.2;
  text-transform: uppercase;
}

.footer__top {
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 18px 26px;
  font-size: clamp(17px, 1.7vw, 26px);
  font-weight: 950;
  text-transform: uppercase;
}

.reveal {
  transform: translateY(28px);
  opacity: 0;
  transition:
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.75s ease;
}

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

.product-section__time.reveal {
  transform: translateY(28px);
}

.product-section__time.reveal.is-visible {
  transform: translateY(0);
}

@keyframes spinClock {
  0% {
    transform: rotate(0deg) scale(1);
  }
  65% {
    transform: rotate(260deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes slowRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseSun {
  50% {
    transform: scale(0.94);
  }
}

@keyframes floatBottles {
  50% {
    transform: translateY(-18px) rotate(-1deg);
  }
}

@keyframes tickerMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes bottleBob {
  50% {
    transform: translateY(-14px) rotate(calc(var(--tilt) * 0.8));
  }
}

@media (min-width: 1440px) {
  .poster {
    --poster-inline: clamp(54px, 4.6vw, 92px);
    grid-template-columns: minmax(520px, 0.82fr) minmax(740px, 1.18fr);
    padding-inline: var(--poster-inline);
  }

  .poster__dial {
    top: clamp(-330px, -24vh, -210px);
    right: clamp(-330px, -14vw, -160px);
    width: min(47vw, 840px);
  }

  .product-section {
    grid-template-columns: minmax(92px, 0.14fr) minmax(520px, 0.92fr) minmax(520px, 0.94fr);
    padding-inline: clamp(54px, 4.6vw, 92px);
  }
}

@media (max-width: 1120px) {
  .poster,
  .kit,
  .video-band {
    grid-template-columns: 1fr;
  }

  .poster .hero-product {
    font-size: clamp(13px, 2.4vw, 19px);
    margin-bottom: clamp(14px, 2.4vh, 26px);
    transform: none;
  }

  .poster__copy h1 {
    font-size: clamp(58px, 11vw, 88px);
  }

  .poster__visual {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    min-height: clamp(420px, 70vw, 620px);
    margin-top: 0;
  }

  .poster__bottles {
    width: 100%;
  }

  .poster__ticker {
    grid-row: 3;
  }

  .poster__dial {
    top: -170px;
    right: -230px;
    width: min(96vw, 620px);
    opacity: 0.22;
  }

  .rhythm-track,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-section {
    grid-template-columns: minmax(0, 0.26fr) minmax(0, 1fr);
  }

  .product-section__visual {
    grid-column: 2;
    min-height: 560px;
  }

  .product-composition__grid {
    grid-template-columns: 1fr;
  }

  .composition {
    grid-template-columns: 1fr;
    margin-top: -1px;
  }

  .composition__label {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 18px;
  }

  .composition__label span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

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

  .footer__top {
    justify-self: start;
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  .section {
    padding-top: calc(var(--header) + 20px);
    padding-bottom: 44px;
  }

  .poster {
    min-height: 100svh;
    padding-top: calc(var(--header) + 24px);
    padding-bottom: 82px;
  }

  .poster .hero-product {
    margin-bottom: clamp(14px, 2.4vh, 24px);
    font-size: clamp(13px, 2.4vw, 19px);
    transform: none;
  }

  .poster__copy h1 {
    font-size: clamp(56px, 5.9vw, 86px);
  }

  .poster__tagline {
    font-size: clamp(24px, 2.4vw, 34px);
  }

  .time-pill {
    min-height: 52px;
    padding: 8px 10px;
  }

  .poster__visual {
    height: min(50vh, 410px);
    margin-top: clamp(28px, 5vh, 56px);
  }

  .poster__bottles {
    width: 100%;
  }

  .kit {
    padding-top: calc(var(--header) + 18px);
    padding-bottom: 28px;
    gap: clamp(22px, 4.4vw, 64px);
  }

  .kit__visual img {
    width: min(50vw, 560px);
    max-height: 66svh;
  }

  .kit__copy h2 {
    margin-bottom: 20px;
    font-size: clamp(50px, min(5.6vw, 9.4svh), 84px);
    line-height: 1.03;
  }

  .kit-list {
    gap: 4px;
    margin-bottom: 18px;
  }

  .kit-list span {
    padding-bottom: 6px;
    font-size: clamp(20px, min(2vw, 4.2svh), 32px);
  }

}

@media (max-height: 760px) and (min-width: 761px) and (max-width: 1120px) {
  .poster__bottles {
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 64px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand .ampm-logo-mark {
    width: 64px;
  }

  .nav {
    gap: 10px;
    font-size: 13px;
  }

  .section {
    padding-inline: 16px;
  }

  h1,
  h2 {
    font-size: clamp(54px, 17vw, 96px);
  }

  .poster {
    height: auto;
    min-height: 100svh;
    padding-top: calc(var(--header) + 24px);
    padding-bottom: 86px;
  }

  .poster__dial {
    top: -126px;
    right: -220px;
    width: 390px;
    opacity: 0.14;
  }

  .poster__copy h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .poster .hero-product {
    font-size: clamp(11px, 3.35vw, 19px);
    white-space: nowrap;
    margin-bottom: 16px;
    transform: none;
    word-break: normal;
    overflow-wrap: normal;
  }

  .poster__tagline {
    font-size: clamp(25px, 7.5vw, 34px);
    margin-bottom: 12px;
  }

  .time-pills {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 12px;
  }

  .time-pill {
    min-height: 50px;
    padding: 7px 10px;
  }

  .time-pills span {
    font-size: 24px;
  }

  .poster__visual {
    height: 340px;
    min-height: 340px;
    margin-top: 18px;
    padding-top: 0;
  }

  .poster__bottles {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  .poster__ticker {
    --ticker-size: clamp(30px, 10vw, 42px);
    bottom: auto;
  }

  .section-heading h2,
  .advantages .section-heading h2 {
    font-size: clamp(36px, 11vw, 58px);
    line-height: 0.98;
  }

  .rhythm-track,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .rhythm .section-heading h2 {
    white-space: normal;
  }

  .rhythm-slogan {
    font-size: clamp(19px, 5.8vw, 28px);
    padding: 0;
  }

  .rhythm-track__line {
    display: none;
  }

  .rhythm-step {
    min-height: 250px;
  }

  .rhythm-step strong {
    max-width: 58%;
  }

  .rhythm-step em {
    max-width: 64%;
    font-size: clamp(12px, 3.4vw, 14px);
  }

  .product-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-section--evening::after {
    display: none;
  }

  .product-section__time {
    align-self: auto;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 0;
  }

  .product-section__time-value {
    writing-mode: initial;
    transform: none;
  }

  .product-section__time-value {
    font-size: clamp(66px, 21vw, 104px);
    line-height: 0.82;
  }

  .product-section__time.reveal {
    transform: translateY(28px);
  }

  .product-section__time.reveal.is-visible {
    transform: translateY(0);
  }

  .product-section__copy h2 {
    font-size: clamp(44px, 13vw, 68px);
    overflow-wrap: normal;
  }

  .product-section__visual {
    grid-column: auto;
    min-height: 620px;
    justify-items: center;
    padding-top: 0;
  }

  .product-composition__grid {
    grid-template-columns: 1fr;
  }

  .product-motion {
    position: relative;
    inset: auto;
    width: min(100%, 520px);
    margin-bottom: 24px;
    transform: rotate(-1deg);
  }

  .product-clock {
    right: auto;
    bottom: 26px;
    width: 88vw;
  }

  .product-bottle {
    width: min(58vw, 210px);
    height: 455px;
  }

  .product-packshot {
    width: min(62vw, 230px);
    max-height: 430px;
  }

  .composition {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 96px;
  }

  .composition__copy h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .composition-grid {
    grid-template-columns: 1fr;
    transform: none;
  }

  .composition-card,
  .composition-card:nth-child(even) {
    min-height: 132px;
    transform: none;
  }

  .composition-bridge {
    bottom: 18px;
    font-size: clamp(30px, 10vw, 48px);
  }

  .composition-card strong {
    font-size: clamp(22px, 7vw, 32px);
  }

  .composition-card span {
    font-size: 12px;
  }

  .video-band {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding-inline: 0;
    background: #fff;
  }

  .video-band video,
  .video-band img {
    width: 100%;
    height: 100svh;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .advantage-card {
    min-height: 210px;
    grid-template-rows: 58px auto 1fr;
  }

  .kit__visual img {
    width: 96vw;
  }

  .footer__brand .ampm-logo-mark {
    width: 140px;
  }

  .footer__contacts {
    font-size: 18px;
  }

  .footer__top {
    min-width: 150px;
  }
}

@media (max-width: 420px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .nav {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    z-index: 15;
    display: flex;
    justify-content: space-around;
    gap: 4px;
    padding: 11px 6px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: rgba(247, 240, 230, 0.96);
    box-shadow: 4px 4px 0 var(--ink);
    backdrop-filter: blur(18px);
    font-size: 12px;
  }

  .nav a {
    flex: 1;
    text-align: center;
  }

  .time-pill {
    min-height: 70px;
  }

  .poster__copy h1 {
    font-size: clamp(46px, 15vw, 58px);
  }

  .poster .hero-product {
    font-size: clamp(11px, 3.35vw, 19px);
    line-height: 1;
  }

  .poster__tagline {
    max-width: 340px;
  }

  .product-section__time-value {
    font-size: clamp(58px, 20vw, 86px);
  }

  .product-section__copy h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .product-title-row {
    gap: 8px;
    flex-wrap: wrap;
  }

  .product-badge {
    margin-top: 0;
    padding: 7px 9px;
    font-size: 12px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .product-composition__grid span {
    min-height: 76px;
  }

  .product-section__visual {
    min-height: 580px;
  }

  .product-bottle {
    width: min(64vw, 180px);
    height: 390px;
  }

  .product-packshot {
    width: min(64vw, 190px);
    max-height: 380px;
  }

  .product-bottle span {
    right: -26px;
    top: 190px;
    font-size: 48px;
  }

  .product-bottle::before {
    width: 64px;
    height: 64px;
  }

}

@media (max-width: 360px) {
  .poster {
    min-height: 100svh;
  }

  .poster .hero-product {
    font-size: 11px;
  }

  .poster__copy h1 {
    font-size: 44px;
  }

  .poster__tagline {
    font-size: 26px;
  }

  .poster__visual {
    height: 280px;
    min-height: 280px;
  }

  .section-heading h2,
  .advantages .section-heading h2 {
    font-size: 32px;
  }

  .product-section__copy h2,
  .composition__copy h2,
  .advantage-card h3,
  .footer__contacts {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
