:root {
  --bg: #0a1420;
  --panel: rgba(236, 231, 216, 0.035);
  --text: #ece7d8;
  --text-soft: rgba(236, 231, 216, 0.72);
  --text-faint: rgba(236, 231, 216, 0.45);
  --accent: #f2842a;
  --line: rgba(236, 231, 216, 0.1);
  --ok: #9cd6a6;
  --no: rgba(236, 231, 216, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 200;
  background: var(--bg);
  color: var(--text-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vh, 5rem) 1.5rem 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 2.5rem;
  text-decoration: none;
  color: var(--text);
}
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.brand span {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: lowercase;
  text-indent: 0.3em;
}

.hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.8rem;
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  font-weight: 200;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.badge {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.card {
  margin-top: 1.2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
}
.grid .card { margin-top: 0; }

h2 {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

p { margin-bottom: 0.7rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 300; }

ul { padding-left: 1.2rem; }
li { margin-bottom: 0.3rem; }

a { color: var(--accent); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--text); }

.btn {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.7em 1.2em;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn:hover { background: var(--accent); color: var(--bg); }

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}
.faq details:first-of-type { border-top: none; }
.faq summary {
  cursor: pointer;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
}
.faq summary + p { margin-top: 0.6rem; }

table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
th, td {
  text-align: left;
  vertical-align: top;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 200;
}
th { color: var(--text); font-weight: 300; white-space: nowrap; padding-right: 1.2rem; }
.ok { color: var(--ok); }
.no { color: var(--no); }

code {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 6px;
  color: var(--text);
}

.foot {
  margin-top: 2.2rem;
  color: var(--text-faint);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
