*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 0.75rem);
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  max-width: 100%;
  overflow-x: clip;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

html.is-nav-open,
html.is-nav-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

html.is-nav-open .site-header {
  background: var(--forest);
  border-bottom-color: var(--line-on-dark);
  color: var(--paper);
}

html.is-nav-open .logo-badge {
  background: var(--paper);
  color: var(--forest);
}

html.is-nav-open .menu-toggle-bars::before,
html.is-nav-open .menu-toggle-bars::after {
  background: var(--paper);
}

html.is-nav-open .logo:hover,
html.is-nav-open .nav-overlay a:hover {
  color: var(--sand);
}

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

.tile img,
.tile--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

a:hover {
  color: var(--forest);
}

button,
input {
  font: inherit;
  transition:
    background-color var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    opacity var(--duration) var(--ease);
}

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: var(--pad-x);
  top: 0.5rem;
  z-index: calc(var(--z-toggle) + 1);
  padding: 0.6rem 0.9rem;
  background: var(--ink);
  color: var(--paper);
}

.skip:not(:focus) {
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

h1, h2, h3, .stat, .tile-title {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 em, h2 em, h3 em {
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--h1);
  line-height: 0.96;
  margin: 0;
}

h2 {
  font-size: var(--h2);
  margin: 0;
}

h3 {
  font-size: var(--h3);
  margin: 0;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  transition:
    background-color 0.4s var(--ease),
    border-color 0.4s var(--ease),
    color 0.4s var(--ease);
}

.header-inner,
.hero,
.compare,
.why,
.vision,
.features,
.privacy,
.audience,
.faq,
.footer-grid,
.stats-inner {
  width: var(--page);
  margin-inline: auto;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  position: relative;
  z-index: var(--z-toggle);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.logo-mark {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
  transition: transform 0.24s var(--ease);
}

.logo:hover .logo-mark,
.logo:focus-visible .logo-mark {
  transform: translateY(-1px) scale(1.06);
}

.logo-badge {
  display: grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
  background: var(--forest);
  color: var(--paper);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.15rem;
  font-size: 0.95rem;
}

.nav-desktop a {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min);
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: transform 0.36s var(--ease), opacity 0.28s var(--ease), background-color 0.36s var(--ease);
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.menu-toggle-bars::before { transform: translateY(-6px); }
.menu-toggle-bars::after { transform: translateY(6px); }

body.is-nav-open .menu-toggle-bars {
  background: transparent;
}

body.is-nav-open .menu-toggle-bars::before {
  transform: rotate(45deg);
}

body.is-nav-open .menu-toggle-bars::after {
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 1.35rem max(var(--pad-x), calc((100% - var(--page)) / 2)) 2.25rem;
  background: var(--forest);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay a {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 0;
  padding: 1.05rem 0 1.05rem 1.55rem;
  line-height: 0.95;
  display: flex;
  align-items: center;
  border: 0;
  font-size: clamp(1.85rem, 7vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  transition: color var(--duration) var(--ease);
}

.nav-overlay a::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--paper);
  transform: translateY(-50%);
}

.nav-overlay a::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 50%;
  width: 1px;
  height: 100%;
  background: var(--line-on-dark);
}

.nav-overlay a:last-child::after {
  display: none;
}

.nav-overlay.is-open a {
  animation: merkle-nav-in 0.42s var(--ease) both;
}

.nav-overlay.is-open a:nth-child(1) { animation-delay: 0.04s; }
.nav-overlay.is-open a:nth-child(2) { animation-delay: 0.08s; }
.nav-overlay.is-open a:nth-child(3) { animation-delay: 0.12s; }
.nav-overlay.is-open a:nth-child(4) { animation-delay: 0.16s; }
.nav-overlay.is-open a:nth-child(5) { animation-delay: 0.2s; }

@keyframes merkle-nav-in {
  from {
    opacity: 0;
    transform: translateX(-0.55rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.nav-overlay a:hover {
  color: var(--sand);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  padding: 1.5rem 0 var(--section-y);
  align-items: center;
}

.hero-copy,
.hero-bento {
  min-width: 0;
}

.hero-lead {
  max-width: 26rem;
  margin-top: 1.35rem;
  color: var(--mute);
  line-height: 1.45;
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-meta {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--mute);
}

.btn,
.reserve-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 2rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--forest);
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--duration) var(--ease),
    color var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.btn:hover,
.reserve-form button:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn:active,
.reserve-form button:active {
  transform: translateY(0) scale(0.98);
}

.hero-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.hero-bento .tile--photo {
  min-height: 14.5rem;
  aspect-ratio: 4 / 3;
}

.tile {
  background: var(--sand);
  min-height: 0;
  overflow: hidden;
}

.tile--photo {
  margin: 0;
  height: 100%;
}

.tile--contain {
  background: var(--forest-deep);
}

.tile--contain img {
  object-fit: contain;
  padding: 1.4rem;
}

.fit-pack { object-position: 50% 28%; }
.fit-bench { object-position: 50% 40%; }
.fit-audit { object-position: 78% 22%; }
.fit-macro { object-position: 72% 78%; }
.fit-rake { object-position: 50% 42%; }

.tile--stat,
.tile--spark,
.tile--dark {
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tile--dark {
  background: var(--forest);
  color: var(--paper);
}

.stat {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  margin: 0;
}

.stat--mid {
  font-size: clamp(2.4rem, 4vw, 3.25rem);
}

.stat-label {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  opacity: 0.72;
}

.globe {
  position: absolute;
  right: -0.8rem;
  bottom: -0.8rem;
  opacity: 0.35;
}

.sparks {
  display: flex;
  gap: 0.6rem;
  align-items: flex-end;
}

.tile-title {
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.35rem;
}

.tile--spark p:last-child {
  font-size: 0.9rem;
  opacity: 0.65;
}

.sparkline {
  width: 100%;
  height: 4.2rem;
}

.compare {
  display: grid;
  gap: var(--gap);
  padding-bottom: var(--section-y);
}

.compare-col {
  padding: 2.4rem 1.7rem;
}

.compare-col--sand { background: var(--sand); }
.compare-col--forest {
  background: var(--forest);
  color: var(--paper);
}

.compare-col h2 em {
  white-space: nowrap;
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-col li {
  border-top: 1px solid var(--line);
  padding: 1.05rem 0;
  font-size: 1rem;
  opacity: 0.78;
}

.compare-col--forest li {
  border-top-color: var(--line-on-dark);
  opacity: 0.84;
}

.compare-col li:last-child {
  padding-bottom: 0;
}

.pull {
  width: min(62rem, calc(100% - 2 * var(--pad-x)));
  margin: 0 auto;
  text-align: center;
}

.pull p {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.pull span {
  font-style: normal;
  font-weight: 700;
}

.pull u {
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.why {
  padding-bottom: var(--section-y);
}

.why-head,
.features > h2,
.audience > h2 {
  padding-top: 3.2rem;
  border-top: 1px solid var(--line);
  margin-bottom: 2.6rem;
}

.why-head h2,
.features > h2,
.audience > h2 {
  max-width: 16ch;
}

.why-head p {
  max-width: 22rem;
  margin-top: 1rem;
  color: var(--mute);
}

.why-price,
.why-pair,
.why-kit,
.vision,
.privacy,
.aud-grid,
.faq {
  display: grid;
  gap: var(--gap);
}

.why-price-copy,
.why-caption,
.feat-card,
.feat-wide,
.feat-hero-copy,
.aud-card {
  padding: 2.2rem 1.8rem;
}

.why-price-copy,
.why-caption:not(.why-caption--dark) {
  background: var(--cream);
  border: 1px solid var(--line);
}

.why-price-copy {
  background: var(--sand);
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem 2rem;
}

.price-lock {
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--ink);
  margin: 0 0 0.85rem;
}

.why-price-copy h3 {
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  max-width: none;
  line-height: 0.98;
}

.why-price-body {
  font-size: 1.35rem;
  line-height: 1.45;
  max-width: 34ch;
  margin-top: 1.1rem;
  color: var(--mute);
}

.why-caption p,
.feat-card p,
.feat-wide p,
.aud-card p,
.vision-copy p,
.privacy-copy p {
  margin-top: 0.85rem;
  color: var(--mute);
  max-width: 42ch;
}

.why-caption--dark {
  background: var(--forest);
  color: var(--paper);
  border: 0;
}

.why-caption--dark p {
  color: var(--mute-on-dark);
}

.tile--short {
  height: 15rem;
}

.why-pair article {
  display: grid;
  grid-template-rows: 15rem auto;
  min-width: 0;
}

.why-kit,
.why-price {
  min-width: 0;
}

.vision,
.privacy {
  align-items: stretch;
}

.vision-copy {
  background: var(--sand);
  padding: 1.75rem 1.9rem;
}

.vision-copy,
.privacy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-copy p + p,
.privacy-copy p + p {
  margin-top: 0.85rem;
}

.vision-photo,
.privacy .tile,
.why-price .tile,
.why-kit > .tile {
  min-height: 0;
  height: 100%;
}

.privacy-copy {
  background: var(--forest);
  color: var(--paper);
  padding: 1.75rem 1.9rem;
}

.privacy-copy p {
  color: var(--mute-on-dark);
}

.features {
  padding-bottom: var(--section-y);
}

.feat-grid {
  display: grid;
  gap: var(--gap);
}

.feat-hero {
  background: var(--forest);
  color: var(--paper);
  display: grid;
}

.feat-hero .tile {
  height: 14rem;
  background: var(--forest-deep);
}

.feat-hero-copy {
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-hero-copy p,
.feat-hero-copy h3 {
  color: var(--paper);
}

.feat-hero-copy p {
  opacity: 0.78;
  max-width: 38ch;
}

.feat-card {
  border: 1px solid var(--line);
  background: var(--cream);
}

.feat-wide {
  background: var(--sand);
}

.stats {
  background: var(--forest);
  color: var(--paper);
}

.stats-inner {
  min-height: 22rem;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0;
}

.stats-nums {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-end;
}

.stats .stat-label {
  opacity: 0.85;
}

.stats h2 {
  max-width: 12ch;
}

.audience {
  padding-bottom: var(--section-y);
}

.aud-card {
  min-height: 18rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aud-card--sand {
  background: var(--sand);
  border: 0;
}

.aud-card--dark {
  background: var(--forest);
  color: var(--paper);
  border: 0;
}

.aud-card--dark p {
  color: var(--mute-on-dark);
}

.faq {
  padding-bottom: var(--section-y);
  align-items: start;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
  font-weight: 400;
  font-size: 1.25rem;
}

.faq-item button {
  width: 100%;
  min-height: var(--touch-min);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.faq-sign {
  opacity: 0.55;
  font-size: 1.3rem;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.faq-item.is-open .faq-sign {
  transform: rotate(45deg);
  opacity: 1;
}

.faq-a {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  color: var(--mute);
  max-width: 42rem;
  transition:
    max-height 0.42s var(--ease),
    opacity 0.3s var(--ease),
    padding 0.36s var(--ease);
}

.faq-item.is-open .faq-a {
  max-height: 14rem;
  opacity: 1;
  padding: 0 0 1.4rem;
}

.reserve {
  background: var(--forest);
  color: var(--paper);
  padding: clamp(4.5rem, 10vw, 7.5rem) var(--pad-x);
  text-align: center;
}

.reserve h2,
.reserve p {
  max-width: 36rem;
  margin-inline: auto;
}

.reserve > p {
  margin-top: 1.25rem;
  opacity: 0.78;
}

.reserve-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.3rem;
}

.reserve-form input {
  width: 100%;
  min-height: var(--touch-min);
  padding: 0 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-on-dark);
  background: transparent;
  color: var(--paper);
  transition: border-color var(--duration) var(--ease), background-color var(--duration) var(--ease);
}

.reserve-form input:focus {
  border-color: var(--paper);
}

.reserve-form input::placeholder {
  color: rgba(244, 239, 227, 0.45);
}

.reserve-form button {
  background: var(--paper);
  color: var(--forest);
}

.reserve-form button:hover {
  background: #fff;
  color: var(--forest);
}

.reserve-hint {
  margin-top: 1.1rem !important;
  font-size: 0.82rem;
  opacity: 0.6 !important;
}

.reserve-form,
.reserve-hint {
  transition: opacity 0.36s var(--ease), transform 0.36s var(--ease), max-height 0.4s var(--ease), margin 0.36s var(--ease);
}

.reserve-success,
.form-note {
  display: block;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-family: var(--display);
  font-style: italic;
  transition: opacity 0.4s var(--ease), max-height 0.4s var(--ease), margin 0.36s var(--ease), transform 0.4s var(--ease);
}

.reserve.is-success .reserve-form,
.reserve.is-success .reserve-hint {
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  margin: 0;
}

.reserve.is-success .reserve-success {
  max-height: 6rem;
  opacity: 1;
  margin-top: 1rem;
  transform: none;
}

.form-note[hidden] {
  display: block;
}

.form-note:not([hidden]) {
  max-height: 4rem;
  opacity: 1;
  margin-top: 1rem;
  color: #ffd7d0;
}

.site-footer {
  background: var(--forest);
  color: var(--paper);
  padding: 0 var(--pad-x) 3.5rem;
}

.footer-grid {
  border-top: 1px solid var(--line-on-dark);
  padding-top: 3.2rem;
  display: grid;
  gap: 2rem;
}

.footer-brand .logo {
  font-size: 1.7rem;
}

.footer-brand .logo-badge {
  width: 2.35rem;
  height: 2.35rem;
  background: var(--paper);
  color: var(--forest);
}

.footer-brand p:last-child,
.footer-legal {
  font-size: 0.82rem;
  line-height: 1.7;
  opacity: 0.68;
  margin-top: 1rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.92rem;
}

.footer-col p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  opacity: 0.82;
  transition: opacity var(--duration) var(--ease), color var(--duration) var(--ease);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--paper);
}

.footer-legal a {
  margin-right: 0.9rem;
}

@media (min-width: 577px) {
  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 12.5rem 12.5rem;
  }

  .hero-bento .tile--photo {
    min-height: 0;
    aspect-ratio: auto;
  }

  .reserve-form {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .reserve-form input {
    width: min(21rem, 100%);
  }
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle,
  .nav-overlay { display: none; }

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

  .why-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2.5rem;
    padding-top: 2.2rem;
    margin-bottom: 1.6rem;
  }

  .why-head p { margin-top: 0; }

  .why-price,
  .why-pair {
    grid-template-columns: 1fr 1fr;
  }

  .why-price {
    min-height: 0;
    grid-template-rows: 20rem;
  }

  .why-kit {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .vision,
  .privacy {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    grid-template-rows: 22rem;
  }

  .faq {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 3.5rem;
  }

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

  .feat-hero,
  .feat-wide {
    grid-column: 1 / -1;
  }

  .feat-hero {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 18rem;
  }

  .feat-hero .tile {
    height: 100%;
  }

  .stats-inner {
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    min-height: 0;
    padding: 2.6rem 0;
  }

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

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

@media (min-width: 992px) {
  .hero {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: 2rem;
    padding-top: 1.1rem;
    padding-bottom: 3rem;
  }

  .hero-bento {
    grid-template-rows: 13.5rem 13.5rem;
  }

  .why-kit {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 16rem;
  }

  .feat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feat-hero {
    grid-column: span 2;
  }

  .feat-wide {
    grid-column: span 3;
  }

  .aud-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .hero-bento {
    grid-template-rows: 14.5rem 14.5rem;
  }
}

@media (min-width: 1441px) {
  .header-inner,
  .hero,
  .compare,
  .why,
  .vision,
  .features,
  .privacy,
  .audience,
  .faq,
  .footer-grid,
  .stats-inner {
    max-width: 82.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
