:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #5c6971;
  --subtle: #e6eef0;
  --paper: #fbfcfa;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b534e;
  --green-soft: #d9f1e8;
  --amber: #f7c948;
  --rose: #e15b64;
  --shadow: 0 24px 70px rgba(23, 33, 38, 0.16);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 252, 250, 0.9);
  border-bottom: 1px solid rgba(23, 33, 38, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.nav-links {
  gap: 18px;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid rgba(15, 118, 110, 0.26);
  border-radius: 999px;
  color: var(--teal-dark);
  font-weight: 800;
  padding: 9px 14px;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 76px max(22px, calc((100vw - var(--max)) / 2)) 88px;
  background:
    radial-gradient(circle at 82% 18%, rgba(247, 201, 72, 0.42), transparent 24rem),
    linear-gradient(135deg, #f8fbf8 0%, #dcefeb 52%, #f7efe6 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--rose));
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  color: #34454d;
  font-size: 1.24rem;
}

.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  padding: 12px 20px;
  text-decoration: none;
}

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.24);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.app-store-badge {
  display: inline-flex;
  width: 180px;
  min-width: 180px;
  height: 60px;
  flex: 0 0 180px;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.app-store-badge img {
  width: 180px;
  height: 60px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 33, 38, 0.1);
  color: var(--ink);
}

.hero-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #44545b;
  font-weight: 700;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-media {
  position: absolute;
  inset: 30px max(0px, calc((100vw - 1280px) / 2)) 0 auto;
  width: min(52vw, 610px);
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  width: min(310px, 42vw);
  border-radius: 34px;
  filter: drop-shadow(var(--shadow));
}

.hero-phone-primary {
  right: 118px;
  top: 20px;
  transform: rotate(-5deg);
}

.hero-phone-secondary {
  right: 0;
  top: 150px;
  transform: rotate(6deg);
}

.intro,
.section,
.showcase,
.final-cta,
.site-footer {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  padding: 76px 0 32px;
}

.intro p,
.section-heading p,
.content-list,
.showcase-copy p,
.feature-card p,
.pricing-panel p,
.faq-list p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-self: center;
}

.intro-stats div {
  min-height: 126px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.intro-stats strong,
.intro-stats span {
  display: block;
}

.intro-stats strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 1.45rem;
}

.section,
.showcase,
.final-cta {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.key-features {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: #f1faf6;
  padding: 22px 24px;
}

.key-features h3 {
  margin-bottom: 0;
  color: var(--teal-dark);
}

.key-features ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  margin: 0;
  padding-left: 20px;
  color: #34454d;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 210px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.feature-card:nth-child(2n) {
  background: #f7faf9;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 42px;
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
}

.screen-row img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 54px rgba(23, 33, 38, 0.18);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
}

.alt-band {
  width: 100%;
  max-width: none;
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
  background: #eaf5f1;
}

.content-list {
  font-size: 1.08rem;
}

.content-list ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.pricing-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
}

.plan-label {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 6px 10px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 18px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  padding: 18px 0;
}

details p {
  margin-bottom: 18px;
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  border-top: 1px solid var(--subtle);
}

.final-cta > img {
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  border-radius: 24px;
}

.final-cta h2,
.final-cta p {
  max-width: 720px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 44px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--subtle);
}

.footer-brand {
  max-width: 430px;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  min-width: 148px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 2px;
  font-size: 0.88rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
  }

  .hero-content {
    padding-bottom: 380px;
  }

  .hero-media {
    inset: auto 0 8px auto;
    width: 100%;
    height: 390px;
  }

  .hero-phone {
    width: 190px;
  }

  .hero-phone-primary {
    right: calc(50% - 40px);
    top: 8px;
  }

  .hero-phone-secondary {
    right: calc(50% - 186px);
    top: 70px;
  }

  .intro,
  .showcase,
  .split {
    grid-template-columns: 1fr;
  }

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

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

  .pricing-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero {
    padding-inline: 22px;
  }

  .hero-content {
    padding-bottom: 340px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
  }

  .app-store-badge {
    width: 180px;
    min-width: 180px;
    max-width: 100%;
    flex-basis: 180px;
  }

  .intro,
  .section,
  .showcase,
  .final-cta,
  .site-footer {
    width: min(100% - 34px, var(--max));
  }

  .intro-stats,
  .feature-grid,
  .key-features ul {
    grid-template-columns: 1fr;
  }

  .screen-row {
    grid-template-columns: 1fr 1fr;
  }

  .screen-row img:nth-child(3) {
    display: none;
  }

  .alt-band {
    padding-inline: 17px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
