:root {
  --blue: #0b7ee8;
  --blue-dark: #0867b9;
  --hero-left: #205c7a;
  --hero-right: #2f94d1;
  --text: #3a3a3a;
  --muted: #666b73;
  --line: #d9dfe6;
  --soft-blue: #e9f4ff;
  --soft-green: #dff6e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family:
    'DM Sans',
    'Inter',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.site-header {
  position: relative;
  z-index: 2;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 54px;
  background: #fff;
}

.brand,
.brand img {
  display: block;
}

.brand img {
  width: 145px;
  height: auto;
}

.download-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.download-top i,
.store-button i,
.feature-icon i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.feature-icon i {
  font-size: 22px;
}

.hero {
  min-height: 535px;
  background: linear-gradient(
    108deg,
    var(--hero-left) 0%,
    #216b90 48%,
    var(--hero-right) 100%
  );
  overflow: hidden;
}

.hero-inner {
  max-width: 1288px;
  min-height: 535px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 395px;
  align-items: center;
  gap: 74px;
  padding: 24px 54px 38px;
}

.hero-copy {
  padding-top: 22px;
}

.hero h1 {
  max-width: 575px;
  margin: 0 0 18px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero p {
  max-width: 558px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 13px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  white-space: nowrap;
}

.store-button-ios {
  background: #000;
}

.store-button-android {
  background: var(--blue);
}

.free-note {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
}

.hero-device {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(12px, 6px);
}

.hero-device img {
  width: min(315px, 100%);
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(4, 38, 76, 0.3));
}

.about {
  padding: 58px 54px 112px;
}

.section-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.section-copy h2 {
  margin: 0;
  color: #3a3a3a;
  font-family: 'DM Sans', sans-serif;
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
  letter-spacing: 0;
}

.section-copy p {
  margin: 22px auto 0;
  color: #676767;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.cta h2 {
  margin: 0;
  color: #3a3a3a;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-grid {
  max-width: 1250px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  min-height: 176px;
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
}

.feature-icon-blue {
  background: var(--soft-blue);
  color: var(--blue);
}

.feature-icon-green {
  background: var(--soft-green);
  color: #2eb769;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: #5e626a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.cta {
  padding: 0 24px 70px;
  text-align: center;
}

.cta-logo {
  width: 170px;
  height: auto;
  margin-bottom: 24px;
}

.cta p {
  margin: 14px 0 24px;
  color: #6a6a6a;
  font-size: 17px;
  font-weight: 500;
}

.cta-buttons {
  justify-content: center;
}

.site-footer {
  background: var(--blue-dark);
  color: #fff;
}

.footer-inner {
  min-height: 126px;
  max-width: 1288px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 160px;
  padding: 22px 54px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  display: block;
  width: 145px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-contact,
.footer-links {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.footer-brand p {
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 8px;
  text-align: left;
}

.footer-contact a {
  color: #fff;
  font-size: 17px;
}

.footer-links {
  display: grid;
  gap: 14px;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header {
    height: 64px;
    padding: 0 16px;
    gap: 12px;
  }

  .brand img {
    width: 108px;
  }

  .download-top {
    flex: 0 0 auto;
    min-height: 56px;
    padding: 16px 32px;
    border-radius: 6px;
    gap: 5px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }

  .download-top i {
    width: 14px;
    height: 14px;
    font-size: 14px;
  }

  .hero {
    min-height: 682px;
    background: linear-gradient(104deg, #1d5877 0%, #2a89c1 100%);
  }

  .hero-inner {
    min-height: 682px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 33px 16px 36px;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    padding-top: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 360px;
    margin: 0 auto 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
  }

  .hero p {
    max-width: 357px;
    margin: 0 auto 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  .store-row {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .store-button {
    width: 100%;
    max-width: 358px;
    min-height: 56px;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }

  .free-note {
    margin-top: 12px;
    font-size: 12px;
  }

  .hero-device {
    transform: none;
    margin-top: 4px;
  }

  .hero-device img {
    width: 236px;
  }

  .about {
    padding: 58px 16px 54px;
  }

  .eyebrow {
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--soft-blue);
    font-size: 10px;
  }

  .section-copy h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
  }

  .cta h2 {
    font-size: 22px;
    line-height: 1.18;
  }

  .section-copy h2 {
    max-width: 310px;
    margin: 0 auto;
  }

  .section-copy p {
    max-width: 360px;
    margin-top: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  .feature-grid {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 100%;
  }

  .feature-card {
    min-height: 153px;
    padding: 20px 18px 20px;
    border-radius: 8px;
    text-align: left;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }

  .feature-icon i {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }

  .feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
  }

  .feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
  }

  .cta {
    padding: 0 16px 38px;
  }

  .cta-logo {
    width: 170px;
    margin-bottom: 20px;
  }

  .cta h2 {
    max-width: 240px;
    margin: 0 auto;
  }

  .cta p {
    margin: 12px 0 20px;
    font-size: 13px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-inner {
    min-height: 288px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 32px 16px;
  }

  .footer-logo {
    margin-bottom: 8px;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-brand p,
  .footer-contact,
  .footer-links {
    font-size: 11px;
    text-align: center;
  }

  .footer-contact {
    gap: 2px;
  }

  .footer-contact a {
    font-size: 13px;
  }

  .footer-links {
    gap: 8px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero-inner {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) 400px;
  }

  .footer-inner {
    gap: 80px;
  }
}
