:root {
  --bg: #090a0f;
  --bg-2: #0f1118;
  --card: #11141d;
  --card-2: #151a25;
  --border: #23293a;
  --text: #f4f7ff;
  --muted: #9ea7bf;
  --accent: #a9643f;
  --accent-hover: #935536;
  --green: #59d499;
  --radius: 16px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(1000px 500px at 70% -120px, rgba(169, 100, 63, 0.2) 0%, transparent 60%),
    radial-gradient(700px 400px at 0% 0%, rgba(147, 85, 54, 0.18) 0%, transparent 65%), var(--bg);
}

.page {
  max-width: 1060px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: inherit;
  text-decoration: none;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 12px;
}

.kicker {
  color: #c58e68;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 12px;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(169, 100, 63, 0.13), rgba(17, 20, 29, 0.85)), var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 34px 28px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -130px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 100, 63, 0.24), transparent 65%);
  pointer-events: none;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.04;
  max-width: 720px;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 12px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--accent), #8f532f);
  box-shadow: 0 10px 24px rgba(169, 100, 63, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #bb7b54, var(--accent-hover));
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--card-2);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: #37425e;
  background: #1a2030;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)), var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.stack {
  margin-top: 46px;
  display: grid;
  gap: 54px;
}

.section-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.what-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.what-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0f131d;
  padding: 16px;
}

.what-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.roadmap-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.roadmap-item {
  border: 1px dashed #3b4663;
  border-radius: 10px;
  background: #0f131d;
  padding: 10px 12px;
  color: var(--muted);
}

.chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid #3b4663;
  border-radius: 999px;
  padding: 6px 10px;
  background: #0f131d;
  color: #d7e0ff;
  font-size: 12px;
}

.steps {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0f131d;
  padding: 14px 14px;
}

.step strong {
  display: block;
  margin-bottom: 2px;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), #8f532f);
  flex-shrink: 0;
}

.download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-list {
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0f131d;
  padding: 12px;
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.section-title {
  margin: 0 0 16px;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.section-title::before {
  content: "⟩";
  color: var(--green);
  font-weight: 900;
}

.form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.input,
.textarea {
  width: 100%;
  background: #0f121b;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
}

.input:focus,
.textarea:focus {
  border-color: #9a5a39;
  box-shadow: 0 0 0 3px rgba(169, 100, 63, 0.24);
}

.textarea {
  min-height: 130px;
  margin-top: 10px;
  font: 13px/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.status-box {
  margin-top: 14px;
  border: 1px dashed #38415a;
  border-radius: 12px;
  background: #0f131d;
  padding: 12px;
}

.site-footer {
  margin-top: 60px;
  padding: 22px 4px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-link {
  color: #b7c2e4;
  text-decoration: none;
  font-size: 13px;
}

.footer-link:hover {
  color: #d8e0fb;
  text-decoration: underline;
}

.footer-donate {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.legal-card {
  background: linear-gradient(180deg, rgba(169, 100, 63, 0.1), rgba(17, 20, 29, 0.9)), var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  padding: 24px;
}

.legal-card h1 {
  font-size: clamp(28px, 5vw, 44px);
}

.legal-card h2 {
  margin: 22px 0 8px;
  font-size: 20px;
}

.legal-card ul {
  margin: 8px 0 14px 20px;
  padding: 0;
}

.legal-card li {
  margin: 6px 0;
  color: var(--muted);
}

.legal-meta {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.legal-back {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .hero {
    padding: 24px 18px;
  }
  .what-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
