:root {
  color-scheme: light;
  --ink: #202124;
  --muted: #666a73;
  --paper: #fbfbf8;
  --white: #ffffff;
  --line: #dfe3df;
  --red: #cf4f45;
  --green: #2f7a66;
  --blue: #3f6f9f;
  --yellow: #e3b14f;
  --charcoal: #2b3036;
  --shadow: 0 18px 50px rgba(32, 33, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
}

.brand,
.nav,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.nav {
  gap: 22px;
  font-size: 15px;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 116px 40px 86px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.48) 44%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(32, 33, 36, 0.7), rgba(32, 33, 36, 0.06));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffe2de;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 82px;
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 12ch;
}

h2 {
  margin-bottom: 18px;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.intro,
.feature-band,
.split-section,
.image-section,
.faq,
.final-cta {
  padding: 88px 40px;
}

.intro,
.section-heading,
.split-section,
.image-section,
.final-cta,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.intro p,
.image-section p {
  color: var(--muted);
  font-size: 22px;
}

.section-kicker {
  display: inline-block;
  color: var(--green);
}

.feature-band {
  width: 100%;
  background: var(--white);
}

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

.features {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.faq article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
}

.feature-card {
  min-height: 230px;
}

.feature-card span {
  display: inline-block;
  margin-bottom: 44px;
  font-weight: 900;
}

.feature-card p,
.faq p,
.steps p {
  color: var(--muted);
}

.accent-red {
  border-top: 6px solid var(--red);
}

.accent-green {
  border-top: 6px solid var(--green);
}

.accent-blue {
  border-top: 6px solid var(--blue);
}

.accent-yellow {
  border-top: 6px solid var(--yellow);
}

.accent-ink {
  border-top: 6px solid var(--charcoal);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.phone-panel {
  display: grid;
  place-items: center;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(207, 79, 69, 0.12), rgba(47, 122, 102, 0.12)),
    var(--white);
}

.app-screenshot {
  width: min(340px, 86%);
  max-height: 620px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.steps p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 19px;
}

.image-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.image-section img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.faq {
  width: 100%;
  background: var(--white);
}

.faq-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.site-footer div {
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 106px 20px 68px;
  }

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

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 42px;
  }

  .intro,
  .feature-band,
  .split-section,
  .image-section,
  .faq,
  .final-cta {
    padding: 64px 20px;
  }

  .intro,
  .split-section,
  .image-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .features,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .phone-panel {
    min-height: 520px;
  }

  .image-section img {
    height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .button {
    width: 100%;
  }
}
