:root {
  --pink: #EA34B0;
  --pink-soft: #fdeaf5;
  --ink: #111111;
  --muted: #6b6b6b;
  --line: #e8e8e8;
  --bg: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  padding: 40px 0 8px;
  text-align: center;
}

.wordmark {
  max-width: 520px;
  width: 70%;
  height: auto;
  image-rendering: pixelated;
}

.tagline {
  margin: 18px auto 0;
  max-width: 640px;
  font-size: 17px;
  color: var(--muted);
}

.strip {
  margin: 40px 0 10px;
  text-align: center;
}
.strip img {
  max-width: 100%;
  height: auto;
  image-rendering: pixelated;
}
.strip-caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.01em; }
h2 {
  font-size: 28px;
  margin: 0 0 18px;
}
h3 { font-size: 18px; margin: 0 0 6px; }

p { font-size: 16px; color: #222; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  background: #fff;
}
.stat .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.stat .value {
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
  color: var(--ink);
}
.stat .sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

.pink-bg {
  background: var(--pink-soft);
  border-radius: 16px;
  padding: 32px;
  margin-top: 16px;
}

.quote {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  border-left: 3px solid var(--pink);
  padding: 6px 0 6px 18px;
  margin: 0;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  float: right;
  color: var(--pink);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.faq details[open] summary::after { content: '–'; }
.faq p { margin: 10px 0 0; color: #333; }

.contract {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  background: #f5f5f5;
  padding: 10px 12px;
  border-radius: 8px;
  word-break: break-all;
  display: inline-block;
  color: #555;
}

footer.site {
  text-align: center;
  padding: 48px 24px 60px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}
footer.site .mark { color: var(--pink); font-weight: 700; }
footer.site .links { margin-top: 10px; }
footer.site .links a { font-weight: 600; }
footer.site .disclaimer { margin-top: 10px; font-size: 12px; max-width: 640px; margin-left: auto; margin-right: auto; }

.cta {
  margin: 28px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0,0,0,0.05);
}
.btn:hover { text-decoration: none; filter: brightness(1.05); }
.ca {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  max-width: 100%;
}
.ca-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.ca code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: #333;
  word-break: break-all;
}
.ca .copy {
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--pink);
}
.ca .copy:hover { background: var(--pink-soft); }

@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  h2 { font-size: 24px; }
  .quote { font-size: 17px; }
}
