:root {
  color-scheme: light;
  --ink: #0b1733;
  --muted: #5d6677;
  --paper: #fffdf9;
  --mist: #edf8f5;
  --coral: #f4443e;
  --jade: #009b84;
  --line: #dce6e4;
  --shadow: 0 20px 60px rgba(11, 23, 51, 0.09);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 5%, rgba(0, 155, 132, 0.14), transparent 32rem),
    radial-gradient(circle at 8% 95%, rgba(244, 68, 62, 0.10), transparent 28rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: #006f61; }
a:hover { color: var(--coral); }

.shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
}

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

.mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, var(--coral), #ff786a);
  box-shadow: 0 8px 20px rgba(244, 68, 62, 0.24);
}

nav { display: flex; gap: 18px; }
nav a { color: var(--ink); font-weight: 650; text-decoration: none; }

.hero {
  padding: 76px 0 52px;
  text-align: center;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 12px auto 18px;
  font-size: clamp(2.35rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.lede {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.card {
  padding: 28px;
  border: 1px solid rgba(11, 23, 51, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.card h2, .card h3 { margin-top: 0; line-height: 1.2; }
.card p:last-child { margin-bottom: 0; }

.wide { grid-column: 1 / -1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #006f61;
  background: var(--mist);
  font-size: 0.82rem;
  font-weight: 750;
}

form { display: grid; gap: 16px; }
label { display: grid; gap: 6px; font-weight: 700; }
input, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cdd9d6;
  border-radius: 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus { outline: 3px solid rgba(0, 155, 132, 0.22); border-color: var(--jade); }

button {
  justify-self: start;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
button:hover { background: var(--coral); }

.policy { padding: 30px 0 70px; }
.policy h1 { margin-left: 0; font-size: clamp(2.25rem, 6vw, 4rem); }
.policy h2 { margin-top: 34px; line-height: 1.2; }
.policy li + li { margin-top: 8px; }
.updated { color: var(--muted); }

footer {
  margin-top: 54px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 660px) {
  header { align-items: flex-start; }
  nav { flex-direction: column; gap: 5px; text-align: right; }
  .hero { padding-top: 45px; }
  .grid { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .card { padding: 22px; border-radius: 20px; }
}
