@font-face {
  font-family: "Inter";
  src: url("./assets/Inter-Regular.26a30a5f.woff2") format("woff2"),
       url("./assets/Inter-Regular.e148c4a1.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/Inter-SemiBold.2244d96c.woff2") format("woff2"),
       url("./assets/Inter-SemiBold.d2e3b0e2.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/Inter-Bold.df60e0aa.woff2") format("woff2"),
       url("./assets/Inter-Bold.828b5dfc.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-text: #1d242d;
  --color-text-soft: #4c5764;
  --color-accent: #1593e8;
  --color-logo-text: #ffffff;
  --color-surface: #ffffff;
  --color-surface-muted: #f1f3f5;
  --color-footer: #0f1a26;
  --color-footer-text: #ffffff;
  --color-footer-muted: rgba(255, 255, 255, 0.78);
  --color-footer-divider: rgba(255, 255, 255, 0.14);
  --color-link: #0f7ec7;
  --gradient-electric: radial-gradient(141.42% 141.42% at 100% 100%, #87e1fd 0%, #339fcd 51.04%, #339fcd 100%);
  --color-overlay: rgba(15, 20, 28, 0.34);
  --color-shadow: rgba(0, 0, 0, 0.24);
  --container-width: 1040px;
  --radius: 18px;
  --space-section: clamp(3.75rem, 6vw, 5.5rem);
  --space-content: clamp(1.25rem, 2vw, 1.75rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.6;
}

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

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

a {
  color: var(--color-link);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
  color: var(--color-accent);
}

.container {
  width: min(calc(100% - 3rem), var(--container-width));
  margin: 0 auto;
}

.hero {
  --hero-shift: 0px;
  --hero-fade: 1;
  --hero-dim: 0;
  position: relative;
  min-height: 640px;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: -3rem 0 0;
  background-image: url("./assets/hero.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.03);
  opacity: var(--hero-fade);
  transition: opacity 180ms linear;
  will-change: transform, opacity;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, var(--hero-dim)) 0%, rgba(0, 0, 0, var(--hero-dim)) 100%),
    linear-gradient(90deg, rgba(24, 17, 10, 0.08) 0%, rgba(24, 17, 10, 0.04) 34%, rgba(10, 14, 20, 0.52) 100%),
    linear-gradient(180deg, rgba(8, 12, 18, 0.18) 0%, var(--color-overlay) 100%);
  z-index: -1;
}

.hero__inner {
  width: min(calc(100% - 3rem), 1240px);
  min-height: 640px;
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
  display: flex;
  flex-direction: column;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.hero__brand-logo {
  width: clamp(150px, 18vw, 220px);
  height: auto;
}

.hero__content {
  margin-top: auto;
  margin-left: auto;
  width: min(100%, 640px);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 3vw, 2.5rem);
  color: #ffffff;
  text-align: left;
  text-shadow: 0 4px 18px var(--color-shadow);
}

.hero__eyebrow {
  display: none;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 11ch;
  text-wrap: balance;
}

.hero__title-line--accent {
  color: var(--color-accent);
}

.hero__subtitle {
  max-width: 26rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  line-height: 1.35;
  font-weight: 600;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.85rem;
}

.store-links__item {
  display: inline-flex;
  transition: transform 160ms ease, opacity 160ms ease;
}

.store-links__item:hover,
.store-links__item:focus-visible {
  transform: translateY(-2px);
  opacity: 0.95;
}

.store-links__item img {
  height: 56px;
  width: auto;
}

.info-section {
  padding: var(--space-section) 0;
}

.reveal-section {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 680ms ease, transform 680ms ease;
  will-change: opacity, transform;
}

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

.info-section--muted {
  background: var(--color-surface-muted);
}

.info-section h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.info-section p,
.steps-list {
  max-width: 860px;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  color: var(--color-text-soft);
}

.steps-list {
  padding-left: 1.4rem;
}

.steps-list li + li {
  margin-top: 0.45rem;
}

.info-section--contact {
  padding-top: 0;
}

.contact-card {
  max-width: 860px;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eaf7ff 0%, #f7fcff 100%);
  box-shadow: 0 18px 40px rgba(16, 48, 74, 0.08);
}

.contact-card p {
  margin-bottom: 0;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  margin-top: 1.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--gradient-electric);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(21, 147, 232, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button-link:hover,
.button-link:focus-visible {
  color: #ffffff;
  background: radial-gradient(141.42% 141.42% at 100% 100%, #9ae7ff 0%, #2f95c2 51.04%, #2f95c2 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 126, 199, 0.28);
}

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

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.site-footer__column {
  min-width: 0;
}

.site-footer__column--brand p {
  margin: 0 0 0.65rem;
  color: var(--color-footer-muted);
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.site-footer__logo-mark {
  width: 173px;
  height: auto;
}

.site-footer__title {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-footer-text);
}

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

.site-footer__links li + li {
  margin-top: 0.75rem;
}

.site-footer__app-link {
  margin-top: 1.35rem !important;
}

.site-footer a {
  color: var(--color-footer-text);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #87e1fd;
}

.site-footer__bottom {
  border-top: 1px solid var(--color-footer-divider);
  padding: 1.2rem 0 1.4rem;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .hero,
  .hero__inner {
    min-height: 560px;
  }

  .hero__media {
    background-position: 36% center;
  }

  .hero__content {
    width: min(100%, 540px);
  }

  .store-links__item img {
    height: 52px;
  }
}

@media (max-width: 720px) {
  .container,
  .hero__inner {
    width: min(calc(100% - 2rem), var(--container-width));
  }

  .hero {
    min-height: 620px;
  }

  .hero__inner {
    min-height: 620px;
    padding-top: 1rem;
  }

  .hero__media {
    background-position: 42% center;
  }

  .hero__content {
    width: 100%;
    margin-left: 0;
    text-align: center;
    align-items: center;
    padding-bottom: 1.5rem;
  }

  .hero__title,
  .hero__subtitle {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 22rem;
  }

  .store-links {
    justify-content: center;
  }

  .info-section {
    padding: 3.25rem 0;
  }

  .info-section p,
  .steps-list {
    font-size: 1rem;
  }

  .contact-card {
    text-align: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.75rem;
    padding-bottom: 2.5rem;
  }
}

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

  .hero__inner {
    min-height: 560px;
  }

  .hero__title {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .store-links {
    flex-direction: column;
    align-items: center;
  }

  .store-links__item img {
    height: 50px;
  }

  .info-section h2 {
    font-size: 1.75rem;
  }
}
