@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=JetBrains+Mono:wght@400;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  --c-bg:        #111214;
  --c-surface:   #1a1c20;
  --c-surface2:  #22252b;
  --c-border:    #2e3138;
  --c-accent:    #c8f000;
  --c-accent-dk: #a0c200;
  --c-white:     #f4f5f0;
  --c-muted:     #8a8f99;
  --c-text:      #dde0d8;
  --c-heading:   #f4f5f0;
  --c-concrete:  #2a2c30;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;

  --sh-card: 0 2px 0 0 var(--c-accent), 0 4px 24px 0 rgba(0,0,0,.45);
  --sh-btn:  0 2px 0 0 var(--c-accent-dk);

  --sp-1: clamp(0.5rem,  1vw, 0.75rem);
  --sp-2: clamp(0.75rem, 1.5vw, 1rem);
  --sp-3: clamp(1rem,    2vw, 1.5rem);
  --sp-4: clamp(1.5rem,  3vw, 2rem);
  --sp-5: clamp(2rem,    4vw, 3rem);
  --sp-6: clamp(3rem,    6vw, 5rem);
  --sp-7: clamp(4rem,    8vw, 7rem);

  --f-mono: 'JetBrains Mono', monospace;
  --f-sans: 'Inter', system-ui, sans-serif;

  --nav-h: 68px;
}

body {
  font-family: var(--f-sans);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── CONTAINER ─────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-sans);
  color: var(--c-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 600; }

p { color: var(--c-text); max-width: 72ch; }

a { color: var(--c-accent); text-decoration: none; transition: color .18s; }
a:hover { color: #fff; }

strong { color: var(--c-white); font-weight: 600; }

ul, ol { padding-left: 1.4em; }

img { display: block; max-width: 100%; height: auto; }

/* ── EYEBROW ─────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: clamp(0.65rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-2);
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--f-sans);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--r-sm);
  padding: .75em 1.6em;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}

.btn--primary {
  background: var(--c-accent);
  color: #111214;
  box-shadow: var(--sh-btn);
}
.btn--primary:hover {
  background: #d8ff10;
  color: #111214;
  transform: translateY(-2px);
  box-shadow: 0 4px 0 0 var(--c-accent-dk), 0 8px 20px rgba(200,240,0,.25);
}
.btn--primary:active { transform: translateY(0); box-shadow: var(--sh-btn); }

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid var(--c-border);
}
.btn--outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-accent);
  padding: .65em 0;
  border-bottom: 1.5px solid var(--c-accent);
  border-radius: 0;
}
.btn--ghost:hover { color: #fff; border-color: #fff; }

/* ── NAV ─────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(17,18,20,.78);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--c-border);
  transition: background .3s;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .55em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand__mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.nav-brand__name {
  font-family: var(--f-sans);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--c-white);
  line-height: 1;
}

.nav-brand__name span {
  color: var(--c-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(.25rem, 1.5vw, .25rem);
  padding: 0;
}

.nav-links li a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--c-muted);
  text-decoration: none;
  padding: .4em .75em;
  border-radius: var(--r-sm);
  transition: color .18s, background .18s;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.is-active {
  color: var(--c-white);
  background: var(--c-surface2);
}

.nav-links li a.is-active {
  color: var(--c-accent);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px;
  height: 38px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding-block: var(--sp-6) var(--sp-4);
  margin-top: var(--sp-7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--sp-5) var(--sp-4);
}

.footer-brand p {
  font-size: .875rem;
  color: var(--c-muted);
  margin-top: var(--sp-2);
  max-width: 30ch;
}

.footer-brand .nav-brand {
  margin-bottom: var(--sp-2);
}

.footer-col h5 {
  font-size: .75rem;
  font-family: var(--f-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--sp-2);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5em;
}

.footer-col ul li a {
  font-size: .9rem;
  color: var(--c-text);
  transition: color .18s;
}
.footer-col ul li a:hover { color: var(--c-accent); }

.footer-bottom {
  margin-top: var(--sp-5);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--c-muted);
  max-width: 100%;
}

.footer-legal {
  display: flex;
  gap: var(--sp-3);
}
.footer-legal a {
  font-size: .8rem;
  color: var(--c-muted);
}
.footer-legal a:hover { color: var(--c-accent); }

/* ── SECTIONS ─────────────────────────────────────── */
.section {
  padding-block: var(--sp-7);
}

.section--alt {
  background: var(--c-surface);
}

.section--concrete {
  background: var(--c-concrete);
  position: relative;
}

.section--concrete::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,.018) 60px,
      rgba(255,255,255,.018) 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,.018) 60px,
      rgba(255,255,255,.018) 61px
    );
  pointer-events: none;
}

.section-header {
  margin-bottom: var(--sp-5);
  max-width: 60ch;
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-header p {
  margin-top: var(--sp-2);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--c-muted);
}

/* ── HERO ─────────────────────────────────────── */
.hero-section {
  padding-block: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 55%, rgba(100,90,200,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(200,240,0,.07) 0%, transparent 55%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,.025) 79px,
      rgba(255,255,255,.025) 80px
    );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5) var(--sp-6);
  align-items: center;
  padding-block: calc(var(--nav-h) + var(--sp-7)) var(--sp-7);
  position: relative;
  z-index: 1;
}

.hero-content { display: flex; flex-direction: column; gap: var(--sp-3); }

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--c-heading);
}

.hero-title em {
  font-style: normal;
  color: var(--c-accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--c-muted);
  max-width: 48ch;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-1);
}

.hero-image-slot {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  aspect-ratio: 4/3;
  background: var(--c-surface2);
}

.hero-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,240,0,.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-tag {
  position: absolute;
  bottom: var(--sp-2);
  left: var(--sp-2);
  z-index: 2;
  background: rgba(17,18,20,.85);
  border: 1px solid var(--c-border);
  backdrop-filter: blur(8px);
  padding: .4em .8em;
  border-radius: var(--r-sm);
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--c-accent);
  letter-spacing: .08em;
}

/* ── CARDS GRID ─────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  position: relative;
  transition: border-color .22s, transform .22s, box-shadow .22s;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.card:hover {
  border-color: rgba(200,240,0,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 42px;
  height: 42px;
  background: rgba(200,240,0,.1);
  border: 1px solid rgba(200,240,0,.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  color: var(--c-accent);
}

.card__icon svg { width: 22px; height: 22px; }

.card h3 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: var(--sp-2);
  color: var(--c-white);
}

.card p {
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ── STATS ─────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.stat-item {
  padding: var(--sp-4) var(--sp-3);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-accent);
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--c-accent);
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: var(--f-sans);
  margin-bottom: .3em;
}

.stat-label {
  font-size: .85rem;
  color: var(--c-muted);
  line-height: 1.4;
}

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band {
  background: var(--c-accent);
  padding-block: var(--sp-6);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(0,0,0,.035) 20px,
      rgba(0,0,0,.035) 21px
    );
  pointer-events: none;
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.cta-inner h2 {
  color: #111214;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  max-width: 55ch;
}

.cta-inner p {
  color: rgba(17,18,20,.7);
  margin-top: .5em;
  font-size: .95rem;
  max-width: 50ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.btn--dark {
  background: #111214;
  color: var(--c-accent);
  box-shadow: 0 2px 0 0 rgba(0,0,0,.4);
}
.btn--dark:hover {
  background: #1a1c20;
  color: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 0 rgba(0,0,0,.4);
}

.btn--outline-dark {
  background: transparent;
  color: #111214;
  border: 1.5px solid rgba(17,18,20,.3);
}
.btn--outline-dark:hover {
  background: rgba(17,18,20,.08);
  color: #111214;
  border-color: #111214;
}

/* ── FAQ ─────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 780px;
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
}

.faq-item summary {
  list-style: none;
  padding: var(--sp-3) var(--sp-4);
  cursor: pointer;
  font-weight: 600;
  color: var(--c-white);
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  transition: color .18s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item[open] summary { color: var(--c-accent); }

.faq-item p {
  padding: 0 var(--sp-4) var(--sp-3);
  font-size: .9375rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── FORMS ─────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5em;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--f-mono);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: .75em 1em;
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: .95rem;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(200,240,0,.12);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

/* ── CONTENT PROSE ─────────────────────────────────────── */
.prose {
  max-width: 72ch;
}

.prose h2 { margin-bottom: var(--sp-3); }
.prose h3 { margin-top: var(--sp-4); margin-bottom: var(--sp-2); color: var(--c-white); }
.prose p  { margin-bottom: var(--sp-3); color: var(--c-text); }
.prose ul { margin-bottom: var(--sp-3); }
.prose li { color: var(--c-text); margin-bottom: .4em; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--c-white);
  font-weight: 400;
  line-height: 1.6;
  max-width: 68ch;
  margin-bottom: var(--sp-4);
}

/* ── DIVIDER ─────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--c-accent);
  margin-block: var(--sp-3);
  border-radius: 2px;
}

.divider--center { margin-inline: auto; }

/* ── BADGE ─────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25em .7em;
  border-radius: var(--r-sm);
  background: rgba(200,240,0,.1);
  color: var(--c-accent);
  border: 1px solid rgba(200,240,0,.25);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-slot { aspect-ratio: 16/9; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset-block-start: var(--nav-h);
    inset-inline: 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    padding: var(--sp-3) var(--sp-4);
    gap: .25rem;
    z-index: 99;
  }
  .nav-links.is-open li a { display: block; padding: .6em .75em; font-size: 1rem; }
}

@media (max-width: 540px) {
  .cards-grid { grid-template-columns: 1fr; }
  .stats-row  { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}body{margin:0}*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}