:root {
  --primary: #22c55e;
  --dark: #15803d;
  --light: #dcfce7;
  --background: #f8fff9;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --gold: #facc15;
  --shadow: 0 18px 55px rgba(17, 24, 39, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(34, 197, 94, 0.12), transparent 32%),
    radial-gradient(circle at 88% 6%, rgba(250, 204, 21, 0.10), transparent 30%),
    var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 800;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 0.95;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-link {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 24px;
  margin: 22px 0;
  padding: 46px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  box-shadow: var(--shadow);
  color: white;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.hero::before {
  width: 130px;
  height: 130px;
  right: 20%;
  top: -44px;
}

.hero::after {
  width: 70px;
  height: 70px;
  left: 44%;
  bottom: 24px;
}

.hero h1 {
  position: relative;
  margin: 0;
  max-width: 640px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  position: relative;
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 650;
}

.hero-art {
  position: relative;
  min-height: 210px;
}

.hero-art img {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(280px, 100%);
  height: auto;
  filter: drop-shadow(0 20px 34px rgba(13, 79, 38, 0.28));
}

.coin-float {
  position: absolute;
  width: 58px;
  height: 58px;
  right: 62%;
  bottom: 18px;
  opacity: 0.35;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0;
}

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

.single-card-grid {
  grid-template-columns: minmax(0, 1fr);
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 26px;
  padding: 14px 16px;
  border: 1px solid rgba(21, 128, 61, 0.28);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.07);
  color: var(--text);
  font-weight: 650;
}

.trust-strip strong {
  color: var(--dark);
}

.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  line-height: 1.12;
}

.card p,
.card li {
  color: var(--muted);
  font-weight: 550;
}

.card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--light);
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
}

.section {
  margin: 26px 0;
}

.section h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  margin: 18px 0 12px;
}

.section h2 {
  margin-top: 34px;
  font-size: 24px;
}

.section p {
  color: var(--muted);
  font-weight: 550;
}

.callout {
  border-color: rgba(34, 197, 94, 0.32);
  background: linear-gradient(135deg, #ffffff, #f0fff4);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 16px;
  padding: 0 20px;
  border-radius: 18px;
  background: var(--primary);
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.26);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 32px 0 42px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.legal-table th,
.legal-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--light);
  color: var(--dark);
  font-weight: 900;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .hero-art {
    min-height: 170px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .two-card-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}
