:root {
  color-scheme: dark;
  --ink: #020b1b;
  --ink-deep: #000713;
  --navy: #06162d;
  --navy-2: #0a203e;
  --navy-3: #102a4d;
  --white: #f7f9ff;
  --soft: #d4deee;
  --muted: #91a3bb;
  --line: rgba(152, 180, 220, 0.17);
  --line-strong: rgba(152, 180, 220, 0.31);
  --suite: #ffd84d;
  --drive: #cfff3d;
  --links: #4d8dff;
  --emailer: #a66cff;
  --verify: #28d7b0;
  --serp: #ff9c46;
  --keyword: #ff638f;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow: 0 34px 90px rgba(0, 5, 17, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 8%, rgba(77, 141, 255, 0.16), transparent 27rem),
    radial-gradient(circle at 10% 30%, rgba(255, 216, 77, 0.055), transparent 25rem),
    var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(103, 143, 196, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 143, 196, 0.036) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

::selection {
  color: #03101e;
  background: var(--suite);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--suite);
  outline-offset: 4px;
}

.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 9px 13px;
  border-radius: 9px;
  color: #03101e;
  background: var(--suite);
  font-weight: 850;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.suite-notice {
  border-bottom: 1px solid rgba(255, 216, 77, 0.18);
  color: #becbdd;
  background: #000713;
  font-size: 0.78rem;
}

.suite-notice-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.suite-notice span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.suite-notice i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--suite);
  box-shadow: 0 0 0 5px rgba(255, 216, 77, 0.1);
}

.suite-notice a {
  color: var(--suite);
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 11, 27, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 78px;
  align-items: center;
  gap: 24px;
}

.master-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  text-decoration: none;
}

.master-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 216, 77, 0.38);
  border-radius: 13px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 216, 77, 0.17), transparent 65%),
    #07172d;
  box-shadow: 0 0 26px rgba(255, 216, 77, 0.12);
}

.lion-glyph {
  display: block;
  width: 30px;
  height: 30px;
  background: var(--suite);
  filter: drop-shadow(0 0 10px rgba(255, 216, 77, 0.27));
  -webkit-mask: url("/leo-mark.png") center / contain no-repeat;
  mask: url("/leo-mark.png") center / contain no-repeat;
}

.master-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.master-copy strong {
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.master-copy small {
  color: var(--suite);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

nav a {
  color: #afbed1;
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 150ms ease;
}

nav a:hover {
  color: var(--white);
}

.nav-shell > .compact-button {
  justify-self: end;
}

.compact-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

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

.compact-button-primary {
  color: #03101e;
  background: var(--suite);
  box-shadow: 0 13px 30px rgba(255, 216, 77, 0.13);
}

.compact-button-primary:hover {
  background: #ffe47b;
  box-shadow: 0 16px 38px rgba(255, 216, 77, 0.2);
}

.compact-button-quiet {
  border-color: var(--line-strong);
  color: var(--soft);
  background: rgba(8, 26, 50, 0.58);
}

.compact-button-quiet:hover {
  border-color: rgba(255, 216, 77, 0.48);
  color: var(--white);
  background: rgba(11, 33, 63, 0.86);
}

.hero {
  display: grid;
  min-height: 710px;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: clamp(46px, 7vw, 104px);
  padding-block: 74px 82px;
}

.hero > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--suite);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.live-suite-copy h2,
.closing-card h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(4.4rem, 7.4vw, 7.3rem);
  font-weight: 950;
}

.hero h1 span {
  color: var(--suite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.87em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 650px;
  margin: 29px 0 0;
  color: #aab9cd;
  font-size: clamp(1.03rem, 1.3vw, 1.22rem);
  line-height: 1.7;
}

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

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 31px;
  color: #8fa2ba;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-status b {
  color: var(--white);
  font-size: 0.95rem;
}

.suite-constellation {
  position: relative;
  min-height: 570px;
}

.suite-constellation::before {
  position: absolute;
  inset: 7% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(25, 72, 135, 0.48), rgba(7, 23, 45, 0.15) 48%, transparent 72%);
  content: "";
  filter: blur(2px);
}

.constellation-orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(77, 141, 255, 0.27);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-11deg);
  will-change: transform;
}

.orbit-one {
  width: 83%;
  height: 62%;
  animation: orbit-one-turn 22s linear infinite;
}

.orbit-two {
  width: 105%;
  height: 86%;
  border-color: rgba(255, 216, 77, 0.18);
  transform: translate(-50%, -50%) rotate(17deg);
  animation: orbit-two-turn 34s linear infinite;
}

.signal-field {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.signal {
  --signal-color: var(--suite);
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--signal-color);
  box-shadow:
    0 0 0 5px color-mix(in srgb, var(--signal-color) 12%, transparent),
    0 0 22px var(--signal-color);
  offset-path: ellipse(43% 34% at 50% 50%);
  animation: signal-travel 18s linear infinite;
}

.signal-drive {
  --signal-color: var(--drive);
}

.signal-links {
  --signal-color: var(--links);
  animation-delay: -3s;
}

.signal-emailer {
  --signal-color: var(--emailer);
  animation-delay: -6s;
}

.signal-verify {
  --signal-color: var(--verify);
  animation-delay: -9s;
}

.signal-serp {
  --signal-color: var(--serp);
  animation-delay: -12s;
}

.signal-keyword {
  --signal-color: var(--keyword);
  animation-delay: -15s;
}

.constellation-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 256px;
  height: 256px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 216, 77, 0.54);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 216, 77, 0.2), transparent 43%),
    linear-gradient(150deg, #0d294b, #06162d 70%);
  box-shadow:
    0 0 0 16px rgba(255, 216, 77, 0.035),
    0 40px 86px rgba(0, 5, 17, 0.58);
  transform: translate(-50%, -50%);
  animation: core-breathe 5.5s ease-in-out infinite;
}

.core-mark {
  display: grid;
  width: 102px;
  height: 102px;
  place-items: center;
  margin-bottom: 7px;
  border-radius: 29px;
  background: #020b1b;
  box-shadow: inset 0 0 0 1px rgba(255, 216, 77, 0.32);
}

.core-mark .lion-glyph {
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 0 18px rgba(255, 216, 77, 0.34));
}

.constellation-core strong {
  font-size: 1.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.constellation-core small {
  margin-top: 5px;
  color: var(--suite);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.product-node {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 246px;
  grid-template-columns: auto 1fr;
  column-gap: 15px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--node-color) 10%, transparent), transparent 45%),
    rgba(8, 27, 52, 0.94);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--node-color) 8%, transparent),
    0 16px 34px rgba(0, 4, 14, 0.32);
  text-decoration: none;
  animation: node-float 5.8s ease-in-out infinite;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.product-node:hover {
  z-index: 6;
  border-color: var(--node-color);
  background: #0c2545;
  transform: translateY(-3px);
  animation-play-state: paused;
}

.product-node .node-lion {
  width: 54px;
  height: 54px;
  background: var(--node-color);
  filter: drop-shadow(0 0 14px color-mix(in srgb, var(--node-color) 54%, transparent));
  -webkit-mask: url("/leo-mark.png") center / contain no-repeat;
  mask: url("/leo-mark.png") center / contain no-repeat;
}

.node-lockup {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 2px;
  line-height: 1;
}

.node-lockup strong,
.node-lockup b {
  color: var(--node-color);
  overflow-wrap: anywhere;
}

.node-lockup strong {
  font-size: 1.03rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.node-lockup b {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.node-lockup small {
  margin-top: 6px;
  color: #7f93ad;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.2;
}

.node-drive {
  --node-color: var(--drive);
  top: 5%;
  left: 8%;
}

.node-links {
  --node-color: var(--links);
  top: 7%;
  right: -2%;
  animation-delay: -1s;
}

.node-emailer {
  --node-color: var(--emailer);
  top: 43%;
  right: -7%;
  animation-delay: -2s;
}

.node-verify {
  --node-color: var(--verify);
  right: 1%;
  bottom: 3%;
  animation-delay: -3s;
}

.node-serp {
  --node-color: var(--serp);
  bottom: 1%;
  left: 2%;
  animation-delay: -4s;
}

.node-keyword {
  --node-color: var(--keyword);
  top: 43%;
  left: -8%;
  animation-delay: -5s;
}

@keyframes orbit-one-turn {
  from {
    transform: translate(-50%, -50%) rotate(-11deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(349deg);
  }
}

@keyframes orbit-two-turn {
  from {
    transform: translate(-50%, -50%) rotate(17deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-343deg);
  }
}

@keyframes signal-travel {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

@keyframes node-float {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -8px;
  }
}

@keyframes core-breathe {
  0%,
  100% {
    box-shadow:
      0 0 0 16px rgba(255, 216, 77, 0.035),
      0 40px 86px rgba(0, 5, 17, 0.58);
  }
  50% {
    box-shadow:
      0 0 0 23px rgba(255, 216, 77, 0.06),
      0 40px 100px rgba(255, 216, 77, 0.14);
  }
}

.suite-index {
  border-block: 1px solid var(--line);
  background: rgba(4, 18, 37, 0.78);
}

.suite-index-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.suite-index a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  color: #a9b8cb;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 150ms ease,
    background 150ms ease;
}

.suite-index a:first-child {
  border-left: 1px solid var(--line);
}

.suite-index a:hover {
  color: var(--white);
  background: rgba(14, 40, 75, 0.68);
}

.suite-index i {
  width: 19px;
  height: 19px;
  background: currentColor;
  -webkit-mask: url("/leo-mark.png") center / contain no-repeat;
  mask: url("/leo-mark.png") center / contain no-repeat;
}

.index-drive i {
  color: var(--drive);
}

.index-links i {
  color: var(--links);
}

.index-emailer i {
  color: var(--emailer);
}

.index-verify i {
  color: var(--verify);
}

.index-serp i {
  color: var(--serp);
}

.index-keyword i {
  color: var(--keyword);
}

.section {
  padding-block: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
  margin-bottom: 48px;
}

.section-heading h2,
.live-suite-copy h2,
.closing-card h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  font-weight: 920;
}

.section-heading > p,
.live-suite-copy > p,
.closing-card > div > p:last-child {
  margin: 0;
  color: #97a9bf;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 30px 32px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(110deg, color-mix(in srgb, var(--product-color) 7%, transparent), transparent 38%),
    rgba(7, 24, 47, 0.9);
  box-shadow: 0 24px 62px rgba(0, 5, 17, 0.2);
  scroll-margin-top: 112px;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--product-color);
  content: "";
  opacity: 0.95;
}

.product-card:hover {
  border-color: color-mix(in srgb, var(--product-color) 50%, transparent);
  transform: translateY(-3px);
}

.product-drive {
  --product-color: var(--drive);
}

.product-links {
  --product-color: var(--links);
}

.product-emailer {
  --product-color: var(--emailer);
}

.product-verify {
  --product-color: var(--verify);
}

.product-serp {
  --product-color: var(--serp);
}

.product-keyword {
  --product-color: var(--keyword);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--product-color) 25%, var(--line));
  border-radius: 999px;
  color: var(--product-color);
  background: rgba(0, 7, 19, 0.32);
  font-size: 0.67rem;
  font-weight: 800;
}

.product-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--product-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--product-color) 9%, transparent);
}

.status-live {
  border-color: rgba(207, 255, 61, 0.34);
  color: var(--drive);
}

.status-live i {
  background: var(--drive);
  box-shadow: 0 0 0 4px rgba(207, 255, 61, 0.08);
}

.product-number {
  color: rgba(170, 192, 222, 0.35);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(330px, 1.04fr) minmax(290px, 0.82fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.product-row > * {
  min-width: 0;
}

.product-identity {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(16px, 2.8vw, 38px);
  border-right: 1px solid color-mix(in srgb, var(--product-color) 24%, transparent);
}

.product-lockup {
  display: block;
  width: min(100%, 580px);
  height: auto;
  margin: 0 0 18px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px color-mix(in srgb, var(--product-color) 13%, transparent));
}

.product-identity p {
  max-width: 430px;
  margin: 0;
  color: #91a4bc;
  font-size: 0.84rem;
  line-height: 1.65;
}

.product-explainer,
.product-capabilities {
  align-self: center;
}

.detail-label {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--product-color);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h3 {
  max-width: 520px;
  margin: 0 0 13px;
  font-size: clamp(1.65rem, 2.15vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.product-explainer p {
  max-width: 620px;
  margin: 0;
  color: #9bacc2;
  line-height: 1.7;
}

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

.product-card li {
  position: relative;
  padding-left: 20px;
  color: #c9d5e4;
  font-size: 0.8rem;
  font-weight: 680;
  line-height: 1.5;
}

.product-card li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--product-color);
  content: "";
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 5px;
  color: var(--product-color);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

a.product-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.principles-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 216, 77, 0.07), transparent 28rem),
    rgba(4, 18, 36, 0.73);
}

.section-heading-tight {
  margin-bottom: 40px;
}

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

.principle-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(5, 22, 43, 0.8);
}

.principle-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 216, 77, 0.25);
  border-radius: 9px;
  color: var(--suite);
  font-size: 0.67rem;
  font-weight: 900;
}

.principle-grid h3 {
  margin: 49px 0 12px;
  font-size: 1.2rem;
}

.principle-grid p {
  margin: 0;
  color: #91a3ba;
  font-size: 0.86rem;
  line-height: 1.7;
}

.live-suite-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: center;
}

.live-suite-copy {
  position: sticky;
  top: 132px;
}

.live-suite-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 29px;
}

.suite-capability-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.suite-capability-map > span {
  --capability-color: var(--suite);
  display: grid;
  min-height: 176px;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 16px;
  align-content: center;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--capability-color) 30%, var(--line));
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 16%, color-mix(in srgb, var(--capability-color) 13%, transparent), transparent 45%),
    rgba(7, 24, 47, 0.88);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.suite-capability-map > span:hover {
  border-color: color-mix(in srgb, var(--capability-color) 68%, transparent);
  box-shadow: 0 22px 42px rgba(0, 5, 17, 0.25);
  transform: translateY(-4px);
}

.suite-capability-map i {
  width: 46px;
  height: 46px;
  grid-row: 1 / 3;
  background: var(--capability-color);
  filter: drop-shadow(0 0 13px color-mix(in srgb, var(--capability-color) 45%, transparent));
  -webkit-mask: url("/leo-mark.png") center / contain no-repeat;
  mask: url("/leo-mark.png") center / contain no-repeat;
}

.suite-capability-map b {
  align-self: end;
  color: var(--capability-color);
  font-size: 1rem;
}

.suite-capability-map small {
  align-self: start;
  margin-top: 5px;
  color: #91a3ba;
  font-size: 0.76rem;
  line-height: 1.5;
}

.capability-drive {
  --capability-color: var(--drive);
}

.capability-links {
  --capability-color: var(--links);
}

.capability-emailer {
  --capability-color: var(--emailer);
}

.capability-verify {
  --capability-color: var(--verify);
}

.capability-serp {
  --capability-color: var(--serp);
}

.capability-keyword {
  --capability-color: var(--keyword);
}

.closing-section {
  padding: 0 0 112px;
}

.closing-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px;
  border: 1px solid rgba(255, 216, 77, 0.3);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 8% 50%, rgba(255, 216, 77, 0.14), transparent 18rem),
    linear-gradient(135deg, #0a2545, #06162d);
  box-shadow: var(--shadow);
}

.closing-mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 216, 77, 0.4);
  border-radius: 22px;
  background: #020b1b;
}

.closing-mark .lion-glyph {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 18px rgba(255, 216, 77, 0.34));
}

.closing-card .eyebrow {
  margin-bottom: 9px;
}

.closing-card h2 {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

.closing-card > div > p:last-child {
  margin-top: 13px;
}

footer {
  border-top: 1px solid var(--line);
  background: #000713;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 126px;
  align-items: center;
  gap: 30px;
}

.footer-brand .master-mark {
  width: 39px;
  height: 39px;
}

.footer-brand .master-mark .lion-glyph {
  width: 27px;
  height: 27px;
}

.footer-inner p {
  margin: 0;
  color: #7f91a8;
  font-size: 0.78rem;
}

.footer-inner > div:last-child {
  display: flex;
  justify-self: end;
  gap: 20px;
}

.footer-inner > div:last-child a {
  color: #9bacc1;
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-inner > div:last-child a:hover {
  color: var(--white);
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .suite-constellation {
    width: min(760px, 100%);
    min-height: 620px;
    margin-inline: auto;
  }

  .product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 46px;
  }

  .product-identity {
    grid-column: 1 / -1;
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--product-color) 24%, transparent);
  }

  .product-lockup {
    width: min(100%, 540px);
  }

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

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, 690px);
  }

  .suite-notice-inner {
    justify-content: space-between;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 14vw, 6.3rem);
  }

  .suite-index-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .suite-index a:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .suite-index a:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding-block: 82px;
  }

  .section-heading,
  .live-suite-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .product-identity {
    grid-column: 1;
  }

  .live-suite-copy {
    position: static;
  }

  .closing-card {
    grid-template-columns: auto 1fr;
  }

  .closing-card > .compact-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner p {
    display: none;
  }
}

@media (max-width: 620px) {
  .suite-notice {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr;
    min-height: 66px;
  }

  .nav-shell > .compact-button {
    display: none;
  }

  .master-mark {
    width: 39px;
    height: 39px;
  }

  .master-mark .lion-glyph {
    width: 27px;
    height: 27px;
  }

  .master-copy strong {
    font-size: 1rem;
  }

  .master-copy small {
    font-size: 0.49rem;
  }

  .hero {
    gap: 36px;
    padding-block: 50px 58px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 18vw, 5rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-status {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 18px;
  }

  .hero-status span:last-child {
    grid-column: 1 / -1;
  }

  .suite-constellation {
    display: grid;
    width: 100%;
    min-height: 0;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    transform: none;
  }

  .suite-constellation::before {
    inset: 0 15% auto;
    height: 180px;
  }

  .constellation-orbit {
    display: none;
  }

  .signal-field {
    display: none;
  }

  .constellation-core {
    position: relative;
    top: auto;
    left: auto;
    width: 196px;
    height: 196px;
    grid-column: 1 / -1;
    margin: 0 auto 12px;
    transform: none;
  }

  .core-mark {
    width: 76px;
    height: 76px;
  }

  .core-mark .lion-glyph {
    width: 58px;
    height: 58px;
  }

  .product-node {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 14px;
    animation: none;
  }

  .product-node .node-lion {
    width: 42px;
    height: 42px;
  }

  .node-lockup {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .node-lockup strong {
    font-size: 0.84rem;
  }

  .node-lockup b {
    font-size: 0.56rem;
  }

  .node-lockup small {
    display: none;
  }

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

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

  .suite-index a:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .suite-index a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading h2,
  .live-suite-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .product-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
    padding: 22px;
  }

  .product-lockup {
    width: 100%;
    margin: 0 0 15px;
  }

  .product-identity {
    padding-bottom: 22px;
  }

  .product-explainer {
    padding-bottom: 6px;
  }

  .product-card ul {
    margin-bottom: 36px;
  }

  .suite-capability-map {
    grid-template-columns: 1fr;
  }

  .suite-capability-map > span {
    min-height: 142px;
  }

  .closing-card {
    grid-template-columns: 1fr;
    padding: 27px;
  }

  .closing-mark {
    width: 65px;
    height: 65px;
  }

  .closing-mark .lion-glyph {
    width: 48px;
    height: 48px;
  }

  .closing-card > .compact-button {
    grid-column: 1;
  }

  .footer-inner {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
  }

  .footer-inner > div:last-child {
    justify-self: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
