:root {
  color-scheme: light;
  --cream: #fbf6ef;
  --cream-2: #f6efe4;
  --surface: #ffffff;
  --ink: #1b1b1f;
  --muted: #5f6670;
  --soft: #eef4f9;
  --primary: #1c648e;
  --primary-dark: #144a6a;
  --green: #0a6c4e;
  --yellow: #f5b800;
  --peach: #f7d6b0;
  --line: rgba(28, 100, 142, 0.14);
  --shadow: 0 24px 70px rgba(28, 100, 142, 0.16);
  --shadow-soft: 0 14px 34px rgba(28, 100, 142, 0.1);
  --radius: 24px;
  --font: ui-rounded, "SF Pro Rounded", "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 246, 239, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(28, 100, 142, 0.18);
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--primary);
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(28, 100, 142, 0.28);
}

.button:hover {
  background: var(--primary-dark);
  text-decoration: none;
}

.button.secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 74px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.42;
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -190px;
  top: -170px;
  background: var(--peach);
}

.hero::after {
  width: 440px;
  height: 440px;
  left: -180px;
  top: 220px;
  background: #cae6ff;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

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

h1 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: clamp(44px, 7.2vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(19px, 2.3vw, 23px);
  line-height: 1.46;
}

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

.small-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-art {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(150px, 0.46fr);
  align-items: end;
  gap: 18px;
}

.hero-photo {
  overflow: hidden;
  border-radius: 34px;
  background: var(--peach);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.phone {
  position: relative;
  overflow: hidden;
  border: 10px solid #111217;
  border-radius: 34px;
  background: #111217;
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 52px;
  height: 15px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #111217;
  z-index: 2;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.mini-card {
  position: absolute;
  right: 7%;
  bottom: 9%;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 900;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: var(--cream-2);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.steps,
.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.2;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 52px;
}

.screen-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 16px;
}

.screen-stack .phone:nth-child(2) {
  transform: translateY(-24px);
}

.feature-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.1;
}

.feature-copy p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.check {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #e2f6ec;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.question-card {
  min-height: 212px;
}

.question-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.question-card .quote {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.32;
  font-weight: 900;
}

.cta {
  padding: 82px 0;
}

.cta-box {
  overflow: hidden;
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(36px, 7vw, 64px);
  border-radius: 34px;
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: -140px auto auto -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(245, 184, 0, 0.2);
}

.cta-box h2 {
  position: relative;
  margin-bottom: 0;
  max-width: 620px;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.08;
}

.cta-box p {
  position: relative;
  max-width: 580px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.cta-box .button {
  position: relative;
  background: #ffffff;
  color: var(--primary);
  box-shadow: none;
}

.cta-box .button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links a {
  color: var(--muted);
}

.copyright {
  margin: 22px 0 0;
  font-size: 14px;
}

.page-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.content {
  display: grid;
  gap: 18px;
}

.content h1 {
  font-size: clamp(40px, 7vw, 62px);
}

.content h2 {
  margin: 18px 0 0;
  font-size: 25px;
}

.content p,
.content li {
  color: var(--muted);
}

.content ul {
  margin: 0;
  padding-left: 22px;
}

.stack {
  display: grid;
  gap: 16px;
}

@media (max-width: 900px) {
  .hero-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
    justify-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .steps,
  .question-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wrap,
  .page-main {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 16px;
  }

  .hero {
    padding: 28px 0 54px;
  }

  .hero-art {
    grid-template-columns: 1fr;
  }

  .hero-art .phone {
    width: min(245px, 72%);
    margin: -54px auto 0;
  }

  .mini-card {
    position: static;
    margin: 14px auto 0;
  }

  .section,
  .cta {
    padding: 54px 0;
  }

  .screen-stack {
    grid-template-columns: 1fr;
    width: min(270px, 78%);
    margin: 0 auto;
  }

  .screen-stack .phone:nth-child(2) {
    transform: none;
  }
}
