@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Manrope:wght@300;400;500;600;700&family=Noto+Sans+Thai:wght@300;400;500;600;700&display=swap");

:root {
  --earth: #4e3d2c;
  --pool: #a0c9f4;
  --foam: #f6f6ea;
  --butter: #f1e4b2;
  --ink: #000000;
  --coral: #f4866c;
  --leaf: #87a922;
  --paper: #fffdf4;
  --soft-earth: rgba(78, 61, 44, 0.76);
  --glass: rgba(246, 246, 234, 0.22);
  --glass-strong: rgba(246, 246, 234, 0.72);
  --shadow: 0 22px 70px rgba(46, 34, 22, 0.16);
  --fine: rgba(78, 61, 44, 0.16);
  --white-fine: rgba(255, 253, 244, 0.28);
  --radius: 8px;
  --nav-height: 76px;
  --max: 1220px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  background: var(--foam);
  color: var(--earth);
  font-family: "Manrope", "Noto Sans Thai", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--pool);
  color: var(--ink);
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--earth);
  color: var(--foam);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  padding: 10px;
  color: var(--foam);
  transition: transform 0.5s var(--ease), color 0.5s var(--ease);
}

.site-nav[data-theme="light"] {
  color: var(--earth);
}

.site-nav[data-theme="dark"] .brand-link img {
  filter: brightness(0) invert(1) drop-shadow(0 3px 16px rgba(0, 0, 0, 0.18));
}

.nav-shell {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(246, 246, 234, 0.24);
  border-radius: var(--radius);
  background: rgba(20, 16, 12, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.site-nav[data-theme="light"] .nav-shell {
  border-color: rgba(78, 61, 44, 0.13);
  background: rgba(246, 246, 234, 0.58);
}

.nav-left,
.nav-right,
.nav-menu,
.lang-toggle {
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
  gap: 10px;
}

.nav-menu {
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.82;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-menu a::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  opacity: 1;
  color: var(--pool);
}

.site-nav[data-theme="light"] .nav-menu a:hover,
.site-nav[data-theme="light"] .nav-menu a:focus-visible {
  color: var(--coral);
}

.brand-link {
  justify-self: center;
  width: 112px;
  height: 42px;
  display: grid;
  place-items: center;
}

.brand-link img {
  width: 112px;
  height: auto;
  filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.18));
}

.lang-toggle {
  border: 1px solid currentColor;
  border-radius: 999px;
  overflow: hidden;
  opacity: 0.8;
}

.lang-toggle button {
  min-width: 40px;
  min-height: 34px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
}

.lang-toggle button.active {
  background: currentColor;
  color: var(--earth);
}

.site-nav[data-theme="light"] .lang-toggle button.active {
  color: var(--foam);
}

.nav-cta,
.button,
.text-button,
.mobile-menu-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav-cta,
.button.primary {
  background: var(--coral);
  color: var(--ink);
  padding: 0 18px;
}

.button.primary:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--pool);
}

.button.secondary,
.text-button {
  border: 1px solid currentColor;
  background: transparent;
  padding: 0 18px;
}

.button.dark {
  background: var(--earth);
  color: var(--foam);
}

.button.full {
  width: 100%;
}

.button[disabled] {
  cursor: progress;
  opacity: 0.65;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  background: rgba(0, 0, 0, 0.18);
  color: inherit;
}

.mobile-menu-button span {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.mobile-menu-button span::before,
.mobile-menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.mobile-menu-button span::before {
  top: -6px;
}

.mobile-menu-button span::after {
  top: 6px;
}

.mobile-drawer {
  display: none;
}

.hero-scroll {
  min-height: 220vh;
  position: relative;
  background: var(--ink);
}

.hero-stage {
  min-height: 100vh;
  min-height: 100svh;
  position: sticky;
  top: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--foam);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--earth) url("/soak/public/assets/soak-exterior.jpg") center / cover;
}

.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.02);
}

.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(78, 61, 44, 0.18) 42%, rgba(0, 0, 0, 0.66)),
    linear-gradient(90deg, rgba(78, 61, 44, 0.6), rgba(160, 201, 244, 0.12), rgba(244, 134, 108, 0.16));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  padding: 124px 22px 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  align-items: end;
  gap: 40px;
}

.hero-copy {
  align-self: center;
}

.hero-wordmark {
  width: 340px;
  max-width: 74vw;
  margin-bottom: 28px;
  filter: brightness(0) invert(1) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.22));
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy .eyebrow {
  color: var(--butter);
}

.display {
  margin: 0;
  font-size: 54px;
  line-height: 1.03;
  font-weight: 300;
  max-width: 780px;
}

.display strong {
  font-family: "Caveat", "Noto Sans Thai", cursive;
  font-size: 1.18em;
  font-weight: 700;
  color: var(--pool);
}

.lede {
  font-size: 19px;
  line-height: 1.65;
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 253, 244, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.glass-panel,
.soft-panel,
.modal-panel {
  border-radius: var(--radius);
  border: 1px solid var(--white-fine);
  background: var(--glass);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.liquid-glass {
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0.8;
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(255, 255, 255, 0.38), transparent 31%),
    linear-gradient(135deg, rgba(160, 201, 244, 0.2), transparent 42%, rgba(244, 134, 108, 0.16));
  mix-blend-mode: screen;
}

.register-panel {
  padding: 18px;
  color: var(--foam);
}

.panel-title {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 400;
}

.panel-text {
  margin: 0 0 18px;
  color: rgba(255, 253, 244, 0.76);
  font-size: 14px;
}

.form-grid {
  display: grid;
  gap: 10px;
}

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

.field label {
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 253, 244, 0.24);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.16);
  color: var(--foam);
  padding: 12px;
  outline: 0;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--pool);
  box-shadow: 0 0 0 3px rgba(160, 201, 244, 0.18);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 253, 244, 0.48);
}

.fine-print {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255, 253, 244, 0.64);
}

.scroll-note {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 253, 244, 0.72);
  font-size: 12px;
}

.scroll-note span {
  width: 1px;
  height: 42px;
  background: currentColor;
  transform-origin: top center;
  animation: tide 1.8s var(--ease) infinite alternate;
}

@keyframes tide {
  to {
    transform: scaleY(0.45);
    opacity: 0.5;
  }
}

.section {
  padding: 92px 20px;
  scroll-margin-top: 108px;
}

.section.tight {
  padding-top: 52px;
}

.section.dark {
  background: var(--earth);
  color: var(--foam);
}

.section.pool {
  background: var(--pool);
  color: var(--ink);
}

.section.butter {
  background: var(--butter);
  color: var(--earth);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 300;
}

.section-title .script {
  font-family: "Caveat", "Noto Sans Thai", cursive;
  font-size: 1.2em;
  color: var(--coral);
}

.section.dark .section-title .script {
  color: var(--pool);
}

.body-copy {
  margin: 18px 0 0;
  max-width: 700px;
  color: rgba(78, 61, 44, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.section.dark .body-copy {
  color: rgba(255, 253, 244, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 50px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--butter);
}

.media-frame.square {
  aspect-ratio: 1 / 1;
}

.media-frame.wide {
  aspect-ratio: 16 / 9;
}

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

.media-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: 330px;
  padding: 10px 12px;
  color: var(--foam);
  font-size: 13px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--fine);
  background: var(--fine);
}

.principle {
  min-height: 230px;
  padding: 26px;
  background: var(--paper);
  color: var(--earth);
}

.principle strong {
  display: block;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--coral);
}

.principle h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 400;
}

.principle p {
  margin: 0;
  color: rgba(78, 61, 44, 0.78);
}

.material-board {
  position: relative;
  min-height: 660px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(78, 61, 44, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 244, 0.46), rgba(255, 253, 244, 0.22)),
    rgba(160, 201, 244, 0.28);
  box-shadow: var(--shadow);
}

.material-board figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(78, 61, 44, 0.16);
}

.material-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
}

.material-board figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 253, 244, 0.34);
  border-radius: var(--radius);
  background: rgba(78, 61, 44, 0.54);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: var(--foam);
  font-size: 12px;
  font-weight: 700;
}

.material-main,
.material-side {
  position: absolute;
}

.material-main {
  top: 18px;
  left: 18px;
  right: 18px;
  height: 278px;
}

.material-side-a {
  left: 18px;
  bottom: 78px;
  width: 45%;
  height: 315px;
}

.material-side-b {
  right: 18px;
  bottom: 78px;
  width: 45%;
  height: 315px;
}

.material-rail {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(78, 61, 44, 0.2);
  color: rgba(78, 61, 44, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.material-rail span {
  position: relative;
}

.material-rail span::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(246, 246, 234, 0.36);
}

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

.pass-card,
.plan-card {
  position: relative;
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--fine);
  border-radius: var(--radius);
  background: rgba(255, 253, 244, 0.72);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pass-card.highlight,
.plan-card.highlight {
  background: var(--earth);
  color: var(--foam);
  border-color: var(--earth);
}

.pass-card h3,
.plan-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 400;
}

.price {
  margin: 18px 0 10px;
  font-size: 38px;
  line-height: 1;
  font-weight: 300;
}

.price small {
  font-size: 14px;
}

.pass-card p,
.plan-card p {
  margin: 0;
  color: rgba(78, 61, 44, 0.68);
}

.pass-card.highlight p,
.plan-card.highlight p {
  color: rgba(255, 253, 244, 0.74);
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 12px;
}

.founder-hero {
  min-height: 78vh;
  padding: 132px 20px 72px;
  background:
    linear-gradient(90deg, rgba(78, 61, 44, 0.9), rgba(78, 61, 44, 0.42)),
    url("/soak/public/assets/soak-wide-exterior.jpg") center / cover;
  color: var(--foam);
  display: grid;
  align-items: end;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 28px;
  align-items: start;
}

.voucher-card {
  position: sticky;
  top: 106px;
  padding: 24px;
  background: var(--earth);
  color: var(--foam);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.voucher-code {
  margin: 22px 0;
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 244, 0.32);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  word-break: break-word;
}

.founder-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  scroll-margin-top: 108px;
}

.checkout-result,
.form-result {
  margin-top: 14px;
  min-height: 24px;
  font-size: 14px;
}

.checkout-result strong,
.form-result strong {
  color: var(--leaf);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.52);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.modal-backdrop.open {
  display: grid;
}

.modal-panel {
  width: min(100%, 520px);
  padding: 22px;
  background: rgba(246, 246, 234, 0.88);
  color: var(--earth);
}

.modal-panel .panel-text,
.modal-panel .fine-print {
  color: rgba(78, 61, 44, 0.68);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(78, 61, 44, 0.1);
}

.contact-hero {
  min-height: 60vh;
  padding: 132px 20px 72px;
  background:
    linear-gradient(180deg, rgba(246, 246, 234, 0.38), rgba(246, 246, 234, 0.86)),
    url("/soak/public/assets/soak-exterior.jpg") center / cover;
  display: grid;
  align-items: end;
}

.contact-hero .lede {
  color: rgba(78, 61, 44, 0.74);
}

code {
  padding: 0.08em 0.28em;
  border-radius: 4px;
  background: rgba(160, 201, 244, 0.28);
  color: inherit;
  font-size: 0.92em;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
}

#contact-form {
  scroll-margin-top: 108px;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--fine);
  background: var(--paper);
}

.contact-card + .contact-card {
  margin-top: 14px;
}

.light-form .field input,
.light-form .field textarea,
.light-form .field select {
  background: rgba(255, 255, 255, 0.48);
  color: var(--earth);
  border-color: var(--fine);
}

.light-form .field input::placeholder,
.light-form .field textarea::placeholder {
  color: rgba(78, 61, 44, 0.42);
}

.brand-strip {
  padding: 34px 20px;
  background: var(--earth);
  color: var(--foam);
  overflow: hidden;
}

.brand-strip-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-strip img {
  max-height: 62px;
  width: auto;
}

.site-footer {
  padding: 42px 20px;
  background: var(--ink);
  color: var(--foam);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.footer-inner img {
  width: 104px;
  filter: invert(1) brightness(2);
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 16px;
}

.footer-note {
  text-align: center;
  color: rgba(255, 253, 244, 0.56);
  font-size: 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--earth);
  color: var(--foam);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .brand-link {
    justify-self: center;
  }

  .mobile-drawer {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: none;
    padding: 102px 20px 20px;
    background: rgba(23, 20, 17, 0.78);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    color: var(--foam);
  }

  .mobile-drawer.open {
    display: block;
  }

  .mobile-drawer a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 253, 244, 0.18);
    font-size: 28px;
    font-weight: 300;
  }

  .hero-content,
  .split,
  .split.reverse,
  .founder-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .material-board {
    min-height: 570px;
  }

  .material-main {
    height: 230px;
  }

  .material-side-a,
  .material-side-b {
    height: 245px;
  }

  .hero-content {
    align-items: end;
  }

  .register-panel {
    max-width: 560px;
  }

  .display {
    font-size: 44px;
  }

  .voucher-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .hero-scroll {
    min-height: auto;
  }

  .hero-stage {
    position: relative;
    min-height: 100vh;
  }

  .hero-content {
    padding-top: 112px;
    gap: 28px;
  }

  .display {
    font-size: 34px;
  }

  .section-title {
    font-size: 32px;
  }

  .lede {
    font-size: 17px;
  }

  .principles,
  .passes,
  .founder-plans {
    grid-template-columns: 1fr;
  }

  .material-board {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
  }

  .material-main,
  .material-side {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
  }

  .material-main {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 8.7;
  }

  .material-side {
    aspect-ratio: 4 / 5;
  }

  .material-rail {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    padding-top: 12px;
  }

  .brand-strip-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
    justify-items: start;
  }

  .footer-links {
    justify-self: start;
    flex-wrap: wrap;
  }
}

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

  .hero-media video {
    opacity: 0.4;
  }
}
