* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--lv-font-body);
  color: var(--lv-ink-soft);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.76) 0%, var(--lv-mist) 100%);
  min-height: 100vh;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 16px 56px;
}

.hero {
  margin-bottom: 24px;
  padding: 12px 0 6px;
}

.hero .subtitle {
  margin: 0;
  color: var(--lv-muted);
  font-size: 18px;
  line-height: 1.42;
  max-width: none;
  width: 100%;
}

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

.card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--lv-paper);
  border: 1px solid var(--lv-stone);
  border-radius: var(--lv-radius-card);
  padding: 20px;
  min-height: 154px;
  box-shadow: var(--lv-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--lv-shadow-card);
}

.card--full {
  grid-column: 1 / -1;
}

.icon {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lv-muted);
  line-height: 1;
}

.icon svg {
  width: 30px;
  height: 30px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h2 {
  margin: 0;
  font-size: 1.38rem;
  color: var(--lv-ink);
  line-height: 1.2;
}

.card p {
  margin: 9px 0 0;
  color: var(--lv-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.legal-links {
  margin-top: 24px;
  text-align: center;
  color: var(--lv-muted);
  font-size: 0.95rem;
}

.legal-links a {
  color: var(--lv-link, var(--lv-ink-soft));
  text-decoration: none;
  margin: 0 10px;
}

.legal-links a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card,
  .card--full {
    grid-column: auto;
  }

  .hero { padding: 6px 0 4px; }
  .hero .subtitle {
    font-size: 16px;
  }
  .wrap { padding: 28px 14px 44px; }
}
