:root {
  --green: #44c810;
  --green-hover: #3bb50e;
  --lime: #52cd22;
  --lime-bright: #7cff2a;
  --navy: #0f3267;
  --ink: #282828;
  --muted: #5d6775;
  --slate: #94a3b8;
  --line: #dfe3ea;
  --bg: #f6f6f6;
  --white: #ffffff;
  --max: 1224px;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(15, 50, 103, 0.08);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

section[id] { scroll-margin-top: 88px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 12px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
}

.lime { color: var(--lime); }
.nowrap { white-space: nowrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 22px;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-green { background: var(--green); color: var(--ink); }
.btn-green:hover { background: var(--green-hover); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 0;
  height: auto;
  padding: 0 4px;
}
.btn-ghost:hover { transform: none; color: var(--lime); }
.hero h1 .tone-muted { color: #7d868f; }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #e6e6e6;
}
.btn-dark { background: var(--ink); color: var(--white); }

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 88px;
  display: flex;
  align-items: center;
  background: rgba(10, 16, 22, 0.78);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  background: rgba(10, 16, 22, 0.94);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.nav-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  color: #8b95a3;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a.active,
.nav-links a:hover { color: var(--lime-bright); }
.nav-cta { margin-left: 8px; }
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid rgba(223,227,234,.75);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav.open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .menu-btn span:nth-child(2) { opacity: 0; }
.nav.open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0a1218 center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,10,16,.35) 0%, rgba(6,10,16,.25) 40%, rgba(6,10,16,.55) 100%),
    linear-gradient(90deg, rgba(6,10,16,.45) 0%, transparent 28%, transparent 72%, rgba(6,10,16,.15) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 120px 24px 96px; max-width: 980px; }
.hero .kicker {
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(48px, 7.4vw, 92px);
  color: #fff;
  max-width: 920px;
  margin: 0 auto;
}
.hero p.lead {
  margin: 22px auto 0;
  max-width: 640px;
  font-size: 18px;
  color: #e8e8e8;
}
.hero p.lead strong { color: var(--lime); font-weight: 700; }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #c9c9c9;
  letter-spacing: 0.28em;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-hint span { font-size: 16px; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* STATS */
.stats { padding: 88px 0 72px; background: #07090c; color: #fff; }
.stats-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: start;
}
.stats h2 { font-size: clamp(36px, 4.4vw, 56px); max-width: 640px; color: #8d939c; }
.stats h2 .tone-muted { color: #8d939c; }
.stats-copy { color: #9aa3ad; font-size: 16px; max-width: 460px; margin: 0 0 28px; }
.stats-copy strong { color: #fff; font-weight: 700; }
.stat-row { display: flex; gap: 48px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
}
.stat-label {
  color: var(--slate);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* FEATURES */
.features { background: var(--bg); padding: 96px 0 108px; }
.features .section-head { text-align: center; margin-bottom: 40px; }
.features h2 { font-size: clamp(36px, 4.6vw, 52px); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-media {
  height: 168px;
  background: #b7bcc4 center/cover no-repeat;
}
.card-body { padding: 22px 22px 26px; }
.card-body h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 8px;
}
.card-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.cta-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-card h3 { font-size: 42px; margin-bottom: 16px; }
.cta-card p { color: #c9d4e4; margin: 0 0 24px; }

/* PAYBACK */
.payback {
  background: var(--navy);
  color: #fff;
  padding: 92px 0 100px;
}
.payback .eyebrow { color: var(--lime); }
.payback h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 36px; }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 36px;
}
.sol-grid h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
  color: var(--lime);
  margin: 0 0 8px;
}
.sol-grid p { margin: 0; color: #d5deea; font-size: 14.5px; line-height: 1.55; }
.table-wrap {
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 20px;
  overflow: hidden;
}
.pay-table { width: 100%; border-collapse: collapse; }
.pay-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--slate);
  padding: 22px 28px 16px;
  text-transform: uppercase;
}
.pay-table td {
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  vertical-align: top;
  font-size: 15px;
}
.pay-table td:first-child { font-weight: 700; width: 34%; color: #fff; }
.pay-table td:nth-child(2) { color: #d5deea; font-weight: 400; }

/* VENUES */
.venues { background: var(--bg); padding: 96px 0; }
.venues .section-head { text-align: center; margin-bottom: 40px; }
.venues h2 { font-size: clamp(36px, 4.8vw, 56px); }
.venue-card {
  background: #fff;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 88px 280px 1fr;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  min-height: 260px;
}
.venue-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--lime);
}
.venue-photo { overflow: hidden; }
.venue-photo img { width: 100%; height: 100%; object-fit: cover; }
.venue-body { padding: 28px 32px 22px; }
.venue-body h3 { font-size: 28px; margin-bottom: 18px; }
.benefit-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.benefit-row h4 {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--slate);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 8px;
}
.benefit-row p { margin: 0; font-size: 14.5px; color: var(--ink); }
.quote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
  font-size: 14px;
}
.quote img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
}
.quote .lime { font-weight: 600; }

/* HARDWARE */
.hardware { background: #07090c; color: #fff; padding: 96px 0; }
.hardware .eyebrow { color: #8d939c; }
.hardware h2 { color: #8d939c; }
.hardware h2 .tone-muted { color: #8d939c; }
.hardware-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hardware-photo {
  border-radius: 22px;
  overflow: hidden;
  min-height: 620px;
}
.hardware-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 620px; }
.hardware h2 { font-size: clamp(40px, 4.8vw, 58px); margin-bottom: 22px; }
.hw-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 12px;
  background: transparent;
}
.hw-item img { width: 72px; height: 56px; object-fit: contain; }
.hw-item h3 {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #fff;
}
.hw-item .x { color: var(--lime); }
.hw-item p { margin: 4px 0 0; font-size: 13.5px; color: #9aa3ad; }
.hw-note {
  background: transparent;
  border-radius: 14px;
  padding: 8px 2px 4px;
  margin: 8px 0 20px;
}
.hw-note h3 {
  font-family: var(--font);
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
  color: #fff;
}
.hw-note p { margin: 0; font-size: 13.5px; color: #9aa3ad; }
.hw-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hardware .btn-dark { background: #3a4048; color: #fff; }
.hardware .btn-ghost-dark { color: #d5deea; border: 0; height: auto; padding: 0 8px; }

/* CONTACT */
.contact { background: var(--bg); padding: 96px 0 110px; }
.contact h2 { font-size: clamp(36px, 4.6vw, 56px); margin-bottom: 12px; }
.contact .intro { color: var(--muted); max-width: 520px; margin: 0 0 32px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: 28px;
  align-items: start;
}
.form-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b95a3;
}
.field input, .field textarea {
  height: 42px;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  background: #fff;
}
.field textarea { height: 110px; padding: 10px 12px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: 2px solid rgba(68,200,16,.35);
  border-color: var(--green);
}
.people { display: flex; flex-direction: column; gap: 16px; }
.people-card {
  background: transparent;
  color: var(--ink);
  padding: 6px 0 22px;
  border-radius: 0;
  box-shadow: none;
}
.people-card .role { color: var(--lime); font-size: 12px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; }
.people-card h3 { font-size: 36px; margin: 8px 0 10px; color: var(--ink); }
.people-card p { margin: 0; color: #b7c0cb; font-size: 14px; line-height: 1.55; }
.form-msg {
  display: none;
  margin-top: 14px;
  color: var(--green);
  font-weight: 600;
}
.form-msg.show { display: block; }

.site-foot {
  background: #111;
  color: #9aa3ad;
  padding: 22px 0;
  font-size: 13px;
}
.site-foot .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(8,12,20,.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-card {
  background: #fff;
  border-radius: 18px;
  max-width: 560px;
  width: 100%;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.modal-card h3 { font-size: 32px; margin-bottom: 12px; }
.modal-card ul { padding-left: 18px; color: var(--muted); }
.modal-card li { margin: 8px 0; }

@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 88px;
    left: 0; right: 0;
    background: rgba(10,16,22,.96);
    flex-direction: column;
    padding: 18px 24px 24px;
    gap: 16px;
    align-items: flex-start;
  }
  .nav.open .nav-links a { color: #fff; }
  .menu-btn { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .nav.open .nav-cta { display: inline-flex; margin: 8px 0 0; }
  .stats-grid, .hardware-grid, .contact-grid, .form-grid, .benefit-row, .sol-grid {
    grid-template-columns: 1fr;
  }
  .card-grid { grid-template-columns: 1fr; }
  .venue-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
  }
  .venue-num {
    justify-content: flex-start;
    padding: 22px 22px 8px;
    font-size: 48px;
    line-height: 1;
  }
  .venue-photo {
    height: 210px;
    margin: 0 22px;
    border-radius: 12px;
    overflow: hidden;
  }
  .venue-body { padding: 18px 22px 24px; }
  .venue-body h3 { font-size: 26px; }
  .benefit-row { gap: 18px; }
  .hardware-photo, .hardware-photo img { min-height: 360px; }
  .stat-row { gap: 28px; }
  .pay-table, .pay-table tbody, .pay-table tr, .pay-table td { display: block; width: auto; }
  .pay-table td:first-child { width: auto; padding-bottom: 4px; }
  .pay-table td:nth-child(2) { padding-top: 0; }
}

@media (max-width: 640px) {
  html, body { overflow-x: hidden; }
  .nav { height: 72px; }
  .nav-inner { width: calc(100% - 24px); gap: 12px; }
  .logo-img { height: 40px; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 108px 18px 88px; }
  .hero h1 { font-size: 34px; }
  .hero .kicker { font-size: 11px; letter-spacing: 0.12em; }
  .hero p.lead { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn-ghost { width: auto; align-self: center; }
  .wrap { width: calc(100% - 32px); }
  h2, .stats h2, .features h2, .venues h2, .contact h2, .hardware h2, .payback h2 {
    font-size: 30px;
  }
  .pay-table td, .pay-table th { padding: 14px 16px; }
  section[id] { scroll-margin-top: 72px; }
  .nav.open .nav-links { top: 72px; }
}
