:root {
  --ink: #0b0e12;
  --ink-soft: #12161c;
  --paper: #ffffff;
  --text: #f8f8f6;
  --text-dark: #111319;
  --muted: #b6aedf;
  --muted-dark: #5f5b78;
  --coral: #ff573f;
  --coral-hover: #ff6b55;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(17, 19, 25, 0.14);
  --container: 1440px;
  --gutter: clamp(22px, 4.2vw, 72px);
  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: var(--paper);
  color: var(--text-dark);
  font-weight: 700;
}

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

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-light {
  background: var(--paper);
  color: var(--text-dark);
}

.section-dark {
  background: var(--ink);
  color: var(--text);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-weight: 900;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(44px, 5.1vw, 78px);
  line-height: 0.98;
}

.hero {
  position: relative;
  min-height: min(1024px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--text);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(100%, var(--container));
  min-height: 88px;
  margin-inline: auto;
  padding: 26px var(--gutter) 18px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  margin-left: clamp(80px, 11vw, 190px);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  font-size: 17px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--coral);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--text);
}

.menu-toggle svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, var(--container));
  min-height: calc(min(1024px, 100svh) - 88px);
  margin-inline: auto;
  padding-inline: var(--gutter);
  grid-template-columns: minmax(0, 1.28fr) minmax(400px, 0.72fr);
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  max-width: 930px;
  padding: clamp(72px, 10vh, 110px) 0 100px;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy h1 {
  max-width: 920px;
  margin-bottom: 30px;
  font-size: clamp(52px, 4.5vw, 74px);
  line-height: 1.01;
}

.hero-lead {
  max-width: 730px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.35;
}

.cta {
  display: inline-flex;
  min-height: 88px;
  padding: 0 38px;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 20px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.cta svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cta-primary {
  width: min(100%, 510px);
  background: var(--coral);
  color: #fff;
}

.cta-primary:hover,
.cta-primary:focus-visible {
  background: var(--coral-hover);
  transform: translateY(-2px);
}

.hero-proof {
  position: relative;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.hero-proof::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 90px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.hero-media {
  position: absolute;
  z-index: 1;
  top: 88px;
  right: max(0px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  width: min(52vw, 820px);
  margin: 0;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 34%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 18%;
}

.motion-lines {
  position: absolute;
  pointer-events: none;
}

.motion-lines::before,
.motion-lines::after {
  position: absolute;
  border: 1px solid rgba(255, 87, 63, 0.25);
  border-radius: 50%;
  content: "";
}

.motion-lines-hero {
  z-index: 3;
  top: 14%;
  left: -28%;
  width: 70%;
  height: 58%;
}

.motion-lines-hero::before {
  inset: 0;
  transform: rotate(22deg);
}

.motion-lines-hero::after {
  inset: 9% -8% -9% 8%;
  transform: rotate(22deg);
}

.hero-next {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: -48px;
  left: 0;
  height: 92px;
  border-radius: 48px 48px 0 0;
  background: var(--paper);
}

.process {
  padding: clamp(110px, 10vw, 158px) 0 0;
}

.process h2 {
  margin-bottom: 70px;
}

.step-rail {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 5vw, 86px);
  list-style: none;
}

.step-rail::before {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
}

.step-rail li {
  position: relative;
  padding-top: 90px;
}

.step-number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  width: 62px;
  height: 62px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  background: var(--paper);
  color: var(--coral);
  font-size: 23px;
  font-weight: 800;
  place-items: center;
}

.step-rail h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.2;
}

.step-rail p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 18px;
}

.process-detail {
  display: grid;
  margin-top: 74px;
  padding-bottom: 112px;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: center;
}

.phone-demo {
  position: relative;
  padding: 18px;
  border: 2px solid #262a31;
  border-radius: 38px;
  background: #050607;
  box-shadow: 0 28px 70px rgba(11, 14, 18, 0.18);
}

.phone-demo::before {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d222a;
  content: "";
}

.phone-screen {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink-soft);
}

.phone-screen > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  opacity: 0.78;
}

.phone-screen::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a0d11 0%, #0a0d11 26%, transparent 65%);
  content: "";
}

.annotation-list {
  position: absolute;
  z-index: 3;
  top: 44px;
  left: 28px;
  display: grid;
  gap: 31px;
  color: #f2f2ef;
  font-size: 15px;
}

.annotation-list span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.annotation-list b {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  font-size: 12px;
  place-items: center;
}

.video-controls {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.video-controls svg {
  width: 24px;
  fill: #fff;
}

.video-controls i {
  position: relative;
  display: block;
  height: 3px;
  flex: 1;
  background: rgba(255, 255, 255, 0.22);
}

.video-controls em {
  position: absolute;
  inset: 0 auto 0 0;
  width: 32%;
  background: var(--coral);
}

.deliverables h3 {
  margin-bottom: 25px;
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 1.1;
}

.deliverables ul,
.offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverables li {
  position: relative;
  padding: 20px 0 20px 50px;
  border-bottom: 1px solid var(--line-light);
  font-size: 18px;
}

.deliverables li::before,
.offer-list li::before {
  position: absolute;
  border: 1.5px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  content: "✓";
  text-align: center;
}

.deliverables li::before {
  top: 17px;
  left: 0;
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 28px;
}

.results {
  position: relative;
  padding: clamp(104px, 10vw, 154px) 0 92px;
  overflow: hidden;
}

.results::after {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 87, 63, 0.18);
  border-radius: 50%;
  content: "";
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
}

.case-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.case-item {
  margin: 0;
}

.case-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #050607;
}

.case-media::before,
.case-media::after {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-color: rgba(255, 255, 255, 0.65);
  content: "";
  pointer-events: none;
}

.case-media::before {
  top: 13px;
  left: 13px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.case-media::after {
  right: 13px;
  bottom: 13px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  transition: transform 320ms ease;
}

.case-item:hover .case-media img {
  transform: scale(1.015);
}

.case-media span {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 14px;
  padding: 3px 6px;
  background: rgba(11, 14, 18, 0.74);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.case-item figcaption {
  min-height: 84px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 2px solid var(--coral);
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.case-item figcaption strong {
  color: var(--coral);
  font-size: 22px;
}

.results-note {
  position: relative;
  z-index: 2;
  margin: 38px 0 0;
  color: rgba(182, 174, 223, 0.78);
  font-size: 14px;
}

.authority {
  position: relative;
  overflow: hidden;
}

.authority-inner {
  position: relative;
  padding-top: clamp(90px, 8vw, 126px);
  padding-bottom: clamp(100px, 8vw, 130px);
}

.authority h2 {
  margin-bottom: 58px;
}

.authority-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.authority-grid div {
  position: relative;
  min-height: 105px;
  padding: 5px 34px 5px 44px;
  border-right: 1px solid var(--line-light);
}

.authority-grid div:first-child {
  padding-left: 0;
}

.authority-grid div:last-child {
  border-right: 0;
}

.authority-grid div::before {
  position: absolute;
  top: 13px;
  left: 16px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.authority-grid div:first-child::before {
  left: 0;
  transform: translateX(-24px);
}

.authority-grid dt {
  margin-bottom: 3px;
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 800;
  line-height: 1.2;
}

.authority-grid dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.motion-lines-authority {
  top: -170px;
  right: -80px;
  width: 710px;
  height: 390px;
}

.motion-lines-authority::before,
.motion-lines-authority::after {
  border-color: rgba(255, 87, 63, 0.25);
}

.motion-lines-authority::before {
  inset: 0;
  transform: rotate(8deg);
}

.motion-lines-authority::after {
  inset: 12% -10% -12% 10%;
  transform: rotate(8deg);
}

.offer {
  position: relative;
  padding: clamp(76px, 6.5vw, 100px) 0;
  overflow: hidden;
}

.offer::before {
  position: absolute;
  top: -100px;
  left: 35%;
  width: 700px;
  height: 500px;
  border: 1px solid rgba(255, 87, 63, 0.22);
  border-radius: 50%;
  content: "";
  transform: rotate(24deg);
}

.offer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(58px, 9vw, 144px);
  align-items: center;
}

.offer h2 {
  margin-bottom: 20px;
  font-size: clamp(50px, 4.6vw, 70px);
}

.offer-subtitle {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(23px, 2.1vw, 32px);
}

.offer-list {
  display: grid;
  gap: 12px;
}

.offer-list li {
  position: relative;
  padding-left: 45px;
  font-size: 18px;
}

.offer-list li::before {
  top: -1px;
  left: 0;
  width: 28px;
  height: 28px;
  font-size: 15px;
  line-height: 26px;
}

.price-frame {
  padding: clamp(36px, 4vw, 56px);
  border: 2px solid var(--coral);
  border-radius: 22px;
  background: rgba(11, 14, 18, 0.74);
}

.price {
  margin-bottom: 32px;
  font-size: clamp(62px, 6vw, 92px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.price-frame .cta {
  width: 100%;
}

.price-frame > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.faq {
  padding: clamp(80px, 7vw, 110px) 0 70px;
}

.faq h2 {
  margin-bottom: 32px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 74px;
  padding: 19px 54px 19px 0;
  align-items: center;
  cursor: pointer;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 800;
  list-style: none;
}

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

.faq-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--text-dark);
  content: "";
}

.faq-icon::before {
  left: 0;
  transform: rotate(40deg);
}

.faq-icon::after {
  right: 0;
  transform: rotate(-40deg);
}

.faq-list details[open] .faq-icon {
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
  max-width: 980px;
  margin: -4px 0 24px;
  color: var(--muted-dark);
  font-size: 17px;
}

.site-footer {
  background: var(--ink);
  color: var(--text);
}

.footer-inner {
  display: grid;
  min-height: 128px;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
}

.footer-inner p {
  display: flex;
  margin: 0;
  align-items: baseline;
  gap: 14px;
}

.footer-inner strong {
  font-size: 25px;
  letter-spacing: 0.03em;
}

.footer-inner p span,
.footer-inner small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-inner nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 15px;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--coral);
}

:focus-visible {
  outline: 3px solid var(--muted);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  }

  .hero-copy h1 {
    font-size: clamp(48px, 5.8vw, 68px);
  }

  .hero-media {
    width: 50vw;
  }

  .site-nav {
    margin-left: auto;
    gap: 26px;
  }

  .step-rail {
    gap: 28px;
  }

  .process-detail {
    grid-template-columns: 1fr;
  }

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

  .deliverables li {
    padding-right: 20px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority-grid div {
    min-height: 130px;
    border-bottom: 1px solid var(--line-light);
  }

  .authority-grid div:nth-child(2) {
    border-right: 0;
  }

  .authority-grid div:nth-child(n + 3) {
    padding-top: 30px;
    border-bottom: 0;
  }

  .authority-grid div:nth-child(3)::before,
  .authority-grid div:nth-child(4)::before {
    top: 38px;
  }

  .offer-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
  }

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

  .footer-inner small {
    grid-column: 1 / -1;
    padding-bottom: 24px;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 72px;
    padding-block: 14px;
  }

  .brand {
    font-size: 25px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    margin: 0;
    padding: 18px 20px;
    gap: 6px;
    border: 1px solid var(--line-dark);
    background: rgba(11, 14, 18, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 11px 4px;
  }

  .hero {
    min-height: 980px;
  }

  .hero-grid {
    display: block;
    min-height: 908px;
    padding-inline: 0;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: none;
    padding: 54px var(--gutter) 36px;
  }

  .hero-copy h1 {
    max-width: 650px;
    margin-bottom: 22px;
    font-size: clamp(42px, 11.6vw, 62px);
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .cta {
    min-height: 72px;
    padding-inline: 24px;
    gap: 20px;
    font-size: 17px;
  }

  .hero-proof {
    margin-top: 22px;
    padding-top: 16px;
    font-size: 13px;
  }

  .hero-media {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 47%;
  }

  .hero-media::after {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 30%);
  }

  .hero-media img {
    object-position: 50% 30%;
  }

  .motion-lines-hero {
    display: none;
  }

  .process {
    padding-top: 98px;
  }

  .process h2 {
    margin-bottom: 48px;
  }

  h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .step-rail {
    display: grid;
    padding-left: 22px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .step-rail::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 52px;
    width: 2px;
    height: auto;
  }

  .step-rail li {
    min-height: 124px;
    padding: 0 0 0 92px;
  }

  .step-number {
    top: 0;
    left: 0;
  }

  .step-rail p {
    font-size: 16px;
  }

  .process-detail {
    margin-top: 54px;
    padding-bottom: 88px;
    gap: 48px;
  }

  .phone-demo {
    margin-inline: -8px;
    padding: 11px;
    border-radius: 26px;
  }

  .phone-screen {
    min-height: 430px;
    border-radius: 18px;
  }

  .phone-screen > img {
    width: 100%;
    opacity: 0.6;
  }

  .phone-screen::after {
    background: linear-gradient(180deg, rgba(10, 13, 17, 0.92) 0%, transparent 58%);
  }

  .annotation-list {
    top: 26px;
    left: 22px;
    gap: 17px;
  }

  .video-controls {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .deliverables ul {
    display: block;
  }

  .deliverables li {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .results {
    padding-top: 92px;
  }

  .case-rail {
    display: flex;
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .case-item {
    min-width: min(82vw, 430px);
    scroll-snap-align: start;
  }

  .authority h2 {
    margin-bottom: 42px;
  }

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

  .authority-grid div,
  .authority-grid div:first-child,
  .authority-grid div:nth-child(n + 3) {
    min-height: auto;
    padding: 24px 0 24px 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .authority-grid div:last-child {
    border-bottom: 0;
  }

  .authority-grid div::before,
  .authority-grid div:first-child::before,
  .authority-grid div:nth-child(3)::before,
  .authority-grid div:nth-child(4)::before {
    top: 34px;
    left: 0;
    transform: none;
  }

  .motion-lines-authority {
    display: none;
  }

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

  .offer-copy h2 br {
    display: none;
  }

  .price-frame {
    padding: 30px 22px;
  }

  .footer-inner {
    display: flex;
    padding-block: 34px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner nav {
    flex-direction: column;
    gap: 13px;
  }

  .footer-inner small {
    padding-bottom: 0;
  }
}

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

  .hero-grid {
    min-height: 858px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-media {
    height: 44%;
  }

  .price {
    font-size: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
