:root {
  --bg: #070708;
  --bg-soft: #101012;
  --paper: #101114;
  --paper-2: #0c0d10;
  --sky: #20466b;
  --sky-deep: #10263d;
  --lime: #d9ff11;
  --accent: #ff9a3c;
  --accent-2: #6be4ff;
  --ink: #f3f5f7;
  --muted: rgba(243, 245, 247, 0.7);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #191a20 0%, #080809 55%, #040405 100%);
}

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

.page-shell {
  width: min(1400px, calc(100% - 24px));
  margin: 12px auto;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #111216, #090a0c);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 9, 12, 0.68);
  color: var(--white);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: grid;
  line-height: 0.95;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-pill {
  display: inline-flex;
  gap: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  white-space: nowrap;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.cta {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.cta-dark {
  background: var(--lime);
  color: #050506;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 78px 22px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.06), transparent 26%),
    radial-gradient(circle at 50% 110%, rgba(217, 255, 17, 0.1), transparent 26%),
    linear-gradient(180deg, #2b4d72 0%, #16263a 48%, #090d14 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-sky {
  position: absolute;
  inset: auto -8% -12% -8%;
  height: 48%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0));
  filter: blur(36px);
  opacity: 0.55;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: 80px;
}

.hero-vehicle {
  position: absolute;
  z-index: 2;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8, 14, 26, 0.28);
  border: 6px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.hero-vehicle img,
.project-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-vehicle-a {
  right: 22px;
  top: 118px;
  width: min(42vw, 420px);
  aspect-ratio: 1 / 1;
  transform: rotate(4deg);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.footer h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 9.4rem);
  max-width: 10ch;
  color: #d9ff11;
  text-shadow: 0 12px 0 rgba(0, 0, 0, 0.28);
}

.hero h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.52em;
  line-height: 1.04;
  letter-spacing: 0.015em;
  max-width: 11ch;
}

.lede {
  max-width: 46ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button-dark {
  background: var(--white);
  color: #050506;
}

.button-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 26px;
  z-index: 2;
  width: min(100%, 360px);
  padding: 20px;
  border-radius: 22px;
  background: rgba(10, 12, 16, 0.86);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.hero-card h2 {
  margin: 10px 0;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-card p,
.about-text p,
.project-card p,
.service-tile p,
.quote-card p,
.insight-card p {
  color: var(--muted);
  line-height: 1.55;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  z-index: 1;
}

.orbit-a {
  width: 140px;
  height: 140px;
  left: 4%;
  bottom: 10%;
  transform: rotate(18deg);
}

.orbit-b {
  width: 90px;
  height: 90px;
  right: 28%;
  top: 12%;
  border-color: rgba(217, 255, 17, 0.35);
}

.dark-section,
.services,
.footer {
  background: var(--bg);
  color: var(--white);
}

.dark-section,
.work,
.services,
.testimonials,
.insights,
.footer {
  padding: 76px 22px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.light-text .eyebrow,
.light-text h2 {
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.about-art {
  position: relative;
  min-height: 380px;
  border-radius: 28px;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04), transparent 36%),
    linear-gradient(160deg, #101114, #050506);
  overflow: hidden;
}

.about-art-truck {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(160deg, #111216, #050506);
}

.map-frame {
  position: absolute;
  left: 18px;
  right: 88px;
  top: 18px;
  bottom: 18px;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.map-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.excited-bubble {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 150px;
  height: 150px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  transform: none;
  background: #101114;
}

.green-bubble {
  position: absolute;
  left: 26px;
  bottom: 24px;
  width: 132px;
  height: 132px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(217, 255, 17, 0.92);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  background: #101114;
}

.green-bubble img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.excited-bubble img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  font-size: 1.05rem;
}

.how-list {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.how-list li + li {
  margin-top: 10px;
}

.project-grid,
.service-grid,
.quote-grid,
.insight-grid {
  display: grid;
  gap: 18px;
}

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

.project-card,
.service-tile,
.quote-card,
.insight-card {
  border-radius: 24px;
  padding: 22px;
}

.project-card {
  overflow: hidden;
}

.project-card-image {
  display: grid;
  gap: 14px;
}

.project-card-image img {
  height: 220px;
  border-radius: 18px;
}

.project-card-indigo.project-card-image img {
  height: 220px;
  object-fit: cover;
}

.project-card h3,
.service-tile h3,
.insight-card h3 {
  margin: 8px 0 10px;
  font-size: 1.45rem;
}

.project-tag {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.project-card-cream {
  background: linear-gradient(180deg, #16181d, #0c0d10);
}

.project-card-lime {
  background: linear-gradient(180deg, #23271b, #11140e);
}

.project-card-indigo {
  color: var(--white);
  background: linear-gradient(180deg, #2a2f68, #181b40);
}

.project-card-indigo p {
  color: rgba(255, 255, 255, 0.76);
}

.project-card-cream,
.project-card-lime {
  color: var(--white);
}

.project-card-cream .project-tag,
.project-card-lime .project-tag {
  color: rgba(255, 255, 255, 0.68);
}

.services {
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 154, 60, 0.15), transparent 26%),
    radial-gradient(circle at 18% 80%, rgba(107, 228, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #0f1014, #070708 74%);
}

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

.service-tile {
  min-height: 220px;
}

.tile-warm {
  background: linear-gradient(180deg, #3a2418, #1b120d);
}

.tile-white {
  background: linear-gradient(180deg, #16171b, #0e0f12);
}

.tile-cool {
  background: linear-gradient(180deg, #172535, #0d141d);
}

.sky-section {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.12) 0 8%, transparent 9%),
    radial-gradient(circle at 80% 72%, rgba(255, 255, 255, 0.1) 0 10%, transparent 11%),
    linear-gradient(180deg, #1b3350 0%, #0a1018 100%);
  color: var(--white);
}

.sky-section .eyebrow,
.sky-section h2 {
  color: var(--white);
}

.quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.quote-card {
  background: rgba(9, 10, 13, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.quote-card footer {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.insights {
  background: #0a0b0d;
}

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

.insight-card {
  background: #121419;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.insight-thumb {
  overflow: hidden;
  height: 180px;
  border-radius: 18px;
  margin-bottom: 18px;
}

.insight-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-three {
  background: linear-gradient(135deg, #183a35, #13304f);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
}

@media (max-width: 960px) {
  .project-grid,
  .service-grid,
  .quote-grid,
  .insight-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .nav-pill {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 26px;
  }

  .hero-vehicle-a {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 420px;
    margin-top: 18px;
    transform: none;
  }

  .hero {
    display: grid;
    justify-items: start;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-copy {
    margin-top: 36px;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 16px, 1400px);
    border-radius: 18px;
  }

  .topbar,
  .hero,
  .dark-section,
  .work,
  .services,
  .testimonials,
  .insights,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-pill {
    gap: 12px;
    font-size: 0.84rem;
  }

  .hero-copy {
    margin-top: 28px;
  }

  .map-frame {
    left: 14px;
    right: 84px;
  }

  .green-bubble {
    width: 112px;
    height: 112px;
    left: 14px;
    bottom: 16px;
  }

  .excited-bubble {
    width: 128px;
    height: 128px;
    right: 14px;
    top: 14px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 18vw, 5.2rem);
  }

  .section-heading h2,
  .footer h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }
}
