:root {
  color-scheme: dark;
  --bg: #070707;
  --surface: #0d0f10;
  --surface-2: #121719;
  --ink: #f4f2ec;
  --muted: #bdc4c7;
  --quiet: #81898d;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --teal: #86e2d6;
  --gold: #e5bd69;
  --blue: #5f9df7;
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(134, 226, 214, 0.04), transparent 22rem),
    var(--bg);
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav,
.section,
.footer {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(134, 226, 214, 0.16), rgba(95, 157, 247, 0.08)),
    rgba(255, 255, 255, 0.05);
  color: var(--teal);
  letter-spacing: 0;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.mark-gem {
  stroke: rgba(134, 226, 214, 0.72);
  stroke-width: 1.4;
}

.mark-z {
  stroke: var(--ink);
  stroke-width: 2.4;
}

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

.nav-links a {
  transition: color 160ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 80px);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 52px;
  overflow: hidden;
  padding: 64px max(20px, calc((100vw - 1240px) / 2)) 86px;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.88) 38%, rgba(7, 7, 7, 0.52) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.4), rgba(7, 7, 7, 0.84));
}

.pill {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  line-height: 1.4;
  backdrop-filter: blur(16px);
}

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

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.contact-strip a,
.contact-links a,
.footer a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  transition: color 160ms ease, border-color 160ms ease;
}

.contact-strip a:hover,
.contact-links a:hover,
.footer a:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.58);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #060707;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.confidence-panel {
  width: min(100%, 520px);
  justify-self: end;
  border: 1px solid var(--line);
  background: rgba(10, 13, 14, 0.72);
  padding: 24px;
  box-shadow: 0 32px 90px var(--shadow);
  backdrop-filter: blur(24px);
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.panel-head p,
.signal-box span {
  margin-bottom: 6px;
  color: var(--quiet);
  font-size: 14px;
}

.panel-head strong {
  font-size: 38px;
  line-height: 1;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--teal);
  background: rgba(134, 226, 214, 0.08);
  border: 1px solid rgba(134, 226, 214, 0.2);
  font-size: 23px;
}

.score-list {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.score-row,
.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
}

.score-row span,
.metric span {
  color: var(--muted);
  font-size: 14px;
}

.score-row b,
.metric b {
  color: var(--quiet);
  font-size: 14px;
}

.score-row i,
.metric i {
  position: relative;
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.score-row i::before,
.metric i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
}

.signal-box {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
}

.signal-box p {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.45;
}

.section {
  padding: 104px 0;
}

.compact {
  padding-block: 42px;
}

.section-heading {
  max-width: 780px;
}

.kicker {
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-heading > p:not(.kicker),
.section-row > p,
.talent-panel p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-heading > p:not(.kicker) {
  margin-top: 24px;
}

.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 56px;
}

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

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

.card {
  min-height: 250px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.028)),
    var(--surface);
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    var(--surface-2);
}

.card .icon {
  margin-bottom: 54px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.large {
  min-height: 290px;
}

.large h3 {
  font-size: 28px;
}

.benchmark-band {
  width: 100%;
  max-width: none;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.split {
  display: grid;
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  background: #0b0c0d;
  padding: 18px;
}

.metric {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 20px;
}

.metric span,
.metric b {
  font-size: 15px;
}

.section-row {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 48px;
  align-items: end;
}

.section-row h2 {
  max-width: 680px;
}

.section-row > p {
  margin-bottom: 0;
}

.insight-panel,
.talent-panel {
  display: grid;
  gap: 52px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(134, 226, 214, 0.08), rgba(229, 189, 105, 0.035)),
    #0d0f10;
  padding: clamp(28px, 5vw, 54px);
}

.insight-panel {
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
}

.insight-panel .icon,
.talent-panel .icon {
  margin-bottom: 22px;
}

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

.insight-grid article {
  min-height: 152px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  padding: 22px;
}

.insight-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.insight-grid span {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.talent-panel {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(95, 157, 247, 0.08), rgba(134, 226, 214, 0.04)),
    #0d0f10;
}

.talent-panel .button {
  margin-top: 24px;
}

.contact {
  max-width: 920px;
  text-align: center;
}

.contact p:not(.kicker) {
  width: min(100%, 680px);
  margin: 26px auto 24px;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 15px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--quiet);
  font-size: 14px;
}

.footer p {
  margin-bottom: 0;
}

.footer p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .section-row,
  .insight-panel,
  .talent-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .confidence-panel {
    justify-self: start;
  }

  .four,
  .two,
  .benchmark-grid,
  .insight-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav,
  .section,
  .footer {
    width: min(100% - 32px, 1240px);
  }

  .nav {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 42px 16px 72px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.76) 52%, rgba(7, 7, 7, 0.92)),
      linear-gradient(90deg, rgba(7, 7, 7, 0.84), rgba(7, 7, 7, 0.48));
  }

  .pill {
    display: block;
    width: fit-content;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .actions,
  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-block: 72px;
  }

  .compact {
    padding-block: 28px;
  }

  .four,
  .two,
  .benchmark-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .large {
    min-height: 0;
  }

  .card .icon {
    margin-bottom: 36px;
  }

  .confidence-panel,
  .insight-panel,
  .talent-panel {
    padding: 22px;
  }
}
