:root {
  --ink: #101820;
  --muted: #66737d;
  --paper: #f6f8f8;
  --panel: #ffffff;
  --line: rgba(16, 24, 32, 0.12);
  --navy: #121b25;
  --teal: #0f9f8f;
  --blue: #2b6f9f;
  --amber: #c98b3c;
  --shadow: 0 22px 70px rgba(16, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(246, 248, 248, 0.94);
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: #061214;
  background: #6ff2dd;
  font-weight: 900;
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(16, 24, 32, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 16, 22, 0.92) 0%, rgba(10, 16, 22, 0.68) 42%, rgba(10, 16, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 16, 22, 0.7), rgba(10, 16, 22, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  padding: 150px clamp(20px, 6vw, 82px) 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #6ff2dd;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy {
  width: min(660px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: #061214;
  background: #6ff2dd;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.signal-strip div {
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.signal-strip span {
  color: var(--muted);
}

.section,
.band,
.contact {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.section-heading {
  width: min(680px, 100%);
}

.section-heading.wide {
  width: min(930px, 100%);
  margin-bottom: 36px;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.copy-block {
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.difference-panel,
.industry-row article,
.team-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(16, 24, 32, 0.06);
}

.service-card {
  min-height: 260px;
  padding: 26px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal);
  font-weight: 850;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card.accent {
  color: #fff;
  background: linear-gradient(135deg, #12212c, #163c45);
}

.service-card.accent p {
  color: rgba(255, 255, 255, 0.72);
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 27, 37, 0.96), rgba(16, 67, 75, 0.92)),
    var(--navy);
}

.band-copy p:last-child {
  margin-top: 22px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.approach-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  list-style: none;
}

.approach-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 750;
}

.approach-list span {
  color: #6ff2dd;
  font-weight: 850;
}

.difference-panel {
  padding: 30px;
}

.difference-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.check-grid span {
  border: 1px solid rgba(15, 159, 143, 0.24);
  border-radius: 8px;
  padding: 12px 14px;
  color: #143f42;
  background: rgba(15, 159, 143, 0.08);
  font-weight: 800;
}

.industry-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.industry-row article {
  padding: 24px;
}

.industry-row p {
  color: var(--muted);
  margin-bottom: 0;
}

.team {
  background: #edf3f2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.team-grid article {
  padding: 22px;
}

.team-grid strong,
.team-grid span {
  display: block;
}

.team-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  background: #101820;
  color: #fff;
}

.contact p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  border: 0;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #6ff2dd;
  font-weight: 850;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #0b1117;
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 850;
}

@media (max-width: 960px) {
  .service-grid,
  .team-grid,
  .industry-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .site-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(246, 248, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 16, 22, 0.94), rgba(10, 16, 22, 0.42));
  }

  .signal-strip,
  .split,
  .band,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-content {
    padding-top: 124px;
  }

  h1 {
    font-size: 3rem;
  }

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

  .service-grid,
  .team-grid,
  .industry-row,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .approach-list li {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }
}
