@font-face {
  font-family: "Geist";
  src: url("/fonts/geist-variablefont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #171717;
  --muted: #68686d;
  --page: #f4f5f8;
  --surface: #fff;
  --line: #dfe1e7;
  --accent: #ff5a2f;
  --accent-dark: #bc3418;
  --radius: 36px;
  --container: 1320px;
}

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

body,
body * {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

body input,
body textarea,
body [contenteditable="true"] {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  user-select: text;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a, input, textarea, select { touch-action: manipulation; }

:where(button, a, summary, input, textarea, select):focus { outline: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: 112px 0; }

.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;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
}

.button--light { color: var(--ink); background: #fff; }
.button--accent { color: #fff; background: var(--accent); box-shadow: 0 14px 34px rgba(154, 35, 8, 0.28); }
.button--accent:hover { background: #ff6c45; }
.button--outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button--outline:hover { color: #fff; background: var(--ink); }
.button--dark-outline { color: #fff; border-color: rgba(255, 255, 255, 0.7); background: transparent; }
.button--dark-outline:hover { color: #000; background: #fff; }
.button--black { color: #fff; background: #171717; }
.button--black:hover { background: #333; }
.button:disabled { cursor: wait; opacity: 0.65; transform: none; }

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.header__inner {
  width: min(var(--container), calc(100% - 48px));
  min-height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

.brand img { width: 44px; height: 44px; filter: invert(1); }
.header__nav { display: flex; justify-content: center; gap: clamp(24px, 3vw, 48px); font-size: 15px; }
.header__nav a { opacity: 0.82; transition: opacity 180ms ease; }
.header__nav a:hover { opacity: 1; }
.header__button { min-height: 48px; padding-inline: 22px; }

.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 0 0 var(--radius) var(--radius);
}

.hero__image,
.hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center; }

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(41, 8, 3, 0.82) 0%, rgba(54, 9, 2, 0.62) 38%, rgba(41, 6, 0, 0.04) 70%),
    linear-gradient(0deg, rgba(20, 4, 1, 0.4) 0%, transparent 42%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-top: 118px;
  padding-bottom: 62px;
}

.eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
}

.eyebrow--light { color: var(--accent-dark); background: rgba(255, 255, 255, 0.94); }
.eyebrow__flame {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transform-origin: 50% 85%;
  animation: flame-flicker 1.8s ease-in-out infinite;
}

@keyframes flame-flicker {
  0%, 100% { transform: rotate(-2deg) scale(0.96); filter: saturate(0.95); }
  45% { transform: rotate(2deg) scale(1.08); filter: saturate(1.2); }
  70% { transform: rotate(-1deg) scale(1.02); filter: saturate(1.08); }
}

.hero h1 {
  max-width: 720px;
  margin: 26px 0 18px;
  font-size: clamp(60px, 5.35vw, 78px);
  font-weight: 580;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero__lead { max-width: 510px; margin: 0 0 32px; font-size: 20px; line-height: 1.4; }

.benefits { padding-top: 88px; padding-bottom: 96px; scroll-margin-top: 24px; }
.benefits h2 { margin: 0 0 56px; font-size: clamp(46px, 4.6vw, 64px); font-weight: 560; line-height: 1; letter-spacing: -0.05em; }
.benefits__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 46px); }

.benefit {
  min-height: 330px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px 22px 24px;
  text-align: center;
}

.benefit > img { width: 132px; height: 132px; margin-bottom: 22px; object-fit: contain; }
.benefit h3 { margin: 0 0 13px; font-size: 22px; font-weight: 590; line-height: 1.16; letter-spacing: -0.025em; }
.benefit p { max-width: 310px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.52; }

.steps { padding-top: 64px; padding-bottom: 112px; scroll-margin-top: 24px; }

.steps__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
}

.steps__visual { position: relative; min-height: 540px; display: grid; place-items: center; }

.steps__halo {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 96, 44, 0.27), rgba(255, 96, 44, 0) 68%);
  filter: blur(8px);
}

.steps__visual img { position: relative; width: min(100%, 420px); max-height: 540px; object-fit: contain; }

.steps__content h2,
.final h2,
.dialog h2 { margin: 0; font-weight: 560; letter-spacing: -0.055em; }

.steps__content h2 { font-size: clamp(48px, 4.6vw, 64px); line-height: 1.02; }
.section-lead { margin: 22px 0 34px; color: var(--muted); font-size: 18px; line-height: 1.45; }
.steps__list { display: grid; gap: 24px; padding: 0; margin: 0; list-style: none; }
.steps__list li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; }

.steps__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #242424;
  border-radius: 50%;
  font-size: 16px;
}

.steps__list h3 { margin: 1px 0 7px; font-size: 21px; font-weight: 600; line-height: 1.2; }
.steps__list p { max-width: 540px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }

.final {
  overflow: hidden;
  color: #fff;
  background: #050505;
  border-radius: var(--radius) var(--radius) 0 0;
}

.final__grid {
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 60px;
  padding-top: 104px;
  padding-bottom: 94px;
}

.final__content { position: relative; z-index: 2; }
.final h2 { font-size: clamp(62px, 6vw, 86px); line-height: 0.95; }
.final__items { display: grid; gap: 28px; margin: 48px 0 38px; }
.final__items article { max-width: 560px; }
.final__items h3 { margin: 0 0 8px; font-size: 19px; font-weight: 580; line-height: 1.25; }
.final__items p { margin: 0; color: rgba(255, 255, 255, 0.53); font-size: 15px; line-height: 1.48; }
.final__visual { position: relative; min-height: 680px; display: grid; place-items: center; }

.final__glow {
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 86, 32, 0.2), rgba(255, 86, 32, 0) 68%);
  filter: blur(20px);
}

.final__visual img {
  position: absolute;
  z-index: 1;
  bottom: -110px;
  width: min(82%, 520px);
  max-height: 820px;
  object-fit: contain;
  object-position: bottom;
  transform: rotate(6deg);
}

.footer { background: #fff; }

.footer__top {
  min-height: 168px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
}

.footer__brand { display: inline-flex; align-items: center; gap: 13px; justify-self: start; }
.footer__brand img { width: 48px; height: 48px; }
.footer__brand span { display: flex; flex-direction: column; }
.footer__brand strong { font-size: 15px; font-weight: 600; }
.footer__brand small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.footer__nav { display: flex; align-items: center; gap: 34px; font-size: 14px; }
.footer__link { padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.footer__top > .button { justify-self: end; }

.dialog {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 26px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.dialog::backdrop { background: rgba(0, 0, 0, 0.68); backdrop-filter: blur(10px); }
.dialog__panel { position: relative; padding: 48px; }

.dialog__close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #f0f1f4;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.dialog h2 { padding-right: 36px; font-size: clamp(38px, 6vw, 52px); line-height: 1.02; }
.dialog__content > p { margin: 16px 0 30px; color: var(--muted); font-size: 17px; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; font-size: 14px; font-weight: 550; }

.field input {
  width: 100%;
  height: 58px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #f8f8fa;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.field input::placeholder {
  color: #7d7d82;
  font-weight: 400;
  opacity: 1;
}

.field input:focus { border-color: var(--ink); background: #fff; }

.check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: #747479;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.45;
}

.check input { width: 18px; height: 18px; margin: 0; accent-color: #7d7d82; }
.check a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.form__submit { width: 100%; margin-top: 4px; }
.form__error { margin: 0; color: #c52f18; font-size: 13px; line-height: 1.4; }
.dialog__success { min-height: 250px; align-content: center; text-align: center; }
.dialog__success:not([hidden]) { display: grid; }
.dialog__success strong { font-size: 40px; letter-spacing: -0.04em; }
.dialog__success p { margin: 12px auto 0; color: var(--muted); line-height: 1.5; }

.privacy-dialog {
  width: min(760px, calc(100% - 48px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 90px rgba(13, 15, 19, 0.3);
}

.privacy-dialog::backdrop {
  background: rgba(15, 17, 25, 0.82);
  backdrop-filter: blur(7px) grayscale(1);
}

.privacy-dialog__panel {
  width: 100%;
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 34px;
}

.privacy-dialog h2 {
  margin: 0 52px 22px 0;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.privacy-dialog__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #f1f2f4;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.privacy-dialog__close:hover {
  background: #e5e7ea;
  transform: rotate(7deg);
}

.privacy-dialog__close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.privacy-dialog__scroll {
  min-height: 0;
  overflow: auto;
  padding-right: 14px;
  color: #555a63;
  overscroll-behavior: contain;
  scrollbar-color: #c8c2be transparent;
  scrollbar-width: thin;
}

.privacy-content[hidden] { display: none; }
.privacy-content h3 { margin: 24px 0 9px; color: var(--ink); font-size: 17px; font-weight: 650; line-height: 1.3; }
.privacy-content h3:first-child { margin-top: 0; }
.privacy-content p { margin: 0 0 13px; font-size: 14px; line-height: 1.55; }
.privacy-content a { color: var(--accent-dark); }
.privacy-version { color: #8b8b90; }

.privacy-dialog__confirm {
  min-height: 50px;
  margin-top: 22px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .header__nav { display: none; }
  .header__inner { grid-template-columns: 1fr auto; }
  .benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps__grid { grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1.22fr); gap: 42px; }
  .steps__visual { min-height: 500px; }
  .footer__top { grid-template-columns: 1fr auto; }
  .footer__nav { display: none; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  :root { --radius: 32px; }
  .container, .header__inner { width: min(100% - 40px, var(--container)); }
  .section { padding: 88px 0; }
  .header__inner { min-height: 80px; }
  .hero__content { padding-top: 100px; padding-bottom: 48px; }
  .hero h1 { max-width: 650px; margin: 22px 0 16px; font-size: clamp(54px, 7.2vw, 72px); }
  .hero__lead { margin-bottom: 28px; font-size: 18px; }
  .benefits { padding-top: 76px; padding-bottom: 84px; }
  .benefits h2 { margin-bottom: 46px; font-size: clamp(44px, 5.8vw, 58px); }
  .benefits__grid { gap: 28px; }
  .benefit { min-height: 300px; padding-inline: 18px; }
  .benefit:last-child:nth-child(odd) { width: calc((100% - 28px) / 2); grid-column: 1 / -1; justify-self: center; }
  .steps { padding-top: 48px; padding-bottom: 88px; }
  .steps__grid { grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr); gap: 32px; }
  .steps__visual { min-height: 440px; }
  .steps__visual img { width: min(100%, 360px); max-height: 450px; }
  .steps__content h2 { font-size: clamp(44px, 5.8vw, 58px); }
  .section-lead { margin: 18px 0 28px; font-size: 17px; }
  .steps__list { gap: 20px; }
  .steps__list h3 { font-size: 19px; }
  .final__grid {
    min-height: 720px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 36px;
    padding-top: 82px;
    padding-bottom: 72px;
  }
  .final h2 { font-size: clamp(58px, 7.5vw, 76px); }
  .final__items { gap: 24px; margin: 38px 0 32px; }
  .final__visual { min-height: 560px; }
  .final__visual img { width: min(88%, 430px); }
  .footer__top { min-height: 140px; gap: 28px; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .steps__grid { display: flex; flex-direction: column; gap: 34px; }
  .steps__visual { order: 2; width: 100%; min-height: 400px; }
  .steps__visual img { width: min(70%, 350px); max-height: 420px; }
  .final__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 80px;
    padding-bottom: 0;
  }
  .final__visual { min-height: 560px; overflow: hidden; }
  .final__visual img { bottom: -110px; width: min(64%, 420px); }
}

@media (max-width: 760px) {
  :root { --radius: 28px; }
  html { scroll-padding-top: 16px; }
  .container, .header__inner { width: min(100% - 28px, var(--container)); }
  .section { padding: 76px 0; }
  .button { min-height: 52px; border-radius: 14px; }
  .header__inner { min-height: 76px; }
  .brand span { display: none; }
  .brand img { width: 40px; height: 40px; }
  .header__button { min-height: 44px; padding-inline: 16px; font-size: 14px; }
  .hero, .hero__content { height: 100vh; min-height: 100vh; height: 100dvh; min-height: 100dvh; }
  .hero__image { object-position: 65% center; }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(47, 7, 1, 0.83) 0%, rgba(51, 8, 1, 0.48) 72%, rgba(25, 4, 0, 0.14) 100%),
      linear-gradient(0deg, rgba(19, 3, 0, 0.66) 0%, transparent 55%);
  }

  .hero__content { justify-content: flex-end; padding-top: 110px; padding-bottom: 52px; }
  .hero h1 { margin: 20px 0 16px; font-size: clamp(45px, 13vw, 58px); line-height: 0.98; }
  .hero__lead { max-width: 320px; margin-bottom: 26px; font-size: 17px; }
  .benefits { padding-top: 68px; padding-bottom: 78px; scroll-margin-top: 16px; }
  .benefits h2 { margin-bottom: 48px; font-size: clamp(42px, 12vw, 54px); }
  .benefits__grid { grid-template-columns: 1fr; gap: 38px; }
  .benefit { min-height: auto; padding: 0 12px; }
  .benefit > img { width: 118px; height: 118px; margin-bottom: 18px; }
  .benefit h3 { font-size: 21px; }
  .benefit p { max-width: 470px; font-size: 16px; }
  .steps { padding-top: 38px; padding-bottom: 78px; scroll-margin-top: 16px; }
  .steps__grid { display: flex; flex-direction: column; gap: 34px; }
  .steps__visual { order: 2; width: 100%; min-height: 330px; }
  .steps__visual img { width: min(82%, 320px); max-height: 350px; }
  .steps__content h2 { font-size: clamp(42px, 12vw, 56px); }
  .section-lead { margin: 20px 0 34px; font-size: 16px; }
  .steps__list { gap: 26px; }
  .steps__list li { grid-template-columns: 38px 1fr; gap: 14px; }
  .steps__number { width: 38px; height: 38px; }
  .steps__list h3 { font-size: 18px; }
  .steps__list p { font-size: 16px; }
  .final__grid { min-height: auto; display: flex; flex-direction: column; align-items: stretch; gap: 24px; padding-top: 76px; padding-bottom: 0; }
  .final h2 { font-size: clamp(58px, 16vw, 76px); }
  .final__items { margin: 40px 0 32px; }
  .final__visual { min-height: 500px; overflow: hidden; }
  .final__visual img { bottom: -120px; width: min(84%, 390px); max-height: 650px; }
  .footer__top { min-height: auto; display: flex; align-items: stretch; flex-direction: column; padding-top: 42px; padding-bottom: 34px; }
  .footer__top > .button { width: 100%; }
  .dialog__panel { padding: 46px 22px 26px; }
  .dialog h2 { font-size: 38px; }
  .dialog__content > p { margin-bottom: 24px; font-size: 15px; }
  .field input { font-size: 16px; }
  .privacy-dialog { width: calc(100% - 24px); max-height: calc(100dvh - 24px); border-radius: 17px; }
  .privacy-dialog__panel { max-height: calc(100dvh - 24px); padding: 26px 18px 18px; }
  .privacy-dialog h2 { margin: 3px 46px 19px 0; font-size: 25px; }
  .privacy-dialog__close { top: 17px; right: 17px; }
  .privacy-dialog__scroll { padding-right: 8px; }
  .privacy-content p { font-size: 13px; }
}

@media (max-height: 500px) and (orientation: landscape) and (max-width: 1000px) {
  :root { --radius: 24px; }
  .container, .header__inner { width: min(100% - 32px, var(--container)); }
  .section { padding: 56px 0; }
  .header__inner { min-height: 60px; }
  .brand span { display: none; }
  .brand img { width: 34px; height: 34px; }
  .header__button { min-height: 38px; padding-inline: 14px; border-radius: 12px; font-size: 13px; }
  .hero, .hero__content { height: 100svh; min-height: 100svh; }
  .hero__image { object-position: 68% center; }
  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(41, 8, 3, 0.88) 0%, rgba(54, 9, 2, 0.68) 43%, rgba(41, 6, 0, 0.08) 73%),
      linear-gradient(0deg, rgba(20, 4, 1, 0.42) 0%, transparent 42%);
  }
  .hero__content { justify-content: center; padding-top: 66px; padding-bottom: 20px; }
  .eyebrow { min-height: 26px; padding-inline: 10px; font-size: 12px; }
  .eyebrow__flame { width: 16px; height: 16px; }
  .hero h1 { max-width: 520px; margin: 12px 0 9px; font-size: clamp(34px, 6.5vw, 52px); line-height: 0.96; }
  .hero__lead { max-width: 390px; margin-bottom: 14px; font-size: 14px; line-height: 1.25; }
  .hero .button { min-height: 40px; padding-inline: 18px; border-radius: 12px; font-size: 14px; }
  .dialog { width: min(620px, calc(100% - 24px)); max-height: calc(100svh - 16px); }
  .dialog__panel { padding: 28px 30px 22px; }
  .dialog__close { top: 10px; right: 10px; width: 38px; height: 38px; }
  .dialog h2 { font-size: 32px; }
  .dialog__content > p { margin: 8px 0 16px; font-size: 14px; }
  .form { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 14px; }
  .field input { height: 50px; font-size: 16px; }
  .check, .form__error, .form__submit { grid-column: 1 / -1; }
  .check { font-size: 12px; }
  .form__submit { min-height: 46px; }
  .privacy-dialog, .privacy-dialog__panel { max-height: calc(100svh - 16px); }
  .privacy-dialog__panel { padding: 22px 26px 18px; }
  .privacy-dialog h2 { margin-bottom: 14px; font-size: 24px; }
  .privacy-dialog__confirm { min-height: 44px; margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .eyebrow__flame { animation: none; }
}
