:root {
  --ink: #10242c;
  --muted: #60737b;
  --line: #d8e4e7;
  --paper: #f7fbfb;
  --white: #ffffff;
  --teal: #13b8b1;
  --teal-dark: #087c83;
  --mint: #dff7f3;
  --navy: #183a4a;
  --coral: #f26d5b;
  --amber: #f5b84b;
  --shadow: 0 24px 70px rgba(13, 64, 72, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  max-width: 1520px;
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  margin-inline: auto;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 251, 251, .92);
  border-bottom: 1px solid rgba(216, 228, 231, .85);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--navy);
  font-weight: 900;
}

.brand-logo {
  width: 186px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #233949;
  font-size: 15px;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--teal-dark);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.btn-primary {
  color: #062e35;
  background: var(--teal);
  box-shadow: 0 14px 34px rgba(19, 184, 177, .24);
}

.btn-secondary,
.btn-outline {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(92vh - 78px);
  display: grid;
  align-items: center;
  padding: clamp(58px, 7vw, 96px) 0 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(19, 184, 177, .16), transparent 27%),
    linear-gradient(160deg, rgba(255, 255, 255, .96), rgba(245, 252, 253, .94));
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(19, 184, 177, .15);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(44px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 78px);
  letter-spacing: -1.4px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.8px;
}

h3 {
  font-size: 25px;
}

.hero-text {
  max-width: 650px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
}

.ecosystem-visual {
  position: relative;
  min-height: 540px;
  border-radius: 28px;
}

.ecosystem-visual::before {
  content: "";
  position: absolute;
  inset: 40px 20px 24px;
  border: 1px solid rgba(19, 184, 177, .18);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.ecosystem-visual::after {
  content: "";
  position: absolute;
  inset: 88px 78px 74px;
  border: 1px solid rgba(245, 184, 75, .24);
  border-radius: 50%;
  transform: rotate(12deg);
}

.brand-hub,
.orbit-card,
.orbit-line {
  position: absolute;
  z-index: 1;
}

.brand-hub {
  top: 50%;
  left: 50%;
  width: min(360px, 62%);
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(216, 228, 231, .95);
  border-radius: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.brand-hub img {
  width: min(260px, 92%);
}

.brand-hub span {
  color: var(--teal-dark);
  font-weight: 900;
}

.orbit-card {
  display: flex;
  width: min(330px, 56%);
  min-height: 112px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(216, 228, 231, .95);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 44px rgba(18, 45, 71, .08);
}

.orbit-card img,
.future-mark {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 12px;
}

.orbit-card img {
  object-fit: cover;
}

.future-mark {
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 38px;
  font-weight: 900;
}

.orbit-card strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.1;
}

.orbit-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.orbit-marketplace {
  top: 28px;
  left: 0;
}

.orbit-bi {
  right: 0;
  top: 48%;
  transform: translateY(-50%);
}

.orbit-future {
  left: 72px;
  bottom: 18px;
}

.orbit-line {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(19, 184, 177, .1), rgba(19, 184, 177, .55));
}

.line-a {
  top: 190px;
  left: 248px;
  transform: rotate(24deg);
}

.line-b {
  right: 210px;
  bottom: 170px;
  transform: rotate(-32deg);
}

.section {
  padding: 86px 0;
  scroll-margin-top: 104px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.ecosystem {
  padding-top: 0;
}

.ecosystem-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
  border-radius: 8px;
  padding: 38px 42px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.ecosystem-band h2,
.ecosystem-band .eyebrow {
  color: var(--white);
}

.ecosystem-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.products {
  background: var(--white);
}

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

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 45px rgba(18, 45, 71, .06);
  overflow: hidden;
}

.product-card:nth-child(2) {
  border-top-color: var(--navy);
}

.future-product {
  border-top-color: var(--amber);
  background: linear-gradient(135deg, #ffffff, #f8fcfc);
}

.product-media {
  display: flex;
  min-height: 176px;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(223, 247, 243, .55), rgba(255, 255, 255, .92));
}

.product-media img {
  width: 142px;
  height: 142px;
  border-radius: 22px;
  object-fit: cover;
}

.future-media span {
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  border-radius: 22px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 64px;
  font-weight: 900;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.product-kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.product-body > p:not(.product-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
}

.product-body ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.product-body li {
  position: relative;
  padding-left: 22px;
  color: #294858;
  font-weight: 750;
}

.product-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.text-link:hover {
  text-decoration: underline;
}

.systems {
  background:
    radial-gradient(circle at 8% 18%, rgba(19, 184, 177, .12), transparent 24%),
    var(--paper);
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-cloud span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: #24435f;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(7, 42, 74, .05);
  font-weight: 900;
}

.principles {
  background: var(--white);
}

.search-intents {
  background: var(--white);
}

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

.intent-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fbfefe;
  box-shadow: 0 12px 34px rgba(18, 45, 71, .05);
}

.intent-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.intent-grid p {
  margin: 0;
  color: var(--muted);
}

.principles-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 52px;
  align-items: start;
}

.principle-list {
  display: grid;
  gap: 16px;
}

.principle-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fbfefe;
  box-shadow: 0 10px 28px rgba(18, 45, 71, .04);
}

.principle-list span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 900;
}

.principle-list h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.principle-list p {
  margin: 0;
  color: var(--muted);
}

.cta-section {
  padding-bottom: 92px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 8px;
  padding: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box .light {
  color: var(--white);
}

.cta-box p {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0e222b;
  color: rgba(255, 255, 255, .72);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 40px;
  padding: 54px 0 44px;
}

.footer-column h4 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-logo {
  width: 190px;
  height: auto;
  margin-left: -28px;
  filter: brightness(1.2);
}

.footer-tagline {
  max-width: 310px;
  margin: 10px 0 0;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 1040px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .ecosystem-band,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-visual {
    min-height: 460px;
  }

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

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

  .future-product {
    grid-column: 1 / -1;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-logo {
    width: 158px;
  }

  .brand-subtitle {
    margin-left: 42px;
    font-size: 12px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -.6px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }

  .ecosystem-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .ecosystem-visual::before,
  .ecosystem-visual::after,
  .orbit-line {
    display: none;
  }

  .brand-hub,
  .orbit-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .brand-hub {
    min-height: 180px;
  }

  .orbit-card {
    min-height: 100px;
  }

  .section {
    padding: 62px 0;
  }

  .ecosystem-band,
  .cta-box {
    padding: 28px;
  }

  .product-grid,
  .intent-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .future-product {
    grid-column: auto;
  }

  .principle-list article {
    grid-template-columns: 1fr;
  }
}
