:root {
  color-scheme: light;
  --ink: #10121a;
  --text: #252735;
  --muted: #666b78;
  --line: #dfe3eb;
  --bg: #f7f8fb;
  --white: #ffffff;
  --coral: #eb4e68;
  --teal: #0b8ca0;
  --violet: #6440e8;
  --mint: #d9faeb;
  --sky: #dbf1ff;
  --shadow: 0 24px 70px rgba(16, 18, 26, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  font-weight: 800;
  color: var(--ink);
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(16, 18, 26, 0.16);
}

.button.small {
  min-height: 42px;
  padding: 0 16px;
}

.button.ghost,
.button.light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button.center {
  margin-inline: auto;
}

.hero,
.section {
  padding: 82px 5vw;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 72px);
}

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

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

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

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

h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

h2 {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.16;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-copy > p {
  max-width: 690px;
  font-size: 20px;
}

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

.mini-board {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-board span {
  width: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.mini-board strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 15px;
}

.hero-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.hero-visual figcaption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.section {
  display: grid;
  gap: 32px;
  background: var(--white);
}

.section:nth-of-type(2n) {
  background: var(--bg);
}

.section-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

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

.card,
details {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.link-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow);
}

.split {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.64fr);
  align-items: center;
}

.split > div {
  display: grid;
  gap: 20px;
}

.split-image {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checks,
.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.55;
}

details {
  min-height: 160px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.28;
}

details p {
  margin-top: 12px;
  font-size: 15px;
}

.legal {
  max-width: 920px;
  min-height: 70vh;
  margin-inline: auto;
  background: var(--bg);
}

.legal h1 {
  font-size: 52px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 54px 5vw;
  background: var(--ink);
  text-align: center;
}

.site-footer p,
.site-footer a {
  color: #c9ced8;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    padding-block: 14px;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

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

@media (max-width: 560px) {
  .hero,
  .section {
    padding: 54px 22px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .mini-board span {
    width: 100%;
  }
}
