/* ==========================================================================
   Greensnake — Home page sections
   Geometry mirrors the original Framer desktop breakpoint (>= 1240px),
   then degrades to a single column at the phone breakpoint.
   Shared chrome (nav, menu, footer) lives in styles/chrome.css.
   ========================================================================== */

/* ==========================================================================
   1 · Hero
   ========================================================================== */
.hero {
  position: relative;
  /* z-index makes this a stacking context, so the z-index:-1 background layer
     paints above the section's own background instead of behind the page. */
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--green-880);
  overflow: hidden;
}

/* Positive indices only: a z-index:-1 layer would paint behind the section's
   own background, which is what hid the frog in the first place. */
.hero__bg {
  position: absolute;
  inset: 0 0 -139px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-img { position: absolute; inset: -110px 0 110px; will-change: transform; }
.hero__bg-img img { width: 100%; height: 100%; object-fit: cover; }

/* the faint kinetic grid drawn over the photograph */
.hero__grid {
  position: absolute;
  left: 0; right: 0;
  top: calc(45.58% - 371.5px);
  width: 100%;
  height: 743px;
}

.hero__grid-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 1142px;
  padding: 412px 24px 0;
}

.hero__headline { position: relative; flex: none; width: 691px; height: 203px; }

.hero__title {
  position: absolute;
  top: -4px; left: 0;
  white-space: pre;
  color: var(--white);
}

.hero__lead {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  color: var(--white);
}
/* the reveal transform has to compose with the centring transform */
.js .hero__lead[data-reveal] { transform: translate(-50%, -50%) translateY(60px); }
.js .hero__lead[data-reveal].is-visible { transform: translate(-50%, -50%); }

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  width: 1px;
}

/* ==========================================================================
   2 · Our Method
   ========================================================================== */
.method {
  background: var(--cream);
  padding: 100px 0 49px;
}

.method__top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  min-height: 211px;
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.method__title {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
  max-width: 763px;
}
.method__title h2 { color: var(--navy); }
.method__title .rule { color: var(--navy); height: 2px; }

.method__body {
  position: relative;
  min-height: 194px;
  padding: 96px 0;
}

.method__stack {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 977px;
  margin-left: auto;
  margin-right: 140px;
}

.method__list { flex: 1 0 0; display: flex; flex-direction: column; gap: 12px; }

.method__item {
  height: 72px;
  overflow: hidden;
  cursor: pointer;
}

.method__item-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 420ms var(--ease-out);
}

.method__item-inner span {
  display: block;
  height: 72px;
  font-family: "Inter Display", var(--font-inter), sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -0.03em;
  color: var(--blue-assist);
  white-space: nowrap;
}

/* first copy = dimmed, second copy = live. Sliding up swaps them. */
.method__item-inner span:first-child { opacity: 0.5; }
.method__item.is-active .method__item-inner { transform: translateY(-72px); }

.method__media {
  position: relative;
  flex: none;
  width: 342px;
  height: 408px;
  border-radius: 16px;
  overflow: hidden;
}
.method__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 500ms var(--ease-out), transform 700ms var(--ease-out);
}
.method__media img.is-active { opacity: 1; transform: none; }

.method__btn {
  display: grid;
  place-items: center;
  width: 419px;
  height: 82px;
  margin-inline: auto;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.61);
}

/* ==========================================================================
   3 · The four pillars
   ========================================================================== */
.pillars {
  background: var(--green-880);
  padding: 50px 80px 160px;
  overflow: hidden;
}

.pillars__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 72px 0 98px;
  border-radius: 27px;
  background: var(--olive-panel);
}

.pillars__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
}

.pillars__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding-inline: 40px;
  text-align: center;
}

.pillars__h2 {
  max-width: 918px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -0.04em;
  color: var(--yellow);
}

.pillars__sub {
  max-width: 640px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.pillars__rule {
  width: 50%;
  height: 4px;
  border: 0;
  margin: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.16);
}

/* ---------- symptom carousel ---------- */
.bento { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 20px; }

.bento { gap: 24px; }

.bento__viewport {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 759px;
  max-width: 100%;
  height: 523px;
}

.bento__track {
  position: relative;
  width: 400px;
  height: 100%;
}


.bento__card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background: rgb(10, 22, 40);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out), visibility 400ms;
}
.bento__card.is-active { opacity: 1; visibility: visible; transform: none; }

.bento__card h3 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 22px;
  line-height: 26.4px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.bento__card p {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 15px;
  line-height: 19.5px;
  letter-spacing: -0.01em;
  color: rgb(204, 204, 204);
}
.bento__card img {
  width: 100%;
  height: auto;
  margin-top: auto;
  border-radius: 10px;
  object-fit: cover;
}

.bento__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-900);
  transition: transform var(--t-base) var(--ease-expressive), background var(--t-base);
}
.bento__nav:hover { transform: translateY(0) scale(1.08); background: var(--white); }
.bento__nav svg { width: 12px; height: 20px; }
.bento__nav--prev { left: 16px; }
.bento__nav--next { right: 16px; }
.bento__nav--next svg { transform: rotate(180deg); }

.bento__dots { display: flex; gap: 12px; }
.bento__dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgb(204, 204, 204);
  transition: background var(--t-base);
}
.bento__dots button[aria-selected="true"] { background: var(--white); }

/* ---------- crystal cards ---------- */
.pillars__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}
.pillars__row--a { width: 94%; }
.pillars__row--b { width: 91%; }

/* the original uses four hand-set widths rather than an even split */
.pillars__row--a .pcard:nth-child(1) { width: 540px; }
.pillars__row--a .pcard:nth-child(2) { width: 415px; }
.pillars__row--b .pcard:nth-child(1) { width: 419px; }
.pillars__row--b .pcard:nth-child(2) { width: 536px; }

.pcard {
  position: relative;
  flex: none;
  height: 564px;
  padding: 28px;
  border: 1px solid var(--white);
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}


.pcard__art { position: absolute; inset: 0; z-index: -1; }
.pcard__art img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: opacity 400ms var(--ease-out), transform 600ms var(--ease-out);
}

/* hover swaps the crystal for the reveal photograph */
.pcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--reveal);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}
.pcard:hover::before,
.pcard:focus-within::before { opacity: 1; }
.pcard:hover .pcard__art img { opacity: 0; transform: scale(1.05); }

.pcard__icon {
  position: absolute;
  top: 20px; left: 24px;
  width: 22px; height: 22px;
  color: rgba(255, 255, 255, 0.55);
  transition: opacity 300ms var(--ease-out);
}
.pcard__icon svg { width: 100%; height: 100%; }
/* the marker gives way to the statistic on hover */
.pcard:hover .pcard__icon { opacity: 0; }

.pcard__tip {
  position: absolute;
  top: 20px; left: 24px;
  max-width: 300px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(20, 25, 15, 0.55);
  backdrop-filter: blur(6px);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.45;
  color: var(--white);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
  pointer-events: none;
}
.pcard:hover .pcard__tip { opacity: 1; transform: none; }

.pcard__text {
  position: absolute;
  left: 28px; right: 28px; bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcard__text h3 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 22px;
  line-height: 26.4px;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color var(--t-base);
}
.pcard:hover .pcard__text h3 { color: rgba(255, 255, 255, 0.55); }
.pcard__text p {
  font-family: var(--font-switzer);
  font-weight: 400;
  font-size: 12px;
  line-height: 15.6px;
  letter-spacing: -0.03em;
  color: var(--white);
}

/* ==========================================================================
   4 · Precion diagnostics

   The brand spiral is the point of this section, so it gets the whole stage:
   contained (never cropped), centred, screen-blended into the green so only
   the pale coil reads, and slowly turning. Everything else sits on top of it
   as a single instrument panel.
   ========================================================================== */
.kits {
  position: relative;
  isolation: isolate;
  padding: 130px 80px 150px;
  background: var(--green-880);
  overflow: hidden;
}

/* a soft vignette keeps the eye in the middle */
.kits::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(75% 60% at 50% 45%, transparent 0%, rgba(2, 18, 10, 0.55) 100%);
  pointer-events: none;
}

.kits__glyph {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  place-items: center;
  will-change: transform;
  pointer-events: none;
}

.kits__glyph img {
  width: min(1080px, 86vw);
  height: auto;
  /* the source has a dark green plate behind the coil; screen drops it */
  mix-blend-mode: screen;
  opacity: 0.62;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 52%, transparent 76%);
          mask-image: radial-gradient(circle at 50% 50%, #000 52%, transparent 76%);
  animation: glyph-turn 120s linear infinite;
}

@keyframes glyph-turn { to { transform: rotate(360deg); } }

.kits__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.kits__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  text-align: center;
}

.kits__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-switzer);
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.kits__eyebrow::before,
.kits__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.kits__h2 {
  font-family: var(--font-switzer);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--white);
}

.kits__sub {
  max-width: 620px;
  font-family: var(--font-switzer);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- the instrument panel ---------- */
.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
  max-width: 940px;
  padding: 40px 44px 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(9, 40, 25, 0.55);
  backdrop-filter: blur(20px) saturate(130%);
  box-shadow: 0 44px 90px -46px rgba(0, 0, 0, 0.9),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.panel__lockup {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.panel__rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3)); }
.panel__rule + .panel__rule,
.panel__lockup .panel__rule:last-child { background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent); }

.panel__wordmark {
  flex: none;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

/* ---------- the dock ---------- */
.dock { width: 100%; display: flex; justify-content: center; }

.dock__list {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.dock__list li { display: flex; align-items: flex-end; }

.dock__list button {
  position: relative;
  display: block;
  transform-origin: bottom center;
  /* --s is set per-tile by the magnification handler in components.js */
  transform: scale(var(--s, 1)) translateY(calc((var(--s, 1) - 1) * -6px));
  transition: transform 260ms var(--ease-expressive);
}

.dock__list img {
  display: block;
  width: 66px;
  height: 66px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.9);
}

.dock__list button.is-active img { outline: 2px solid var(--lime); outline-offset: 2px; }

.dock__name {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(4, 22, 13, 0.92);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
  pointer-events: none;
}
.dock__list button:hover .dock__name,
.dock__list button:focus-visible .dock__name { opacity: 1; transform: none; }

/* ---------- live readout under the dock ---------- */
.panel__readout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  text-align: center;
}

.panel__readout-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
}

.panel__readout-desc {
  max-width: 520px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.66);
}

/* ==========================================================================
   5 · Effortless health journey
   ========================================================================== */
.steps { position: relative; overflow: hidden; }

.steps__bg { position: absolute; inset: -6% 0; z-index: 0; will-change: transform; }
.steps__bg img { width: 100%; height: 100%; object-fit: cover; }

.steps__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 20px between the grid and the CTA plate; the head adds its own 36px */
  gap: 20px;
  width: 100%;
  max-width: calc(var(--container) + 160px);
  margin-inline: auto;
  padding: 100px 80px;
  background: linear-gradient(#a4c22d 11.71%, #2d380d 53.15%);
}

.steps__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  height: 101px;
  width: 100%;
  max-width: var(--container);
  margin-bottom: 36px;
}
.steps__h2 {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -0.04em;
  color: var(--white);
}
.steps__head .rule { color: var(--white); }
.steps__head .eyebrow {
  font-size: 26px;
  line-height: 31.2px;
  color: var(--blue-light);
}
.steps__head .eyebrow::before { width: 20px; height: 20px; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 295fr);
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  width: 100%;
  max-width: var(--container);
}

.steps__card {
  display: flex;
  flex-direction: column;
  height: 382px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(69, 82, 8, 0.55);
  color: var(--white);
  transition: transform var(--t-base) var(--ease-expressive), background var(--t-base);
}
/* the original gives each card its own height */
.steps__card:nth-child(2) { height: 408px; }
.steps__card:nth-child(3) { height: 362px; }
.steps__card:nth-child(4) { height: 382px; }
.steps__card:hover { transform: translateY(-6px); background: rgba(69, 82, 8, 0.72); }

.steps__num {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.03em;
}
.steps__card h3 {
  margin-top: 4px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.03em;
}
.steps__copy {
  margin-top: auto;
  padding-top: 40px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: var(--blue-light);
}

/* ---------- CTA plate ---------- */
.steps__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1228px;
  height: 408px;
  padding: 44px 24px;
  border-radius: 20px;
  background: var(--cream);
}

.steps__cta > .avatars { margin-top: 25px; }

.avatars { display: flex; }
.avatars li + li { margin-left: -12px; }
.avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  object-fit: cover;
}

.steps__purpose {
  margin: 20px 0 25px;
  max-width: 1180px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--blue);
}

.steps__links { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 1180px; }

.linkbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  border-radius: 999px;
  background: #e7e0d8;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--blue);
  font-size: 16px;
  transition: background var(--t-base);
}
.linkbar:hover { background: #ddd4c8; }

.linkbar__disc {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  transition: transform var(--t-base) var(--ease-expressive);
}
.linkbar:hover .linkbar__disc { transform: translateX(3px); }
.linkbar__disc svg { width: 15px; height: 10px; }
.linkbar--lead .linkbar__disc { transform: none; }

/* ==========================================================================
   6 · FAQ
   ========================================================================== */
.faq { background: var(--cream); padding: 100px 80px; }

.faq__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.faq__left { flex: none; width: 397px; display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
.faq__h2 {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.faq__sub {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: var(--grey);
}
.faq__left .rule { width: 100%; color: var(--navy); }

.faq__list { flex: none; width: 600px; display: flex; flex-direction: column; gap: 24px; }

.acc {
  border-radius: 12px;
  background: #e7e0d8;
  overflow: hidden;
}
.acc[open] { min-height: 196px; }
.acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  padding: 26px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.acc summary::-webkit-details-marker { display: none; }

.acc summary i { flex: none; width: 20px; height: 20px; color: var(--blue-assist); }
.acc summary svg { width: 20px; height: 20px; }
.acc .acc__close { display: none; }
.acc[open] .acc__plus { display: none; }
.acc[open] .acc__close { display: block; }

.acc__body {
  padding: 0 26px 30px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: var(--grey);
}

/* ==========================================================================
   7 · Savings calculator
   ========================================================================== */
.calc { background: var(--cream); padding: 60px 0; }

.calc__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 669px;
  gap: 48px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 60px;
  border: 2px dashed #222;
}

.calc__head { display: flex; flex-direction: column; gap: 24px; }
.calc__h2 {
  max-width: 520px;
  font-family: var(--font-switzer);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--black-ui);
}
.calc__sub {
  max-width: 460px;
  font-family: var(--font-switzer);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: var(--black-ui);
}

.calc__body { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }

.calc__side {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 37.5px;
  padding: 33px 33px 50px;
  background: #f7f7f7;
}
.calc__pod, .calc__slider { display: flex; flex-direction: column; gap: 15px; }
.calc__side p {
  font-family: var(--font-switzer);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: var(--black-ui);
}
.calc__amount {
  font-family: var(--font-switzer);
  font-weight: 500;
  font-size: 34px !important;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: rgb(15, 130, 13);
}

.calc__slider { position: relative; }

/* the handle travels between 12px and (100% - 12px); the track, the fill and
   the tick dots are all positioned against that same inset so nothing drifts */
.range {
  position: relative;
  display: flex;
  align-items: center;
  width: 240px;
  height: 24px;
}

.range__track,
.range__fill {
  position: absolute;
  top: 50%;
  height: 6px;
  border-radius: 3px;
  translate: 0 -50%;
  pointer-events: none;
}

.range__track { left: 0; right: 0; background: #e8e8e8; }

.range__fill {
  left: 0;
  width: calc(12px + (100% - 24px) * var(--f, 0.25));
  background: #09f;
  transition: width 180ms var(--ease-out);
}

.range__dots {
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  translate: 0 -50%;
  pointer-events: none;
}
.range__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfcfcf;
}

.range__input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 24px;
  margin: 0;
  background: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
}
.range__input:focus { outline: none; }

.range__input::-webkit-slider-runnable-track { height: 24px; background: none; }
.range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 4px solid #09f;
  background: var(--white);
  cursor: grab;
  transition: transform 160ms var(--ease-expressive);
}
.range__input:hover::-webkit-slider-thumb { transform: scale(1.1); }
.range__input:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.28); }

.range__input::-moz-range-track { height: 24px; background: none; }
.range__input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid #09f;
  background: var(--white);
  cursor: grab;
}

.calc__rows { flex: 1 1 auto; display: flex; flex-direction: column; gap: 24px; max-width: 636px; }
.calc__row { display: flex; flex-direction: column; gap: 15px; }
.calc__row-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; min-height: 47px; }

.calc__label {
  font-family: var(--font-switzer);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: #8b8b8b;
}
.calc__pct {
  font-family: var(--font-switzer);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: var(--black-ui);
}
.calc__value {
  flex: none;
  font-family: var(--font-switzer);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--black-ui);
  font-variant-numeric: tabular-nums;
}

.calc__bar { height: 8px; border-radius: 3px; background: #f7f7f7; overflow: hidden; }
.calc__bar span {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: 3px;
  background: var(--bar-color);
  transform-origin: left center;
  animation: bar-in 900ms var(--ease-out) both;
}
@keyframes bar-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ==========================================================================
   8 · Greensnake community

   An editorial dark block between two cream sections: hairline masthead,
   a two-column lede, one cinematic plate, then the network laid out as
   a figure and a role list rather than invented statistics.
   ========================================================================== */
.gc {
  padding: 120px 80px 110px;
  background: var(--green-900);
  color: var(--white);
}

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

/* ---------- masthead ---------- */
.gc__masthead { display: flex; align-items: center; gap: 24px; }

.gc__label {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}

.gc__hair { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.18); }

.gc__index {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------- lede ---------- */
.gc__lede {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
  margin-top: 56px;
}

.gc__h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--white);
}

.gc__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 470px;
  justify-self: end;
}

.gc__aside p {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.64);
}

/* ---------- plate ---------- */
.gc__plate {
  position: relative;
  margin: 64px 0 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1216 / 620;
}
/* Scoped to the photograph itself, NOT to every img inside the plate — the
   invite mark is also an <img> and a bare `.gc__plate img` rule sized it to
   the full plate. */
.gc__plate .plate__img { width: 100%; height: 100%; object-fit: cover; }

/* A slightly wider, softer aperture than the default — the group is wide,
   so a small circle would feel like peering through a keyhole. */
.gc__plate { --plate-r-open: 165px; --plate-feather: 130px; }

.gc__plate::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(2, 20, 11, 0.85) 0%, rgba(2, 20, 11, 0) 46%);
  pointer-events: none;
}

.gc__plate-copy {
  position: absolute;
  inset: auto 32px 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gc__chip {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.gc__plate-line {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- network ---------- */
.gc__stats {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.6fr;
  gap: 48px;
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.gc__figure { margin: 0; display: flex; flex-direction: column; gap: 10px; }

.gc__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 4.4vw, 62px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

.gc__figure figcaption {
  max-width: 260px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.gc__roles-label {
  margin-bottom: 18px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.gc__roles ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gc__roles li {
  padding: 20px 20px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--white);
}
.gc__roles li + li { padding-left: 20px; }
.gc__roles li:last-child { border-right: 0; padding-right: 0; }

.gc__foot {
  max-width: 620px;
  margin-top: 44px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   9 · Pricing
   ========================================================================== */
.pricing {
  background: linear-gradient(#2d380d 0%, #35410f 55%, #8fae1e 100%);
  padding: 103px 80px 100px;
}

.pricing__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  width: 100%;
  max-width: var(--container);
  min-height: 583px;
  margin-inline: auto;
}

.pricing__head { display: flex; flex-direction: column; gap: 20px; }
.pricing__head .eyebrow { color: var(--blue-light); }
.pricing__h2 {
  max-width: 436px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 38px;
  line-height: 54px;
  letter-spacing: -0.04em;
  color: var(--white);
}

.pricing__plans { display: contents; }

.plan { display: flex; flex-direction: column; gap: 14px; }
.plan__topline { height: 2px; background: #4aa3ff; margin-bottom: 10px; }
.plan__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.plan__stage {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.03em;
  color: var(--yellow);
}
.plan__badge {
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--white);
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--navy);
}
.plan__name {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.plan--two .plan__name { text-align: center; }
.plan__name em { font-style: italic; font-weight: 400; }

.plan__price { display: flex; align-items: baseline; gap: 4px; color: var(--white); }
.plan__price strong {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 48px;
  line-height: 57.6px;
  letter-spacing: -0.03em;
}
.plan__price span { font-family: var(--font-ui); font-weight: 500; font-size: 18px; }

.plan__rule { height: 2px; border: 0; margin: 4px 0 8px; background: #4aa3ff; }

.plan .btn { align-self: flex-start; }

.plan__list { display: flex; flex-direction: column; gap: 18px; margin-top: 10px; }
.plan__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.plan__list li::before {
  content: "";
  flex: none;
  width: 14px; height: 2px;
  background: #4aa3ff;
}
.plan__list--muted li::before { background: rgba(255, 255, 255, 0.65); }

/* ---------- commit bar ---------- */
.commit { background: var(--white); }
.commit__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: calc(var(--container) + 260px);
  margin-inline: auto;
  padding: 26px 60px;
}
.commit__title {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.commit__sub {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 19.2px;
  color: #000;
}

/* ==========================================================================
   10 · Reels
   ========================================================================== */
.reels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px;
  background: linear-gradient(#8fae1e 0%, #4c5a26 35%, #1d2415 100%);
}

.reels__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  height: 269px;
  padding: 54px 0;
  text-align: center;
}
.reels__eyebrow {
  font-family: var(--font-switzer);
  font-weight: 400;
  font-size: 12px;
  line-height: 14.4px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
}
.reels__h2 {
  font-family: var(--font-switzer);
  font-weight: 500;
  font-size: 46px;
  line-height: 55.2px;
  letter-spacing: normal;
  color: rgba(0, 0, 0, 0.5);
}
.reels__sub {
  max-width: 690px;
  font-family: var(--font-switzer);
  font-weight: 300;
  font-size: 17px;
  line-height: 28.9px;
  letter-spacing: 0.03em;
  color: var(--cream-2);
}

.reels__pair {
  display: grid;
  grid-template-columns: repeat(2, 489px);
  gap: 10px 27px;
  justify-content: center;
  width: 100%;
  max-width: 1005px;
  height: 555px;
}

.reel {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0b1c12;
}

.reel__track { position: absolute; inset: 0; }

.reel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 800ms var(--ease-out);
}
.reel__slide.is-active { opacity: 1; }
.reel__slide img { width: 100%; height: 100%; object-fit: cover; }

.reel__slide figcaption {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.reel__slide figcaption b {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.reel__slide figcaption span {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.reel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 45%);
  pointer-events: none;
}

/* progress bars along the top */
.reel__bars {
  position: absolute;
  top: 14px; left: 20px; right: 60px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.reel__bars i {
  position: relative;
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.reel__bars i::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: var(--white);
  transform-origin: left center;
  transform: scaleX(var(--p, 0));
}
.reel__bars i.is-running::after { transition: transform linear; }

.reel__nav {
  position: absolute;
  top: 50%; z-index: 3;
  translate: 0 -50%;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity var(--t-base), background var(--t-base);
}
.reel:hover .reel__nav, .reel:focus-within .reel__nav { opacity: 1; }
.reel__nav:hover { background: rgba(0, 0, 0, 0.45); color: #fff; }
.reel__nav svg { width: 11px; height: 18px; }
.reel__nav--prev { left: 10px; }
.reel__nav--next { right: 10px; }
.reel__nav--next svg { transform: rotate(180deg); }

.reel__play {
  position: absolute;
  top: 8px; right: 18px;
  z-index: 4;
  width: 22px; height: 22px;
  color: var(--white);
}
.reel__play::before,
.reel__play::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 3px; height: 12px;
  background: currentColor;
}
.reel__play::before { left: 7px; }
.reel__play::after  { left: 13px; }
.reel__play[data-playing="false"]::before {
  left: 7px;
  width: 0; height: 0;
  background: none;
  border-left: 11px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.reel__play[data-playing="false"]::after { display: none; }

/* ==========================================================================
   Responsive — the original collapses everything below 1240px
   ========================================================================== */
@media (max-width: 1239.98px) {
  /* hero */
  .hero { min-height: 92vh; }
  .hero__grid-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 180px 20px 60px;
  }
  .hero__headline { width: 100%; height: auto; }
  .hero__title { position: static; font-size: 40px; white-space: normal; }
  .hero__lead { position: static; transform: none; max-width: none; font-size: 18px; margin-top: 16px; }
  /* `.js` is on <html>, so the desktop rules below are `.js .hero__lead
     [data-reveal].is-visible` — specificity (0,4,0). Media queries add no
     specificity of their own, so these overrides need the same `.js` or they
     silently lose and the lede keeps its desktop translate(-50%,-50%),
     dragging it 167px off the left edge of a phone. */
  .js .hero__lead[data-reveal] { transform: translateY(60px); }
  .js .hero__lead[data-reveal].is-visible { transform: none; }
  .hero__cta { width: 100%; flex: none; }
  .hero__grid { display: none; }

  /* method */
  .method { padding: 64px 0 40px; }
  .method__top { padding-inline: 20px; }
  .method__title h2 { font-size: 22px; line-height: 32px; }
  .method__body { padding: 40px 20px; min-height: 0; }
  .method__stack { flex-direction: column; align-items: stretch; margin: 0 auto; gap: 24px; }
  .method__item { height: 52px; }
  .method__item-inner span { height: 52px; font-size: 32px; line-height: 52px; }
  .method__item.is-active .method__item-inner { transform: translateY(-52px); }
  .method__media { width: 100%; height: 320px; }
  .method__btn { width: min(100%, 360px); }

  /* pillars */
  .pillars { padding: 30px 16px 80px; }
  .pillars__frame { padding: 44px 0 56px; gap: 36px; border-radius: 20px; }
  .pillars__h2 { font-size: 30px; }
  .pillars__sub { font-size: 15px; }
  .pillars__title { padding-inline: 20px; }
  .bento__viewport { width: 100%; height: auto; padding: 0 8px; }
  .bento__track { width: min(100%, 340px); height: 480px; }
  .bento__nav { width: 40px; height: 40px; }
  .pillars__row, .pillars__row--a, .pillars__row--b {
    flex-direction: column;
    width: 100%;
    padding-inline: 20px;
    gap: 14px;
  }
  /* specificity has to match the four hand-set desktop widths */
  .pcard,
  .pillars__row--a .pcard:nth-child(1),
  .pillars__row--a .pcard:nth-child(2),
  .pillars__row--b .pcard:nth-child(1),
  .pillars__row--b .pcard:nth-child(2) { flex: none; width: 100%; height: 420px; }

  /* kits */
  .kits { padding: 70px 16px 90px; }
  .kits__inner { gap: 44px; }
  .kits__glyph img { width: 118vw; opacity: 0.5; }
  .kits__sub { font-size: 15px; line-height: 1.65; }
  .panel { padding: 28px 18px 26px; gap: 26px; border-radius: 22px; }
  .panel__lockup { gap: 14px; }
  .panel__wordmark { font-size: 13px; letter-spacing: 0.22em; white-space: normal; text-align: center; }
  .dock__list { gap: 8px; padding: 10px; border-radius: 18px; overflow-x: auto; max-width: 100%; }
  .dock__list img { width: 46px; height: 46px; border-radius: 12px; }
  .dock__name { display: none; }
  .panel__readout { min-height: 66px; }

  /* steps */
  .steps__inner { padding: 60px 20px; gap: 36px; }
  .steps__h2 { font-size: 28px; }
  .steps__grid { grid-template-columns: 1fr; }
  .steps__card, .steps__card:nth-child(2) { min-height: 0; margin-top: 0; }
  .steps__copy { padding-top: 16px; }
  .steps__cta { padding: 24px 18px; }

  /* faq */
  .faq { padding: 64px 20px; }
  .faq__inner { flex-direction: column; gap: 32px; }
  .faq__left, .faq__list { width: 100%; }
  .faq__h2 { font-size: 30px; line-height: 36px; }
  .faq__sub { max-width: none; }
  .faq__list { gap: 14px; }
  .acc summary { min-height: 0; padding: 20px; font-size: 15px; }
  .acc[open] { min-height: 0; }
  .acc__body { padding: 0 20px 22px; font-size: 15px; }

  /* calculator */
  .calc { padding-bottom: 64px; }
  .calc__box { padding: 24px 18px; gap: 28px; }
  .calc__h2 { font-size: 24px; }
  .calc__sub { font-size: 15px; }
  .calc__body { flex-direction: column; gap: 28px; }
  .calc__side { width: 100%; padding: 22px 20px 32px; }
  .range { width: 100%; }
  .calc__rows { max-width: none; width: 100%; }
  .calc__row-head { gap: 12px; }
  .calc__value { font-size: 18px; }

  /* community */
  .gc { padding: 70px 20px 72px; }
  .gc__masthead { gap: 14px; }
  .gc__index { display: none; }
  .gc__lede { grid-template-columns: 1fr; gap: 26px; margin-top: 34px; }
  .gc__aside { justify-self: start; max-width: none; gap: 22px; }
  .gc__aside p { font-size: 15px; }
  .gc__plate { margin-top: 36px; aspect-ratio: 4 / 3; border-radius: 18px; }
  .gc__plate-copy { inset: auto 16px 16px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .gc__stats { grid-template-columns: 1fr; gap: 30px; margin-top: 36px; }
  .gc__roles ul { grid-template-columns: 1fr 1fr; }
  .gc__roles li { padding: 14px 14px 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .gc__roles li:nth-child(2n) { border-right: 0; padding-right: 0; }
  .gc__roles li:nth-child(2n+1) { padding-left: 0; }
  .gc__foot { margin-top: 28px; font-size: 14px; }

  /* pricing */
  .pricing { padding-top: 56px; }
  .pricing__inner { grid-template-columns: 1fr; gap: 34px; padding-bottom: 70px; }
  .pricing__h2 { font-size: 26px; }
  .plan__price strong { font-size: 38px; }
  .commit__inner { flex-direction: column; align-items: flex-start; padding: 22px 20px; }

  /* reels */
  .reels { padding: 56px 20px 70px; gap: 28px; }
  .reels__head { height: auto; gap: 20px; padding: 0; }
  .reels__h2 { font-size: 28px; line-height: 34px; }
  .reels__sub { font-size: 15px; line-height: 24px; }
  .reels__pair { grid-template-columns: 1fr; gap: 16px; height: auto; max-width: none; }
  .reel { height: auto; aspect-ratio: 489 / 555; }
  .reel__slide figcaption b { font-size: 24px; }
}

@media (max-width: 560px) {
  .hero__title { font-size: 34px; }
}
