/* ============================================================
   MME — Much More Ecosystem — shared design system
   (built from Figma "xenom MMEs website (Copy)")
   ============================================================ */

:root {
  /* Brand colors (Figma tokens) */
  --black: #020401;
  --black-2: #020803;
  --green: #07cf10;
  --green-2: #0bb304;
  --green-3: #06ff17;
  --gold: #f48c06;
  --orange: #ff8c00;
  --orange-2: #ff9000;
  --gold-deep: #cd8d16;
  --white: #ffffff;
  --white-soft: #e8f4e9;
  --white-2: #e1f4e2;

  /* Signature angular gradient used across section backgrounds */
  --section-grad: conic-gradient(from -6deg at 46% 48%,
      rgba(22, 36, 22, 0.8) 42%,
      rgba(7, 207, 16, 0.8) 45%,
      rgba(0, 0, 0, 0.8) 60%);

  --gold-linear: linear-gradient(195deg, rgba(7, 207, 16, 1) 0%, rgba(4, 105, 8, 1) 63%);

  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-logo: 'Red Rose', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Text helpers ---------- */
.t-eyebrow {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.grad-gold-text {
  background: linear-gradient(90deg, #f48c06 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Section gradient backgrounds ---------- */
.bg-section { background: var(--section-grad); }
.bg-dark { background: var(--black); }
.bg-gold-grad { background: linear-gradient(90deg, #f48c06 0%, #ff9000 100%); }
.bg-green-grad { background: linear-gradient(195deg, #07cf10 0%, #046908 63%); }

/* ---------- Buttons ---------- */
.btn-sq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-sq:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-outline-gold { background: rgba(1, 1, 1, 0.5); color: var(--gold); border-color: var(--gold); }
.btn-outline-gold-solid { background: var(--gold); color: var(--black-2); border-color: var(--gold); }
.btn-green { background: var(--green-3); color: #003300; border-color: var(--green-3); }

/* pill buttons used in the "Ecosystem" section nav */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: 35px;
  border: 2px solid var(--green);
  background: var(--section-grad);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.btn-pill:hover { transform: translateY(-2px); }

/* ---------- Card surfaces ---------- */
.card-grad {
  background: var(--section-grad);
  border: 2px solid var(--green);
  border-radius: 35px;
}
.card-dark {
  background: var(--black-2);
  border: 2px solid rgba(11, 179, 4, 0.6);
  border-radius: 35px;
}

.rounded-35 { border-radius: 35px; }
.rounded-20 { border-radius: 20px; }
.rounded-16 { border-radius: 16px; }

/* ---------- Logo ---------- */
.logo-mm {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}

/* ---------- Container ---------- */
.container-x {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Value card (Ownership / Empowerment / Transparency) ---------- */
.value-card {
  width: 302px;
  min-height: 240px;
  border-radius: 24px;
  padding: 30px 26px 26px;
  background: var(--section-grad);
  border: 2px solid rgba(11, 179, 4, 0.5);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.value-card h3 {
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--gold);
}
.value-card p {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.7;
}

/* DAO / NFT / Wallet footer badges (Figma "Golden" fill) */
.badge-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  background: linear-gradient(90deg, var(--gold) 0%, var(--orange-2) 100%);
}

/* divider line */
.divider {
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  width: 100%;
}

/* generic link */
.link-underline {
  font-weight: 500;
  text-decoration: underline;
  color: inherit;
}

@media (max-width: 640px) {
  .container-x { padding: 0 16px; }
}
