body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #ffc93c;
  color: #222;
}

.container { max-width: 1100px; margin: auto; padding: 20px; }

.topbar { background: #ffbb09; padding: 10px 0; position: sticky; top:0; z-index:10; }
.header-inner { display: flex; justify-content: space-between; align-items:center; }

.logo { font-weight: 900; color: #275327; letter-spacing: 0.15em; }

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #275327;
  font-weight: 600;
  font-size: 14px;
}
nav a.cta {
  background: white; padding: 6px 14px;
  border-radius: 25px;
}

.hero { padding: 40px 0; }
.hero-grid { display: grid; gap: 20px; }
.hero-text h1 span { color: #275327; }

.buttons { margin-top: 20px; }
.btn-primary, .btn-secondary {
  padding: 10px 18px; border-radius: 30px;
  font-weight: 700; text-decoration: none; font-size: 14px;
}
.btn-primary { background:#275327; color:white; }
.btn-secondary { background:white; color:#222; margin-left:10px; }

.hero-card {
  background:#ffbb09; padding:40px; border-radius:20px;
  position:relative; font-weight:900; text-align:center; color:#275327;
  box-shadow:0 12px 24px rgba(0,0,0,0.25);
}
.badge {
  position:absolute; bottom:-15px; left:10px;
  background:white; padding:8px 12px;
  border-radius:12px; font-size:12px;
}

.section { padding:50px 0; }
.section.alt { background:#ffe8a4; }

.cards { display:grid; gap:15px; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); }
.card {
  background:white; padding:20px; border-radius:14px;
  box-shadow:0 8px 18px rgba(0,0,0,0.15);
}

.card.link { text-decoration:none; color:inherit; }

.code { background:white; padding:4px 8px; border-radius:6px; font-family:monospace; }
.note { font-size:12px; margin-top:8px; color:#444; }

.footer { background:rgba(255,255,255,0.7); padding:15px 0; text-align:center; margin-top:20px; }
