:root {
  --ink: #11110f;
  --ink-2: #20231d;
  --paper: #fffaf0;
  --paper-2: #f4eadb;
  --paper-3: #efe4d1;
  --field: #377342;
  --deep-field: #0c3a2c;
  --sky: #74c7ef;
  --chick: #ffd848;
  --pig: #f08c91;
  --muzzle: #ed7d66;
  --clay: #b9432e;
  --line: rgba(17, 17, 15, 0.15);
  --line-strong: rgba(17, 17, 15, 0.24);
  --line-light: rgba(255, 250, 240, 0.22);
  --muted: rgba(17, 17, 15, 0.68);
  --muted-light: rgba(255, 250, 240, 0.7);
  --shadow: 0 24px 80px rgba(17, 17, 15, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--chick);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 4px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--clay), var(--field), var(--chick));
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px max(20px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  background: rgba(255, 250, 240, 0.78);
  color: var(--ink);
  backdrop-filter: blur(18px);
  transition:
    background 260ms var(--ease),
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 10px 36px rgba(17, 17, 15, 0.08);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-link img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 30%;
  background: #000;
}

.brand-link span {
  font-size: 0.92rem;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-header nav a:not(.nav-cta):hover {
  background: rgba(17, 17, 15, 0.06);
}

.nav-cta,
.story-button,
.waitlist-form button {
  background: var(--ink);
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease);
}

.nav-cta:hover,
.story-button:hover,
.waitlist-form button:hover {
  background: var(--clay);
  transform: translateY(-1px);
}

.story-page {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 15, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.story-hero,
.case-hero,
.proof-hero,
.invite-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 128px 0 72px;
}

.story-hero {
  min-height: auto;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(116, 199, 239, 0.42), rgba(255, 250, 240, 0.98) 58%),
    var(--paper);
}

.story-hero::after,
.case-hero::after,
.proof-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 16%;
  content: "";
  background:
    linear-gradient(180deg, rgba(55, 115, 66, 0), rgba(55, 115, 66, 0.78)),
    repeating-linear-gradient(90deg, rgba(12, 58, 44, 0.18) 0 2px, transparent 2px 9px);
  transform: skewY(-1.5deg);
  transform-origin: 100% 100%;
}

.case-hero::after,
.proof-hero::after {
  height: 13%;
}

.hero-grid,
.case-grid,
.proof-grid,
.invite-grid,
.brief-grid,
.logic-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.hero-copy,
.case-copy,
.proof-copy,
.invite-copy,
.section-copy {
  position: relative;
  z-index: 2;
}

.story-kicker,
.product-number,
.tags span,
.note-card span,
.path-step span,
.recap-card span,
.form-note {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--deep-field);
}

.story-kicker::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.story-kicker.light {
  color: var(--chick);
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.88;
}

.case-copy h1 {
  max-width: 840px;
  font-size: clamp(3rem, 6.2vw, 6.1rem);
  line-height: 0.9;
}

h2 {
  max-width: 840px;
  font-size: clamp(2.35rem, 5vw, 5.3rem);
  line-height: 0.93;
}

h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.02;
}

.hero-lede,
.section-lede {
  max-width: 720px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.26rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.story-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.story-button.light {
  background: var(--paper);
  color: var(--ink);
}

.story-button.light:hover {
  background: var(--chick);
  color: var(--ink);
}

.secondary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--deep-field);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(12, 58, 44, 0.25);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.coalition-stage,
.food-stage {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--sky);
  box-shadow: 12px 12px 0 var(--ink);
  transform: translate3d(var(--float-x, 0), var(--float-y, 0), 0);
  transition: transform 180ms linear;
}

.coalition-stage img,
.food-stage img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.coalition-stage figcaption,
.food-stage figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sun-dial {
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: 2;
  width: 92px;
  aspect-ratio: 1;
  border: 2px solid rgba(17, 17, 15, 0.76);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(17, 17, 15, 0.78) 0deg 4deg, transparent 4deg 18deg);
  mask: radial-gradient(circle, transparent 0 54%, #000 55% 100%);
  animation: slow-spin 18s linear infinite;
}

.story-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--chick);
  color: var(--ink);
}

.story-marquee div {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 13px 0;
  animation: marquee 22s linear infinite;
}

.story-marquee span {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-section,
.notes-section,
.logic-section,
.products-section,
.recap-section,
.faq-section {
  padding: 104px 0;
}

.brief-grid {
  display: block;
}

.brief-grid .section-copy {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-copy.compact {
  max-width: 860px;
  margin-bottom: 34px;
}

.brief-grid,
.logic-grid {
  align-items: start;
}

.brief-list,
.notes-grid,
.product-grid,
.proof-stats,
.recap-grid {
  display: grid;
  gap: 18px;
}

.brief-list,
.notes-grid,
.product-grid,
.proof-stats,
.recap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brief-card,
.note-card,
.product-card,
.stat-card,
.recap-card,
.faq-list article,
.path-step,
.default-machine,
.final-card,
.logic-step,
.next-panel {
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 6px 6px 0 rgba(17, 17, 15, 0.9);
}

.brief-card,
.stat-card,
.recap-card,
.faq-list article,
.logic-step,
.path-step {
  padding: 24px;
}

.brief-card {
  min-height: 260px;
}

.brief-card span,
.recap-card span,
.logic-step strong {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--clay);
}

.brief-card p,
.note-card p,
.product-info p:not(.product-number),
.logic-step p,
.path-step p,
.recap-card p,
.faq-list p,
.default-machine p,
.final-card p,
.next-panel p {
  color: var(--muted);
  font-weight: 600;
}

.brief-card h3,
.recap-card h3,
.faq-list h3 {
  margin-bottom: 14px;
}

.quote-band {
  padding: 90px 0;
  background: var(--ink);
  color: var(--paper);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.32fr 1fr auto;
  gap: 32px;
  align-items: center;
}

blockquote {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.case-hero {
  background:
    linear-gradient(135deg, rgba(244, 234, 219, 0.95), rgba(116, 199, 239, 0.34)),
    var(--paper);
}

.default-machine {
  overflow: hidden;
  padding: 24px;
  background: var(--ink);
  color: var(--paper);
}

.default-machine p {
  margin-top: 24px;
  color: var(--muted-light);
  font-size: 1.05rem;
}

.machine-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: machine-run 18s linear infinite;
}

.machine-track span {
  min-width: 134px;
  padding: 18px 16px;
  border: 2px solid var(--paper);
  border-radius: 12px;
  background: var(--chick);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.note-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 210px 1fr;
}

.note-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-2);
}

.note-card:nth-child(2) img,
.note-card:nth-child(3) img {
  object-position: left top;
}

.note-card div {
  padding: 24px;
}

.note-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--field);
}

.note-card h3 {
  margin-bottom: 12px;
}

.logic-section {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}

.logic-ladder {
  display: grid;
  gap: 16px;
}

.logic-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.logic-step strong {
  min-width: 52px;
  margin: 0;
  color: var(--ink);
}

.next-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 24px;
}

.next-panel p {
  max-width: 740px;
  font-size: 1.08rem;
}

.proof-hero {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96) 0%, rgba(244, 234, 219, 0.92) 100%),
    var(--paper);
}

.food-stage {
  background: var(--paper-2);
}

.food-stage img {
  aspect-ratio: 1.06 / 0.86;
}

.proof-path {
  overflow: hidden;
  padding: 34px 0;
  border-block: 2px solid var(--ink);
  background: var(--sky);
}

.path-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-grid::before {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 4px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--ink) 0 18px, transparent 18px 32px);
  opacity: 0.24;
  animation: dash-slide 3.6s linear infinite;
}

.path-step {
  position: relative;
  z-index: 1;
  min-height: 150px;
}

.path-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--clay);
}

.products-section {
  background: var(--paper);
}

.product-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(17, 17, 15, 0.9);
}

.product-card figure {
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-3);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms var(--ease);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-info {
  padding: 24px;
}

.product-number {
  margin-bottom: 14px;
  color: var(--clay);
}

.product-info h3 {
  margin-bottom: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--chick);
  color: var(--ink);
}

.proof-stats {
  margin-top: 22px;
}

.stat-card strong {
  display: block;
  color: var(--field);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.invite-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(12, 58, 44, 0.97), rgba(17, 17, 15, 0.98)),
    var(--ink);
  color: var(--paper);
}

.invite-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 30%;
  content: "";
  background:
    linear-gradient(180deg, rgba(55, 115, 66, 0), rgba(55, 115, 66, 0.74)),
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.16) 0 2px, transparent 2px 9px);
}

.invite-hero .hero-lede {
  color: var(--muted-light);
}

.closing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.closing-proof span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  color: var(--paper);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.final-card {
  padding: 22px;
  background: var(--paper);
  color: var(--ink);
}

.final-coalition {
  width: 100%;
  aspect-ratio: 1.24 / 0.82;
  margin-bottom: 22px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  background: var(--sky);
}

.final-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.final-card p {
  margin-bottom: 22px;
}

.waitlist-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.waitlist-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.waitlist-form button {
  min-height: 56px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
}

.form-note.is-success {
  color: var(--field);
}

.recap-section,
.faq-section {
  background: var(--paper);
}

.faq-section {
  padding: 82px 0 88px;
}

.faq-section .faq-grid {
  display: block;
}

.faq-section .section-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-list article {
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
}

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

.story-hero .reveal,
.case-hero .reveal,
.proof-hero .reveal,
.invite-hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal-group .reveal:nth-child(2),
.brief-list .reveal:nth-child(2),
.notes-grid .reveal:nth-child(2),
.product-grid .reveal:nth-child(2),
.proof-stats .reveal:nth-child(2),
.recap-grid .reveal:nth-child(2),
.path-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-group .reveal:nth-child(3),
.brief-list .reveal:nth-child(3),
.notes-grid .reveal:nth-child(3),
.product-grid .reveal:nth-child(3),
.proof-stats .reveal:nth-child(3),
.recap-grid .reveal:nth-child(3),
.path-grid .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.reveal-group .reveal:nth-child(4),
.path-grid .reveal:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes machine-run {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes dash-slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 32px 0;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .case-grid,
  .proof-grid,
  .invite-grid,
  .brief-grid,
  .logic-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .brief-list,
  .notes-grid,
  .product-grid,
  .proof-stats,
  .recap-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

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

  .path-grid::before {
    display: none;
  }

  .faq-section .faq-list {
    grid-template-columns: 1fr;
  }

  .coalition-stage,
  .food-stage {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand-link img {
    width: 42px;
    height: 42px;
  }

  .brand-link span {
    display: none;
  }

  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .site-header nav a {
    min-height: 42px;
    padding: 0 12px;
  }

  .section-inner {
    width: min(100% - 28px, 640px);
  }

  .story-hero,
  .case-hero,
  .proof-hero,
  .invite-hero {
    min-height: auto;
    padding: 98px 0 62px;
  }

  .story-hero {
    padding-bottom: 88px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .hero-lede,
  .section-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .closing-proof {
    display: grid;
  }

  .story-button,
  .secondary-link {
    width: 100%;
    justify-content: center;
  }

  .coalition-stage,
  .food-stage,
  .brief-card,
  .note-card,
  .product-card,
  .stat-card,
  .recap-card,
  .faq-list article,
  .path-step,
  .default-machine,
  .final-card,
  .logic-step,
  .next-panel {
    border-radius: 12px;
    box-shadow: 4px 4px 0 rgba(17, 17, 15, 0.9);
  }

  .coalition-stage,
  .food-stage {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .coalition-stage figcaption,
  .food-stage figcaption {
    position: static;
    border-inline: 0;
    border-bottom: 0;
    border-radius: 0;
  }

  .brief-section,
  .notes-section,
  .logic-section,
  .products-section,
  .recap-section,
  .faq-section,
  .quote-band {
    padding: 72px 0;
  }

  .brief-card,
  .stat-card,
  .recap-card,
  .faq-list article,
  .logic-step,
  .path-step,
  .product-info,
  .final-card {
    padding: 20px;
  }

  .note-card {
    grid-template-rows: 160px 1fr;
  }

  .note-card div {
    padding: 20px;
  }

  .product-card figure {
    aspect-ratio: 4 / 3;
  }

  .next-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .sun-dial {
    width: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .coalition-stage,
  .food-stage,
  .product-card:hover,
  .product-card:hover img,
  .story-button:hover,
  .waitlist-form button:hover,
  .nav-cta:hover {
    transform: none !important;
  }
}
