:root {
  --ink: #102822;
  --muted: #5b6861;
  --paper: #f7f8f2;
  --line: #dce2d9;
  --green: #b9ef69;
  --amber: #eaae41;
  --red: #d65e5a;
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid #267450;
  outline-offset: 6px;
}
svg {
  display: block;
}
p {
  line-height: 1.65;
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
h1 {
  font-size: clamp(58px, 5.9vw, 84px);
}
h2 {
  font-size: clamp(38px, 4vw, 56px);
}
h3 {
  font-size: 25px;
  line-height: 1.17;
}
.wrap {
  width: min(1180px, calc(100% - 96px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 10;
  background: white;
  padding: 14px;
}
.skip:focus {
  top: 10px;
}
.header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}
.brand-by {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 7px;
  text-transform: uppercase;
}
.brand-icon {
  width: 25px;
  height: 45px;
  border-radius: 9px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.brand-icon i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e68977;
}
.brand-icon i:nth-child(2) {
  background: #eac358;
}
.brand-icon i:nth-child(3) {
  background: #b9ef69;
}
.header nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}
.header nav a {
  text-decoration: none;
}
.header nav a:hover,
.text-link:hover,
.footer a:hover {
  color: #398254;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  min-height: 58px;
  padding: 0 25px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
}
.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #22463c;
}
.button-green {
  background: var(--green);
  color: var(--ink);
}
.button-green:hover {
  background: #a5e64d;
}
.button-small {
  min-height: 46px;
  padding: 0 19px;
  font-size: 13px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #458763;
  border-radius: 50%;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 710px;
  padding: 35px 0 74px;
}
.hero-copy {
  padding-bottom: 18px;
}
.hero h1 span {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.hero h1 span:before {
  content: "";
  position: absolute;
  left: -4px;
  right: -8px;
  bottom: 1px;
  height: 28%;
  background: var(--green);
  z-index: -1;
  transform: rotate(-1.5deg);
}
.hero-description {
  font-size: 17px;
  max-width: 455px;
  margin-top: 30px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.download-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.7;
}
.hero-visual {
  position: relative;
  min-height: 595px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.visual-orbit {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: #eaf0df;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
}
.visual-orbit:after {
  content: "";
  position: absolute;
  inset: -26px;
  border: 1px dashed #cbd5c0;
  border-radius: 50%;
}
.phone {
  width: 291px;
  height: 555px;
  background: #fafcf8;
  border: 7px solid var(--ink);
  border-radius: 38px;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 22px 35px #10282217;
  transform: rotate(7deg);
  margin-left: 70px;
}
.phone-top {
  position: relative;
  z-index: 1;
  height: 37px;
  padding: 13px 17px 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
}
.phone-camera {
  position: absolute;
  width: 66px;
  height: 16px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  border-radius: 12px;
}
.map {
  height: 227px;
  position: relative;
  background: #e5ece1;
}
.map svg {
  height: 100%;
  width: 100%;
  fill: var(--ink);
}
.map .street {
  stroke: white;
  stroke-width: 9;
  fill: none;
}
.map .route {
  fill: none;
  stroke: var(--ink);
  stroke-width: 6;
  stroke-linejoin: round;
}
.map-label {
  position: absolute;
  bottom: 47px;
  left: 24px;
  font-size: 12px;
  font-weight: 600;
  color: #65795b;
}
.offer-preview {
  position: absolute;
  left: 11px;
  right: 11px;
  top: 259px;
  background: white;
  border-radius: 17px;
  padding: 18px 16px 13px;
  box-shadow: 0 4px 15px #1028220d;
}
.preview-kicker {
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: 700;
}
.preview-fare {
  display: block;
  font-size: 34px;
  margin-top: 8px;
  letter-spacing: -1.5px;
}
.preview-passenger {
  display: flex;
  gap: 11px;
  margin-top: 10px;
  font-size: 10px;
}
.preview-passenger span {
  border-radius: 5px;
  padding: 5px 8px;
  background: #f2f4ef;
}
.preview-legs {
  border-top: 1px solid #eef0eb;
  margin-top: 13px;
  padding-top: 11px;
}
.preview-legs p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--muted);
}
.preview-legs b {
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.leg-dot {
  width: 7px;
  height: 7px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.square {
  border-radius: 0;
}
.preview-button {
  background: var(--ink);
  color: white;
  font-size: 9px;
  text-align: center;
  border-radius: 7px;
  padding: 11px 4px;
}
.phone-caption {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 8px;
  color: #738075;
}
.score-preview {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 151px;
  width: 302px;
  background: var(--ink);
  border-radius: 21px;
  padding: 22px;
  color: white;
  box-shadow: 0 18px 35px #10282226;
  transform: rotate(-3deg);
}
.score-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #efd395;
}
.score-heading > span:last-child {
  font-size: 22px;
  color: white;
  letter-spacing: -1px;
}
.score-max {
  font-size: 12px;
  font-weight: 400;
  color: #a9bdb4;
  letter-spacing: 0;
}
.amber-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--amber);
  margin-right: 5px;
}
.score-income {
  font-size: 35px;
  letter-spacing: -1.5px;
  font-weight: 600;
  line-height: 1.15;
  margin-top: 15px;
}
.score-income span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 7px;
  white-space: nowrap;
}
.score-detail {
  font-size: 12px;
  color: #c8d8cf;
  margin-top: 8px;
}
.score-divider {
  height: 1px;
  background: #365045;
  margin: 15px 0 11px;
}
.score-reason {
  font-size: 12px;
}
.score-footnote {
  font-size: 10px;
  color: #a9bdb4;
  margin-top: 3px;
}
.visual-note {
  position: absolute;
  bottom: 13px;
  right: 37px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.visual-note > span {
  font-size: 26px;
}
.trust-strip {
  border-block: 1px solid var(--line);
}
.trust-items {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
}
.trust-items > span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 500;
}
.trust-items svg {
  width: 19px;
  height: 19px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section {
  padding-block: 100px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 47px;
}
.section-heading > p {
  max-width: 357px;
  font-size: 15px;
  color: var(--muted);
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 29px 27px 25px;
  display: flex;
  flex-direction: column;
}
.feature-number {
  font-size: 10px;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-bottom: 29px;
}
.feature p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 17px;
  flex: 1;
}
.feature-tag {
  font-size: 10px;
  border-top: 1px solid #e6eae2;
  margin-top: 25px;
  padding-top: 17px;
  color: #45634e;
  line-height: 1.5;
}
.signals-section {
  background: #eaf0e2;
  padding: 66px 0;
}
.signals-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.signals-inner > div > p:last-child {
  max-width: 380px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 22px;
}
.signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 30px;
}
.signals > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.signal-dot {
  display: block;
  flex: 0 0 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 3px;
}
.signal-dot.green {
  background: #54944e;
}
.signal-dot.amber {
  background: var(--amber);
}
.signal-dot.red {
  background: var(--red);
}
.signal-dot.gray {
  background: #929e96;
}
.signals strong {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}
.signals p {
  line-height: 1.45;
}
.signals p > span {
  font-size: 12px;
  color: var(--muted);
}
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin: 0 0 34px;
}
.steps li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #c4cebf;
  border-radius: 50%;
  font-size: 12px;
  margin-bottom: 24px;
}
.steps h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 13px;
}
.download-panel {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 27px;
}
.download-panel strong {
  font-size: 16px;
}
.download-panel p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.checksum {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}
.checksum summary {
  display: inline-block;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.checksum summary:before {
  content: "+ ";
  font-size: 14px;
}
.checksum[open] summary:before {
  content: "− ";
}
.checksum p {
  margin-top: 12px;
}
.checksum code {
  display: block;
  font-size: 11px;
  overflow-wrap: anywhere;
  margin-top: 7px;
}
.open-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 95px;
  padding: 68px;
  border-radius: 30px;
  background: var(--ink);
  color: white;
}
.open-copy .eyebrow {
  color: #c8d8cf;
}
.open-copy h2 {
  font-size: 44px;
}
.open-copy > p:not(.eyebrow) {
  margin-top: 25px;
  color: #c5d4cb;
  font-size: 14px;
}
.open-copy .text-link {
  color: var(--green);
  margin-top: 29px;
}
.donation {
  background: #223e32;
  padding: 29px;
  border: 1px solid #3b5345;
  border-radius: 19px;
}
.donation-icon {
  font-size: 35px;
  color: var(--green);
  display: block;
  margin-bottom: 24px;
  line-height: 1;
}
.donation .eyebrow {
  color: #c8d8cf;
  font-size: 9px;
  margin-bottom: 13px;
  letter-spacing: 1.5px;
}
.donation h3 {
  font-size: 29px;
}
.donation > p:not(.eyebrow) {
  color: #c5d4cb;
  font-size: 13px;
  margin-top: 17px;
}
.donation .button {
  margin-top: 23px;
  width: 100%;
  min-height: 50px;
  font-size: 14px;
}
.donation .donation-meta {
  font-size: 10px !important;
  margin-top: 13px !important;
  text-align: center;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}
.faq-section h2 {
  font-size: 40px;
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  padding: 22px 26px 22px 0;
  position: relative;
  line-height: 1.5;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  position: absolute;
  right: 0;
  top: 18px;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 13px;
  color: var(--muted);
  padding: 0 24px 22px 0;
}
.faq details a {
  color: #35714e;
  text-underline-offset: 3px;
}
.final-cta {
  background: #eaf0e2;
  padding-block: 64px;
}
.final-cta > .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.final-cta .eyebrow {
  font-size: 9px;
  margin-bottom: 17px;
}
.final-cta h2 {
  font-size: 44px;
}
.footer {
  padding-block: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer > p {
  font-size: 11px;
  color: var(--muted);
}
.footer > div {
  display: flex;
  gap: 24px;
  font-size: 12px;
}
.footer > div a {
  text-decoration: none;
}
.privacy {
  max-width: 760px;
  padding: 65px 0 100px;
}
.privacy h1 {
  font-size: 58px;
  margin-bottom: 25px;
}
.privacy h2 {
  font-size: 25px;
  margin: 35px 0 15px;
}
.privacy p,
.privacy li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.privacy ul {
  padding-left: 23px;
}
.privacy .eyebrow {
  color: var(--muted);
}
.privacy a {
  color: #35714e;
}
.privacy .text-link {
  margin-top: 30px;
}
.legal-header nav {
  margin-left: auto;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 770px;
  }
  .hero-visual {
    transform: scale(1.07);
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header nav {
    gap: 20px;
  }
  .hero {
    gap: 10px;
    min-height: 650px;
  }
  .hero-visual {
    transform: scale(0.88);
    transform-origin: right center;
    margin-left: -20px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-description {
    max-width: 400px;
  }
  .open-section {
    padding: 48px;
    gap: 50px;
  }
  .features {
    gap: 14px;
  }
  .feature {
    padding: 24px 21px;
  }
  .feature h3 {
    font-size: 23px;
  }
  .trust-items > span {
    font-size: 11px;
  }
  .signals-inner {
    gap: 50px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .header {
    height: 90px;
  }
  .header nav {
    display: none;
  }
  .brand {
    font-size: 23px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 27px;
    padding-bottom: 43px;
    gap: 8px;
  }
  .hero-copy {
    max-width: 580px;
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(60px, 10vw, 78px);
  }
  .hero-description {
    max-width: 500px;
  }
  .hero-visual {
    transform: none;
    margin-left: 0;
    min-height: 580px;
    width: 450px;
    max-width: 100%;
    margin-inline: auto;
  }
  .score-preview {
    left: 0;
    top: 153px;
  }
  .visual-orbit {
    width: 420px;
    height: 420px;
  }
  .hero .eyebrow {
    margin-bottom: 23px;
  }
  .trust-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 27px;
    padding-block: 21px;
  }
  .section {
    padding-block: 70px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
  }
  .section-heading > p {
    max-width: 270px;
    font-size: 13px;
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .feature h3 {
    font-size: 23px;
  }
  .signals-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .signals-inner > div > p:last-child {
    max-width: 510px;
  }
  .signals {
    gap: 26px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 33px;
  }
  .steps li > span {
    margin-bottom: 16px;
  }
  .open-section {
    grid-template-columns: 1fr;
    padding: 38px;
    gap: 35px;
  }
  .open-copy h2 {
    font-size: 40px;
  }
  .donation {
    max-width: 450px;
    width: 100%;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-section h2 {
    font-size: 38px;
  }
  .final-cta h2 {
    font-size: 36px;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer > div {
    width: 100%;
    padding-top: 7px;
  }
  .privacy h1 {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 83px;
    gap: 10px;
  }
  .brand {
    font-size: 21px;
    gap: 8px;
  }
  .brand-icon {
    width: 22px;
    height: 40px;
  }
  .brand-by {
    font-size: 8px;
  }
  .header .button {
    font-size: 11px;
    gap: 12px;
    min-height: 42px;
    padding: 0 13px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-description {
    font-size: 15px;
    margin-top: 25px;
  }
  .hero-actions {
    gap: 19px;
    margin-top: 27px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 0 20px;
    gap: 15px;
    min-height: 54px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 6px;
  }
  .hero-visual {
    min-height: 540px;
    margin-top: 15px;
  }
  .phone {
    width: 270px;
    height: 532px;
    border-radius: 35px;
    margin-left: 28px;
    transform: rotate(5deg);
  }
  .phone-caption {
    font-size: 7px;
  }
  .offer-preview {
    top: 244px;
    padding: 16px 13px;
  }
  .map {
    height: 214px;
  }
  .score-preview {
    width: 265px;
    padding: 19px;
    top: 121px;
    left: 0;
  }
  .score-income {
    font-size: 31px;
  }
  .score-income span {
    font-size: 9px;
    margin-left: 5px;
  }
  .score-detail {
    font-size: 11px;
  }
  .visual-orbit {
    width: 300px;
    height: 360px;
    top: 49%;
  }
  .visual-orbit:after {
    inset: -10px;
  }
  .visual-note {
    bottom: -3px;
    right: 3px;
    font-size: 10px;
  }
  .hero {
    padding-bottom: 39px;
  }
  .trust-items {
    justify-content: flex-start;
    gap: 14px;
  }
  .trust-items > span {
    font-size: 12px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 23px;
    font-size: 14px;
  }
  h2 {
    font-size: 38px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature {
    padding: 27px;
  }
  .feature-number {
    margin-bottom: 19px;
  }
  .feature h3 {
    font-size: 25px;
  }
  .feature-tag {
    margin-top: 20px;
  }
  .signals-section {
    padding-block: 49px;
  }
  .signals {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .signals > div {
    gap: 16px;
  }
  .signals p > span {
    font-size: 13px;
  }
  .signals-inner {
    gap: 30px;
  }
  .steps {
    gap: 29px 21px;
  }
  .steps h3 {
    font-size: 18px;
  }
  .steps p {
    font-size: 12px;
  }
  .download-panel {
    display: block;
    padding: 22px;
  }
  .download-panel .button {
    margin-top: 17px;
    width: 100%;
  }
  .download-panel p {
    font-size: 11px;
  }
  .open-section {
    padding: 29px 23px;
    border-radius: 23px;
  }
  .open-copy h2 {
    font-size: 35px;
  }
  .donation {
    padding: 23px;
  }
  .donation h3 {
    font-size: 27px;
  }
  .open-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 1.3px;
  }
  .faq-section h2 {
    font-size: 34px;
  }
  .final-cta > .wrap {
    display: block;
  }
  .final-cta .button {
    margin-top: 27px;
  }
  .final-cta h2 {
    font-size: 38px;
  }
  .footer {
    align-items: flex-start;
    gap: 25px;
  }
  .footer > p {
    font-size: 9px;
  }
  .footer > div {
    gap: 24px;
  }
  .privacy h1 {
    font-size: 43px;
  }
  .legal-header .text-link {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.hero-copy,
.hero-visual {
  min-width: 0;
}
@media (max-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }
  .hero-visual {
    width: 100%;
    overflow: clip;
  }
  .hero-description {
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .phone {
    width: 240px;
    margin-left: 20px;
  }
  .score-preview {
    width: 245px;
    padding: 17px;
  }
  .score-income {
    font-size: 29px;
  }
  .hero-actions {
    gap: 13px;
  }
  .hero-actions .button {
    padding-inline: 15px;
  }
  .open-copy h2 {
    font-size: 31px;
  }
}
