:root {
  --cream: #f7f0e6;
  --paper: #fffcf9;
  --sand: #e5d9cc;
  --sage-light: #d1ddd2;
  --sage: #b9c6ba;
  --sage-mid: #99a99c;
  --sage-dark: #7a847b;
  --blue-soft: #90a6b2;
  --blue: #5c7387;
  --blue-deep: #43525c;
  --ink: #29343b;
  --night: #161b1e;
  --shell: min(100% - 48px, 1440px);
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a,
button,
input {
  font-family: inherit;
}

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

button,
input {
  border: 0;
}

button {
  color: inherit;
}

img,
svg,
video {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  height: 112px;
  color: var(--cream);
  transform: translateX(-50%);
}

.brand {
  width: 156px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.nav-links a,
.text-link,
.footer-bottom a {
  position: relative;
}

.nav-links a::after,
.text-link::after,
.footer-bottom a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.footer-bottom a:hover::after,
.footer-bottom a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 13px 18px;
  border: 1px solid rgba(247, 240, 230, 0.45);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.header-cta svg,
.button svg,
.submit-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 250ms var(--ease);
}

.header-cta:hover svg,
.button:hover svg,
.submit-button:hover svg {
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
  isolation: isolate;
}

.hero-media,
.hero-media video,
.hero-overlay,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: #201f1d;
}

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

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 18, 20, 0.86) 0%, rgba(15, 18, 20, 0.62) 31%, rgba(15, 18, 20, 0.08) 67%),
    linear-gradient(0deg, rgba(15, 18, 20, 0.72) 0%, transparent 44%),
    linear-gradient(180deg, rgba(15, 18, 20, 0.45) 0%, transparent 24%);
}

.hero-grain {
  z-index: -1;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: clamp(110px, 13vh, 155px);
}

.eyebrow {
  margin: 0 0 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  gap: 13px;
  align-items: center;
  color: rgba(247, 240, 230, 0.72);
}

.hero-eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(68px, 7.25vw, 118px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero-copy {
  max-width: 490px;
  margin: 35px 0 0;
  color: rgba(247, 240, 230, 0.8);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: transform 250ms var(--ease), background 250ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-light:hover,
.button-light:focus-visible {
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
}

.text-link span {
  font-size: 17px;
  transition: transform 250ms var(--ease);
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-meta {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  z-index: 2;
  display: flex;
  gap: 30px;
  color: rgba(247, 240, 230, 0.62);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta span {
  display: flex;
  gap: 30px;
  align-items: center;
}

.hero-meta span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.video-toggle {
  position: absolute;
  right: 24px;
  bottom: 71px;
  z-index: 3;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(247, 240, 230, 0.3);
  border-radius: 100px;
  background: rgba(22, 27, 30, 0.28);
  color: var(--cream);
  cursor: pointer;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: border-color 200ms ease, background 200ms ease;
}

.video-toggle:hover,
.video-toggle:focus-visible {
  border-color: rgba(247, 240, 230, 0.72);
  background: rgba(22, 27, 30, 0.5);
}

.video-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.video-toggle .play-icon {
  display: none;
}

.video-toggle.is-paused .pause-icon {
  display: none;
}

.video-toggle.is-paused .play-icon {
  display: block;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(247, 240, 230, 0.1);
  background: var(--night);
  color: var(--cream);
}

.ticker-track {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  height: 54px;
  padding-left: 40px;
  animation: ticker 34s linear infinite;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  border: 1px solid var(--sage);
  border-radius: 50%;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding-block: clamp(100px, 11vw, 168px);
}

.essence {
  overflow: hidden;
  background: var(--cream);
}

.leaf-illustration {
  position: absolute;
  top: -75px;
  right: -120px;
  width: min(48vw, 720px);
  opacity: 0.22;
  fill: var(--sage-mid);
  pointer-events: none;
}

.leaf-illustration .leaf-stem {
  fill: none;
  stroke: var(--sage-dark);
  stroke-width: 8;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 1050px;
}

.section-heading h2,
.experience-heading h2,
.updates-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5.6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.essence-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 740px;
  margin: 70px 0 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(41, 52, 59, 0.22);
  font-size: 14px;
}

.essence-intro p {
  margin: 0;
}

.essence-intro .intro-lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(75px, 9vw, 130px);
}

.mood-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 28px;
  border-radius: 2px;
  isolation: isolate;
  transition: transform 500ms var(--ease);
}

.mood-card:hover {
  transform: translateY(-8px);
}

.mood-card-sage {
  background: var(--sage-light);
}

.mood-card-blue {
  background: var(--blue-deep);
  color: var(--cream);
}

.mood-card-sand {
  background: var(--sand);
}

.mood-number {
  position: relative;
  z-index: 2;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.mood-orbit {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 300px;
  height: 300px;
  border: 1px solid currentColor;
  border-radius: 44% 56% 59% 41% / 52% 37% 63% 48%;
  opacity: 0.13;
  transform: translate(-50%, -50%) rotate(12deg);
  transition: border-radius 900ms var(--ease), transform 900ms var(--ease);
}

.mood-orbit::before,
.mood-orbit::after {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.mood-orbit::before {
  inset: 32px;
  transform: rotate(23deg);
}

.mood-orbit::after {
  inset: 75px;
  transform: rotate(-25deg);
}

.mood-card:hover .mood-orbit {
  border-radius: 59% 41% 42% 58% / 36% 60% 40% 64%;
  transform: translate(-50%, -50%) rotate(36deg) scale(1.06);
}

.mood-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
}

.mood-copy h3 {
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.mood-copy p {
  max-width: 270px;
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.76;
}

.section-dark {
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
}

.scent-rings {
  position: absolute;
  top: -190px;
  right: -180px;
  width: 650px;
  height: 650px;
  opacity: 0.18;
  pointer-events: none;
}

.scent-rings i {
  position: absolute;
  border: 1px solid var(--blue-soft);
  border-radius: 49% 51% 39% 61% / 55% 38% 62% 45%;
}

.scent-rings i:nth-child(1) { inset: 0; transform: rotate(10deg); }
.scent-rings i:nth-child(2) { inset: 58px; transform: rotate(27deg); }
.scent-rings i:nth-child(3) { inset: 124px; transform: rotate(-8deg); }
.scent-rings i:nth-child(4) { inset: 200px; transform: rotate(42deg); }

.experience-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.experience-heading .eyebrow {
  grid-column: 1 / -1;
  color: var(--sage);
}

.experience-heading p:last-child {
  justify-self: end;
  max-width: 390px;
  margin: 0 0 9px;
  color: rgba(247, 240, 230, 0.62);
  font-size: 15px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(75px, 8vw, 120px);
  border-top: 1px solid rgba(247, 240, 230, 0.19);
  border-bottom: 1px solid rgba(247, 240, 230, 0.19);
}

.feature {
  position: relative;
  min-height: 430px;
  padding: 30px;
}

.feature + .feature {
  border-left: 1px solid rgba(247, 240, 230, 0.19);
}

.feature-index {
  display: block;
  margin-top: 118px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.feature h3 {
  margin: 25px 0 0;
  font-size: clamp(25px, 2.25vw, 36px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.feature p {
  max-width: 320px;
  margin: 20px 0 0;
  color: rgba(247, 240, 230, 0.56);
  font-size: 13px;
}

.feature-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  left: 30px;
  height: 80px;
  color: var(--cream);
}

.feature-icon-three {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.feature-icon-three i {
  width: 22px;
  border: 1px solid currentColor;
  border-radius: 100px 100px 4px 4px;
  opacity: 0.64;
}

.feature-icon-three i:nth-child(1) { height: 44px; }
.feature-icon-three i:nth-child(2) { height: 65px; }
.feature-icon-three i:nth-child(3) { height: 53px; }

.feature-icon-touch span {
  display: block;
  width: 65px;
  height: 65px;
  border: 1px solid rgba(247, 240, 230, 0.64);
  border-radius: 50%;
}

.feature-icon-touch span::before,
.feature-icon-touch span::after {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.feature-icon-touch span::before { inset: 13px auto auto 13px; width: 37px; height: 37px; opacity: 0.48; }
.feature-icon-touch span::after { inset: 27px auto auto 27px; width: 9px; height: 9px; background: currentColor; }

.feature-icon-home span {
  display: block;
  width: 76px;
  height: 64px;
  border: 1px solid rgba(247, 240, 230, 0.64);
  border-radius: 42% 58% 57% 43% / 49% 37% 63% 51%;
  transform: rotate(-8deg);
}

.feature-icon-home span::after {
  position: absolute;
  inset: 17px;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  opacity: 0.5;
  transform: rotate(24deg);
}

.updates {
  overflow: hidden;
  background: var(--sage-mid);
}

.updates-pattern {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 650px;
  height: 650px;
  opacity: 0.17;
  pointer-events: none;
}

.updates-pattern span {
  position: absolute;
  border: 1px solid var(--ink);
  border-radius: 52% 48% 63% 37% / 42% 59% 41% 58%;
}

.updates-pattern span:nth-child(1) { inset: 0; transform: rotate(8deg); }
.updates-pattern span:nth-child(2) { inset: 82px; transform: rotate(31deg); }
.updates-pattern span:nth-child(3) { inset: 172px; transform: rotate(-11deg); }

.updates-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  gap: 110px;
  align-items: end;
}

.updates-copy .eyebrow {
  margin-bottom: 34px;
}

.updates-copy p:last-child {
  max-width: 440px;
  margin: 30px 0 0;
  font-size: 15px;
}

.form-wrap {
  padding-bottom: 8px;
}

.signup-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(41, 52, 59, 0.22);
  border-radius: 100px;
  background: rgba(255, 252, 249, 0.46);
  backdrop-filter: blur(12px);
}

.email-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding-left: 20px;
}

.email-field span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.email-field input {
  min-width: 0;
  padding: 10px 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.email-field input::placeholder {
  color: rgba(41, 52, 59, 0.46);
}

.email-field:focus-within {
  outline: 1px solid rgba(41, 52, 59, 0.42);
  outline-offset: 7px;
  border-radius: 100px;
}

.submit-button {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 200ms ease, transform 200ms var(--ease);
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--night);
  transform: translateY(-1px);
}

.submit-button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

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

.form-note,
.form-status {
  margin: 14px 0 0 20px;
  font-size: 11px;
}

.form-note {
  opacity: 0.66;
}

.form-status {
  display: none;
  font-weight: 500;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #55352f;
}

.site-footer {
  padding: 65px 0 25px;
  background: var(--cream);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 65px;
}

.footer-brand {
  width: 165px;
}

.footer-top p {
  max-width: 300px;
  margin: 0;
  font-size: 13px;
}

.footer-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(41, 52, 59, 0.3);
  border-radius: 50%;
  place-items: center;
  transition: color 200ms ease, background 200ms ease;
}

.footer-arrow:hover,
.footer-arrow:focus-visible {
  background: var(--ink);
  color: var(--cream);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(41, 52, 59, 0.2);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.hero .reveal:nth-child(2) { transition-delay: 80ms; }
.hero .reveal:nth-child(3) { transition-delay: 160ms; }
.hero .reveal:nth-child(4) { transition-delay: 240ms; }
.mood-card:nth-child(2), .feature:nth-child(2) { transition-delay: 90ms; }
.mood-card:nth-child(3), .feature:nth-child(3) { transition-delay: 180ms; }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-media video {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(64px, 10vw, 92px);
  }

  .mood-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .mood-card {
    min-height: 340px;
  }

  .feature {
    min-height: 330px;
  }

  .feature + .feature {
    border-top: 1px solid rgba(247, 240, 230, 0.19);
    border-left: 0;
  }

  .feature-index {
    margin-top: 95px;
  }

  .updates-inner {
    grid-template-columns: 1fr;
    gap: 65px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    height: 84px;
  }

  .brand {
    width: 128px;
  }

  .header-cta {
    padding: 10px 14px;
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    min-height: 670px;
  }

  .hero-media video {
    object-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(14, 17, 18, 0.88) 0%, rgba(14, 17, 18, 0.36) 55%, rgba(14, 17, 18, 0.38) 100%),
      linear-gradient(90deg, rgba(14, 17, 18, 0.35) 0%, transparent 80%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 115px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 72px);
    line-height: 0.96;
  }

  .hero-copy {
    max-width: 390px;
    margin-top: 24px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 22px;
    margin-top: 28px;
  }

  .button {
    min-height: 52px;
    padding: 0 18px;
  }

  .text-link {
    display: none;
  }

  .hero-meta {
    right: 16px;
    bottom: 22px;
    left: 16px;
    gap: 12px;
    justify-content: space-between;
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .hero-meta span {
    gap: 12px;
  }

  .hero-meta span::after {
    display: none;
  }

  .video-toggle {
    right: 16px;
    bottom: 55px;
    padding: 9px;
  }

  .video-toggle-label {
    display: none;
  }

  .section {
    padding-block: 95px;
  }

  .eyebrow {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .experience-heading h2,
  .updates-copy h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .leaf-illustration {
    top: -40px;
    right: -160px;
    width: 570px;
  }

  .essence-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }

  .mood-grid {
    margin-top: 65px;
  }

  .mood-card {
    min-height: 330px;
    padding: 22px;
  }

  .mood-copy {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .experience-heading {
    grid-template-columns: 1fr;
  }

  .experience-heading .eyebrow {
    grid-column: auto;
  }

  .experience-heading p:last-child {
    justify-self: start;
    margin-top: 12px;
  }

  .feature-list {
    margin-top: 65px;
  }

  .feature {
    min-height: 340px;
    padding: 24px 0;
  }

  .feature-icon {
    top: 24px;
    right: 0;
    left: 0;
  }

  .updates-inner {
    gap: 48px;
  }

  .signup-form {
    grid-template-columns: 1fr;
    padding: 9px;
    border-radius: 24px;
  }

  .email-field {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px 14px 6px;
  }

  .email-field:focus-within {
    outline-offset: 2px;
    border-radius: 14px;
  }

  .submit-button {
    justify-content: center;
  }

  .form-note,
  .form-status {
    margin-left: 8px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    padding-bottom: 45px;
  }

  .footer-top p {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
