:root {
  --bg: #050a06;
  --panel: rgba(10, 14, 10, 0.72);
  --panel-strong: rgba(12, 18, 12, 0.88);
  --line: rgba(162, 232, 23, 0.18);
  --line-strong: rgba(162, 232, 23, 0.42);
  --green: #a2e817;
  --green-2: #baf736;
  --text: #f4f7f4;
  --muted: rgba(244, 247, 244, 0.72);
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 18px;
  --font-headings: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: radial-gradient(circle at top, rgba(162, 232, 23, 0.08), transparent 32%), var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell {
  width: min(1400px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 32px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 8, 6, 0.7);
  backdrop-filter: blur(16px);
}

.brand-logo { height: 34px; width: auto; }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.preview-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px; border-radius: 999px; font-size: 11px; font-weight: 800;
  letter-spacing: 1.3px; text-transform: uppercase; color: var(--green);
  border: 1px solid var(--line-strong); background: rgba(162, 232, 23, 0.06);
}
.topbar-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 14px; border-radius: 999px; font-size: 13px; font-weight: 800;
  background: var(--green); color: #111; box-shadow: 0 10px 30px rgba(162, 232, 23, 0.24);
}

.hero {
  position: relative;
  min-height: 82vh;
  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 4vw, 56px);
  background: linear-gradient(90deg, rgba(6, 8, 6, 0.98), rgba(6, 8, 6, 0.64));
  box-shadow: var(--shadow);
}

.hero-media,
.hero-bg,
.hero-noise,
.hero-glow { position: absolute; inset: 0; }
.hero-media { z-index: 0; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.9) brightness(0.56) contrast(1.08); transform: scale(1.04); }
.hero-noise { background: linear-gradient(180deg, rgba(5,10,6,0.1), rgba(5,10,6,0.75)); }
.hero-glow-a, .hero-glow-b {
  width: 40vw; height: 40vw; border-radius: 50%; filter: blur(90px); opacity: 0.42; pointer-events: none;
}
.hero-glow-a { left: -10%; top: -12%; background: rgba(162,232,23,0.16); }
.hero-glow-b { right: -14%; bottom: -18%; background: rgba(255,255,255,0.08); }

.hero-copy, .hero-panel { position: relative; z-index: 1; }
.eyebrow, .section-kicker, .panel-kicker {
  display: inline-block; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
}
.hero-copy h1 {
  margin: 14px 0 14px;
  max-width: 12ch;
  font-family: var(--font-headings);
  font-size: clamp(58px, 8vw, 108px);
  line-height: 0.92;
  text-transform: uppercase;
}
.hero-copy p { max-width: 56ch; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.hero-actions, .featured-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 18px; border-radius: 14px; border: 1px solid transparent;
  font-weight: 800; letter-spacing: .2px; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #101510; box-shadow: 0 14px 30px rgba(162,232,23,0.22); }
.btn-secondary { background: rgba(255,255,255,0.04); color: var(--text); border-color: rgba(255,255,255,0.14); }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.hero-badges span, .featured-meta span, .card-footer span {
  padding: 8px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.84); font-size: 12px; font-weight: 700;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 340px);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(8, 12, 8, 0.72);
  backdrop-filter: blur(14px);
}
.hero-panel strong { display: block; margin: 8px 0; font-size: 42px; font-family: var(--font-headings); text-transform: uppercase; line-height: 1; }
.hero-panel p { color: var(--muted); margin: 0 0 14px; }
.hero-panel ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,0.88); line-height: 1.9; }

.section { margin-top: 26px; }
.section-heading { margin-bottom: 16px; }
.section-heading h2, .final-cta h2 {
  margin: 8px 0 0; font-family: var(--font-headings); text-transform: uppercase;
  font-size: clamp(34px, 4vw, 60px); line-height: 0.95;
}

.featured-card {
  display: grid; grid-template-columns: 1.1fr 0.9fr; overflow: hidden; border-radius: 30px;
  border: 1px solid var(--line); background: var(--panel); box-shadow: var(--shadow);
}
.featured-visual { position: relative; min-height: 360px; }
.featured-visual img { width: 100%; height: 100%; object-fit: cover; }
.featured-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,8,6,0.06), rgba(6,8,6,0.72)); }
.featured-content { padding: clamp(22px, 3vw, 36px); display: flex; flex-direction: column; justify-content: center; }
.featured-tag, .card-number {
  display: inline-flex; width: fit-content; padding: 6px 10px; border-radius: 999px;
  background: rgba(162,232,23,0.12); color: var(--green); border: 1px solid rgba(162,232,23,0.18); font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
}
.featured-content p { color: var(--muted); font-size: 16px; line-height: 1.75; margin: 14px 0 0; }

.cards-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px;
}
.landing-card {
  min-height: 240px; padding: 24px; border-radius: 24px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,22,18,0.92), rgba(8,12,8,0.92)); box-shadow: var(--shadow);
}
.landing-card-large { min-height: 300px; }
.landing-card h3 { margin: 18px 0 10px; font-size: 28px; font-family: var(--font-headings); line-height: 0.95; text-transform: uppercase; }
.landing-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 24px; }
.card-footer a { color: var(--green); font-weight: 800; }
.muted-card { opacity: 0.82; }

.trust-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 22px; border-radius: 24px; border: 1px solid var(--line); background: rgba(255,255,255,0.03);
}
.trust-strip strong { display: block; margin-bottom: 8px; font-size: 18px; text-transform: uppercase; font-family: var(--font-headings); }
.trust-strip p { margin: 0; color: var(--muted); line-height: 1.6; }

.final-cta {
  margin-bottom: 12px; padding: 34px 24px; border-radius: 28px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(18,22,18,0.92), rgba(8,12,8,0.92)); text-align: center;
}
.final-cta p { color: var(--muted); max-width: 60ch; margin: 12px auto 0; }
.final-cta .btn { margin-top: 22px; }

.footer {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 6px 0; color: rgba(244,247,244,0.68); font-size: 12px; letter-spacing: .6px; text-transform: uppercase;
}

@media (max-width: 1024px) {
  .hero, .featured-card, .cards-grid, .trust-strip { grid-template-columns: 1fr; }
  .hero-panel { justify-self: start; width: 100%; }
}

@media (max-width: 720px) {
  .page-shell { width: min(100vw - 20px, 1400px); padding-top: 10px; }
  .topbar { border-radius: 22px; padding: 12px 14px; }
  .preview-pill { display: none; }
  .hero { min-height: auto; border-radius: 28px; padding: 24px 20px; }
  .hero-copy h1 { max-width: 10ch; font-size: clamp(42px, 14vw, 60px); }
  .hero-copy p { font-size: 15px; }
  .hero-panel { border-radius: 22px; }
  .hero-panel strong { font-size: 34px; }
  .featured-visual { min-height: 240px; }
  .landing-card, .landing-card-large { min-height: 210px; }
  .card-footer { align-items: flex-start; flex-direction: column; }
}
