:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3ff;
  --text: #11132c;
  --muted: #65708f;
  --line: #dce3f2;
  --blue: #566df4;
  --blue-strong: #3246d3;
  --teal: #12a59a;
  --gold: #d89425;
  --coral: #e35d6a;
  --shadow: 0 22px 64px rgba(17, 19, 44, 0.12);
  --soft-shadow: 0 14px 34px rgba(17, 19, 44, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0, #f4f7ff 330px, var(--bg) 100%),
    var(--bg);
}

a {
  color: var(--blue-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px 16px;
  z-index: -1;
  border: 1px solid rgba(220, 227, 242, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
}

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

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 10px 20px rgba(86, 109, 244, 0.22);
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
  background: var(--surface-soft);
  text-decoration: none;
}

nav .nav-cta {
  margin-left: 6px;
  color: #ffffff;
  background: var(--text);
}

nav .nav-cta:hover {
  color: #ffffff;
  background: var(--blue-strong);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 72px;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 48px;
  padding: 46px 0 72px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 820;
  box-shadow: 0 14px 34px rgba(86, 109, 244, 0.26);
}

.button:hover {
  text-decoration: none;
  background: var(--blue-strong);
}

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

.button.secondary:hover {
  background: var(--surface-soft);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(100%, 390px);
  border: 1px solid rgba(220, 227, 242, 0.96);
  border-radius: 34px;
  padding: 18px;
  background:
    linear-gradient(145deg, #ffffff 0%, #f4f7ff 52%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.phone-top,
.binder-card,
.stats-row {
  display: flex;
  align-items: center;
}

.phone-top {
  gap: 12px;
  padding: 8px 8px 18px;
}

.phone-top img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.phone-top strong,
.binder-card strong {
  display: block;
  font-size: 15px;
}

.phone-top span,
.binder-card span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.binder-card {
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: var(--text);
  color: #ffffff;
}

.binder-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.binder-card span {
  color: #b9c2e3;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.mini-grid span {
  aspect-ratio: 0.72;
  border-radius: 12px;
  background: linear-gradient(145deg, #dfe6ff, #ffffff);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.mini-grid span:nth-child(2),
.mini-grid span:nth-child(7) {
  background: linear-gradient(145deg, rgba(18, 165, 154, 0.2), #ffffff);
}

.mini-grid span:nth-child(5) {
  background: linear-gradient(145deg, rgba(216, 148, 37, 0.28), #ffffff);
}

.mini-grid span:nth-child(8) {
  background: linear-gradient(145deg, rgba(227, 93, 106, 0.22), #ffffff);
}

.stats-row {
  gap: 10px;
}

.stats-row span {
  flex: 1;
  min-height: 62px;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.stats-row strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1.05;
}

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

article,
.document {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

article {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.card-mark {
  display: block;
  width: 42px;
  height: 6px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.mark-blue {
  background: var(--blue);
}

.mark-gold {
  background: var(--gold);
}

.mark-teal {
  background: var(--teal);
}

article h2,
.document h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

article p,
.document p,
.document li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

article p {
  margin: 0;
}

.document {
  max-width: 900px;
  padding: 52px;
}

.document h1 {
  font-size: clamp(38px, 5vw, 62px);
  margin-bottom: 24px;
}

.document h2 {
  margin-top: 38px;
  padding-top: 4px;
}

.document h3 {
  margin: 24px 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
}

.document ul {
  padding-left: 22px;
}

.document p:first-of-type {
  font-size: 18px;
}

.contact-card {
  display: inline-flex;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  font-weight: 820;
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 44px;
  border-top: 1px solid var(--line);
}

footer p {
  max-width: 900px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 0 56px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

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

@media (max-width: 660px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px 0;
  }

  .site-header::before {
    inset: 8px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 14px;
  }

  nav .nav-cta {
    margin-left: 0;
  }

  main {
    padding: 26px 18px 56px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .lede {
    font-size: 18px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .phone {
    border-radius: 26px;
  }

  .document {
    padding: 30px 22px;
    border-radius: 14px;
  }
}
