:root {
  --bg: #081116;
  --bg-2: #0e1a20;
  --surface: rgba(255,255,255,.06);
  --surface-strong: rgba(255,255,255,.1);
  --text: #f4f7f8;
  --muted: #b2c1c9;
  --line: rgba(255,255,255,.12);
  --brand: #8df0b8;
  --brand-2: #49b67f;
  --shadow: 0 18px 50px rgba(0,0,0,.28);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #16303a 0, var(--bg) 32%, #05090c 100%);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }

.eyebrow {
  display: inline-block;
  padding: .55rem .9rem;
  border: 1px solid rgba(141,240,184,.25);
  color: var(--brand);
  background: rgba(141,240,184,.08);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero {
  padding: 7rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid, .grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.4rem;
}

.hero-grid, .grid-2 {
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}

.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stat-card {
  text-align: center;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: .4rem;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  color: var(--muted);
  font-weight: 700;
}

.stat-copy {
  font-size: .85rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,17,22,.76);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #fff 220%);
  color: #051017;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(141,240,184,.25);
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: .96rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: .2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #071217;
}

.btn-primary:hover {
  background: #a2f4c4;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.05);
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  line-height: .94;
  letter-spacing: -.04em;
  margin: .9rem 0 1rem;
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42rem;
}

.hero-panel { position: relative; }

.hero-image {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  min-height: 500px;
  background: #0d161b;
}

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

.hero-float {
  position: absolute;
  right: -1rem;
  bottom: 1.2rem;
  width: min(42%, 260px);
}

.kicker-list,
.check-list,
.contact-list {
  display: grid;
  gap: .85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.contact-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}

.check {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: rgba(141,240,184,.13);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-top: .05rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 1rem;
}

.section p.section-intro {
  color: var(--muted);
  max-width: 52rem;
}

.badge-row {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.badge {
  padding: .5rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  color: var(--muted);
}

.split-media {
  border-radius: 26px;
  min-height: 460px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(7,15,19,.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.1rem;
}

.partner-card small {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--brand);
  font-weight: 700;
}

.partner-card h3,
.feature-card h3 {
  margin: .55rem 0;
  font-size: 1.35rem;
}

.partner-card p,
.feature-card p,
.contact-card p,
.copy-muted {
  color: var(--muted);
}

.sales-hero { padding: 6rem 0 4rem; }

.sales-banner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.4rem;
  align-items: stretch;
}

.cta-strip {
  background: linear-gradient(135deg, rgba(141,240,184,.17), rgba(255,255,255,.06));
  border: 1px solid rgba(141,240,184,.18);
  border-radius: 28px;
  padding: 1.6rem;
}

.quote {
  font-size: 1.05rem;
  color: #dbf5e7;
}

.form-grid { display: grid; gap: 1rem; }

.field label {
  display: block;
  margin-bottom: .4rem;
  font-size: .92rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: .95rem 1rem;
  font: inherit;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #93a6b0;
}

.footer {
  padding: 2.3rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}

.small { font-size: .92rem; }
.subtle { color: var(--muted); }

.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; }

th, td {
  text-align: left;
  padding: .9rem .8rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

th {
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.callout {
  border-left: 4px solid var(--brand);
  padding: 1rem 1rem 1rem 1.1rem;
  background: rgba(141,240,184,.08);
  border-radius: 14px;
}

.center { text-align: center; }

.muted-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.2rem;
}

.legal h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--muted); }

@media (max-width: 960px) {
  .hero-grid,
  .grid-2,
  .sales-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }

  .hero { padding-top: 5.5rem; }
  .hero-image { min-height: 380px; }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #0a151b;
    border: 1px solid var(--line);
    border-radius: 20px;
    z-index: 1000;
    flex-wrap: nowrap;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .container { width: min(var(--max), calc(100% - 1.2rem)); }
  .section { padding: 3.7rem 0; }
  .hero h1 { font-size: 2.55rem; }
  .btn { width: 100%; }
  .hero-actions { display: grid; gap: .8rem; }
  .hero-float { width: 42%; right: .5rem; bottom: .5rem; }
}