:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --soft: #eef2f6;
  --navy: #14213d;
  --blue: #1769ff;
  --green: #2e7d6d;
  --plum: #713a5c;
  --gold: #b88746;
  --line: #d9dee7;
  --shadow: 0 28px 80px rgba(20, 33, 61, 0.13);
  --radius: 8px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(180deg, #f7f8fb 0%, var(--paper) 42%, #f1f5f3 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::selection {
  background: rgba(23, 105, 255, 0.18);
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(217, 222, 231, 0.86);
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1;
  padding: 11px 14px;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--navy);
  color: #fff;
}

main {
  overflow: hidden;
}

.hero,
.section,
.site-footer {
  width: min(1680px, calc(100% - 120px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 470px);
  gap: clamp(28px, 3vw, 52px);
  align-items: center;
  min-height: calc(100vh - 77px);
  padding: 84px 0 72px;
}

.hero-copy {
  min-width: 0;
}

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

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 7.2rem;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-subtitle {
  margin: 24px 0 0;
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.7vw, 1.85rem);
  line-height: 1.15;
  width: min(100%, 840px);
  max-width: 100%;
  overflow-wrap: normal;
  white-space: nowrap;
}

.hero-text {
  max-width: 840px;
  margin: 26px 0 0;
  color: #2a3547;
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 760;
  padding: 11px 18px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.button.primary:hover {
  border-color: #0f55d7;
  background: #0f55d7;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.button.secondary:hover {
  border-color: var(--navy);
  background: #fff;
}

.hero-dashboard {
  display: grid;
  gap: 12px;
  width: 100%;
}

.dashboard-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 42px rgba(20, 33, 61, 0.08);
  padding: 24px;
}

.dashboard-card.lead {
  display: grid;
  min-height: 286px;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.12), transparent 56%),
    linear-gradient(315deg, rgba(46, 125, 109, 0.16), transparent 55%),
    var(--panel);
}

.dashboard-card span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.dashboard-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2.05rem;
  font-weight: 500;
  line-height: 1.02;
  white-space: nowrap;
}

.dashboard-card.lead strong {
  max-width: none;
  font-size: 3.05rem;
  white-space: normal;
}

.dashboard-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.dashboard-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.section {
  padding-top: 104px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 0.7fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fit-grid article {
  min-height: 320px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 26px;
}

.fit-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.fit-grid h3,
.experience-card h3,
.ecosystem-grid h3,
.contact-card a {
  margin: 18px 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.12;
}

.fit-grid p,
.experience-card p,
.ecosystem-grid p,
.contact-section p {
  margin: 0;
  color: #354154;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.metric-grid article {
  display: grid;
  min-height: 188px;
  align-content: space-between;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 22px;
}

.metric-grid article:nth-child(2) {
  background: #273f59;
}

.metric-grid article:nth-child(3) {
  background: var(--green);
}

.metric-grid article:nth-child(4) {
  background: var(--plum);
}

.metric-grid article:nth-child(5) {
  background: #475467;
}

.metric-grid strong {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.35;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.58fr);
  gap: 48px;
  align-items: center;
}

.story-section h2 {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
}

.story-section p:last-child {
  max-width: 680px;
  color: #354154;
  font-size: 1.08rem;
}

.compute-map {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 20%, rgba(23, 105, 255, 0.14), transparent 27%),
    radial-gradient(circle at 80% 70%, rgba(46, 125, 109, 0.16), transparent 25%),
    linear-gradient(90deg, rgba(20, 33, 61, 0.06) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, #fff, #f4f7fb);
  overflow: hidden;
}

.compute-map::before,
.compute-map::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 78%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(23, 105, 255, 0.58), transparent);
  content: "";
  transform: translate(-50%, -50%) rotate(24deg);
}

.compute-map::after {
  transform: translate(-50%, -50%) rotate(-26deg);
}

.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 136px;
  min-height: 60px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(20, 33, 61, 0.12);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.map-node.demand {
  top: 48px;
  left: 44px;
}

.map-node.economics {
  top: 148px;
  right: 44px;
  border-color: rgba(23, 105, 255, 0.32);
  color: var(--blue);
}

.map-node.capacity {
  bottom: 92px;
  left: 56px;
  border-color: rgba(46, 125, 109, 0.34);
  color: var(--green);
}

.map-node.close {
  right: 56px;
  bottom: 42px;
  border-color: rgba(113, 58, 92, 0.34);
  color: var(--plum);
}

.experience-stack {
  display: grid;
  gap: 16px;
}

.experience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 30px;
}

.experience-card.featured {
  background: var(--panel);
  box-shadow: var(--shadow);
}

.experience-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.experience-header h3 {
  margin: 4px 0 0;
}

.experience-header > span {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.company {
  margin: 0;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
}

.summary {
  width: 100%;
  max-width: none;
  font-size: 1rem;
  line-height: 1.55;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.evidence-grid article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px;
}

.evidence-grid h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.evidence-grid p {
  font-size: 0.94rem;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.project-strip figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.project-strip img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 240ms ease;
}

.project-strip figure:hover img {
  transform: scale(1.04);
}

.project-strip figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: var(--radius);
  background: rgba(20, 33, 61, 0.82);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 750;
  padding: 9px 10px;
}

.lila-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.68fr);
  gap: 28px;
  align-items: stretch;
}

.clean-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 20px;
  color: #354154;
}

.clean-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.brandbook {
  position: relative;
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eee8de;
}

.brandbook-track {
  position: relative;
  min-height: 360px;
}

.brandbook-slide {
  position: absolute;
  inset: 0;
  display: grid;
  margin: 0;
  opacity: 0;
  place-items: center;
  transition: opacity 200ms ease;
}

.brandbook-slide.is-active {
  opacity: 1;
}

.brandbook-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(20, 33, 61, 0.68);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease;
}

.carousel-button:hover {
  background: var(--navy);
}

.carousel-button.prev {
  left: 12px;
}

.carousel-button.next {
  right: 12px;
}

.carousel-nav {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px;
}

.carousel-nav button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 780;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.carousel-nav button:hover,
.carousel-nav button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.split-experience {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(620px, 1.22fr);
  gap: 16px;
}

.experience-card.compact {
  min-height: 250px;
  overflow: visible;
}

.experience-card.compact .experience-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: start;
}

.experience-card.compact .experience-header > span {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  max-width: none;
  margin-top: 0;
  text-align: right;
  white-space: nowrap;
  font-size: 0.9rem;
}

.experience-card.compact .experience-header > div {
  display: contents;
}

.experience-card.compact .company {
  grid-column: 1;
  grid-row: 1;
}

.experience-card.compact h3 {
  grid-column: 1 / -1;
  grid-row: 2;
  white-space: nowrap;
}

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

.ecosystem-grid article {
  min-height: 268px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 26px;
}

.ecosystem-grid article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.1), transparent 64%),
    #fff;
}

.ecosystem-grid article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(46, 125, 109, 0.12), transparent 62%),
    #fff;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.45fr);
  gap: 32px;
  align-items: stretch;
  padding-bottom: 8px;
}

.contact-section h2 {
  max-width: 700px;
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
}

.contact-card {
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 30px;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a {
  margin: 10px 0 18px;
  color: #fff;
  font-size: 1.35rem;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 90px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--navy);
  font-weight: 760;
}

@media (max-width: 1220px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-subtitle {
    max-width: none;
    white-space: nowrap;
  }

  .hero-dashboard {
    max-width: 860px;
  }
}

@media (max-width: 1180px) {
  .split-experience {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 5.6rem;
  }

  .hero,
  .story-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    white-space: normal;
  }

  .hero-dashboard {
    max-width: 720px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .fit-grid,
  .metric-grid,
  .project-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lila-card,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px 18px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav a {
    padding: 9px 10px;
    font-size: 0.82rem;
  }

  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 0;
    padding: 52px 0 44px;
  }

  h1 {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.35rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .dashboard-row,
  .fit-grid,
  .metric-grid,
  .project-strip,
  .evidence-grid,
  .split-experience {
    grid-template-columns: 1fr;
  }

  .dashboard-card.lead strong {
    font-size: 2.2rem;
  }

  .section {
    padding-top: 72px;
  }

  .section-heading h2,
  .story-section h2,
  .contact-section h2 {
    font-size: 2.6rem;
  }

  .fit-grid article {
    min-height: auto;
  }

  .metric-grid article {
    min-height: 160px;
  }

  .compute-map {
    min-height: 480px;
  }

  .compute-map::before,
  .compute-map::after {
    width: 2px;
    height: 72%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, transparent, rgba(23, 105, 255, 0.58), transparent);
  }

  .map-node {
    right: auto;
    left: 50%;
    min-width: 180px;
    transform: translateX(-50%);
  }

  .map-node.demand {
    top: 44px;
  }

  .map-node.economics {
    top: 150px;
  }

  .map-node.capacity {
    top: 256px;
    bottom: auto;
  }

  .map-node.close {
    top: 362px;
    bottom: auto;
  }

  .experience-header {
    display: grid;
    gap: 6px;
  }

  .experience-header > span {
    max-width: none;
    text-align: left;
  }

  .experience-card {
    padding: 22px;
  }

  .brandbook,
  .brandbook-track {
    min-height: 300px;
  }

  .contact-card a {
    font-size: 1.12rem;
  }

  .site-footer {
    display: grid;
    margin-top: 64px;
  }
}
