:root {
  --paper: #faf9f6;
  --paper-bright: #fffefd;
  --white: #ffffff;
  --ink: #252323;
  --muted: #68696c;
  --faint: #8b8c8f;
  --blue: #bed6ea;
  --blue-strong: #6f9fc7;
  --mint: #e7f2ed;
  --lilac: #eeebf1;
  --line: rgba(37, 35, 35, 0.16);
  --line-strong: rgba(37, 35, 35, 0.28);
  --radius: 48px;
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --shell: min(calc(100% - 48px), 1380px);
  --shadow: 0 30px 80px rgba(43, 54, 66, 0.16), 0 8px 24px rgba(43, 54, 66, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-bottom: 28px;
  background: var(--paper);
  border-radius: 0 0 44px 44px;
}

img,
svg {
  display: block;
}

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

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.9);
  border-bottom: 1px solid rgba(37, 35, 35, 0.07);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
}

.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-mark img {
  object-fit: cover;
}

.brand-mark path,
.brand-mark rect,
.thought-line path,
.faq-line path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a,
.footer-nav a,
.text-link {
  transition: opacity 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.text-link:hover {
  opacity: 0.58;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 26px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 560;
  line-height: 1;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue-strong);
  outline-offset: 4px;
}

.button-small {
  justify-self: end;
  min-height: 44px;
  padding-inline: 22px;
  font-size: 14px;
}

.app-store-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
  font-weight: 520;
}

.text-link svg,
.process-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.text-link:hover svg,
.process-link:hover svg {
  transform: translateX(4px);
}

.hero {
  min-height: 1030px;
  padding: 58px 0 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h1 {
  max-width: 1240px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(70px, 6.8vw, 100px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.057em;
}

.hero-intro {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.stars {
  color: var(--ink);
  letter-spacing: 2px;
  font-size: 14px;
}

.hero-media {
  position: relative;
  width: min(100%, 1040px);
  min-height: 635px;
  margin-top: 12px;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4% 4% -14%;
  background:
    radial-gradient(circle at 26% 54%, rgba(231, 242, 237, 0.96), transparent 42%),
    radial-gradient(circle at 74% 48%, rgba(238, 235, 241, 0.98), transparent 40%),
    radial-gradient(circle at 51% 58%, rgba(190, 214, 234, 0.92), transparent 48%);
  filter: blur(18px);
  border-radius: 50%;
}

.thought-line {
  position: absolute;
  z-index: -1;
  left: 5%;
  top: 16%;
  width: 90%;
  color: rgba(111, 159, 199, 0.52);
}

.phone {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  background: #f4f5f9;
  border: 6px solid #1c1c1d;
  border-radius: 46px;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-main {
  position: absolute;
  top: 20px;
  left: 22%;
  width: 282px;
  height: auto;
  transform: rotate(-4deg);
}

.phone-secondary {
  position: absolute;
  top: 20px;
  right: 21%;
  width: 282px;
  height: auto;
  transform: rotate(4deg);
}

.focus-band {
  width: var(--shell);
  margin: 0 auto 34px;
  padding: 72px 0;
  background: var(--mint);
  border-radius: var(--radius);
}

.focus-inner {
  width: min(calc(100% - 80px), 1100px);
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 80px;
}

.focus-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.focus-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.section {
  padding: 118px 0;
}

.section-heading h2,
.privacy-copy h2,
.insights-copy h2,
.faq-heading h2,
.closing-copy h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(58px, 6.1vw, 88px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.section-heading p,
.privacy-copy > p:not(.answer-capsule):not(.source-note):not(.section-kicker),
.insights-copy > p:not(.section-kicker),
.faq-heading > p:not(.section-kicker),
.closing-copy > p {
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.section-kicker {
  margin-bottom: 22px;
  color: #547c70;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.wide-heading {
  max-width: 1020px;
  margin: 0 auto 58px;
  text-align: center;
}

.wide-heading p {
  max-width: 650px;
  margin-inline: auto;
}

.workflow-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(500px, 1fr);
  align-items: center;
  gap: clamp(58px, 7vw, 104px);
  overflow: hidden;
  padding: 52px clamp(56px, 7vw, 100px) 0;
  background: var(--lilac);
  border-radius: var(--radius);
}

.workflow-screen {
  align-self: end;
  justify-self: center;
  width: min(100%, 340px);
  height: auto;
  overflow: hidden;
  background: #f4f5f9;
  border: 7px solid #1c1c1d;
  border-bottom: 0;
  border-radius: 46px 46px 0 0;
  box-shadow: var(--shadow);
}

.workflow-details {
  align-self: center;
  min-width: 0;
}

.workflow-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 64px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:first-child {
  padding-top: 0;
}

.steps li:last-child {
  border-bottom: 0;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
}

.step-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-icon-blue {
  background: rgba(190, 214, 234, 0.86);
}

.step-icon-mint {
  background: rgba(231, 242, 237, 0.94);
}

.step-icon-lilac {
  background: rgba(255, 255, 255, 0.62);
}

.steps h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.process-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  margin-top: 0;
  padding: 22px 0 40px;
  border-top: 1px solid var(--line-strong);
  font-size: 16px;
  font-weight: 520;
  white-space: nowrap;
}

.process-rule {
  width: 100%;
  height: 1px;
  background: var(--line-strong);
}

.privacy {
  padding-top: 70px;
  padding-bottom: 24px;
}

.privacy-grid,
.insights-grid {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 80px;
  padding: 52px clamp(54px, 7vw, 108px) 0;
  background: var(--mint);
}

.privacy-copy {
  max-width: 680px;
  align-self: center;
  padding-bottom: 42px;
}

.answer-capsule {
  max-width: 650px;
  margin-bottom: 26px;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.privacy-copy .text-link {
  margin-top: 12px;
}

.source-note {
  margin: 34px 0 0;
  color: var(--faint);
  font-size: 12px;
}

.privacy-phone {
  align-self: end;
  justify-self: center;
  width: 330px;
  height: auto;
  border-bottom: 0;
  border-radius: 46px 46px 0 0;
  transform: translateY(82px);
}

.insights {
  padding-top: 24px;
  padding-bottom: 70px;
}

.insights-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.75fr) minmax(470px, 1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
  padding: 52px clamp(54px, 7vw, 108px) 0;
  background: var(--blue);
}

.insights-phone {
  align-self: end;
  justify-self: center;
  width: 300px;
  height: auto;
  border-bottom: 0;
  border-radius: 46px 46px 0 0;
  transform: translateY(78px);
}

.insights-copy {
  max-width: 680px;
  padding-bottom: 42px;
}

.insights-copy .section-kicker {
  color: #3e6f93;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.35;
}

.feature-list svg {
  width: 34px;
  height: 34px;
  padding: 6px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 50%;
}

.faq {
  padding-top: 72px;
  padding-bottom: 90px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(70px, 10vw, 150px);
  padding: clamp(54px, 5vw, 74px);
  background: var(--paper-bright);
  border: 1px solid rgba(37, 35, 35, 0.06);
  border-radius: var(--radius);
}

.faq-heading {
  position: relative;
}

.faq-heading .section-kicker {
  color: var(--muted);
}

.faq-heading > p:not(.section-kicker) {
  max-width: 330px;
}

.faq-line {
  width: min(100%, 330px);
  margin-top: 34px;
  color: var(--blue-strong);
}

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

.accordion details {
  overflow: hidden;
  border: 1px solid rgba(37, 35, 35, 0.13);
  border-radius: 12px;
}

.accordion summary {
  position: relative;
  list-style: none;
  padding: 18px 52px 18px 24px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 720px;
  margin: -2px 56px 20px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.closing {
  position: relative;
  width: var(--shell);
  margin-inline: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 0%, rgba(190, 214, 234, 0.82), transparent 42%),
    radial-gradient(circle at 25% 100%, rgba(255, 255, 255, 0.94), transparent 38%),
    var(--lilac);
  border-radius: var(--radius);
}

.closing-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.closing-phone {
  order: 2;
  align-self: end;
  justify-self: center;
  width: 310px;
  height: auto;
  border-bottom: 0;
  border-radius: 46px 46px 0 0;
  transform: translateY(74px) rotate(2deg);
}

.closing-copy {
  order: 1;
  padding: 70px 0 70px 70px;
}

.closing-copy h2 {
  max-width: 620px;
  font-size: clamp(52px, 5vw, 76px);
}

.closing-copy > p {
  margin-bottom: 30px;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: -44px;
  overflow: hidden;
  padding: 118px 0 0;
  color: rgba(247, 246, 242, 0.92);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.1fr;
  align-items: start;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand .brand-mark {
  color: var(--paper);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 28px;
  color: rgba(247, 246, 242, 0.64);
  font-size: 13px;
}

.footer-legal {
  color: rgba(247, 246, 242, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

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

@media (max-width: 1120px) {
  .hero {
    min-height: 950px;
  }

  .phone-main {
    left: 20%;
    width: 260px;
    height: auto;
  }

  .phone-secondary {
    right: 19%;
    width: 260px;
    height: auto;
  }

  .workflow-grid,
  .privacy-grid,
  .insights-grid {
    gap: 58px;
    padding-inline: 56px;
  }

  .faq-grid {
    gap: 70px;
  }
}

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

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

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 900px;
    padding-top: 48px;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(66px, 10vw, 88px);
  }

  .hero-media {
    min-height: 590px;
  }

  .phone-main {
    left: 17%;
    width: 250px;
    height: auto;
  }

  .phone-secondary {
    right: 16%;
    width: 250px;
    height: auto;
  }

  .focus-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-grid,
  .privacy-grid,
  .insights-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    padding-top: 64px;
  }

  .workflow-screen {
    order: 2;
    width: min(100%, 330px);
    height: auto;
  }

  .workflow-details {
    order: 1;
  }

  .steps {
    padding-bottom: 0;
  }

  .privacy-grid,
  .insights-grid {
    gap: 34px;
    padding-top: 68px;
  }

  .privacy-copy,
  .insights-copy {
    padding-bottom: 10px;
  }

  .privacy-phone,
  .insights-phone {
    width: 300px;
    height: auto;
  }

  .insights-phone {
    order: 2;
  }

  .insights-copy {
    order: 1;
  }

  .faq-grid {
    gap: 38px;
  }

  .faq-line {
    display: none;
  }

  .closing-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
  }

  .closing-phone {
    width: 260px;
    height: auto;
  }

  .closing-copy {
    padding: 60px 0 60px 30px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(calc(100% - 24px), 560px);
    --radius: 28px;
  }

  main {
    padding-bottom: 12px;
    border-radius: 0 0 28px 28px;
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    gap: 7px;
    font-size: 17px;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 810px;
    padding-top: 44px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(52px, 15vw, 68px);
    line-height: 0.91;
  }

  .hero-intro {
    font-size: 17px;
  }

  .app-store-button {
    width: 100%;
    max-width: 320px;
  }

  .rating {
    flex-direction: column;
    gap: 6px;
  }

  .hero-media {
    width: calc(100% + 24px);
    min-height: 490px;
    margin-top: 18px;
  }

  .phone {
    border-width: 5px;
    border-radius: 32px;
  }

  .phone-main {
    top: 32px;
    left: 2%;
    width: 196px;
    height: auto;
  }

  .phone-secondary {
    top: 32px;
    right: 2%;
    width: 196px;
    height: auto;
  }

  .thought-line {
    left: -20%;
    width: 140%;
  }

  .focus-band {
    margin-bottom: 10px;
    padding: 48px 0;
  }

  .focus-inner {
    width: calc(100% - 48px);
  }

  .focus-inner h2 {
    font-size: 44px;
  }

  .focus-inner p {
    font-size: 16px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .privacy-copy h2,
  .insights-copy h2,
  .faq-heading h2,
  .closing-copy h2 {
    font-size: 51px;
  }

  .wide-heading {
    margin-bottom: 36px;
  }

  .workflow-grid,
  .privacy-grid,
  .insights-grid {
    min-height: 0;
    padding: 44px 22px 0;
  }

  .workflow-grid {
    gap: 32px;
  }

  .workflow-screen {
    width: min(100%, 260px);
    height: auto;
    border-width: 5px;
    border-bottom: 0;
    border-radius: 34px 34px 0 0;
  }

  .steps li {
    grid-template-columns: 36px 52px minmax(0, 1fr);
    gap: 12px;
    padding: 24px 0;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .step-icon svg {
    width: 26px;
    height: 26px;
  }

  .steps h3 {
    font-size: 27px;
  }

  .steps p {
    font-size: 15px;
  }

  .process-link {
    margin-top: 0;
    padding: 20px 0 30px;
    gap: 10px;
    font-size: 13px;
  }

  .privacy {
    padding-top: 54px;
  }

  .privacy-grid,
  .insights-grid {
    gap: 26px;
  }

  .privacy-copy,
  .insights-copy {
    padding-bottom: 0;
  }

  .answer-capsule {
    font-size: 22px;
  }

  .privacy-phone,
  .insights-phone {
    width: min(270px, 84vw);
    height: auto;
    border-bottom: 0;
    border-radius: 34px 34px 0 0;
    transform: translateY(52px);
  }

  .insights {
    padding-bottom: 54px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .feature-list li {
    padding: 18px 0;
  }

  .faq {
    padding: 64px 0;
  }

  .faq-grid {
    padding: 40px 22px;
  }

  .accordion summary {
    padding: 17px 42px 17px 18px;
    font-size: 22px;
  }

  .accordion summary::before,
  .accordion summary::after {
    right: 18px;
  }

  .accordion details p {
    margin: -2px 38px 18px 18px;
  }

  .closing-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .closing-copy {
    order: 1;
    padding: 56px 24px 0;
  }

  .closing-phone {
    order: 2;
    width: 210px;
    height: auto;
    margin-top: 34px;
    transform: translateY(54px) rotate(-2deg);
  }

  .site-footer {
    margin-top: -28px;
    padding-top: 92px;
  }

  .footer-grid {
    padding-bottom: 48px;
  }

  .footer-brand {
    font-size: 20px;
  }

  .footer-nav {
    gap: 14px 22px;
  }

}

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

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