/* =========================
   RESET
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

:root{
  --bg: #0b0c0f;
  --bg-2: #101218;
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.10);

  --brand: #A7FF25;
  --brand-ink: #0b0c0f;

  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 16px 40px rgba(0,0,0,.45);

  --container: 1300px;
  --gutter: 20px; /* same as 40px total in .container calc(100% - 40px) */

  --accent:#b7ff2a;
  --card:rgba(255,255,255,0.04);
  --stroke:rgba(255,255,255,0.08);
  --card-bg:#141722;

}

/* =========================
   Global Typography
========================= */

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
  font-weight: 700;
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img{ max-width:100%; display:block; }

.muted{
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.w-full{ width:100%; }
.small{ font-size: 12px; }

/* =========================
   BUTTON SYSTEM (GLOBAL)
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;
  border-radius: 14px;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease, 
              transform .2s ease,
              border-color .2s ease;
}

/* Primary */
.btn-primary {
  background: var(--brand);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(182, 255, 31, 0.35);
}

/* Dark */
.btn-dark {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-dark:hover {
  background: #111;
  transform: translateY(-1px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--brand);
}

.section h2 {
  margin-bottom: 40px;
  font-size: 28px;
}

.section-title{
  margin:0;
  font-size: 26px;
  letter-spacing: .01em;
}

.hero-eyebrow {
  font-style: italic;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-content h1 {
  font-size: 48px;
  margin: 12px 0;
}

.hero-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}



