:root {
  --bg: #0f1f1a;
  --bg-2: #163028;
  --surface: #1c3a31;
  --text: #f3f7f5;
  --muted: #b7c9c1;
  --accent: #2fbf71;
  --accent-2: #e8c547;
  --line: rgba(243, 247, 245, 0.12);
  --danger: #ff6b6b;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 191, 113, 0.18), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(232, 197, 71, 0.12), transparent 28%),
    linear-gradient(180deg, #0c1814 0%, #13261f 45%, #0f1f1a 100%);
  min-height: 100vh;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12, 24, 20, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.7rem;
  background: linear-gradient(145deg, var(--accent), #1a8f52);
  display: grid;
  place-items: center;
  color: #042014;
  font-family: var(--font-display);
  font-weight: 700;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #042014 !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0.6rem 0 1rem;
}
.eyebrow {
  color: var(--accent-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
.lead { color: var(--muted); font-size: 1.08rem; max-width: 36rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #042014; }
.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.03);
}
.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: #000;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 18, 14, 0.72));
  pointer-events: none;
}

.section { padding: 4rem 0; }
.section-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
  max-width: 42rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
}
.section-head p { color: var(--muted); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.panel h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
.panel p, .panel li { color: var(--muted); }
.panel ol, .panel ul { padding-left: 1.1rem; }
.panel li { margin: 0.35rem 0; list-style: disc; }
.panel ol li { list-style: decimal; }

.media-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}
.media-frame {
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
}
.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.verifier {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(47,191,113,0.12), rgba(232,197,71,0.08));
}
.verifier-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}
.meta-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.meta-list strong { color: var(--text); }

.ads-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.ads-table th,
.ads-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.ads-table th {
  background: rgba(255,255,255,0.04);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.ads-table tr:last-child td { border-bottom: 0; }
.char-count {
  display: inline-block;
  margin-left: 0.4rem;
  color: var(--accent-2);
  font-size: 0.8rem;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-grid .panel strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
form {
  display: grid;
  gap: 0.8rem;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.disclaimer {
  border-left: 3px solid var(--accent-2);
  padding: 0.9rem 1rem;
  background: rgba(232,197,71,0.08);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  margin: 1rem 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.2rem;
}
.site-footer h4 {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.site-footer a, .site-footer p {
  color: var(--muted);
  display: block;
  margin: 0.35rem 0;
  font-size: 0.92rem;
}
.legal-bar {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}
.prose {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  max-width: 48rem;
}
.prose h2, .prose h3 { color: var(--text); margin-top: 0.6rem; }
.prose ul { padding-left: 1.1rem; }
.prose li { list-style: disc; margin: 0.35rem 0; }

@media (max-width: 900px) {
  .hero,
  .media-row,
  .verifier,
  .contact-grid,
  .footer-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .mobile-nav { display: flex; }
  .hero-media, .hero-media video, .hero-media img { min-height: 280px; }
}
.mobile-nav { display: none; gap: 0.6rem; }
.mobile-nav a {
  color: var(--muted);
  font-size: 0.85rem;
}
