:root {
  --ink: #082f3d;
  --muted: #587078;
  --line: #cbd7d7;
  --paper: #ffffff;
  --mist: #f4f4f4;
  --foam: #e7f3f3;
  --sea-salt: #f4f4f4;
  --silver: #cbcbcb;
  --teal: #016c72;
  --deep: #004c66;
  --emerald: #32878c;
  --metallic: #1d92a3;
  --accent: #1d92a3;
  --max: 1180px;
  --serif: "Montserrat", Arial, sans-serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sea-salt);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 12px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 76, 102, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--deep);
}

.nav-cta {
  border: 1px solid var(--deep);
  color: var(--deep);
  padding: 10px 16px !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 76, 102, 0.22);
  background: var(--paper);
  padding: 6px;
  align-items: center;
  justify-content: center;
}

.menu-wave-icon {
  display: block;
  flex: 0 0 28px;
  width: 28px;
  height: 22px;
  background: var(--paper) url('../img/menu-wave.png') -8px center / 77px 22px no-repeat;
}

.menu-close-icon {
  display: none;
  color: var(--deep);
  font-size: 27px;
  font-weight: 400;
  line-height: 22px;
}

.menu-toggle[aria-expanded="true"] .menu-wave-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--sea-salt);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244,244,244,0.98) 0%, rgba(244,244,244,0.82) 42%, rgba(244,244,244,0.2) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(44px, 6.1vw, 78px);
}

h2 {
  font-size: clamp(32px, 3.6vw, 52px);
}

h3 {
  font-size: 25px;
}

.hero p:not(.eyebrow),
.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--deep);
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--deep);
  color: var(--paper);
}

.button.secondary {
  background: rgba(244,244,244,0.84);
  color: var(--deep);
}

.button.primary:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.split,
.visual-grid,
.signup-grid,
.contact-grid,
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.split p {
  margin: 0;
  font-size: 20px;
}

.manifesto-section {
  background: var(--sea-salt);
  text-align: center;
}

.manifesto-copy {
  max-width: 860px;
}

.manifesto-lead {
  max-width: 820px !important;
  margin-top: 0 !important;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px) !important;
  line-height: 1.35;
  font-weight: 600;
}

.manifesto-copy p {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 20px;
}

.ingredients-section {
  position: relative;
  overflow: hidden;
  background: #dbe9e7;
}

.ingredients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(1,108,114,0.24) 0 1px, transparent 2px),
    radial-gradient(ellipse at 75% 72%, rgba(50,135,140,0.22) 0 1px, transparent 2px);
  background-size: 78px 54px, 104px 72px;
}

.ingredients-grid,
.ingredient-strip {
  position: relative;
  z-index: 1;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
}

.ingredients-copy h2 {
  max-width: 620px;
  color: var(--ink);
}

.ingredients-copy p {
  max-width: 620px;
  color: #37535b;
  font-size: 19px;
}

.ingredients-visual img {
  width: 100%;
  min-height: 560px;
  max-height: 680px;
  object-fit: cover;
  object-position: center 78%;
}

.ingredients-visual {
  position: relative;
}

.product-note {
  position: absolute;
  top: 24px;
  left: 50%;
  display: grid;
  width: min(calc(100% - 48px), 450px);
  gap: 8px;
  border: 1px solid rgba(0, 76, 102, 0.16);
  background: rgba(244, 244, 244, 0.88);
  padding: 18px 20px;
  color: var(--deep);
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.product-note strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-note span {
  color: #37535b;
  font-size: 14px;
  line-height: 1.5;
}

.ingredient-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  margin-top: 58px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
}

.ingredient-strip span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.ingredient-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--metallic);
}

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

.feature-grid article,
.post-card,
.contact-panel {
  border: 1px solid rgba(0, 76, 102, 0.18);
  padding: 28px;
  background: var(--paper);
}

.feature-grid span,
.post-card p {
  display: block;
  margin: 0 0 44px;
  color: var(--metallic);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-grid p,
.post-card span,
.visual-grid p,
.contact-panel a,
.site-footer p {
  color: var(--muted);
}

.visual-story,
.muted {
  background: var(--sea-salt);
}

.visual-story {
  background: #ffffff;
}

.scroll-story {
  background: #ffffff;
  padding: 0;
}

.scroll-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: start;
}

.scroll-visual {
  position: sticky;
  top: 96px;
  height: min(78vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: #f6f0ea;
}

.scroll-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.scroll-visual img.is-active {
  opacity: 1;
  transform: scale(1);
}

.scroll-dots {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 9px;
}

.scroll-dots span {
  width: 34px;
  height: 2px;
  background: rgba(255,255,255,0.42);
  transition: background 220ms ease, width 220ms ease;
}

.scroll-dots span.is-active {
  width: 54px;
  background: #ffffff;
}

.scroll-copy {
  padding: 18vh 0;
}

.scroll-panel {
  display: grid;
  min-height: 74vh;
  align-content: center;
  gap: 22px;
  opacity: 0.36;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.scroll-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-panel h2,
.scroll-panel h3 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 1.08;
}

.scroll-panel h3 {
  max-width: 560px;
}

.scroll-panel p {
  max-width: 560px;
  margin: 0;
  color: #37535b;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.65;
}

.scroll-mobile-image {
  display: none;
}

.visual-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(0, 76, 102, 0.18);
}

.visual-grid.reverse img {
  order: 2;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--deep);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.signup-section {
  background: linear-gradient(180deg, var(--foam), var(--sea-salt));
}

.signup-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(0, 76, 102, 0.2);
  background: rgba(255,255,255,0.72);
  padding: 28px;
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  outline: 2px solid rgba(29, 146, 163, 0.22);
  border-color: var(--teal);
}

.checkbox {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.section-heading {
  margin-bottom: 30px;
}

.compact-heading h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.25;
}

.post-card {
  display: flex;
  position: relative;
  min-height: 410px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.post-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 26px;
  height: 21px;
  background: url("data:image/svg+xml,%3Csvg width='26' height='21' viewBox='0 0 26 21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231d92a3' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M1 3c2 2 4 2 6 0s4-2 6 0 4 2 6 0 4-2 6 0'/%3E%3Cpath d='M1 10c2 2 4 2 6 0s4-2 6 0 4 2 6 0 4-2 6 0'/%3E%3Cpath d='M1 17c2 2 4 2 6 0s4-2 6 0 4 2 6 0 4-2 6 0'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.9;
}

.post-cover-link {
  display: block;
  width: min(100%, 300px);
  margin: 4px auto 24px;
}

.post-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 0;
  background: var(--sea-salt);
}

.post-card h2,
.post-card h3 {
  font-family: var(--sans);
  max-width: 94%;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.post-card span {
  display: block;
  max-width: 92%;
  margin: 16px auto 26px;
}

.post-card a {
  margin-top: auto;
  color: var(--deep);
  font-weight: 800;
}

.page-hero,
.post-hero {
  background: linear-gradient(180deg, var(--sea-salt), #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.post-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
}

.current-page-hero {
  background: #ffffff;
  padding: 46px 0 18px;
  text-align: center;
}

.current-page-hero h1 {
  max-width: none;
  color: var(--deep);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.1;
}

.current-blue-content,
.current-about-intro,
.current-founder,
.current-solutions {
  background: #ffffff;
}

.current-stack {
  display: grid;
  gap: 38px;
  justify-items: center;
}

.current-wide-image {
  width: min(100%, 920px);
  height: auto;
}

.current-founder-image {
  width: min(100%, 700px);
  height: auto;
}

.blog-title-section {
  background: linear-gradient(180deg, var(--sea-salt), #ffffff);
  padding: 72px 0 34px;
  text-align: center;
}

.blog-title-section h1 {
  max-width: none;
  color: var(--deep);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
}

.current-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.current-text h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.current-text p {
  margin: 0 0 18px;
}

.current-solution-grid,
.current-about-grid,
.current-founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px;
  align-items: center;
}

.current-mini-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
}

.current-mini-icons a {
  display: block;
  line-height: 0;
  transition: transform 180ms ease;
}

.current-mini-icons a:hover,
.current-mini-icons a:focus-visible {
  transform: translateY(-3px);
}

.current-mini-icons img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.current-solution-grid article {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.current-solution-grid img {
  max-width: 240px;
  max-height: 180px;
  object-fit: contain;
}

.current-solution-grid h2 {
  color: var(--deep);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.current-solution-grid p {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
}

.current-about-grid > img,
.current-founder-grid > img {
  width: 100%;
  height: auto;
}

.current-founder blockquote {
  margin: 0;
  color: var(--muted);
}

.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 700;
}

.blog-toolbar-simple {
  justify-content: flex-end;
}

.all-posts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-main .post-hero {
  padding-bottom: 64px;
}

.article-grid {
  align-items: start;
  grid-template-columns: 260px minmax(0, 760px);
}

.post-aside {
  position: sticky;
  top: 112px;
  border-top: 2px solid var(--deep);
  padding-top: 22px;
}

.aside-mark {
  width: 74px;
  margin-bottom: 24px;
}

.post-content {
  color: #273033;
  font-size: 18px;
  line-height: 1.85;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin: 42px 0 14px;
  font-family: var(--sans);
  color: var(--deep);
  font-size: 26px;
  line-height: 1.25;
}

.post-content p {
  margin: 0 0 18px;
}

.post-content img {
  width: auto;
  max-width: min(100%, 720px);
  max-height: 760px;
  margin: 26px auto;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--paper);
}

.post-content a {
  color: var(--deep);
  font-weight: 800;
  border-bottom: 1px solid rgba(0, 63, 81, 0.4);
}

.post-content hr {
  height: 1px;
  border: 0;
  background: var(--line);
  margin: 42px 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--deep);
  font-weight: 800;
}

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

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-panel h2 {
  margin-bottom: 8px;
}

.contact-panel a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.contact-panel .contact-social-icons {
  justify-content: flex-start;
  gap: 12px;
  margin-top: 0;
}

.contact-panel .contact-social-icons a {
  border-bottom: 0;
  padding-bottom: 0;
}

.site-footer {
  background: var(--deep);
  color: var(--paper);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 46px;
}

.footer-logo {
  width: 146px;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255,255,255,0.68);
}

.footer-tagline {
  margin-top: 18px;
  color: rgba(255,255,255,0.84) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: rgba(255,255,255,0.76);
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-subtitle {
  margin-top: 28px !important;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.site-footer .social-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--deep);
  margin: 0;
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-legal {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 22px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

.presale-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: end center;
  padding: 22px;
  background: rgba(8, 47, 61, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, background 220ms ease;
}

.presale-popup.is-visible {
  background: rgba(8, 47, 61, 0.36);
  opacity: 1;
  pointer-events: auto;
}

.presale-card {
  position: relative;
  width: min(100%, 430px);
  border: 1px solid rgba(0, 76, 102, 0.18);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 26px 80px rgba(8, 47, 61, 0.22);
  padding: 30px;
  transform: translateY(24px);
  transition: transform 240ms ease;
}

.presale-popup.is-visible .presale-card {
  transform: translateY(0);
}

.presale-card img {
  width: 128px;
  margin-bottom: 22px;
}

.presale-card h2 {
  max-width: 340px;
  color: var(--deep);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.16;
}

.presale-card p {
  margin: 14px 0 22px;
  color: #37535b;
}

.presale-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 76, 102, 0.16);
  background: var(--paper);
  color: var(--deep);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 12px 18px 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(244,244,244,0.98) 0%, rgba(244,244,244,0.9) 44%, rgba(244,244,244,0.46) 100%);
  }

  .hero-media img {
    object-position: 62% 50%;
  }

  .split,
  .visual-grid,
  .ingredients-grid,
  .signup-grid,
  .contact-grid,
  .article-grid,
  .footer-grid,
  .current-solution-grid,
  .current-about-grid,
  .current-founder-grid {
    grid-template-columns: 1fr;
  }

  .visual-grid.reverse img {
    order: initial;
  }

  .feature-grid,
  .post-grid,
  .all-posts {
    grid-template-columns: 1fr;
  }

  .ingredients-visual img {
    max-height: 420px;
    min-height: 420px;
  }

  .scroll-story {
    padding: 72px 0 0;
  }

  .scroll-story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .scroll-visual {
    display: none;
  }

  .scroll-copy {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 0;
  }

  .scroll-panel {
    min-height: auto;
    gap: 20px;
    padding: 42px 0 58px;
    opacity: var(--story-panel-opacity, 1);
    transform: translate3d(0, var(--story-panel-shift, 0px), 0);
    transition: opacity 180ms linear;
    will-change: opacity, transform;
  }

  .scroll-panel.is-active {
    opacity: 1;
  }

  .scroll-panel h2,
  .scroll-panel h3 {
    font-size: clamp(32px, 8vw, 46px);
  }

  .scroll-mobile-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-top: 10px;
    object-fit: cover;
    object-position: center;
    opacity: var(--story-image-opacity, 1);
    transform: translate3d(0, var(--story-image-shift, 0px), 0) scale(var(--story-image-scale, 1));
    transition: opacity 180ms linear, filter 180ms linear;
    filter: saturate(var(--story-image-saturation, 0.84));
    will-change: transform, opacity, filter;
  }

  .scroll-panel.is-active .scroll-mobile-image {
    opacity: 1;
    filter: saturate(1);
  }

  .post-aside {
    position: static;
  }

  .footer-legal {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-panel,
  .scroll-mobile-image,
  .scroll-visual img,
  .presale-popup,
  .presale-card {
    transition-duration: 1ms !important;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 112px 0 52px;
  }

  h1 {
    font-size: 38px;
  }

  .hero p:not(.eyebrow),
  .lead,
  .split p {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .signup-form,
  .feature-grid article,
  .post-card,
  .contact-panel {
    padding: 22px;
  }

  .post-card {
    min-height: 380px;
  }

  .post-cover-link {
    width: min(100%, 268px);
  }

  .manifesto-copy h2 {
    font-size: 34px;
  }

  .current-page-hero {
    padding: 56px 0 18px;
  }

  .current-page-hero h1 {
    font-size: 40px;
  }

  .current-text {
    font-size: 16px;
    line-height: 1.75;
  }

  .current-text h2 {
    font-size: 22px;
  }

  .current-solution-grid,
  .current-about-grid,
  .current-founder-grid {
    gap: 34px;
  }

  .ingredient-strip {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    font-size: 24px;
  }

  .ingredient-strip span {
    width: 100%;
    justify-content: flex-start;
  }

  .product-note {
    position: static;
    width: auto;
    max-width: none;
    margin-top: 16px;
    transform: none;
  }

  .manifesto-lead {
    font-size: 24px !important;
  }

  .presale-popup {
    align-items: center;
    padding: 14px;
  }

  .presale-card {
    width: min(100%, 430px);
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
    padding: 26px 22px 22px;
  }

  .presale-card h2 {
    font-size: 26px;
  }
}
