:root {
  --honey: #f5c518;
  --honey-dark: #d9a900;
  --black: #1a1712;
  --cream: #fff8e7;
  --cream-dark: #f5ecd2;
  --text: #2b2417;
  --text-soft: #6b6248;
  --radius: 18px;
  --max-width: 1100px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hexagon pattern background */
.hex-bg {
  background-color: var(--black);
  background-image:
    linear-gradient(30deg, var(--honey) 12%, transparent 12.5%, transparent 87%, var(--honey) 87.5%, var(--honey)),
    linear-gradient(150deg, var(--honey) 12%, transparent 12.5%, transparent 87%, var(--honey) 87.5%, var(--honey)),
    linear-gradient(30deg, var(--honey) 12%, transparent 12.5%, transparent 87%, var(--honey) 87.5%, var(--honey)),
    linear-gradient(150deg, var(--honey) 12%, transparent 12.5%, transparent 87%, var(--honey) 87.5%, var(--honey));
  background-size: 62px 108px;
  background-position: 0 0, 0 0, 31px 54px, 31px 54px;
  background-blend-mode: overlay;
  opacity: 1;
}

/* Header / nav */
header.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--honey);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--honey);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background: var(--honey);
  color: var(--black);
}

.nav-links a.active {
  background: var(--honey);
  color: var(--black);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--honey);
  border-radius: 10px;
  color: var(--honey);
  font-size: 1.4rem;
  padding: 4px 12px;
  cursor: pointer;
}

@media (max-width: 780px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 10px 24px 18px;
    border-bottom: 3px solid var(--honey);
  }
  .nav-links.open {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--honey);
  color: var(--black);
  box-shadow: 0 4px 0 var(--honey-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--honey);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero */
.hero {
  color: var(--cream);
  padding: 70px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero .tagline {
  color: var(--honey);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: #e9e2cc;
  margin-bottom: 30px;
  max-width: 46ch;
}

.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--honey);
}

@media (max-width: 780px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-img {
    max-width: 340px;
    margin: 0 auto;
  }
}

/* Sections */
section {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
  color: var(--black);
}

.section-kicker {
  color: var(--honey-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
}

.section-lead {
  color: var(--text-soft);
  max-width: 65ch;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.card {
  background: #fff;
  border: 1px solid #ecdfb6;
  border-radius: var(--radius);
  padding: 28px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 780px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.pill {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--text);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pill-soon {
  background: var(--black);
  color: var(--honey);
}

/* Roadmap timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--honey);
  border-radius: 3px;
}

.timeline li {
  position: relative;
  padding: 4px 0 34px 58px;
}

.timeline li::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--honey);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--honey);
}

.timeline h3 {
  margin: 0 0 6px;
}

.timeline p {
  margin: 0;
  color: var(--text-soft);
}

.timeline li.current::before {
  background: var(--honey);
  color: var(--black);
}

/* FAQ */
details.faq-item {
  background: #fff;
  border: 1px solid #ecdfb6;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 14px;
}

details.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--honey-dark);
  margin-left: 12px;
}

details.faq-item[open] summary::after {
  content: "\2212";
}

details.faq-item p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

/* Info / community cards */
.info-card {
  background: #fff;
  border: 1px solid #ecdfb6;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.info-card > a,
.info-card > span.pill {
  margin-top: auto;
}

.info-card .pill {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 26px;
  font-size: 1rem;
  text-align: center;
}

.info-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--honey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.info-card h3 {
  margin: 0 0 8px;
  color: var(--text);
}

.info-card p {
  color: var(--text-soft);
  margin: 0 0 18px;
}

.contract-box {
  background: var(--black);
  color: var(--honey);
  border-radius: var(--radius);
  padding: 26px 30px;
  font-family: "Courier New", monospace;
  font-size: 1.05rem;
  text-align: center;
  letter-spacing: 0.03em;
  margin: 24px 0;
}

/* Footer */
footer.site-footer {
  background: var(--black);
  color: #cfc7ab;
  padding: 48px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--honey);
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  border: 2px solid var(--honey);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-links a:hover {
  background: var(--honey);
  color: var(--black);
}

.footer-bottom {
  border-top: 1px solid #3a3527;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #9a9174;
  text-align: center;
}
