:root {
  --bg: #111314;
  --bg-soft: #171a1b;
  --panel: #1e2223;
  --panel-2: #f2f5f2;
  --text: #f8faf8;
  --muted: #b9c3bc;
  --dark-text: #101311;
  --green: #20d463;
  --green-dark: #0c852d;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

#services,
#markets,
#about,
#investors,
#contact {
  scroll-margin-top: 120px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(20px, 4vw, 56px);
  background: rgba(17, 19, 20, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(180px, 22vw, 320px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px) 56px;
  text-align: center;
  overflow: hidden;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin: 0 0 26px;
  padding: 7px 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.3vw, 4.6rem);
  line-height: 1.02;
  font-weight: 790;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-lede {
  max-width: 780px;
  margin: 0 auto 34px;
  color: #f2f2f2;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 700;
}

.button.primary {
  background: var(--green);
  color: #07120a;
}

.button.secondary {
  color: var(--green);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-media {
  width: min(920px, 100%);
  margin: 26px auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 1040px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 860px;
}

.section-heading p,
.split-copy p,
.founder-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-band {
  background: var(--panel-2);
  color: var(--dark-text);
}

.intro-band .eyebrow,
.intro-band .section-heading p {
  color: var(--green-dark);
}

.client-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.client-grid article,
.why-grid article,
.service-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.client-grid article {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

.client-grid p {
  color: #4e5a52;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1500px;
  margin: 0 auto;
}

.service-list span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 800;
}

.service-list p,
.why-grid p {
  color: var(--muted);
}

.split-section,
.founder,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 72px);
}

.split-copy,
.founder-copy,
.contact-copy {
  max-width: 720px;
}

.split-media,
.founder-image,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-card {
  padding: 20px;
  background: #f5f7f5;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.06);
}

.muted {
  color: var(--muted);
}

.why {
  background: var(--bg-soft);
}

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

.founder {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  background: var(--panel-2);
  color: var(--dark-text);
}

.founder .eyebrow {
  border-color: rgba(16, 19, 17, 0.28);
  color: var(--green-dark);
}

.founder-copy p {
  color: #435047;
}

.founder-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.investors {
  text-align: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.pill-list span {
  padding: 12px 18px;
  border: 1px solid rgba(32, 212, 99, 0.42);
  border-radius: 999px;
  color: var(--green);
  background: rgba(32, 212, 99, 0.06);
  font-weight: 700;
}

.contact {
  background: var(--bg-soft);
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1fr);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--text);
  font-size: 1.08rem;
}

.contact-details a:hover {
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.ghl-form-embed {
  border: 0;
  background: transparent;
  box-shadow: none;
  min-height: 747px;
  overflow: visible;
  padding: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #111414;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(185, 195, 188, 0.72);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(32, 212, 99, 0.18);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 220px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1180px) {
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 83px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #151819;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }

  .split-section,
  .founder,
  .contact {
    grid-template-columns: 1fr;
  }

  .founder-image {
    max-width: 480px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 174px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .client-grid,
  .service-list,
  .check-list {
    grid-template-columns: 1fr;
  }

  .eyebrow {
    width: 100%;
    font-size: 0.76rem;
    padding-inline: 12px;
  }
}
