:root {
  color-scheme: light;
  --bg: #fbf6e8;
  --paper: rgba(255, 252, 242, 0.9);
  --ink: #29352d;
  --muted: #667364;
  --line: rgba(76, 94, 78, 0.18);
  --brand: #5f8f7d;
  --brand-dark: #3e6f61;
  --gold: #d5ae61;
  --shadow: rgba(52, 72, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 18% 12%, rgba(222, 191, 116, 0.28), transparent 34rem),
    radial-gradient(circle at 84% 24%, rgba(110, 160, 139, 0.24), transparent 30rem),
    linear-gradient(145deg, #fff7df 0%, var(--bg) 46%, #eef5df 100%);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #f6d88a, #6fb39f);
  box-shadow: 0 10px 24px var(--shadow);
  color: #fffdf3;
  font-size: 22px;
  font-weight: 800;
}

.brand-name {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 253, 244, 0.58);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}

.hero,
.card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 22px 70px var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  padding: clamp(28px, 6vw, 56px);
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 8vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  font-size: 14px;
}

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

.card {
  padding: clamp(22px, 4vw, 34px);
}

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

h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

li + li {
  margin-top: 7px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--brand);
  color: #fffdf7;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(64, 111, 97, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  box-shadow: none;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  font-size: 15px;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

.table th {
  color: var(--brand-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.table tr:last-child th,
.table tr:last-child td {
  border-bottom: 0;
}

.notice {
  border-left: 4px solid var(--gold);
  padding: 12px 15px;
  border-radius: 0 16px 16px 0;
  background: rgba(255, 244, 211, 0.72);
  color: #5f4c25;
}

.footer {
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

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

  .hero,
  .card {
    border-radius: 22px;
  }

  .table {
    display: block;
    overflow-x: auto;
  }
}
