:root {
  --ink: #25313b;
  --muted: #66737f;
  --cream: #fff8ee;
  --blush: #ffe4df;
  --rose: #ff8c7a;
  --mint: #83d8cf;
  --gold: #f2c76e;
  --white: #ffffff;
  --border: rgba(37, 49, 59, 0.1);
  --shadow: 0 18px 50px rgba(85, 61, 46, 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(--ink);
  background: linear-gradient(180deg, var(--cream), #ffffff 48%, #f7fbfa);
}

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose), var(--mint));
  color: var(--white);
}

.nav {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.hero,
.page {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 36px 20px 72px;
}

.hero {
  display: grid;
  gap: 30px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 14vw, 6.7rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 640px;
  margin: 0;
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 16px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.button.secondary {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.cards {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.card,
.policy-block {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.showcase {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 18px;
  background: linear-gradient(145deg, var(--blush), #ffffff 48%, #dff7f3);
  box-shadow: var(--shadow);
}

.name-card {
  border-radius: 26px;
  padding: 22px;
  background: var(--white);
}

.name-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 2.2rem;
  letter-spacing: -0.05em;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.page h1 {
  font-size: clamp(2.4rem, 10vw, 5rem);
}

.page-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    align-items: center;
    padding-top: 72px;
  }

  .grid,
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }
}
