:root {
  --bg: #fbfaf8;
  --card: #ffffff;
  --hero: #f4f9fb;
  --ink: #1f2430;
  --muted: #7b8494;
  --soft: #9aa3b4;
  --line: #e7eaf1;
  --blue: #5a87e8;
  --blue-dark: #5278c7;
  --blue-soft: #eaf2ff;
  --mint: #dcf6e9;
  --mint-text: #55b987;
  --shadow: 0 18px 45px rgba(31, 36, 48, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 0 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 780;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px #d7e5ff;
}

.nav {
  display: flex;
  gap: 22px;
  color: #606975;
  font-size: 15px;
  font-weight: 560;
}

.nav a {
  text-decoration: none;
}

.hero-page,
.content-section,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: stretch;
  padding: 24px 0 44px;
}

.hero-copy,
.app-preview,
.feature-card,
.wide-card,
.legal-cta,
.info-list {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  min-height: 520px;
  padding: clamp(34px, 5vw, 54px);
  border-radius: 38px;
  background: radial-gradient(circle at 92% 18%, #edf7ff 0, transparent 34%), linear-gradient(135deg, #f2f7ff 0%, #fbfdfc 58%, #eef9f8 100%);
  overflow: hidden;
}

.hero-copy > p,
.section-heading p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 780;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.07;
  letter-spacing: 0;
  font-weight: 840;
}

.hero-copy > span {
  display: block;
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(21px, 2.3vw, 27px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 780;
  white-space: nowrap;
}

.hero-copy .primary-button,
.hero-copy .secondary-button {
  flex: 1 1 180px;
  max-width: 240px;
}

.primary-button {
  background: var(--blue);
  color: #fff;
}

.secondary-button {
  background: #fff;
  color: var(--blue-dark);
  border: 1px solid #d7e5ff;
}

.app-preview {
  padding: 24px;
  border-radius: 38px;
}

.preview-top {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f2f7ff 0%, #f7fcfb 100%);
}

.preview-top p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 730;
}

.preview-top strong {
  display: block;
  max-width: 360px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.preview-card {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.preview-card span,
.preview-grid span {
  display: block;
  color: var(--muted);
  font-size: 18px;
  font-weight: 730;
}

.preview-card b,
.preview-grid b {
  display: block;
  margin-top: 12px;
  font-size: 42px;
  line-height: 1;
}

.preview-card em {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--mint-text);
  font-style: normal;
  font-weight: 790;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.preview-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
}

.content-section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

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

.section-heading h2,
.legal-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.feature-card {
  min-height: 190px;
  padding: 26px;
  border-radius: 28px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.feature-card p,
.wide-card p,
.legal-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.info-list {
  overflow: hidden;
  border-radius: 30px;
}

.info-list div {
  display: grid;
  gap: 6px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list strong {
  font-size: 20px;
}

.info-list span {
  color: var(--muted);
  font-size: 17px;
}

.wide-card {
  max-width: 820px;
  padding: 30px;
  border-radius: 30px;
}

.legal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 34px;
  margin-bottom: 42px;
}

.legal-cta p {
  margin-top: 10px;
}

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 90px;
}

.legal-page h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
}

.legal-page h2 {
  margin-top: 36px;
  font-size: 24px;
}

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

.site-footer {
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--blue-dark);
  font-weight: 720;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-page,
  .split-section {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .legal-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero-page,
  .content-section,
  .site-header,
  .site-footer {
    width: min(100%, calc(100% - 28px));
  }

  .hero-copy,
  .app-preview {
    border-radius: 30px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .feature-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
