﻿:root {
  --bg: #f4f1ea;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --ink: #151515;
  --muted: #63605a;
  --line: #d8d2c8;
  --brand: #c8ff35;
  --brand-dark: #586f10;
  --accent: #c8ff35;
  --danger: #b91c1c;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--ink);
  color: #fff;
  padding: .6rem .8rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; }

.site-header {
  background: #111;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.brand-mark { display:grid; place-items:center; width:2rem; height:2rem; color:#111; background:var(--accent); border-radius:50% 42% 50% 38%; font-size:.72rem; font-weight:900; transform:rotate(-5deg); }
.brand-name { color:#fff; text-transform:uppercase; letter-spacing:.08em; }
.brand-name em { color:var(--accent); font-style:normal; }

.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  padding: .45rem .6rem;
  border-radius: 6px;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  color: #dbeafe;
  padding: .45rem .6rem;
  border-radius: 6px;
  font-size: .92rem;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;
}
.main-nav .nav-account { border:1px solid rgba(255,255,255,.35); margin-left:.35rem; }

.hero {
  background: radial-gradient(circle at 82% 28%, rgba(200,255,53,.18), transparent 22rem), linear-gradient(125deg, #101010 0%, #1d1d1b 68%, #292d1e 100%);
  color: #fff;
  min-height: 620px;
  display:flex;
  align-items:center;
  border-bottom: 1px solid #343630;
}

.hero-inner,
.page-hero-inner,
.section-inner,
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 .75rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.hero h1 { font-size:clamp(3.3rem, 8vw, 7rem); max-width:1000px; text-transform:uppercase; }
.hero h1 span { color:var(--accent); }
.eyebrow,.section-kicker { display:block; margin-bottom:1rem; font-size:.78rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--brand-dark); }
.eyebrow { color:var(--accent); }
.hero-note { margin-top:1rem !important; font-size:.85rem !important; color:#aaa; }

.hero p,
.page-hero p {
  max-width: 760px;
  font-size: 1.12rem;
  margin: 0 0 1.25rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .65rem .95rem;
  border-radius: 7px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #111;
  font-weight: 700;
  cursor: pointer;
}
.button:hover { background: #ddff7f; color:#111; text-decoration: none; transform:translateY(-1px); }
.button.secondary { background: #fff; color: var(--brand-dark); border-color: var(--line); }
.button.secondary:hover { background: var(--surface-2); }
.button.warning { background: var(--accent); color: #111827; }

.page-hero {
  background: #e7eef7;
  border-bottom: 1px solid var(--line);
}

.section-inner { padding-top: 2rem; padding-bottom: 2rem; }
.section-title { margin: 0 0 1rem; font-size: clamp(1.8rem,4vw,3.4rem); line-height:1.05; letter-spacing:-.035em; max-width:850px; }
.lead { color: var(--muted); max-width: 800px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card,
.stat,
.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1rem;
}
.card h2,
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.feature-card { position:relative; padding:1.5rem; min-height:260px; display:flex; flex-direction:column; }
.feature-card p:last-child { margin-top:auto; }
.card-number { color:#969189; font-size:.75rem; font-weight:800; letter-spacing:.12em; }
.dark-band { background:#171717; color:#fff; margin-top:2rem; }
.split-callout { display:grid; grid-template-columns:1.2fr 1fr; gap:clamp(2rem,8vw,8rem); padding-top:5rem; padding-bottom:5rem; }
.split-callout h2 { font-size:clamp(2rem,5vw,4rem); line-height:1; letter-spacing:-.04em; margin:.5rem 0; }
.split-callout p { color:#c9c9c4; font-size:1.08rem; }
.section-kicker.light,.text-link-light { color:var(--accent); }

.stat strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom:.25rem;
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
th, td { padding: .8rem; border-bottom: 1px solid var(--line); text-align: left; }
th { background: #f1f5f9; font-size: .9rem; }
tr:last-child td { border-bottom: 0; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
label { display: block; font-weight: 700; margin-bottom: .35rem; }
input, select, textarea {
  width: 100%;
  padding: .7rem;
  border: 1px solid #bcc8d8;
  border-radius: 6px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 130px; resize: vertical; }
.full { grid-column: 1 / -1; }

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #dff6f3;
  color: #075f58;
  padding: .2rem .55rem;
  font-size: .82rem;
  font-weight: 700;
}
.badge.gold { background: #fef3c7; color: #92400e; }
.badge.red { background: #fee2e2; color: var(--danger); }

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid var(--brand);
}
.timeline li { padding: 0 0 1rem 1rem; }
.timeline strong { display: block; }

.site-footer {
  background: #0d0d0d;
  color: #c8c8c3;
  margin-top: 0;
}
.site-footer a { color: #fff; }
.footer-inner { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .35rem; }

@media (max-width: 880px) {
  .header-inner { align-items: flex-start; }
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; width: 100%; flex-direction: column; }
  .main-nav.open { display: flex; }
  .main-nav .nav-account { margin-left:0; }
  .hero { min-height:560px; }
  .split-callout { grid-template-columns:1fr; }
  .header-inner { flex-wrap: wrap; }
  .grid, .grid.two, .grid.four, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
}
