:root {
  --blue: #5aaee9;
  --blue-soft: #92cdf3;
  --blue-deep: #2f8fdb;
  --navy: #0c1931;
  --ink: #22314c;
  --muted: #61708a;
  --line: #d9e5ef;
  --wash: #f6fbff;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(34, 49, 76, .11);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 62% 10%, rgba(90, 174, 233, .12), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f8fcff 44%, #fff 100%);
  line-height: 1.45;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.site-header {
  width: min(1290px, calc(100% - 92px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px 1fr 205px;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 169px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 58px;
  font-size: 13px;
  font-weight: 780;
  color: #0d1730;
}

.nav a {
  padding: 9px 0;
}

.nav a:hover,
.product-footer a:hover,
.footer a:hover {
  color: var(--blue-deep);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.header-cta {
  justify-self: end;
  min-width: 174px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(180deg, #55acec, #378edb);
  box-shadow: 0 12px 25px rgba(47, 143, 219, .18);
}

.button {
  min-width: 172px;
  padding: 0 21px;
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, #64b9f0, #3b98e1);
  box-shadow: 0 12px 25px rgba(47, 143, 219, .16);
}

.button.secondary {
  color: #0a2765;
  background: #fff;
  border: 1px solid #2e88d7;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  width: min(1290px, calc(100% - 92px));
  min-height: 298px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
}

.hero-copy {
  padding: 6px 0 12px 38px;
  min-width: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: 56px;
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--blue-soft);
}

.hero-text {
  max-width: 465px;
  margin-bottom: 24px;
  color: #3b4962;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 500;
}

.actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-visual {
  display: block;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 296px;
  object-fit: contain;
}

.products-section {
  width: min(1290px, calc(100% - 92px));
  margin: 10px auto 0;
}

.section-head {
  margin: 0 auto 28px;
  max-width: 700px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 6px;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 880;
}

.section-head p {
  max-width: 590px;
  margin: 0 auto;
  color: #344258;
  font-size: 12px;
  line-height: 1.62;
  font-weight: 550;
}

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

.product-card {
  position: relative;
  min-height: 226px;
  overflow: hidden;
  border: 1px solid rgba(207, 220, 232, .95);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero > *,
.product-grid > *,
.principles > *,
.metrics > * {
  min-width: 0;
}

.product-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .95) 34%, rgba(255, 255, 255, .68) 58%, rgba(255, 255, 255, .10) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, .95) 0%, transparent 36%);
}

.product-copy {
  width: 58%;
  min-width: 235px;
  padding: 16px 22px 56px;
}

.icon-box {
  width: 43px;
  height: 43px;
  margin-bottom: 12px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #b9daf5;
  border-radius: 8px;
  background: rgba(247, 251, 255, .78);
  color: var(--blue-deep);
}

.icon-box::before {
  font-size: 24px;
  line-height: 1;
}

.icon-pin::before { content: "⌖"; }
.icon-screen::before { content: "▭"; }
.icon-legal::before { content: "⚖"; }

.product-kicker {
  margin-bottom: 0;
  color: #0d1931;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 6px;
  color: #419fe8;
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.subtitle {
  margin-bottom: 9px;
  color: #11213c;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.description {
  margin-bottom: 12px;
  color: #3e4c64;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 550;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tags span {
  min-height: 17px;
  padding: 2px 11px;
  border: 1px solid #d2e1ed;
  border-radius: 999px;
  background: #f3f8fc;
  color: #254261;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.2;
  white-space: nowrap;
}

.product-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px 0 22px;
  background: rgba(255, 255, 255, .88);
  border-top: 1px solid rgba(219, 231, 240, .8);
  backdrop-filter: blur(8px);
}

.product-footer a {
  color: #102040;
  font-size: 13px;
  font-weight: 900;
}

.product-footer span {
  color: #379cea;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.principles {
  width: min(1290px, calc(100% - 92px));
  margin: 48px auto 0;
  padding: 21px 0 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(211, 224, 235, .72);
  border-bottom: 1px solid rgba(211, 224, 235, .72);
}

.principle {
  min-height: 72px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 26px;
  border-right: 1px solid rgba(211, 224, 235, .92);
}

.principle:last-child {
  border-right: 0;
}

.principle-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #56aeea;
}

.principle-icon::before {
  font-size: 31px;
  line-height: 1;
}

.target::before { content: "◎"; }
.code::before { content: "‹›"; }
.bolt::before { content: "ϟ"; }
.growth::before { content: "↗"; }

.principle h3 {
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 1.18;
  font-weight: 900;
}

.principle p {
  margin-bottom: 0;
  color: #4e5e74;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 520;
}

.metrics-band {
  width: min(1290px, calc(100% - 92px));
  margin: 0 auto;
  padding: 23px 0 24px;
  display: grid;
  grid-template-columns: 33% 67%;
  align-items: center;
  border-bottom: 1px solid rgba(211, 224, 235, .72);
}

.manifesto h2 {
  margin-bottom: 4px;
  font-size: 26px;
  line-height: .98;
  font-weight: 900;
}

.manifesto p {
  margin-bottom: 0;
  color: #45a8ec;
  font-size: 17px;
  line-height: 1.06;
  font-weight: 800;
}

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

.metrics article {
  min-height: 68px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 0 20px;
  text-align: center;
  border-left: 1px solid rgba(211, 224, 235, .92);
}

.metrics strong {
  color: #0b1830;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.metrics span {
  color: #4b5b71;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 560;
}

.footer {
  width: min(1290px, calc(100% - 92px));
  margin: 0 auto;
  padding: 24px 0 28px;
  display: grid;
  grid-template-columns: 30% 14% 15% 14% 1fr;
  gap: 28px;
  color: #526278;
}

.footer-brand {
  display: block;
}

.footer-brand img {
  width: 144px;
  height: auto;
  margin-bottom: 12px;
}

.socials {
  display: flex;
  gap: 13px;
}

.socials a {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #edf5fb;
  color: #30445d;
  font-size: 11px;
  font-weight: 900;
}

.footer h3 {
  margin-bottom: 7px;
  color: #23314b;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 4px 0;
  color: #57667d;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 560;
}

.footer-meta {
  align-self: start;
  padding-top: 10px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity .38s ease, transform .38s ease;
}

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

@media (min-width: 1450px) {
  .site-header,
  .hero,
  .products-section,
  .principles,
  .metrics-band,
  .footer {
    width: 1328px;
  }
}

@media (max-width: 1120px) {
  .site-header,
  .hero,
  .products-section,
  .principles,
  .metrics-band,
  .footer {
    width: calc(100% - 44px);
  }

  .site-header {
    grid-template-columns: 190px 1fr 190px;
  }

  .nav {
    gap: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-visual img {
    max-height: 420px;
  }

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

  .product-card {
    min-height: 250px;
  }

  .principle:nth-child(2) {
    border-right: 0;
  }

  .metrics-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer {
    grid-template-columns: 2fr repeat(3, 1fr);
  }

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 170px 1fr;
  }

  .header-cta {
    display: none;
  }

  .nav {
    justify-content: flex-end;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand img {
    width: 150px;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    gap: 6px;
    overflow: visible;
    padding-bottom: 8px;
    font-size: 11px;
    min-width: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: block;
    margin-top: 18px;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    padding: 34px 0 0;
  }

  h1 {
    font-size: 43px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 16px;
  }

  .section-head {
    max-width: 100%;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    margin-top: 36px;
  }

  .hero-visual img {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .product-grid,
  .principles,
  .metrics,
  .footer {
    grid-template-columns: 1fr;
  }

  .product-copy {
    order: 1;
    width: 100%;
    min-width: 0;
    padding: 18px 18px 16px;
  }

  .product-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .product-card::before {
    display: none;
  }

  .product-image {
    position: relative;
    inset: auto;
    z-index: auto;
    order: 2;
    height: 178px;
    overflow: hidden;
  }

  .product-image img {
    object-position: center;
  }

  .product-footer {
    position: static;
    order: 3;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 9px 18px;
  }

  .principle,
  .principle:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(211, 224, 235, .92);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .metrics article {
    border-left: 0;
    border-top: 1px solid rgba(211, 224, 235, .92);
    padding: 18px 0;
  }

  .footer {
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .site-header,
  .hero,
  .products-section,
  .principles,
  .metrics-band,
  .footer {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 35px;
    line-height: 1.02;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.55;
  }

  .product-copy {
    padding-right: 16px;
  }

  .section-head h2,
  .manifesto h2 {
    font-size: 22px;
    line-height: 1.08;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
