:root {
  --black: #000;
  --white: #fff;
  --ink: #0a0a0a;
  --soft-black: #111;
  --line: rgba(255,255,255,.16);
  --muted: rgba(255,255,255,.66);
  --muted-dark: rgba(0,0,0,.66);
  --panel: #f4f4f4;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--white); color: var(--black); }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: .75rem 1rem;
  background: #fff;
  color: #000;
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem clamp(1rem, 5vw, 4.5rem);
  background: rgba(0,0,0,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: .1rem;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.brand strong {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .18em;
  font-weight: 800;
}
.brand span {
  font-size: .58rem;
  letter-spacing: .28em;
  color: rgba(255,255,255,.62);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.68);
}
.nav-links a, .footer nav a { transition: color .2s ease; }
.nav-links a:hover, .footer nav a:hover { color: #fff; }
.header-cta {
  justify-self: end;
  padding: .78rem 1rem;
  border: 1px solid rgba(255,255,255,.24);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: background .2s ease, color .2s ease;
}
.header-cta:hover { background: #fff; color: #000; }
.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.24);
  background: transparent;
  color: #fff;
  padding: .72rem .95rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
}
.mobile-menu {
  position: fixed;
  inset: 4.6rem 1rem auto;
  z-index: 49;
  display: grid;
  gap: 0;
  background: #000;
  border: 1px solid var(--line);
  transform: translateY(-1rem);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s var(--ease), opacity .25s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu a {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
}
.mobile-menu a:last-child { border-bottom: none; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 27rem);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  padding: clamp(8rem, 15vw, 11rem) clamp(1.1rem, 5vw, 5.8rem) clamp(3rem, 7vw, 5.8rem);
  background:
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.08) 1px, transparent 1px),
    #000;
  background-size: 4.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -15% -35% -15%;
  height: 48%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.28), transparent 65%);
  filter: blur(55px);
  opacity: .45;
}
.hero__inner, .hero-card { position: relative; z-index: 1; }
.kicker {
  margin: 0 0 1rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  max-width: 14ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.15rem, 9vw, 8.2rem);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 800;
}
.hero-copy {
  max-width: 58rem;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.04rem, 1.5vw, 1.32rem);
  line-height: 1.72;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .92rem 1.15rem;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { background: #fff; color: #000; border-color: #fff; }
.button--dark:hover { background: transparent; color: #fff; }
.button--light { color: #fff; background: transparent; }
.button--light:hover { background: #fff; color: #000; }
.hero-card {
  border: 1px solid rgba(255,255,255,.22);
  padding: clamp(1.2rem, 3vw, 2rem);
  min-height: 22rem;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card p { color: var(--muted); text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; }
.hero-card strong { display: block; font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1; letter-spacing: -.05em; }
.hero-card__rows { display: grid; gap: .7rem; margin-top: 2rem; }
.hero-card__rows span {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: .7rem;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
}
.hero-card__rows span::after { content: "↗"; color: rgba(255,255,255,.45); }

.section-pad { padding: clamp(5.4rem, 10vw, 8.8rem) clamp(1.1rem, 5vw, 5.8rem); }
.statement {
  background: #fff;
  color: #000;
}
.big-line {
  max-width: 13ch;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: .94;
  letter-spacing: -.075em;
  font-weight: 800;
  margin-bottom: 1rem;
}
.big-line + .big-line { margin-left: auto; text-align: right; }

.split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 7vw, 6rem);
  background: #000;
}
.section-title { max-width: 50rem; }
.section-title h2 {
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 0;
}
.section-title--center { text-align: center; margin: 0 auto 3rem; }
.capability-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.capability {
  display: grid;
  grid-template-columns: 3.8rem minmax(0, .8fr) minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.capability span, .delivery-step span {
  color: rgba(255,255,255,.5);
  font-size: .76rem;
  letter-spacing: .14em;
}
.capability h3, .delivery-step h3, .package h3 { margin-bottom: .5rem; }
.capability p, .delivery-step p, .package p, .proof-card p, .contact-box p {
  color: rgba(255,255,255,.68);
  line-height: 1.72;
}

.industries { background: #f4f4f4; color: #000; }
.industries .kicker, .industries p { color: var(--muted-dark); }
.industry-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(0,0,0,.18);
}
.industry {
  min-height: 10rem;
  display: flex;
  align-items: end;
  padding: 1.2rem;
  border-right: 1px solid rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(0,0,0,.18);
  font-size: clamp(1.25rem, 2vw, 2rem);
  letter-spacing: -.04em;
  font-weight: 760;
  transition: background .2s ease, color .2s ease;
}
.industry:nth-child(3n) { border-right: none; }
.industry:nth-last-child(-n+3) { border-bottom: none; }
.industry:hover { background: #000; color: #fff; }

.delivery { background: #000; }
.delivery-grid, .package-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.delivery-step {
  min-height: 20rem;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.delivery-step h3 { margin-top: auto; font-size: 1.55rem; letter-spacing: -.04em; }

.packages { background: #fff; color: #000; }
.packages .kicker, .packages p { color: var(--muted-dark); }
.package-grid { grid-template-columns: repeat(3, 1fr); border-color: rgba(0,0,0,.18); }
.package {
  min-height: 34rem;
  padding: 1.45rem;
  border-right: 1px solid rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  position: relative;
}
.package:last-child { border-right: none; }
.package--featured { background: #000; color: #fff; }
.packages .package--featured p { color: rgba(255,255,255,.7); }
.package-tag {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  border: 1px solid currentColor;
  padding: .5rem .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
}
.package-name {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
}
.package h3 {
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  letter-spacing: -.07em;
  line-height: 1;
}
.package ul {
  list-style: none;
  padding: 0;
  margin: auto 0 2rem;
  display: grid;
  gap: .75rem;
}
.package li {
  border-top: 1px solid rgba(0,0,0,.16);
  padding-top: .75rem;
  color: rgba(0,0,0,.7);
}
.package--featured li { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.76); }
.package a {
  display: inline-flex;
  justify-content: center;
  padding: .95rem 1rem;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
}
.package:not(.package--featured) a:hover { background: #000; color: #fff; }
.package--featured a:hover { background: #fff; color: #000; }

.proof { background: #000; }
.proof-card {
  max-width: 72rem;
  margin-left: auto;
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 4vw, 3rem);
}
.proof-card h2, .contact-box h2 {
  font-size: clamp(2.4rem, 6vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.075em;
  margin-bottom: 1.3rem;
}
.proof-card p:last-child { max-width: 46rem; }

.contact { background: #f4f4f4; color: #000; }
.contact .kicker, .contact p { color: var(--muted-dark); }
.contact-box {
  border: 1px solid rgba(0,0,0,.18);
  padding: clamp(1.3rem, 4vw, 3rem);
  background: #fff;
}
.contact .button--dark { background: #000; color: #fff; border-color: #000; }
.contact .button--dark:hover { background: #fff; color: #000; }
.contact .button--light { color: #000; background: #fff; }
.contact .button--light:hover { background: #000; color: #fff; }
dl {
  margin: 3rem 0 0;
  display: grid;
  border-top: 1px solid rgba(0,0,0,.18);
}
dl div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,.18);
}
dt { color: rgba(0,0,0,.55); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; }
dd { margin: 0; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1.1rem, 5vw, 5.8rem);
  background: #000;
  border-top: 1px solid var(--line);
  color: #fff;
}
.footer nav {
  display: flex;
  gap: 1rem;
  color: rgba(255,255,255,.64);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.footer small { color: rgba(255,255,255,.54); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { grid-template-columns: 1fr; align-items: center; }
  .hero-card { min-height: auto; }
  .split { grid-template-columns: 1fr; }
  .capability { grid-template-columns: 2.8rem 1fr; }
  .capability p { grid-column: 2; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry:nth-child(3n) { border-right: 1px solid rgba(0,0,0,.18); }
  .industry:nth-child(2n) { border-right: none; }
  .industry:nth-last-child(-n+3) { border-bottom: 1px solid rgba(0,0,0,.18); }
  .industry:nth-last-child(-n+2) { border-bottom: none; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .package { min-height: auto; border-right: none; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .hero { background-size: 3rem 3rem; }
  .hero h1 { font-size: clamp(3rem, 18vw, 4.9rem); }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .big-line + .big-line { margin-left: 0; text-align: left; }
  .industry-grid, .delivery-grid { grid-template-columns: 1fr; }
  .industry, .industry:nth-child(2n), .industry:nth-child(3n) { border-right: none; }
  .industry:nth-last-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,.18); }
  .industry:last-child { border-bottom: none; }
  .delivery-step { min-height: 14rem; }
  dl div { grid-template-columns: 1fr; gap: .35rem; }
  .footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
