@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,700&display=swap");

@font-face {
  font-family: "Sentient";
  src: url("./assets/fonts/Sentient-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Sentient";
  src: url("./assets/fonts/Sentient-VariableItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --surface: #fdfaf4;
  --page: #f6f1e6;
  --brand: #48532f;
  --brand-dark: #2a301d;
  --olive-soft: #8a8f71;
  --brown: #735230;
  --copy-brown: #5a4110;
  --muted-green: #bfc5b2;
  --font-display: "Sentient", Georgia, serif;
  --font-body: "Satoshi", "Avenir Next", Arial, sans-serif;
  --font-button: "DM Sans", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1180px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.3), rgba(244, 239, 227, 0.3)),
    var(--page);
  color: var(--brand);
  font-family: var(--font-body);
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1380px;
  padding: 18px 30px 24px;
  border: 1px solid transparent;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 24px 52px rgba(62, 56, 45, 0);
  transform: translateX(-50%);
  transition:
    top 320ms cubic-bezier(0.16, 1, 0.3, 1),
    width 320ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    backdrop-filter 320ms ease;
}

.site-header.is-scrolled {
  top: 16px;
  width: 1381px;
  padding: 16px 30px;
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 52px rgba(62, 56, 45, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 70;
  display: block;
  width: 132px;
  height: 46px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 42px;
  margin-left: auto;
  margin-right: 58px;
}

.nav-links a {
  color: var(--brand-dark);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brown);
}

.cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 242px;
  height: 64px;
  padding: 0 40px;
  border: 0.9px solid rgba(62, 70, 41, 0.82);
  border-radius: 9999px;
  overflow: hidden;
  background: #4f5d39 url("./assets/hero-button-bg.webp") center / cover no-repeat;
  box-shadow:
    0 104px 29px rgba(0, 0, 0, 0),
    0 67px 27px rgba(0, 0, 0, 0.02),
    0 38px 23px rgba(0, 0, 0, 0.08),
    0 17px 17px rgba(0, 0, 0, 0.14),
    0 5px 9px rgba(0, 0, 0, 0.16);
  color: #e7f0de;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16.2px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-decoration: none;
  transition:
    border-color 260ms ease,
    box-shadow 220ms ease,
    filter 220ms ease,
    transform 220ms ease;
  will-change: transform, filter, box-shadow;
}

.cta__label {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(24, 38, 22, 0.34);
  transition: text-shadow 260ms ease;
  white-space: nowrap;
}

.cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(232, 248, 210, 0.05), rgba(232, 248, 210, 0) 46%);
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -54%;
  left: -42%;
  width: 42%;
  height: 210%;
  border-radius: 999px;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 6%,
    rgba(255, 255, 255, 0.3) 46%,
    rgba(255, 255, 255, 0) 76%
  );
  filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) rotate(7deg);
  transition:
    opacity 360ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cta:hover {
  border-color: rgba(96, 112, 65, 0.9);
  filter: saturate(1.08) brightness(1.045);
  transform: translateY(-3px) scale(1.035);
  box-shadow:
    0 104px 29px rgba(0, 0, 0, 0),
    0 68px 30px rgba(0, 0, 0, 0.025),
    0 42px 28px rgba(0, 0, 0, 0.095),
    0 20px 20px rgba(0, 0, 0, 0.16),
    0 8px 12px rgba(0, 0, 0, 0.18),
    0 0 28px rgba(215, 232, 185, 0.22);
}

.cta:hover .cta__label {
  text-shadow:
    0 1px 0 rgba(24, 38, 22, 0.32),
    0 0 16px rgba(230, 244, 217, 0.38);
}

.cta:hover::after {
  opacity: 1;
  transform: translateX(365%) rotate(7deg);
}

.cta:focus-visible {
  outline: 2px solid rgba(232, 241, 215, 0.92);
  outline-offset: 5px;
}

.cta:active {
  transform: translateY(-1px) scale(1.012);
}

.cta:disabled {
  cursor: wait;
  filter: saturate(0.85);
  opacity: 0.72;
  transform: none;
}

.cta--small {
  min-width: 182px;
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: 1180px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1180px;
  background:
    linear-gradient(180deg, rgba(247, 242, 234, 0) 0%, rgba(247, 242, 234, 0) 68%, var(--page) 100%),
    #f7f2ea url("./assets/bg-sprigge-lp.webp") center top / 100% auto no-repeat;
  z-index: -4;
}

.hero__ambient {
  position: absolute;
  pointer-events: none;
}

.hero__ambient--main {
  display: none;
}

.hero__ambient--soft {
  display: none;
}

.light-shine,
.bg-shine {
  position: absolute;
  top: -42px;
  left: 0;
  width: 1320px;
  max-width: none;
  opacity: 0.2;
  pointer-events: none;
  transform: rotate(-1deg);
  will-change: opacity;
}

.light-shine {
  z-index: 40;
  animation: hero-shine-pulse 5200ms ease-in-out infinite;
}

.light-shine--soft {
  mix-blend-mode: soft-light;
}

.light-shine--normal {
  z-index: 41;
  mix-blend-mode: normal;
}

.bg-shine {
  z-index: 0;
  animation: hero-shine-pulse-background 5200ms ease-in-out infinite;
}

.bg-shine--soft {
  mix-blend-mode: soft-light;
}

.bg-shine--normal {
  z-index: 1;
  mix-blend-mode: normal;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 670px;
  background: linear-gradient(180deg, rgba(246, 241, 230, 0), var(--page) 72%);
}

.hero__inner {
  position: relative;
  z-index: 10;
  width: 1320px;
  margin: 0 auto;
}

.hero__copy {
  width: 736px;
  padding-top: 232px;
}

.hero__copy > * {
  animation: hero-content-reveal 980ms cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, opacity, filter;
}

.hero__copy .ornament {
  animation-delay: 120ms;
}

.hero__copy > p {
  animation-delay: 190ms;
}

.hero__copy .launch {
  animation-delay: 280ms;
}

.hero h1 {
  width: 586px;
  margin: 0;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  line-height: 120px;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  font-size: 90px;
  font-style: italic;
  font-weight: 500;
}

.ornament {
  display: flex;
  align-items: center;
  width: 146px;
  height: 18px;
  overflow: visible;
}

.ornament span {
  width: 100px;
  height: 1px;
  background: rgba(138, 143, 113, 0.75);
}

.ornament span::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  margin-top: -1px;
  border-radius: 50%;
  background: rgba(138, 143, 113, 0.9);
}

.ornament img {
  display: none;
}

.ornament::after {
  content: "";
  display: block;
  width: 47px;
  height: 17px;
  background-image: url("./assets/ornament.png");
  background-position: -94px -38px;
  background-size: 283px 93px;
  flex: 0 0 auto;
  transform: rotate(180deg) scaleY(-1);
}

.ornament--left {
  margin-top: 24px;
}

.hero__copy > p {
  width: 531px;
  margin: 24px 0 48px;
  color: rgba(72, 83, 47, 0.8);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

.launch {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.launch > span {
  color: #7f6d41;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__phone {
  position: absolute;
  top: 94px;
  right: -106px;
  width: 752px;
  height: 1112px;
  overflow: visible;
  transform-origin: 82% 72%;
  animation: hero-phone-arrival 1450ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
  will-change: transform, filter;
}

.hero__phone-idle {
  width: 100%;
  height: 100%;
  transform-origin: 62% 68%;
  animation: hero-phone-idle 7800ms ease-in-out 1700ms infinite;
  will-change: transform;
}

.hero__phone img {
  width: 889px;
  max-width: none;
  transform: translate3d(calc(-102px + var(--hero-phone-parallax-x, 0px)), var(--hero-phone-parallax-y, 0px), 0)
    rotate(var(--hero-phone-parallax-rotate, 0deg));
  transform-origin: 62% 68%;
  will-change: transform;
}

@keyframes hero-phone-arrival {
  0% {
    filter: blur(8px);
    transform: translate3d(86px, 108px, 0) rotate(4deg) scale(0.985);
  }

  100% {
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes hero-phone-idle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  22% {
    transform: translate3d(0.9px, -1.2px, 0) rotate(0.16deg);
  }

  48% {
    transform: translate3d(-0.7px, 0.8px, 0) rotate(-0.11deg);
  }

  74% {
    transform: translate3d(0.4px, 0.5px, 0) rotate(0.07deg);
  }
}

@keyframes hero-content-reveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 22px, 0);
  }

  72% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-shine-pulse {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes hero-shine-pulse-background {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

@keyframes feature-sunbeam-breathe {
  0% {
    opacity: 0.66;
    background-position: 0 0, 0 0;
    transform: translate3d(0, 0, 0) rotate(-0.7deg) scale(1);
  }

  34% {
    opacity: 0.78;
    background-position: 18px -10px, 0 0;
    transform: translate3d(-5px, 4px, 0) rotate(-0.15deg) scale(1.01);
  }

  68% {
    opacity: 0.62;
    background-position: -10px 8px, 0 0;
    transform: translate3d(4px, -2px, 0) rotate(0.35deg) scale(1.006);
  }

  100% {
    opacity: 0.66;
    background-position: 0 0, 0 0;
    transform: translate3d(0, 0, 0) rotate(-0.7deg) scale(1);
  }
}

@keyframes feature-sunbeam-glow {
  0% {
    opacity: 0.18;
    transform: translate3d(0, 0, 0) scale(1);
  }

  45% {
    opacity: 0.25;
    transform: translate3d(-4px, 3px, 0) scale(1.018);
  }

  100% {
    opacity: 0.18;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes motion-sunbeams {
  0%,
  100% {
    opacity: 0.44;
    transform: translate3d(0, 0, 0) scale(1);
  }

  38% {
    opacity: 0.86;
    transform: translate3d(-14px, 10px, 0) scale(1.012);
  }

  68% {
    opacity: 0.62;
    transform: translate3d(9px, -7px, 0) scale(1.006);
  }
}

@keyframes motion-sunbeams-soft {
  0%,
  100% {
    opacity: 0.28;
    transform: translate3d(0, 0, 0) scale(1);
  }

  46% {
    opacity: 0.72;
    transform: translate3d(-10px, 8px, 0) scale(1.014);
  }

  76% {
    opacity: 0.46;
    transform: translate3d(8px, -9px, 0) scale(1.006);
  }
}

@keyframes motion-ray-wide-tilt {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(50.78deg);
  }

  44% {
    transform: translate(-50%, -50%) rotate(51.04deg);
  }

  72% {
    transform: translate(-50%, -50%) rotate(50.58deg);
  }
}

@keyframes motion-ray-narrow-tilt {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(46.65deg);
  }

  44% {
    transform: translate(-50%, -50%) rotate(46.91deg);
  }

  72% {
    transform: translate(-50%, -50%) rotate(46.45deg);
  }
}

.why {
  position: relative;
  z-index: 2;
  width: min(1778px, calc(100vw - 96px));
  margin: -186px auto 0;
  padding: 122px 0 96px;
  border-radius: 120px;
  background: transparent;
}

.why::before,
.why::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 1280px;
  border-radius: 120px;
  pointer-events: none;
}

.why::before {
  -webkit-backdrop-filter: blur(58px);
  backdrop-filter: blur(58px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(253, 250, 244, 0.9) 54%,
    rgba(246, 241, 230, 0.58) 78%,
    rgba(246, 241, 230, 0) 100%
  );
  box-shadow: 0 -44px 49px rgba(127, 122, 113, 0.04);
}

.why::after {
  border: 1px solid rgba(255, 255, 255, 0.92);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 63%, rgba(0, 0, 0, 0.52) 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 63%, rgba(0, 0, 0, 0.52) 82%, transparent 100%);
}

.why h2 {
  position: relative;
  z-index: 1;
  width: 892px;
  margin: 0 auto 112px;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}

.why h2 em {
  color: #495430;
  font-style: italic;
  font-weight: 500;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 25px;
  width: 1320px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 32px;
  background: var(--surface);
  box-shadow:
    0 36px 80px rgba(62, 56, 45, 0.055),
    0 16px 34px rgba(73, 84, 48, 0.035),
    0 3px 10px rgba(62, 56, 45, 0.025);
}

.feature-reveal-ready .feature-card {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 46px, 0) scale(0.986);
  transition:
    opacity 860ms ease,
    filter 920ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--feature-reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.feature-reveal-ready .feature-card.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.feature-card--wide {
  height: 750px;
}

.feature-card--split {
  height: 830px;
}

.feature-card__image {
  position: absolute;
  max-width: none;
  user-select: none;
  pointer-events: none;
}

.feature-card__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feature-card__content {
  position: absolute;
  z-index: 2;
  width: 505px;
}

.feature-card h3 {
  margin: 0;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.4;
}

.feature-card p {
  margin: 24px 0 0;
  color: rgba(90, 65, 16, 0.8);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.feature-card .ornament {
  margin-top: 24px;
}

.feature-card--save .feature-card__image {
  z-index: 0;
  top: 50%;
  right: -72px;
  width: 1465px;
  transform: translateY(-48%);
}

.feature-card--save {
  isolation: isolate;
}

.feature-card--save::before,
.feature-card--save::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  will-change: opacity, transform, background-position;
}

.feature-card--save::before {
  top: -196px;
  right: -120px;
  width: 1080px;
  height: 1000px;
  background:
    repeating-linear-gradient(
      116deg,
      rgba(255, 255, 255, 0) 0 28px,
      rgba(255, 255, 255, 0.66) 44px 70px,
      rgba(255, 248, 226, 0.24) 78px 94px,
      rgba(122, 86, 32, 0.16) 112px 136px,
      rgba(255, 255, 255, 0) 154px 222px
    ),
    linear-gradient(
      116deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 34%,
      rgba(255, 248, 226, 0.1) 52%,
      rgba(255, 255, 255, 0) 76%
    );
  background-size: 360px 360px, 100% 100%;
  filter: blur(14px);
  transform-origin: 92% 0%;
  -webkit-mask-image: radial-gradient(ellipse at 92% 5%, #000 0%, rgba(0, 0, 0, 0.96) 26%, rgba(0, 0, 0, 0.86) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse at 92% 5%, #000 0%, rgba(0, 0, 0, 0.96) 26%, rgba(0, 0, 0, 0.86) 72%, transparent 100%);
  mix-blend-mode: normal;
  animation: feature-sunbeam-breathe 12800ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.feature-card--save::after {
  top: -116px;
  right: -116px;
  width: 880px;
  height: 650px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 87% 8%, rgba(255, 255, 255, 0.54) 0%, rgba(255, 250, 234, 0.22) 36%, rgba(255, 255, 255, 0) 74%);
  filter: blur(36px);
  transform-origin: 90% 7%;
  -webkit-mask-image: radial-gradient(ellipse at 86% 9%, #000 0%, rgba(0, 0, 0, 0.64) 42%, transparent 82%);
  mask-image: radial-gradient(ellipse at 86% 9%, #000 0%, rgba(0, 0, 0, 0.64) 42%, transparent 82%);
  mix-blend-mode: screen;
  animation: feature-sunbeam-glow 14200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.feature-card--save .feature-card__shade {
  z-index: 3;
  background: linear-gradient(90deg, var(--surface) 31%, rgba(253, 250, 244, 0) 68%);
}

.feature-card--save .feature-card__content,
.feature-card--cookbook .feature-card__content {
  z-index: 4;
  left: 71px;
  top: 50%;
  width: 468px;
  transform: translateY(-50%);
}

.feature-card--chaos {
  background:
    radial-gradient(circle at 48% -15%, rgba(85, 95, 60, 0.15), rgba(85, 95, 60, 0) 42%),
    var(--surface);
}

.feature-card--chaos .feature-card__content {
  left: 71px;
  top: 86px;
}

.feature-card--chaos .feature-card__image {
  left: -104px;
  bottom: -570px;
  width: 1264px;
}

.feature-card--chef {
  background:
    radial-gradient(circle at 48% -15%, rgba(85, 95, 60, 0.15), rgba(85, 95, 60, 0) 42%),
    var(--surface);
}

.feature-card--chef .feature-card__image {
  top: -572px;
  left: 31px;
  width: 508px;
}

.feature-card--chef .feature-card__content {
  left: 71px;
  bottom: 87px;
}

.feature-card--cookbook .feature-card__image {
  top: 50%;
  right: -116px;
  width: 1551px;
  transform: translateY(-51%);
}

.feature-card--cookbook .feature-card__shade {
  background: linear-gradient(93deg, var(--surface) 21%, rgba(253, 250, 244, 0) 65%);
}

.motion {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 140px;
  width: min(1756px, calc(100vw - 96px));
  height: 1512px;
  margin: -262px auto 0;
  overflow: hidden;
  border-radius: 64px;
  background: #48532f;
  color: #fff;
}

.motion-reveal-ready .motion {
  opacity: 0.001;
  transform: translate3d(0, 86px, 0) scale(0.992);
  will-change: opacity, transform;
}

.motion-reveal-ready.motion-reveal-armed .motion {
  transition:
    opacity 900ms cubic-bezier(0.18, 0.86, 0.18, 1),
    transform 1350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-reveal-ready .motion.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(102, 102, 102, 0) 69.194%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.motion__background {
  position: absolute;
  top: -16px;
  left: -23px;
  z-index: 0;
  width: 2109px;
  height: 1582px;
  max-width: none;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.motion-reveal-ready .motion__background {
  opacity: 0.12;
  transform: translate3d(0, 54px, 0) scale(1.018);
  will-change: opacity, transform;
}

.motion-reveal-ready.motion-reveal-armed .motion__background {
  transition:
    opacity 1280ms cubic-bezier(0.2, 0.82, 0.2, 1),
    transform 1680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 70ms;
}

.motion-reveal-ready .motion.is-visible .motion__background {
  opacity: 0.25;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion__ray {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: 0.44;
  animation: motion-sunbeams 14800ms cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: opacity, transform;
}

.motion__ray--wide {
  top: -434.85px;
  left: 286.4px;
  width: 1772.531px;
  height: 1713.187px;
}

.motion__ray--narrow {
  top: -171.67px;
  left: 555.18px;
  width: 1234.965px;
  height: 1186.843px;
  opacity: 0.28;
  animation-name: motion-sunbeams-soft;
  animation-duration: 17200ms;
  animation-delay: -4200ms;
}

.motion__ray-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
  will-change: transform;
}

.motion__ray--wide .motion__ray-inner {
  width: 1030.498px;
  height: 1446.889px;
  transform: translate(-50%, -50%) rotate(50.78deg);
  animation: motion-ray-wide-tilt 14800ms cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.motion__ray--narrow .motion__ray-inner {
  width: 266.3px;
  height: 1446.889px;
  transform: translate(-50%, -50%) rotate(46.65deg);
  animation: motion-ray-narrow-tilt 17200ms cubic-bezier(0.45, 0, 0.2, 1) infinite;
  animation-delay: -4200ms;
}

.motion__ray img {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}

.motion__ray--wide img {
  top: -6.91%;
  left: -9.7%;
  width: 119.4%;
  height: 113.82%;
}

.motion__ray--narrow img {
  top: -6.91%;
  left: -37.55%;
  width: 175.1%;
  height: 113.82%;
}

.motion__text {
  position: absolute;
  z-index: 3;
  top: 343px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 686px;
  text-align: center;
  transform: translateX(-50%);
}

.motion-reveal-ready .motion__text {
  opacity: 0;
  transform: translate3d(-50%, 34px, 0);
  will-change: opacity, transform;
}

.motion-reveal-ready.motion-reveal-armed .motion__text {
  transition:
    opacity 780ms cubic-bezier(0.22, 0.86, 0.22, 1),
    transform 1180ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 210ms;
}

.motion-reveal-ready .motion.is-visible .motion__text {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.motion h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 500;
  line-height: 1.4;
}

.faq h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 400;
  line-height: 1.2;
}

.motion__text img {
  width: 128px;
  height: 24px;
  object-fit: cover;
  object-position: 50% 50%;
}

.faq__header img {
  width: 128px;
  height: 24px;
  margin: 24px auto;
  object-fit: cover;
  object-position: 50% 50%;
}

.motion__text p {
  width: 100%;
  margin: 0;
  color: rgba(191, 197, 178, 0.8);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.22px;
  line-height: 1.8;
}

.motion__phone {
  position: absolute;
  z-index: 2;
  top: 684px;
  left: 50%;
  width: 464px;
  aspect-ratio: 1137 / 2340;
  filter: drop-shadow(0 34px 58px rgba(10, 13, 6, 0.32));
  overflow: visible;
  transform: translateX(-50%);
}

.motion-reveal-ready .motion__phone {
  opacity: 0;
  transform: translate3d(-50%, 104px, 0) scale(0.986);
  will-change: opacity, transform;
}

.motion-reveal-ready.motion-reveal-armed .motion__phone {
  transition:
    opacity 900ms cubic-bezier(0.2, 0.82, 0.2, 1),
    transform 1620ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 330ms;
}

.motion-reveal-ready .motion.is-visible .motion__phone {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.motion__phone::after {
  display: none;
}

.motion__phone-screen {
  position: absolute;
  top: 1.95%;
  right: 4.4%;
  bottom: 2.45%;
  left: 4.45%;
  z-index: 1;
  overflow: hidden;
  border-radius: 9% / 4.35%;
  background: #fbfaf6;
}

.motion__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 240ms ease;
}

.motion__video.is-active {
  opacity: 1;
}

.motion__phone-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
}

.faq {
  width: 896px;
  margin: 168px auto 120px;
}

.faq__header {
  width: 686px;
  margin: 0 auto 64px;
  text-align: center;
}

.faq h2 {
  color: var(--brand);
}

.faq__list {
  display: grid;
  gap: 15px;
}

.faq-reveal-ready .faq__header,
.faq-reveal-ready .faq-item {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.82, 0.2, 1),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--faq-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.faq-reveal-ready .faq.is-visible .faq__header,
.faq-reveal-ready .faq.is-visible .faq-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.faq-item {
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 32px;
  background: rgba(253, 250, 244, 0.5);
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 320ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open {
  background: var(--surface);
  box-shadow:
    0 28px 72px rgba(72, 83, 47, 0.08),
    0 10px 28px rgba(90, 65, 16, 0.045);
  transform: translateY(-2px);
}

.faq-item:not(.is-open):hover {
  background: rgba(253, 250, 244, 0.68);
  transform: translateY(-1px);
}

.faq-item:not(.is-open):hover .faq-item__question span {
  transform: translateX(2px);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px;
  color: var(--brand);
  text-align: left;
  cursor: pointer;
}

.faq-item__question span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  transition:
    color 260ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item__question img {
  width: 24px;
  height: 24px;
  margin-left: 24px;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:not(.is-open) .faq-item__question img {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition:
    max-height 520ms cubic-bezier(0.16, 1, 0.3, 1),
    padding-bottom 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-item__answer {
  max-height: 420px;
  padding-bottom: 24px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.faq-item__answer .ornament {
  margin-bottom: 12px;
}

.faq-item__answer p {
  max-width: 760px;
  margin: 0 0 16px;
  color: rgba(90, 65, 16, 0.8);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.join-section {
  position: relative;
  isolation: isolate;
  width: min(1756px, calc(100vw - 96px));
  height: 1154px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 120px;
  background:
    linear-gradient(180deg, #fff 0%, rgba(244, 239, 227, 0) 100%),
    var(--surface);
  box-shadow:
    0 156px 156px rgba(0, 0, 0, 0.03),
    0 39px 86px rgba(0, 0, 0, 0.04);
}

.join-section__content {
  position: relative;
  z-index: 2;
  top: 127px;
  left: 50%;
  display: flex;
  width: min(990px, calc(100% - 64px));
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateX(-50%);
}

.join-section__copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.join-section__copy h2 {
  width: min(990px, 100%);
  margin: 0;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 90px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.333;
}

.join-section__ornament {
  width: 128px;
  height: 24px;
  margin: 16px 0 24px;
  object-fit: cover;
  object-position: center;
}

.join-section__copy p {
  width: min(618px, 100%);
  margin: 0;
  color: rgba(72, 83, 47, 0.8);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

.join-section__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.join-section__fields {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.join-section__fields input {
  width: 317px;
  height: 64px;
  padding: 0 15px;
  border: 1px solid #ece6da;
  border-radius: 24px;
  background: #fff;
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
  outline: 0;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.join-section__fields input::placeholder {
  color: rgba(72, 83, 47, 0.7);
}

.join-section__fields input:focus {
  border-color: rgba(72, 83, 47, 0.44);
  box-shadow: 0 0 0 4px rgba(72, 83, 47, 0.1);
}

.join-section__submit {
  width: 183px;
  min-width: 183px;
  height: 64px;
  padding: 0 32px;
}

.join-section__note,
.join-section__status {
  margin: 12px 0 0;
  color: #7f6d41;
  font-size: 12.603px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.join-section__status {
  min-height: 18px;
  margin-top: 8px;
  color: rgba(72, 83, 47, 0.82);
  font-weight: 500;
}

.join-section__phones {
  position: absolute;
  z-index: 1;
  top: 600px;
  left: 54%;
  width: min(1918px, 112%);
  max-width: none;
  pointer-events: none;
  user-select: none;
  transform: translateX(-50%);
}

.site-footer {
  display: flex;
  width: min(1320px, calc(100vw - 96px));
  margin: 0 auto 42px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(72, 83, 47, 0.72);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-footer__brand {
  display: block;
  width: 112px;
  height: 39px;
  flex: 0 0 auto;
}

.site-footer__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.site-footer__meta p {
  margin: 0;
}

.site-footer__meta p:last-child {
  color: rgba(72, 83, 47, 0.48);
  font-size: 12px;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__links a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--brown);
}

.legal-main {
  min-height: calc(100vh - 120px);
  padding: 178px 0 92px;
}

.legal-hero,
.legal-content {
  width: min(920px, calc(100vw - 96px));
  margin-right: auto;
  margin-left: auto;
}

.legal-hero {
  text-align: center;
}

.legal-kicker {
  margin: 0 0 14px;
  color: rgba(72, 83, 47, 0.64);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 72px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
}

.legal-updated {
  margin: 18px 0 0;
  color: rgba(90, 65, 16, 0.72);
  font-size: 16px;
  font-weight: 500;
}

.legal-content {
  margin-top: 54px;
  padding: 58px 64px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(253, 250, 244, 0.86)),
    var(--surface);
  box-shadow:
    0 80px 120px rgba(72, 83, 47, 0.08),
    0 18px 44px rgba(72, 83, 47, 0.06);
}

.legal-section + .legal-section {
  margin-top: 38px;
  padding-top: 36px;
  border-top: 1px solid rgba(72, 83, 47, 0.12);
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.legal-section p,
.legal-section li {
  color: rgba(90, 65, 16, 0.78);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.82;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 8px 0 0;
  padding-left: 24px;
}

.legal-section a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration-color: rgba(72, 83, 47, 0.32);
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--brown);
}

.not-found-main {
  display: grid;
  min-height: calc(100vh - 110px);
  padding: 164px 24px 96px;
  place-items: center;
  text-align: center;
}

.not-found-content {
  width: min(640px, 100%);
}

.not-found-content h1 {
  margin: 0;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 74px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
}

.not-found-content p {
  margin: 22px auto 34px;
  color: rgba(72, 83, 47, 0.76);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
}

.join-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, rgba(244, 239, 227, 0) 100%),
    var(--surface);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 360ms ease,
    visibility 0s linear 360ms;
}

.join-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.has-join-modal {
  overflow: hidden;
}

.join-modal__surface {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(253, 250, 244, 0.86) 42%, rgba(246, 241, 230, 0.18) 100%),
    #fdfaf4;
  box-shadow:
    0 978px 250px rgba(0, 0, 0, 0),
    0 626px 250px rgba(0, 0, 0, 0.01),
    0 352px 211px rgba(0, 0, 0, 0.02),
    0 156px 156px rgba(0, 0, 0, 0.03),
    0 39px 86px rgba(0, 0, 0, 0.04);
}

.join-modal__content {
  position: absolute;
  z-index: 2;
  top: clamp(58px, 11vh, 127px);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(870px, calc(100vw - 64px));
  text-align: center;
  transform: translateX(-50%);
}

.join-modal__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.join-modal__copy h2 {
  width: min(990px, 100%);
  margin: 0;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(64px, 4.7vw, 90px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.333;
}

.join-modal__ornament {
  width: 128px;
  height: 24px;
  margin: 16px 0 24px;
  object-fit: cover;
  object-position: center;
}

.join-modal__copy p {
  width: min(618px, 100%);
  margin: 0;
  color: rgba(72, 83, 47, 0.8);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

.join-modal__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.join-modal__fields {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.join-modal__fields input {
  width: 317px;
  height: 64px;
  padding: 0 15px;
  border: 1px solid #ece6da;
  border-radius: 24px;
  background: #fff;
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
  outline: 0;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.join-modal__fields input::placeholder {
  color: rgba(72, 83, 47, 0.7);
}

.join-modal__fields input:focus {
  border-color: rgba(72, 83, 47, 0.44);
  box-shadow: 0 0 0 4px rgba(72, 83, 47, 0.1);
}

.join-modal__submit {
  width: 183px;
  min-width: 183px;
  height: 64px;
  padding: 0 32px;
}

.join-modal__note,
.join-modal__status {
  margin: 12px 0 0;
  color: #7f6d41;
  font-size: 12.603px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.join-modal__status {
  min-height: 18px;
  margin-top: 8px;
  color: rgba(72, 83, 47, 0.82);
  font-weight: 500;
}

.join-modal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 38px;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-button);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.join-modal__back img {
  width: 24px;
  height: 24px;
}

.join-modal__back:hover {
  color: var(--brown);
  transform: translateX(-3px);
}

.join-modal__back:focus-visible {
  outline: 2px solid rgba(72, 83, 47, 0.36);
  outline-offset: 5px;
  border-radius: 999px;
}

.join-modal__phones {
  position: absolute;
  z-index: 1;
  top: clamp(560px, 55vh, 720px);
  left: 58%;
  width: min(2360px, 122vw);
  max-width: none;
  pointer-events: none;
  user-select: none;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
}

.join-modal:not(.is-open) .join-modal__content {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(-50%, 28px, 0);
}

.join-modal:not(.is-open) .join-modal__phones {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(-50%, 28px, 0);
}

.join-modal.is-open .join-modal__content {
  animation: join-content-enter 760ms cubic-bezier(0.16, 1, 0.3, 1) 70ms both;
}

.join-modal.is-open .join-modal__phones {
  animation: join-phones-enter 940ms cubic-bezier(0.16, 1, 0.3, 1) 110ms both;
}

@keyframes join-content-enter {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(-50%, 28px, 0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes join-phones-enter {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(-50%, 78px, 0) scale(0.985);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(-50%, 0, 0) scale(1);
  }
}

.toast {
  position: fixed;
  z-index: 260;
  right: 32px;
  bottom: 32px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(72, 83, 47, 0.95);
  box-shadow: 0 18px 42px rgba(42, 48, 29, 0.2);
  color: #e7f0de;
  font-size: 15px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

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

  .hero__phone {
    animation: none;
    will-change: auto;
  }

  .hero__phone-idle {
    animation: none;
    will-change: auto;
  }

  .hero__copy > * {
    animation: none;
    will-change: auto;
  }

  .feature-card--save::before,
  .feature-card--save::after,
  .motion__ray,
  .motion__ray--wide .motion__ray-inner,
  .motion__ray--narrow .motion__ray-inner {
    animation: none;
    will-change: auto;
  }

  .feature-reveal-ready .feature-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .motion-reveal-ready .motion,
  .motion-reveal-ready.motion-reveal-armed .motion,
  .motion-reveal-ready .motion.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .motion-reveal-ready .motion__background,
  .motion-reveal-ready.motion-reveal-armed .motion__background,
  .motion-reveal-ready .motion.is-visible .motion__background {
    opacity: 0.25;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .motion-reveal-ready .motion__text,
  .motion-reveal-ready.motion-reveal-armed .motion__text,
  .motion-reveal-ready .motion.is-visible .motion__text {
    opacity: 1;
    filter: none;
    transform: translateX(-50%);
    transition: none;
    will-change: auto;
  }

  .motion-reveal-ready .motion__phone,
  .motion-reveal-ready.motion-reveal-armed .motion__phone,
  .motion-reveal-ready .motion.is-visible .motion__phone {
    opacity: 1;
    filter: none;
    transform: translateX(-50%);
    transition: none;
    will-change: auto;
  }

  .faq-reveal-ready .faq__header,
  .faq-reveal-ready .faq-item,
  .faq-reveal-ready .faq.is-visible .faq__header,
  .faq-reveal-ready .faq.is-visible .faq-item {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .faq-item,
  .faq-item__question span,
  .faq-item__question img,
  .faq-item__answer,
  .join-modal,
  .join-section__fields input,
  .join-modal__fields input,
  .join-modal__back {
    transition: none;
  }

  .join-modal.is-open .join-modal__content,
  .join-modal.is-open .join-modal__phones {
    animation: none;
  }

  .site-header {
    transition: none;
  }

  .cta,
  .cta::after,
  .cta__label,
  .toast {
    transition: none;
  }
}

@media (max-height: 760px) {
  .join-modal__content {
    top: 48px;
  }

  .join-modal__copy h2 {
    font-size: 64px;
    line-height: 1.22;
  }

  .join-modal__copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .join-modal__ornament {
    margin: 12px 0 18px;
  }

  .join-modal__form {
    margin-top: 22px;
  }

  .join-modal__back {
    margin-top: 22px;
  }
}

@media (max-width: 1439px) {
  body {
    min-width: 1180px;
  }

  .site-header,
  .hero__inner,
  .feature-grid {
    width: 1180px;
  }

  .site-header.is-scrolled {
    width: 1180px;
  }

  .hero__phone {
    right: -90px;
  }

  .why h2 {
    width: 892px;
    font-size: 72px;
  }

  .feature-card--wide {
    height: 710px;
  }

  .feature-card--split {
    height: 790px;
  }
}

@media (min-width: 761px) and (max-width: 1439px) {
  html,
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .site-header {
    left: 24px;
    right: 24px;
    width: auto;
    padding: 18px 0 24px;
    transform: none;
  }

  .site-header.is-scrolled {
    left: 24px;
    right: 24px;
    width: auto;
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    width: clamp(132px, 16vw, 170px);
    height: auto;
    aspect-ratio: 132 / 46;
  }

  .cta--small {
    min-width: clamp(214px, 36vw, 390px);
    height: clamp(54px, 8vw, 90px);
    padding: 0 clamp(28px, 4vw, 52px);
    font-size: clamp(16px, 2.45vw, 30px);
  }

  .hero {
    min-height: clamp(1120px, 132vw, 1460px);
  }

  .hero::before {
    height: clamp(760px, 86vw, 980px);
    background:
      linear-gradient(180deg, rgba(247, 242, 234, 0) 0%, rgba(247, 242, 234, 0) 63%, var(--page) 100%),
      #f7f2ea url("./assets/bg-sprigge-lp.webp") center top / auto clamp(760px, 95vw, 1060px) no-repeat;
  }

  .hero::after {
    height: 520px;
  }

  .hero__inner {
    width: 100%;
    height: clamp(1120px, 132vw, 1460px);
  }

  .hero__copy {
    position: absolute;
    top: clamp(720px, 80vw, 900px);
    left: 50%;
    display: flex;
    width: min(760px, calc(100vw - 96px));
    padding-top: 0;
    flex-direction: column;
    align-items: center;
    gap: clamp(22px, 3vw, 34px);
    transform: translateX(-50%);
  }

  .hero__copy .ornament {
    display: none;
  }

  .hero h1 {
    order: 1;
    width: 100%;
    font-size: clamp(58px, 8vw, 82px);
    line-height: 1.18;
  }

  .hero h1 em {
    font-size: clamp(74px, 10vw, 108px);
  }

  .hero__copy .launch {
    order: 2;
    width: 100%;
  }

  .hero__copy .launch .cta {
    width: min(740px, 100%);
  }

  .hero__copy > p {
    order: 3;
    width: min(740px, 100%);
    margin: 0;
    font-size: clamp(22px, 3vw, 36px);
    letter-spacing: 0.01em;
    text-align: center;
  }

  .hero__phone {
    top: clamp(64px, 7vw, 86px);
    left: calc(50% + clamp(110px, 15vw, 180px));
    right: auto;
    display: flex;
    width: clamp(500px, 58vw, 640px);
    height: auto;
    aspect-ratio: 592.792 / 703.593;
    align-items: center;
    justify-content: center;
    animation: none;
    transform: translateX(-50%);
  }

  .hero__phone-idle {
    width: 68.28%;
    height: 85%;
    animation: none;
    transform: rotate(-21.09deg);
  }

  .hero__phone img {
    content: url("./assets/figma-tablet-hero.png");
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }

  .why {
    margin-top: 0;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .site-header {
    top: 16px;
    left: 50%;
    right: auto;
    width: min(754px, calc(100vw - 80px));
    gap: 24px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    transform: translateX(-50%);
  }

  .site-header.is-scrolled {
    top: 12px;
    left: 50%;
    right: auto;
    width: min(754px, calc(100vw - 80px));
    padding: 6px 8px 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 999px;
    background: rgba(253, 250, 244, 0.82);
    box-shadow: 0 18px 42px rgba(62, 56, 45, 0.12);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
  }

  .brand {
    width: 108px;
    height: 37px;
  }

  .site-header.is-scrolled .brand {
    width: 98px;
    height: 34px;
  }

  .nav-links {
    display: none;
  }

  .cta--small {
    min-width: 193px;
    height: 46px;
    padding: 0 24px;
    font-size: 14.4px;
    letter-spacing: 0.063em;
  }

  .light-shine,
  .bg-shine {
    left: 50%;
    width: 1099px;
    max-width: none;
    transform: translateX(-50%);
  }

  .hero {
    min-height: 780px;
  }

  .hero::before {
    left: 50%;
    width: 1099px;
    height: 667px;
    background:
      linear-gradient(180deg, rgba(246, 241, 230, 0) 21%, var(--page) 100%),
      rgba(255, 255, 255, 0.3),
      #f7f2ea url("./assets/bg-sprigge-lp.webp") center top / auto 667px no-repeat;
    transform: translateX(-50%);
  }

  .hero::after {
    top: 237px;
    bottom: auto;
    left: 50%;
    width: 1099px;
    height: 430px;
    background: linear-gradient(180deg, rgba(246, 241, 230, 0), var(--page));
    transform: translateX(-50%);
  }

  .hero__inner {
    width: 100%;
    height: 780px;
  }

  .hero__copy {
    position: absolute;
    top: 154px;
    left: max(40px, calc(50% - 377px));
    display: flex;
    width: 510px;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transform: none;
  }

  .hero h1 {
    order: 1;
    width: 510px;
    font-size: 62.769px;
    line-height: 104.615px;
  }

  .hero h1 em {
    font-size: 78.462px;
  }

  .hero__copy .ornament {
    order: 2;
    display: flex;
    margin: 0;
  }

  .hero__copy > p {
    order: 3;
    width: 531px;
    margin: 0 0 24px;
    font-size: 20px;
    letter-spacing: 0.01em;
    line-height: 1.8;
    text-align: left;
  }

  .hero__copy .launch {
    order: 4;
    width: auto;
    gap: 10.8px;
  }

  .hero__copy .launch .cta {
    width: 242px;
    min-width: 242px;
    height: 64px;
    font-size: 16.2px;
  }

  .launch > span {
    font-size: 12.603px;
    letter-spacing: 0.12em;
  }

  .hero__phone {
    top: 30px;
    left: calc(50% + 365px);
    right: auto;
    display: flex;
    width: 592.792px;
    height: 703.593px;
    align-items: center;
    justify-content: center;
    animation: none;
    transform: translateX(-50%);
  }

  .hero__phone-idle {
    width: 404.727px;
    height: 598.021px;
    animation: none;
    transform: rotate(-21.09deg);
  }

  .hero__phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }

  .why {
    width: min(754px, calc(100vw - 80px));
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
  }

  .why::before,
  .why::after {
    display: none;
  }

  .why h2 {
    width: min(510px, 100%);
    margin: 0 auto 38px;
    font-size: 28px;
    line-height: 1.5;
  }

  .feature-grid {
    width: 100%;
    gap: 25px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    border-radius: 32px;
  }

  .feature-reveal-ready .feature-card,
  .feature-reveal-ready .feature-card.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .feature-card--wide {
    height: 750px;
  }

  .feature-card--split {
    height: 700px;
  }

  .feature-card__content,
  .feature-card--save .feature-card__content,
  .feature-card--cookbook .feature-card__content,
  .feature-card--chaos .feature-card__content {
    top: 47px;
    left: 47px;
    width: 364px;
    transform: none;
  }

  .feature-card h3 {
    font-size: 48px;
    line-height: 1.4;
  }

  .feature-card p {
    font-size: 22px;
    letter-spacing: 0.01em;
    line-height: 1.8;
  }

  .feature-card--save::before,
  .feature-card--save::after {
    display: none;
  }

  .feature-card--save .feature-card__shade,
  .feature-card--cookbook .feature-card__shade {
    z-index: 1;
    inset: 0;
    height: auto;
    background: linear-gradient(92deg, var(--surface) 28%, rgba(253, 250, 244, 0) 67%);
  }

  .feature-card--save .feature-card__image {
    content: url("./assets/figma-tablet-save.png");
    z-index: 0;
    top: calc(50% + 16px);
    right: auto;
    left: calc(50% - 13px);
    width: 1368px;
    height: 782px;
    object-fit: cover;
    transform: translate(-50%, -50%);
  }

  .feature-card--save .feature-card__content,
  .feature-card--cookbook .feature-card__content {
    top: 50%;
    transform: translateY(-50%);
  }

  .feature-card--chaos .feature-card__image {
    z-index: 0;
    top: 298px;
    bottom: auto;
    left: -105px;
    width: 1264px;
    transform: none;
  }

  .feature-card--chaos::after {
    display: none;
  }

  .feature-card--chaos .feature-card__content {
    width: 658px;
  }

  .feature-card--chaos h3 {
    white-space: nowrap;
  }

  .feature-card--chaos h3 br {
    display: none;
  }

  .feature-card--chef .feature-card__image {
    top: -535px;
    left: calc(50% + 37px);
    width: 473px;
    transform: translateX(-50%);
  }

  .feature-card--chef .feature-card__content {
    top: auto;
    bottom: 47px;
    left: 47px;
    width: 658px;
  }

  .feature-card--cookbook .feature-card__shade {
    background: linear-gradient(93deg, var(--surface) 42%, rgba(253, 250, 244, 0.92) 56%, rgba(253, 250, 244, 0) 76%);
  }

  .feature-card--cookbook .feature-card__image {
    content: url("./assets/figma-tablet-cookbook.png");
    z-index: 0;
    top: calc(50% - 4px);
    right: auto;
    left: calc(50% + 160px);
    width: 1327px;
    height: 758px;
    object-fit: cover;
    transform: translate(-50%, -50%);
  }

  .feature-card--cookbook .feature-card__content {
    width: 436px;
  }

  .motion {
    width: calc(100% + 16px);
    max-width: none;
    height: 1512px;
    margin: -230px 0 0 -8px;
    border-radius: 0;
    scroll-margin-top: 112px;
  }

  .motion__background {
    top: -35px;
    left: 50%;
    width: 2109px;
    height: 1582px;
    transform: translateX(-50%);
  }

  .motion__text {
    top: 330px;
    width: 686px;
  }

  .motion h2,
  .faq h2 {
    font-size: 72px;
    line-height: 1.4;
  }

  .motion__text p {
    font-size: 22px;
  }

  .motion__phone {
    top: 748px;
    left: 50%;
    width: 432px;
    height: auto;
    transform: translateX(-50%);
    transform-origin: top center;
  }

  .motion-reveal-ready .motion__phone {
    transform: translate3d(-50%, 104px, 0);
  }

  .motion-reveal-ready .motion.is-visible .motion__phone {
    transform: translate3d(-50%, 0, 0);
  }

  .motion__phone::after {
    display: none;
  }

  .faq {
    width: min(820px, calc(100vw - clamp(48px, 8vw, 96px)));
    margin: clamp(96px, 12vw, 136px) auto clamp(72px, 9vw, 104px);
  }

  .faq__header {
    width: min(640px, 100%);
    margin-bottom: 48px;
  }

  .join-section {
    width: min(754px, calc(100vw - 80px));
    height: 920px;
    margin-bottom: 24px;
    border-radius: 72px;
  }

  .join-section__content {
    top: 76px;
    width: min(640px, calc(100% - 48px));
  }

  .join-section__copy h2 {
    font-size: 64px;
    line-height: 1.22;
  }

  .join-section__copy p {
    width: min(560px, 100%);
    font-size: 18px;
  }

  .join-section__phones {
    top: 520px;
    left: 55%;
    width: 1130px;
  }

  .site-footer {
    width: min(754px, calc(100vw - 80px));
    margin-bottom: 36px;
  }
}

@media (max-width: 760px) {
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .site-header {
    top: 15px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .site-header.is-scrolled {
    top: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    padding: 6px 6px 6px 16px;
    border-color: rgba(255, 255, 255, 0.72);
    border-radius: 32px;
    background: rgba(253, 250, 244, 0.78);
    box-shadow: 0 14px 30px rgba(62, 56, 45, 0.08);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .brand {
    width: 108px;
    height: 37px;
    transition:
      width 260ms cubic-bezier(0.16, 1, 0.3, 1),
      height 260ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-header.is-scrolled .brand {
    width: 88px;
    height: 30px;
  }

  .nav-links {
    display: none;
  }

  .cta--small {
    min-width: 193px;
    height: 46px;
    padding: 0 24px;
    font-size: 14.4px;
    letter-spacing: 0.063em;
  }

  .light-shine {
    display: none;
  }

  .hero {
    min-height: 906px;
  }

  .hero::before {
    left: 50%;
    width: 535px;
    height: 725px;
    background:
      linear-gradient(180deg, rgba(247, 242, 234, 0) 0%, rgba(247, 242, 234, 0) 48%, var(--page) 100%),
      #f7f2ea url("./assets/bg-sprigge-lp.webp") center top / auto 485px no-repeat;
    transform: translateX(-50%);
  }

  .hero::after {
    top: 216px;
    bottom: auto;
    left: 50%;
    width: 537px;
    height: 257px;
    background: linear-gradient(180deg, rgba(246, 241, 230, 0), var(--page));
    transform: translateX(-50%);
  }

  .bg-shine {
    top: 0;
    left: 50%;
    width: 535px;
    opacity: 0.12;
    transform: translateX(-50%) rotate(-1deg);
  }

  .hero__inner {
    width: 100%;
    height: 906px;
  }

  .hero__copy {
    position: absolute;
    top: 491px;
    left: 50%;
    display: flex;
    width: min(368px, calc(100vw - 34px));
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transform: translateX(-50%);
  }

  .hero__copy .ornament {
    display: none;
  }

  .hero h1 {
    order: 1;
    width: 100%;
    font-size: 45.272px;
    line-height: 75.453px;
  }

  .hero h1 em {
    font-size: 54px;
  }

  .hero__copy .launch {
    order: 2;
    width: 100%;
  }

  .launch > span {
    font-size: 12.603px;
    letter-spacing: 0.12em;
  }

  .hero__copy .launch .cta {
    width: 100%;
    min-width: 0;
  }

  .hero__copy > p {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.01em;
    line-height: 1.8;
    text-align: center;
  }

  .hero__phone {
    top: -24px;
    left: clamp(-16px, calc(190vw - 910px), 180px);
    right: auto;
    display: flex;
    width: 592.792px;
    height: 703.593px;
    align-items: center;
    justify-content: center;
    animation: none;
    transform: none;
  }

  .hero__phone-idle {
    width: 404.727px;
    height: 598.021px;
    animation: none;
    transform: rotate(-21.09deg);
  }

  .hero__phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }

  .why {
    width: 100%;
    margin: 0;
    padding: 58px 0 0;
    border-radius: 0;
  }

  .why::before,
  .why::after {
    display: none;
  }

  .why h2 {
    width: min(365px, calc(100vw - 32px));
    margin: 0 auto 38px;
    font-size: 28px;
    line-height: 1.5;
  }

  .feature-grid {
    width: min(370px, calc(100vw - 32px));
    gap: 24px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    border-radius: 32px;
    box-shadow: none;
  }

  .feature-card--wide {
    height: 727px;
  }

  .feature-card--split {
    height: 577px;
  }

  .feature-card__content {
    left: 32px;
    top: 32px;
    width: min(306px, calc(100% - 64px));
    transform: none;
  }

  .feature-card h3 {
    font-size: 32px;
    line-height: 1.4;
  }

  .feature-card p {
    margin-top: 16px;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 1.8;
  }

  .feature-card .ornament {
    margin-top: 16px;
  }

  .feature-card--save::before,
  .feature-card--save::after {
    display: none;
  }

  .feature-card--save .feature-card__content,
  .feature-card--cookbook .feature-card__content {
    left: 32px;
    top: 32px;
    width: min(306px, calc(100% - 64px));
    transform: none;
  }

  .feature-card--save .feature-card__shade,
  .feature-card--cookbook .feature-card__shade {
    z-index: 3;
    top: 357px;
    bottom: auto;
    height: 385px;
    background: linear-gradient(178deg, var(--surface) 5%, rgba(253, 250, 244, 0) 63%);
  }

  .feature-card--save .feature-card__image {
    content: url("./assets/save-anywhere-mobile.png");
    top: 357px;
    right: auto;
    left: -305px;
    width: 674px;
    transform: none;
  }

  .feature-card--chaos .feature-card__content {
    left: 32px;
    top: 32px;
    width: min(306px, calc(100% - 64px));
  }

  .feature-card--chaos .feature-card__image {
    top: 258px;
    bottom: auto;
    left: -106px;
    width: 1067px;
  }

  .feature-card--chef .feature-card__image {
    top: -429px;
    left: -36px;
    width: 374px;
  }

  .feature-card--chef .feature-card__content {
    top: 290px;
    bottom: auto;
    left: 32px;
    width: min(306px, calc(100% - 64px));
  }

  .feature-card--cookbook .feature-card__image {
    content: url("./assets/cookbook-mobile.png");
    top: 357px;
    right: auto;
    left: -280px;
    width: 674px;
    transform: none;
  }

  .motion {
    width: 100%;
    height: 1160px;
    margin: -192px auto 0;
    border-radius: 0;
    scroll-margin-top: 80px;
  }

  .motion__background {
    top: -35px;
    left: 50%;
    width: 2109px;
    height: 1582px;
    transform: translateX(-50%);
  }

  .motion-reveal-ready .motion__background {
    transform: translate3d(-50%, 54px, 0) scale(1.018);
  }

  .motion-reveal-ready .motion.is-visible .motion__background {
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .motion__ray--wide {
    top: -435px;
    left: -391px;
  }

  .motion__ray--narrow {
    top: -172px;
    left: -122px;
  }

  .motion__text {
    top: 280px;
    width: min(376px, calc(100vw - 26px));
  }

  .motion h2,
  .faq h2 {
    font-size: 40px;
    line-height: 1.4;
  }

  .motion__text p {
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 1.8;
  }

  .motion__phone {
    top: 632px;
    left: 50%;
    width: 420px;
    height: auto;
    transform: translateX(-50%) scale(0.75);
    transform-origin: top center;
  }

  .motion-reveal-ready .motion__phone {
    transform: translate3d(-50%, 104px, 0) scale(0.74);
  }

  .motion-reveal-ready .motion.is-visible .motion__phone {
    transform: translate3d(-50%, 0, 0) scale(0.75);
  }

  .motion__phone::after {
    display: none;
  }

  .faq {
    width: min(370px, calc(100vw - 32px));
    margin: 72px auto 56px;
  }

  .faq__header {
    width: 100%;
    margin-bottom: 32px;
  }

  .faq__list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item__question {
    padding: 18px;
  }

  .faq-item__question span {
    font-size: 22px;
  }

  .faq-item__answer {
    padding: 0 18px;
  }

  .faq-item.is-open .faq-item__answer {
    padding-bottom: 18px;
  }

  .faq-item__answer p {
    font-size: 16px;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    border-radius: 18px;
    text-align: center;
  }

  .join-section {
    width: calc(100vw - 24px);
    height: auto;
    min-height: 0;
    margin: 0 auto 18px;
    padding: 56px 20px 64px;
    border-radius: 44px;
  }

  .join-section__content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .join-section__copy h2 {
    font-size: 52px;
    line-height: 1.16;
  }

  .join-section__ornament {
    margin: 18px 0 26px;
  }

  .join-section__copy p {
    width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

  .join-section__form {
    width: 100%;
    margin-top: 28px;
  }

  .join-section__fields {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .join-section__fields input,
  .join-section__submit {
    width: 100%;
    min-width: 0;
  }

  .join-section__phones {
    display: none;
  }

  .site-footer {
    width: calc(100vw - 32px);
    margin-bottom: 28px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .site-footer__brand {
    width: 104px;
    height: 36px;
  }

  .site-footer__links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .legal-main {
    padding: 128px 0 58px;
  }

  .legal-hero,
  .legal-content {
    width: calc(100vw - 32px);
  }

  .legal-hero h1,
  .not-found-content h1 {
    font-size: 52px;
  }

  .legal-content {
    margin-top: 34px;
    padding: 34px 22px;
    border-radius: 28px;
  }

  .legal-section + .legal-section {
    margin-top: 30px;
    padding-top: 28px;
  }

  .legal-section h2 {
    font-size: 24px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .not-found-main {
    padding: 126px 20px 72px;
  }

  .not-found-content p {
    font-size: 16px;
  }

  .join-modal__content {
    top: 50%;
    width: calc(100vw - 40px);
    transform: translate(-50%, -50%);
  }

  .join-modal__copy h2 {
    font-size: 52px;
    line-height: 1.16;
  }

  .join-modal__copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .join-modal__form {
    width: 100%;
  }

  .join-modal__fields {
    width: min(460px, 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .join-modal__fields input,
  .join-modal__submit {
    width: 100%;
    min-width: 0;
  }

  .join-modal__phones {
    display: none;
  }

  .join-modal:not(.is-open) .join-modal__content {
    transform: translate(-50%, calc(-50% + 28px));
  }

  .join-modal.is-open .join-modal__content {
    animation: join-mobile-content-enter 700ms cubic-bezier(0.16, 1, 0.3, 1) 70ms both;
  }

  @keyframes join-mobile-content-enter {
    0% {
      opacity: 0;
      filter: blur(10px);
      transform: translate(-50%, calc(-50% + 28px));
    }

    100% {
      opacity: 1;
      filter: blur(0);
      transform: translate(-50%, -50%);
    }
  }
}
