:root {
  --navy: #071827;
  --navy-2: #0b2338;
  --navy-3: #102f49;
  --green: #32d0a4;
  --green-2: #6de3bd;
  --blue: #2f7de1;
  --paper: #f6f8fb;
  --white: #ffffff;
  --text: #17202a;
  --muted: #667789;
  --line: rgba(255, 255, 255, 0.14);
  --line-light: #dce5ee;
  --shadow: 0 28px 80px rgba(7, 24, 39, 0.22);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 24, 39, 0.90);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  display: block;
  width: 82px;
  height: 52px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 8px 10px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

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

.nav-toggle {
  display: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(50, 208, 164, 0.20), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(47, 125, 225, 0.20), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.hero {
  max-width: none;
  padding: 112px max(24px, calc((100vw - 1180px) / 2 + 24px)) 92px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 58px;
  align-items: center;
}

.page-hero {
  padding: 104px max(24px, calc((100vw - 1180px) / 2 + 24px)) 78px;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.14rem;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.05rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 780;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.primary {
  color: #03120e;
  background: var(--green);
  box-shadow: 0 18px 44px rgba(50, 208, 164, 0.22);
}

.secondary {
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.92rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 18px;
  background: var(--white);
  border-radius: 24px;
}

.logo-card img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}

.metric-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.metric-grid div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.metric-grid strong {
  color: var(--green-2);
  font-size: 1.35rem;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
}

.intro-section {
  padding-top: 96px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: start;
}

.content {
  color: var(--muted);
  font-size: 1.03rem;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.profile-links a {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 760;
}

.profile-links a:first-child {
  color: #04251d;
  background: rgba(50, 208, 164, 0.18);
  border-color: rgba(50, 208, 164, 0.36);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.cards,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.value-card {
  min-height: 240px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.06);
}

.card-number {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--green);
  font-weight: 860;
}

.card p,
.value-card p,
.project p,
.contact p,
.split-band p {
  color: var(--muted);
}

.split-band {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(50, 208, 164, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.split-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

.mini-list {
  display: grid;
  gap: 14px;
}

.mini-list div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.mini-list span,
.mini-list small {
  display: block;
}

.mini-list small {
  color: rgba(255, 255, 255, 0.62);
}

.project-list {
  display: grid;
  gap: 18px;
}

.project {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 30px;
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.06);
}

.project-visual {
  min-height: 210px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(50, 208, 164, 0.18), transparent 32%),
    linear-gradient(135deg, #eaf3f2, #d8e5ee);
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
}

.visual-beam::before {
  width: 280px;
  height: 24px;
  top: 96px;
  left: 28px;
  background: var(--navy-2);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.visual-beam::after {
  width: 82px;
  height: 82px;
  right: 26px;
  bottom: 28px;
  border: 16px solid rgba(50, 208, 164, 0.42);
  border-radius: 50%;
}

.visual-bracket::before {
  width: 136px;
  height: 136px;
  top: 40px;
  left: 48px;
  border: 26px solid var(--navy-2);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 28px;
}

.visual-bracket::after {
  width: 76px;
  height: 76px;
  right: 44px;
  top: 70px;
  background: rgba(50, 208, 164, 0.38);
  border-radius: 50%;
}

.visual-mesh {
  background-color: #e7eff4;
  background-image:
    linear-gradient(rgba(7, 24, 39, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 24, 39, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
}

.visual-mesh::before {
  inset: 42px 48px;
  border: 8px solid var(--green);
  border-radius: 24px;
  transform: rotate(7deg);
}

.visual-mesh::after {
  width: 86px;
  height: 86px;
  right: 36px;
  top: 62px;
  background: rgba(47, 125, 225, 0.18);
  border-radius: 50%;
}

.project-text {
  padding: 32px 34px 32px 0;
}

.project-text span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-text ul {
  padding-left: 18px;
  color: var(--muted);
}

.service-band {
  padding-top: 38px;
}

.service-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 44px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(50, 208, 164, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.service-card .content {
  color: rgba(255, 255, 255, 0.76);
}

.ghent-section {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact {
  color: var(--white);
  background: var(--navy);
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.contact h2 {
  max-width: 760px;
}

.contact p {
  color: rgba(255, 255, 255, 0.70);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}

.contact-card a:hover {
  border-color: rgba(50, 208, 164, 0.48);
}

.footer {
  color: rgba(255, 255, 255, 0.62);
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding: 26px max(24px, calc((100vw - 1180px) / 2 + 24px));
}

@media (max-width: 940px) {
  .brand img {
    width: 132px;
    height: 42px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 24px;
    right: 24px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--navy-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

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

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

  .hero,
  .two-column,
  .section-header,
  .split-band,
  .service-card,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .cards,
  .value-grid {
    grid-template-columns: 1fr;
  }

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

  .project-text {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 74px;
    height: 46px;
    padding: 7px 9px;
  }

  .logo-card img {
    max-width: 300px;
  }


  .nav {
    padding-inline: 18px;
  }

  .hero {
    padding: 72px 18px 62px;
  }

  .page-hero {
    padding: 72px 18px 58px;
  }

  .section,
  .contact-inner,
  .split-band {
    padding-inline: 18px;
  }

  .button {
    width: 100%;
  }

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