:root {
  --ink: #211c2b;
  --muted: #655d6d;
  --soft: #8b8293;
  --line: #e8e1ed;
  --paper: #ffffff;
  --wash: #faf7fd;
  --brand: #7655e9;
  --pink: #dc6fa4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.topbar-inner {
  width: min(780px, calc(100% - 36px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand img { border-radius: 10px; }

.back-link {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.page {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 76px;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-align: center;
}

.updated {
  margin: 15px 0 34px;
  color: var(--soft);
  font-size: 0.86rem;
  text-align: center;
}

.summary {
  margin-bottom: 44px;
  padding: 20px 22px;
  border: 1px solid #e2d8f2;
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  background: var(--wash);
}

.summary-title {
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.summary ul { margin: 0; }

h2 {
  margin: 42px 0 12px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h2:first-of-type {
  padding-top: 0;
  border-top: 0;
}

h3 {
  margin: 24px 0 7px;
  font-size: 1rem;
}

p {
  margin: 10px 0;
  color: var(--muted);
}

ul {
  margin: 10px 0 16px;
  padding-left: 21px;
}

li {
  margin: 7px 0;
  color: var(--muted);
}

strong { color: var(--ink); }

.email-pill {
  display: inline-block;
  padding: 3px 9px;
  border: 1px solid #dacdf1;
  border-radius: 999px;
  background: #f7f2ff;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.contact-card {
  margin-top: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--wash);
}

.contact-card span { font-weight: 700; }

@media (max-width: 600px) {
  .page { padding-top: 42px; }
  .contact-card { align-items: flex-start; flex-direction: column; }
}
