:root {
  --navy: #0d1b3d;
  --navy-2: #12365e;
  --teal: #00b3b8;
  --ink: #15233a;
  --muted: #647287;
  --line: #dfe6ee;
  --surface: #ffffff;
  --canvas: #f5f8fb;
  --inspire: #ef6c49;
  --inspire-soft: #fff5ef;
  --index: #08b8cf;
  --index-deep: #071d3b;
  --inplace: #2faa43;
  --inplace-navy: #0b3154;
  --shadow: 0 24px 60px rgba(13, 27, 61, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}
.ambient-one {
  width: 520px;
  height: 520px;
  top: -230px;
  right: -120px;
  background: radial-gradient(circle, rgba(0,179,184,.12), rgba(0,179,184,0) 70%);
}
.ambient-two {
  width: 430px;
  height: 430px;
  left: -220px;
  top: 270px;
  background: radial-gradient(circle, rgba(13,27,61,.08), rgba(13,27,61,0) 70%);
}

.page-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(13,27,61,.09);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; object-fit: contain; }
.brand-word, .footer-brand {
  color: var(--navy);
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -.045em;
}
.brand-i { color: var(--teal); }
.header-link {
  color: #516177;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.header-link:hover { color: var(--navy); }

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 72px 0 82px;
}
.eyebrow {
  margin: 0 0 15px;
  color: #078c92;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
}
.hero h1 {
  margin: 0;
  max-width: 700px;
  color: var(--navy);
  font-size: clamp(54px, 6.4vw, 82px);
  line-height: .99;
  letter-spacing: -.067em;
}
.hero h1 span { color: #536882; }
.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: #58687d;
  font-size: 18px;
  line-height: 1.67;
}
.hero-cta {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  margin-top: 30px;
  padding: 13px 17px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(13,27,61,.16);
}
.hero-cta:hover { transform: translateY(-1px); }

.brand-stage {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 42px 32px 34px;
  overflow: hidden;
  border: 1px solid rgba(13,27,61,.08);
  border-radius: 36px;
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow);
}
.brand-stage-glow {
  position: absolute;
  width: 310px;
  height: 310px;
  top: -155px;
  right: -105px;
  border-radius: 50%;
  background: rgba(0,179,184,.10);
}
.full-logo { width: min(100%, 500px); height: auto; position: relative; z-index: 1; }
.family-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: -8px;
}
.family-chips span {
  padding: 7px 10px;
  border: 1px solid #e3e9f0;
  border-radius: 999px;
  background: #fff;
  color: #637187;
  font-size: 11px;
  font-weight: 750;
}

.platforms { padding: 28px 0 96px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(270px, 420px);
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}
.section-heading h2, .principle h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -.052em;
}
.section-intro { margin: 0 0 4px; color: var(--muted); font-size: 15.5px; line-height: 1.6; }

.platform-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.platform-card {
  position: relative;
  min-height: 445px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(13,27,61,.09);
  border-radius: 29px;
  background: rgba(255,255,255,.91);
  box-shadow: 0 10px 30px rgba(13,27,61,.05);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.platform-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -98px;
  border-radius: 50%;
  opacity: .13;
}
.inspire-card::after { background: var(--inspire); }
.index-card::after { background: var(--index); }
.inplace-card::after { background: var(--inplace); }
.platform-card:hover, .platform-card:focus-visible {
  transform: translateY(-6px);
  outline: none;
  box-shadow: var(--shadow);
}
.inspire-card:hover { border-color: rgba(239,108,73,.30); }
.index-card:hover { border-color: rgba(8,184,207,.34); }
.inplace-card:hover { border-color: rgba(47,170,67,.30); }
.card-head { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; }
.app-logo-wrap {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
}
.app-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.inspire-logo-tile {
  width: 156px;
  height: 126px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(13,27,61,.08);
  border-radius: 20px;
  background: #fffaf2;
  box-shadow: 0 7px 18px rgba(13,27,61,.06);
}
.inspire-logo-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.index-wrap { background: var(--index-deep); }
.inplace-wrap { background: #f7fbf8; }
.launch { color: #7a8799; font-size: 23px; }
.app-name { margin-top: 38px; font-size: 35px; line-height: 1; font-weight: 820; letter-spacing: -.052em; }
.index-name { color: var(--navy); }
.index-name span { color: var(--index); }
.inplace-name { color: var(--inplace); }
.inplace-name span { color: var(--inplace-navy); }
.inspire-card .app-role { margin-top: 30px; }
.app-role {
  margin: 11px 0 0;
  color: #4e5e73;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.app-copy { margin: 18px 0 18px; color: var(--muted); font-size: 15px; line-height: 1.62; }
.app-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.app-tags span {
  padding: 6px 8px;
  border-radius: 8px;
  background: #f4f7fa;
  color: #778396;
  font-size: 10.5px;
  font-weight: 750;
}
.open-app { margin-top: auto; padding-top: 24px; font-size: 14px; font-weight: 850; }
.inspire-card .open-app { color: #c95333; }
.index-card .open-app { color: #058fa3; }
.inplace-card .open-app { color: #278c39; }

.principle {
  display: grid;
  grid-template-columns: auto 1.2fr .8fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 72px;
  padding: 47px 50px;
  border-radius: 32px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.principle-mark {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: #fff;
}
.principle-mark img { width: 72px; height: 72px; object-fit: contain; }
.principle .eyebrow { color: #5ed8dc; }
.principle h2 { color: #fff; font-size: clamp(30px, 3.4vw, 44px); }
.principle-text { margin: 0; color: #c4cfdd; font-size: 16px; line-height: 1.68; }

footer {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid rgba(13,27,61,.09);
  color: #758297;
  font-size: 12.5px;
}
.footer-brand { font-size: 16px; }
.footer-year { margin-left: auto; }

@media (max-width: 930px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 60px; }
  .brand-stage { min-height: 300px; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { min-height: 360px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .principle { grid-template-columns: auto 1fr; }
  .principle-text { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 24px, 1180px); }
  .site-header { height: 76px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-word { font-size: 20px; }
  .header-link { font-size: 0; }
  .header-link span { font-size: 18px; }
  .hero { padding: 50px 0 64px; }
  .hero h1 { font-size: clamp(46px, 14vw, 62px); }
  .hero-lede { font-size: 16.5px; }
  .brand-stage { min-height: 240px; padding: 28px 20px; border-radius: 28px; }
  .platforms { padding-bottom: 68px; }
  .platform-card { padding: 24px; border-radius: 25px; }
  .principle { grid-template-columns: 1fr; padding: 32px 26px; }
  .principle-mark { width: 70px; height: 70px; }
  .principle-mark img { width: 60px; height: 60px; }
  footer > div:nth-child(2) { display: none; }
}

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