:root {
  --bg: #EDE7DD;
  --surface: #F7F3EC;
  --card: #FFFFFF;
  --border: rgba(42,38,34,0.09);
  --border-strong: rgba(42,38,34,0.14);
  --text: #2A2622;
  --text-dim: #3A332C;
  --text-muted: #6B6259;
  --text-faint: #8A8078;
  --accent: #4C6EF7;
  --accent-dark: #3B5BDB;
  --accent-soft: #F0F2FF;
  --dark: #2A2622;
  --dark-alt: #1F1B18;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-xxl: 26px;
  --swatch-1: #C9DDF2;
  --swatch-2: #E4D3C0;
  --swatch-3: #D7E4CE;
  --swatch-4: #F0D8D8;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

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

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.brand img { width: 30px; height: 30px; border-radius: 8px; display: block; }

nav.site a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  margin-left: 22px;
  text-decoration: none;
}
nav.site a:hover { color: var(--accent-dark); }

main { padding: 56px 0 40px; }

.hero {
  text-align: center;
  padding: 24px 0 40px;
}
.hero img.icon {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(42,38,34,0.16);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.badges {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--bg);
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.badge.soon { background: var(--surface); color: var(--text-faint); border: 1px solid var(--border-strong); }

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 8px 0 48px;
}
@media (max-width: 620px) {
  .features { grid-template-columns: 1fr; }
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px;
}
.feature .swatch {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 14px;
}
.feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}

.cta-band {
  background: var(--dark);
  color: var(--bg);
  border-radius: var(--radius-xxl);
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 48px;
}
.cta-band h2 { margin: 0 0 10px; font-size: 22px; }
.cta-band p { margin: 0; color: rgba(237,231,221,0.72); }

.page h1.title {
  font-size: 28px;
  margin: 0 0 8px;
}
.page .updated {
  color: var(--text-faint);
  font-size: 13.5px;
  margin: 0 0 32px;
}
.page section { margin-bottom: 30px; }
.page h2 {
  font-size: 18px;
  margin: 0 0 10px;
}
.page p, .page li { color: var(--text-dim); font-size: 15px; }
.page ul { padding-left: 20px; }

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 12px;
}
.contact-card strong { display: block; margin-bottom: 4px; }
.contact-card a { font-size: 15px; }

details.faq {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin-bottom: 12px;
}
details.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary:after {
  content: "+";
  float: right;
  color: var(--text-faint);
}
details.faq[open] summary:after { content: "–"; }
details.faq p { margin: 12px 0 0; color: var(--text-muted); font-size: 14.5px; }

footer.site {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer.site .legal { color: var(--text-faint); font-size: 13px; }
footer.site nav a {
  color: var(--text-muted);
  font-size: 13.5px;
  margin-left: 18px;
  text-decoration: none;
}
footer.site nav a:first-child { margin-left: 0; }
footer.site nav a:hover { color: var(--accent-dark); }
