:root {
  --as-ink: #071225;
  --as-ink-soft: #14233d;
  --as-blue: #1448ff;
  --as-blue-dark: #0b2fb8;
  --as-coral: #ff5b4d;
  --as-green: #21a66f;
  --as-paper: #f4f6f9;
  --as-white: #ffffff;
  --as-muted: #5c6678;
  --as-line: #d9dee8;
  --as-line-dark: rgba(255, 255, 255, 0.18);
  --as-shadow: 0 22px 70px rgba(7, 18, 37, 0.12);
  --as-shell: 1400px;
}

html {
  scroll-padding-top: 104px;
}

body.aimsparkk-next {
  background: var(--as-white);
  color: var(--as-ink);
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
}

body.aimsparkk-next h1,
body.aimsparkk-next h2,
body.aimsparkk-next h3,
body.aimsparkk-next h4 {
  color: inherit;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

body.aimsparkk-next a,
body.aimsparkk-next button,
body.aimsparkk-next input,
body.aimsparkk-next textarea,
body.aimsparkk-next select {
  letter-spacing: 0;
}

body.aimsparkk-next img {
  display: block;
  max-width: 100%;
}

.as-shell {
  margin-inline: auto;
  width: min(calc(100% - 64px), var(--as-shell));
}

.as-skip-link {
  background: var(--as-ink);
  border-radius: 4px;
  color: var(--as-white);
  left: 18px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  transition: top 160ms ease;
  z-index: 1000;
}

.as-skip-link:focus {
  top: 18px;
}

.as-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 750;
  gap: 12px;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.as-button-primary {
  background: var(--as-blue);
  color: var(--as-white);
}

.as-button-primary:hover {
  background: var(--as-blue-dark);
  color: var(--as-white);
}

.as-button-secondary {
  background: var(--as-white);
  border-color: var(--as-line);
  color: var(--as-ink);
}

.as-button-secondary:hover {
  border-color: var(--as-ink);
  color: var(--as-ink);
}

.as-button-light {
  background: var(--as-white);
  color: var(--as-ink);
}

.as-button-light:hover {
  background: #e9eeff;
  color: var(--as-ink);
}

.as-text-link {
  align-items: center;
  color: var(--as-ink);
  display: inline-flex;
  font-weight: 750;
  gap: 10px;
  position: relative;
}

.as-text-link::after {
  background: var(--as-blue);
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.as-text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.as-text-link-light {
  color: var(--as-white);
}

.as-text-link-light::after {
  background: var(--as-coral);
}

.as-eyebrow {
  align-items: center;
  color: var(--as-blue);
  display: flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.as-eyebrow > span {
  background: var(--as-coral);
  height: 8px;
  width: 8px;
}

.as-eyebrow-light {
  color: #cbd6ff;
}

.as-eyebrow-light > span {
  background: var(--as-green);
}

.as-header {
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 12px;
  z-index: 100;
}

.admin-bar .as-header {
  top: 44px;
}

.as-header-inner {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 222, 232, 0.9);
  border-radius: 6px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-inline: auto;
  min-height: 72px;
  padding: 8px 10px 8px 18px;
  pointer-events: auto;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: min(calc(100% - 32px), 1480px);
}

.as-header.is-scrolled .as-header-inner {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 50px rgba(7, 18, 37, 0.1);
}

.as-brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.as-brand img {
  height: auto;
  width: 174px;
}

.as-desktop-nav {
  align-items: center;
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.as-desktop-nav > a,
.as-desktop-nav > .as-nav-menu > button {
  align-items: center;
  background: transparent;
  border-radius: 4px;
  color: var(--as-ink);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 720;
  gap: 7px;
  min-height: 44px;
  padding: 0 13px;
  transition: background-color 160ms ease, color 160ms ease;
}

.as-desktop-nav > a:hover,
.as-desktop-nav > .as-nav-menu > button:hover,
.as-desktop-nav > .as-nav-menu > button[aria-expanded="true"] {
  background: #eef2ff;
  color: var(--as-blue);
}

.as-nav-menu {
  position: relative;
}

.as-nav-panel,
.as-account-panel {
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 6px;
  box-shadow: var(--as-shadow);
  display: grid;
  gap: 2px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  visibility: hidden;
  width: 340px;
}

.as-nav-panel::before,
.as-account-panel::before {
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
  top: -14px;
}

.as-nav-panel-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 580px;
}

.as-nav-menu.is-open .as-nav-panel,
.as-nav-menu:focus-within .as-nav-panel,
.as-nav-menu:hover .as-nav-panel,
.as-account-menu.is-open .as-account-panel,
.as-account-menu:focus-within .as-account-panel,
.as-account-menu:hover .as-account-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.as-nav-panel > a,
.as-account-panel > a {
  border-radius: 4px;
  color: var(--as-ink);
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  transition: background-color 160ms ease;
}

.as-nav-panel > a:hover,
.as-account-panel > a:hover {
  background: var(--as-paper);
  color: var(--as-ink);
}

.as-nav-panel strong,
.as-account-panel strong {
  font-size: 0.92rem;
}

.as-nav-panel span,
.as-account-panel span {
  color: var(--as-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.as-nav-panel .as-nav-panel-all {
  align-items: center;
  background: var(--as-ink);
  color: var(--as-white);
  display: flex;
  font-weight: 750;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 3px;
}

.as-nav-panel .as-nav-panel-all:hover {
  background: var(--as-blue);
  color: var(--as-white);
}

.as-nav-panel .as-nav-panel-all span {
  color: inherit;
  font-size: 1rem;
}

.as-header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.as-account-menu {
  position: relative;
}

.as-account-button,
.as-mobile-toggle {
  align-items: center;
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 6px;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  transition: border-color 160ms ease, color 160ms ease;
  width: 48px;
}

.as-account-button:hover,
.as-account-button[aria-expanded="true"] {
  border-color: var(--as-blue);
  color: var(--as-blue);
}

.as-account-button svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 22px;
}

.as-account-panel {
  width: 300px;
}

.as-header-cta {
  min-height: 48px;
}

.as-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.as-mobile-toggle span {
  background: currentColor;
  height: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 20px;
}

.as-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.as-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.as-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.as-mobile-menu {
  background: var(--as-white);
  border-top: 1px solid var(--as-line);
  display: grid;
  grid-template-rows: 1fr auto;
  inset: 84px 16px auto;
  max-height: calc(100svh - 104px);
  opacity: 0;
  overflow-y: auto;
  padding: 26px;
  pointer-events: none;
  position: fixed;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.as-mobile-menu.is-open {
  box-shadow: var(--as-shadow);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.as-mobile-menu nav {
  display: grid;
}

.as-mobile-menu nav a {
  border-bottom: 1px solid var(--as-line);
  color: var(--as-ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  padding: 15px 0;
}

.as-mobile-menu-bottom {
  display: grid;
  gap: 18px;
  padding-top: 26px;
}

.as-mobile-menu-bottom p {
  color: var(--as-muted);
  line-height: 1.65;
  max-width: 480px;
}

body.as-menu-open {
  overflow: hidden;
}

.as-hero {
  align-items: center;
  background: var(--as-white);
  display: flex;
  min-height: min(820px, calc(100svh - 18px));
  overflow: hidden;
  padding: 136px 0 76px;
  position: relative;
}

.as-hero::before {
  background: var(--as-blue);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 30%;
}

.as-hero::after {
  background: var(--as-coral);
  content: "";
  height: 4px;
  position: absolute;
  right: 0;
  top: 0;
  width: 8%;
}

.as-hero-grid {
  align-items: center;
  display: block;
  position: relative;
  z-index: 2;
}

.as-hero-copy {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.as-hero h1 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 0.98;
  margin: 24px 0 0;
  max-width: 640px;
  text-wrap: balance;
}

.as-hero-lede {
  color: var(--as-muted);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-top: 30px;
  max-width: 590px;
}

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

.as-hero-note {
  align-items: center;
  color: var(--as-muted);
  display: flex;
  font-size: 0.82rem;
  gap: 10px;
  margin-top: 22px;
}

.as-hero-note::before {
  background: var(--as-green);
  content: "";
  height: 7px;
  width: 7px;
}

.as-hero-visual {
  inset: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.as-hero-visual > img {
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  width: 100%;
}

.as-hero-flow {
  align-items: center;
  background: rgba(7, 18, 37, 0.94);
  border-radius: 6px;
  bottom: 24px;
  color: var(--as-white);
  display: flex;
  font-size: 0.68rem;
  font-weight: 760;
  gap: 8px;
  padding: 12px 14px;
  position: absolute;
  right: max(32px, calc((100% - var(--as-shell)) / 2));
  text-transform: uppercase;
}

.as-hero-flow i {
  background: var(--as-coral);
  height: 1px;
  width: 16px;
}

.as-proof-rail {
  border-bottom: 1px solid var(--as-line);
  border-top: 1px solid var(--as-line);
}

.as-proof-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(220px, 1.2fr);
}

.as-proof-item {
  border-right: 1px solid var(--as-line);
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 28px 24px;
}

.as-proof-item strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.as-proof-item span {
  color: var(--as-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.as-proof-source {
  align-items: center;
  color: var(--as-blue);
  display: flex;
  font-size: 0.82rem;
  font-weight: 750;
  gap: 8px;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.as-work,
.as-capabilities,
.as-process {
  padding: 130px 0;
}

.as-section-heading {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: 1.25fr 0.75fr;
}

.as-section-heading h2,
.as-capabilities-intro h2,
.as-process-heading h2,
.as-hosting-heading h2,
.as-closing h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.03;
  margin-top: 18px;
  text-wrap: balance;
}

.as-section-heading > p,
.as-capabilities-intro > p:last-child,
.as-process-heading > p,
.as-hosting-heading > p,
.as-closing-inner > div:last-child > p {
  color: var(--as-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.as-work-list {
  border-bottom: 1px solid var(--as-line);
  margin-top: 72px;
}

.as-work-story {
  align-items: center;
  border-top: 1px solid var(--as-line);
  display: grid;
  gap: 38px;
  grid-template-columns: 88px minmax(480px, 1.15fr) minmax(280px, 0.85fr);
  padding: 44px 0;
}

.as-work-meta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.as-work-meta > span {
  color: var(--as-blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.as-work-meta p {
  color: var(--as-muted);
  font-size: 0.7rem;
  line-height: 1.45;
  writing-mode: vertical-rl;
}

.as-work-image {
  aspect-ratio: 16 / 10;
  background: #eaf0ff;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.as-work-coral .as-work-image {
  background: #fff0ed;
}

.as-work-green .as-work-image {
  background: #eaf8f1;
}

.as-work-image::after {
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 5px;
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
}

.as-work-image img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.as-work-story:hover .as-work-image img {
  transform: scale(1.025);
}

.as-work-copy h3 {
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.1;
}

.as-work-copy > p {
  color: var(--as-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.as-work-copy > a {
  color: var(--as-ink);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 750;
  gap: 10px;
  margin-top: 24px;
}

.as-work-footer {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding-top: 34px;
}

.as-work-footer p {
  color: var(--as-muted);
  font-size: 0.86rem;
  max-width: 660px;
}

.as-capabilities {
  background: var(--as-paper);
}

.as-capabilities-intro {
  display: grid;
  gap: 22px;
  grid-template-columns: 0.7fr 1.35fr 0.75fr;
}

.as-capabilities-intro .as-eyebrow {
  align-self: start;
  margin-top: 10px;
}

.as-capabilities-intro h2 {
  margin-top: 0;
}

.as-capabilities-intro > p:last-child {
  align-self: end;
}

.as-capability-list {
  margin-top: 76px;
}

.as-capability-row {
  align-items: center;
  border-top: 1px solid #cdd4df;
  color: var(--as-ink);
  display: grid;
  gap: 28px;
  grid-template-columns: 58px minmax(220px, 0.8fr) minmax(300px, 1.2fr) minmax(240px, 0.8fr);
  min-height: 166px;
  padding: 26px 18px 26px 0;
  position: relative;
  transition: background-color 180ms ease, padding-left 180ms ease;
}

.as-capability-row:last-child {
  border-bottom: 1px solid #cdd4df;
}

.as-capability-row::before {
  background: var(--as-blue);
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  transition: height 180ms ease;
  width: 4px;
}

.as-capability-row:hover {
  background: var(--as-white);
  color: var(--as-ink);
  padding-left: 18px;
}

.as-capability-row:hover::before {
  height: 100%;
}

.as-capability-index,
.as-capability-label {
  color: var(--as-blue);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.as-capability-row h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 6px;
}

.as-capability-copy {
  color: var(--as-muted);
  line-height: 1.7;
}

.as-capability-services {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.as-capability-services span {
  color: var(--as-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.as-capability-services b {
  color: var(--as-blue);
  font-size: 1.3rem;
}

.as-hosting-band {
  background: var(--as-ink);
  color: var(--as-white);
  padding: 130px 0;
  position: relative;
}

.as-hosting-band::before {
  background: linear-gradient(90deg, var(--as-blue) 0 55%, var(--as-coral) 55% 76%, var(--as-green) 76% 100%);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.as-hosting-heading {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.6fr 1.25fr 0.8fr;
}

.as-hosting-heading .as-eyebrow {
  align-self: start;
  margin-top: 10px;
}

.as-hosting-heading h2 {
  margin-top: 0;
}

.as-hosting-heading > p {
  align-self: start;
  color: #bbc6dc;
}

.as-hosting-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  grid-column: 2 / -1;
}

.as-hosting-signals span {
  align-items: center;
  color: #dbe3f4;
  display: flex;
  font-size: 0.76rem;
  gap: 8px;
}

.as-hosting-signals i {
  background: var(--as-green);
  height: 7px;
  width: 7px;
}

.as-hosting-options {
  border-bottom: 1px solid var(--as-line-dark);
  border-top: 1px solid var(--as-line-dark);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 70px;
}

.as-hosting-options > a {
  color: var(--as-white);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 38px;
  transition: background-color 180ms ease;
}

.as-hosting-options > a + a {
  border-left: 1px solid var(--as-line-dark);
}

.as-hosting-options > a:hover {
  background: rgba(20, 72, 255, 0.12);
  color: var(--as-white);
}

.as-hosting-options > a:nth-child(2):hover {
  background: rgba(255, 91, 77, 0.09);
}

.as-hosting-options > a:nth-child(3):hover {
  background: rgba(33, 166, 111, 0.1);
}

.as-hosting-options > a > span {
  color: #aebce0;
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.as-hosting-options h3 {
  font-size: 2rem;
  margin-top: 26px;
}

.as-hosting-options p {
  color: #bbc6dc;
  line-height: 1.7;
  margin-top: 18px;
}

.as-hosting-options b {
  align-items: center;
  display: flex;
  font-size: 0.84rem;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
}

.as-hosting-options b i {
  color: var(--as-coral);
  font-style: normal;
}

.as-hosting-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 34px;
}

.as-process-grid {
  display: grid;
  gap: 110px;
  grid-template-columns: minmax(320px, 0.75fr) minmax(560px, 1.25fr);
}

.as-process-heading {
  align-self: start;
  position: sticky;
  top: 124px;
}

.as-process-heading > p {
  margin-top: 24px;
}

.as-process-heading .as-text-link {
  margin-top: 28px;
}

.as-process-list {
  border-top: 1px solid var(--as-line);
  list-style: none;
  margin: 0;
}

.as-process-list li {
  border-bottom: 1px solid var(--as-line);
  display: grid;
  gap: 26px;
  grid-template-columns: 56px 1fr;
  min-height: 210px;
  padding: 40px 0;
}

.as-process-list li > span {
  color: #c9342b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.as-process-list h3 {
  font-size: 2rem;
  font-weight: 700;
}

.as-process-list p {
  color: var(--as-muted);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 620px;
}

.as-closing {
  background: var(--as-blue);
  color: var(--as-white);
  padding: 100px 0;
  position: relative;
}

.as-closing::before {
  background: var(--as-coral);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 7px;
}

.as-closing-inner {
  align-items: end;
  display: grid;
  gap: 100px;
  grid-template-columns: 1.2fr 0.8fr;
}

.as-closing h2 {
  margin-top: 18px;
}

.as-closing-inner > div:last-child > p {
  color: #e0e7ff;
}

.as-closing .as-button {
  margin-top: 28px;
}

.as-footer {
  background: #030812;
  color: var(--as-white);
  padding: 78px 0 24px;
}

.as-footer-grid {
  display: grid;
  gap: 54px;
  grid-template-columns: 1.35fr repeat(3, 0.65fr);
}

.as-footer-brand img {
  height: auto;
  width: 210px;
}

.as-footer-brand p {
  color: #aeb9ce;
  line-height: 1.75;
  margin-top: 22px;
  max-width: 420px;
}

.as-footer-email {
  color: var(--as-white);
  display: inline-flex;
  font-weight: 750;
  margin-top: 24px;
}

.as-footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.as-footer-column h2 {
  color: #7f8ba3;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.as-footer-column a {
  color: #d6ddec;
  font-size: 0.87rem;
  line-height: 1.5;
}

.as-footer-column a:hover,
.as-footer-email:hover {
  color: #8fa7ff;
}

.as-footer-legal {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #8894aa;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.74rem;
  gap: 20px;
  margin-top: 62px;
  padding-top: 22px;
}

.as-footer-legal a,
.as-footer-legal button {
  background: none;
  color: #aeb9ce;
}

.as-footer-legal a:hover,
.as-footer-legal button:hover {
  color: var(--as-white);
}

/* Bring established inner-page workflows into the quieter redesign system. */
body.aimsparkk-next:not(.home) .aim-first-section {
  background: var(--as-paper);
  padding-bottom: 96px;
  padding-top: 154px;
}

body.aimsparkk-next:not(.home) .aim-first-section::before,
body.aimsparkk-next:not(.home) .aim-first-section::after,
body.aimsparkk-next .aim-funnel-cta::before,
body.aimsparkk-next .aim-funnel-cta::after,
body.aimsparkk-next .hero-shape {
  display: none;
}

body.aimsparkk-next .aim-page-title {
  font-size: 4.1rem;
  letter-spacing: 0;
  line-height: 1;
  max-width: 900px;
}

body.aimsparkk-next .aim-section-title {
  font-size: 3.25rem;
  letter-spacing: 0;
  line-height: 1.04;
}

body.aimsparkk-next .gradient-blue {
  background: var(--as-blue);
}

body.aimsparkk-next .shadow-soft,
body.aimsparkk-next .shadow-blue {
  box-shadow: 0 16px 46px rgba(7, 18, 37, 0.08);
}

body.aimsparkk-next main [class*="rounded-["],
body.aimsparkk-next .aim-contact-notice,
body.aimsparkk-next .aim-funnel-cta-card,
body.aimsparkk-next .aim-contact-preview-card,
body.aimsparkk-next .aim-contact-path article,
body.aimsparkk-next .aim-hosting-system-card,
body.aimsparkk-next .aim-hosting-offer-card,
body.aimsparkk-next .aim-hosting-path-card,
body.aimsparkk-next .aim-hosting-snapshot-card,
body.aimsparkk-next .aim-hosting-plan-card,
body.aimsparkk-next .aim-hosting-threat-card,
body.aimsparkk-next .aim-hosting-compare-table,
body.aimsparkk-next .aim-hosting-identity-grid article,
body.aimsparkk-next .aim-hosting-security-grid article,
body.aimsparkk-next .aim-hosting-benefit-grid article {
  border-radius: 6px !important;
}

body.aimsparkk-next .aim-hosting-hero-grid {
  gap: 46px;
  grid-template-columns: 1fr;
}

body.aimsparkk-next .aim-hosting-hero-copy {
  max-width: 940px;
}

body.aimsparkk-next .aim-hosting-hero-copy .aim-page-title {
  max-width: 940px;
}

body.aimsparkk-next .aim-hosting-system-card {
  background: var(--as-ink);
  box-shadow: none;
  min-height: 0;
  padding: 38px;
}

body.aimsparkk-next .aim-hosting-system-card h2 {
  font-size: 2.35rem;
  line-height: 1.05;
  max-width: 800px;
}

body.aimsparkk-next .aim-hosting-lottie-medallion,
body.aimsparkk-next .aim-hosting-orbit {
  display: none;
}

body.aimsparkk-next .aim-hosting-status-board {
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

body.aimsparkk-next .aim-hosting-status-board span {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0;
  min-height: 64px;
}

body.aimsparkk-next .aim-hosting-proof-strip span {
  border-radius: 4px;
  box-shadow: none;
}

.as-contact-hero {
  background: var(--as-paper);
  padding: 154px 0 112px;
}

.as-contact-grid {
  align-items: start;
  display: grid;
  gap: 82px;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
}

.as-contact-intro {
  padding-top: 18px;
}

.as-contact-intro h1 {
  font-size: 4.35rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 22px;
  max-width: 630px;
  text-wrap: balance;
}

.as-contact-lede {
  color: var(--as-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-top: 28px;
  max-width: 590px;
}

.as-contact-links {
  border-bottom: 1px solid var(--as-line);
  margin-top: 54px;
}

.as-contact-links a {
  align-items: center;
  border-top: 1px solid var(--as-line);
  color: var(--as-ink);
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr auto;
  min-height: 72px;
}

.as-contact-links a > span {
  color: var(--as-muted);
  font-size: 0.75rem;
  font-weight: 760;
  text-transform: uppercase;
}

.as-contact-links a > strong {
  font-size: 0.98rem;
}

.as-contact-links a > b {
  color: var(--as-blue);
  font-size: 1.15rem;
}

.as-contact-form-frame {
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(7, 18, 37, 0.08);
  padding: 34px;
}

.as-contact-form-frame form {
  display: grid;
  gap: 18px;
}

.as-contact-form-frame label {
  display: grid;
  gap: 8px;
}

.as-contact-form-frame label > span {
  color: var(--as-ink);
  font-size: 0.82rem;
  font-weight: 760;
}

.as-contact-form-frame input,
.as-contact-form-frame select,
.as-contact-form-frame textarea {
  background: #f8f9fc;
  border: 1px solid var(--as-line);
  border-radius: 5px;
  color: var(--as-ink);
  min-height: 50px;
  outline: 0;
  padding: 12px 14px;
  width: 100%;
}

.as-contact-form-frame input:focus,
.as-contact-form-frame select:focus,
.as-contact-form-frame textarea:focus {
  border-color: var(--as-blue);
  box-shadow: 0 0 0 3px rgba(20, 72, 255, 0.12);
}

.as-contact-form-frame textarea {
  min-height: 148px;
  resize: vertical;
}

.as-contact-field-pair {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.as-contact-form-frame .as-button {
  width: 100%;
}

.as-contact-notice {
  background: #edf8f2;
  border: 1px solid #bde5d0;
  border-radius: 5px;
  color: #0d6845;
  margin-bottom: 18px;
  padding: 13px 14px;
}

.as-contact-privacy {
  color: var(--as-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.as-contact-path-section {
  padding: 104px 0;
}

.as-contact-path-heading {
  display: grid;
  gap: 30px;
  grid-template-columns: 0.6fr 1.4fr;
}

.as-contact-path-heading h2 {
  font-size: 3.2rem;
  line-height: 1.04;
  max-width: 720px;
}

.as-contact-path-list {
  border-bottom: 1px solid var(--as-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin-top: 62px;
  padding: 0;
}

.as-contact-path-list li {
  border-left: 1px solid var(--as-line);
  padding: 32px;
}

.as-contact-path-list li:last-child {
  border-right: 1px solid var(--as-line);
}

.as-contact-path-list li > span {
  color: var(--as-coral);
  font-size: 0.75rem;
  font-weight: 800;
}

.as-contact-path-list h3 {
  font-size: 1.45rem;
  margin-top: 24px;
}

.as-contact-path-list p {
  color: var(--as-muted);
  line-height: 1.65;
  margin-top: 14px;
}

.as-js [data-as-reveal],
.as-js [data-as-reveal].is-visible,
.as-motion-lite [data-as-reveal] {
  opacity: 1;
  transform: none;
}

body.aimsparkk-next :focus-visible {
  outline: 3px solid var(--as-coral);
  outline-offset: 3px;
}

@media (max-width: 1280px) {
  .as-hero h1 {
    font-size: 4.45rem;
  }

  .as-section-heading h2,
  .as-capabilities-intro h2,
  .as-process-heading h2,
  .as-hosting-heading h2,
  .as-closing h2 {
    font-size: 3.45rem;
  }

  .as-work-story {
    grid-template-columns: 64px minmax(420px, 1.1fr) minmax(250px, 0.9fr);
  }
}

@media (max-width: 1120px) {
  .as-desktop-nav {
    display: none;
  }

  .as-mobile-toggle {
    display: inline-flex;
  }

  .as-hero {
    padding-top: 126px;
  }

  .as-hero-grid {
    display: block;
  }

  .as-hero-copy {
    max-width: 620px;
  }

  .as-hero h1 {
    font-size: 3.8rem;
  }

  .as-hero-visual {
    inset: 0;
    width: auto;
  }

  .as-hero-visual > img {
    opacity: 0.3;
  }

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

  .as-proof-source {
    border-top: 1px solid var(--as-line);
    grid-column: 1 / -1;
    min-height: 64px;
  }

  .as-work-story {
    gap: 26px;
    grid-template-columns: 54px 1.15fr 0.85fr;
  }

  .as-capabilities-intro,
  .as-hosting-heading {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .as-capabilities-intro > p:last-child,
  .as-hosting-heading > p {
    grid-column: 2;
  }

  .as-capability-row {
    grid-template-columns: 48px minmax(190px, 0.7fr) minmax(280px, 1.3fr);
  }

  .as-capability-services {
    grid-column: 2 / -1;
  }

  .as-process-grid {
    gap: 70px;
  }

  .as-contact-grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .as-contact-intro {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .as-shell {
    width: min(calc(100% - 40px), var(--as-shell));
  }

  .as-hero h1 {
    font-size: 3.5rem;
  }

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

  .as-proof-item:nth-child(2) {
    border-right: 0;
  }

  .as-proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--as-line);
  }

  .as-work,
  .as-capabilities,
  .as-process,
  .as-hosting-band {
    padding: 100px 0;
  }

  .as-section-heading {
    align-items: start;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .as-section-heading h2,
  .as-capabilities-intro h2,
  .as-process-heading h2,
  .as-hosting-heading h2,
  .as-closing h2 {
    font-size: 3rem;
  }

  .as-work-story {
    align-items: start;
    grid-template-columns: 42px 1fr;
  }

  .as-work-image {
    grid-column: 2;
  }

  .as-work-copy {
    grid-column: 2;
  }

  .as-capabilities-intro,
  .as-hosting-heading {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .as-capabilities-intro > p:last-child,
  .as-hosting-heading > p,
  .as-hosting-signals {
    grid-column: 1;
  }

  .as-capability-row {
    grid-template-columns: 44px 1fr;
    padding-right: 0;
  }

  .as-capability-copy,
  .as-capability-services {
    grid-column: 2;
  }

  .as-hosting-options {
    grid-template-columns: 1fr;
  }

  .as-hosting-options > a {
    min-height: 280px;
  }

  .as-hosting-options > a + a {
    border-left: 0;
    border-top: 1px solid var(--as-line-dark);
  }

  .as-process-grid {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .as-process-heading {
    position: static;
  }

  .as-closing-inner {
    align-items: start;
    gap: 44px;
    grid-template-columns: 1fr;
  }

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

  .as-footer-brand {
    grid-column: 1 / -1;
  }

  body.aimsparkk-next .aim-page-title {
    font-size: 3.35rem;
  }

  body.aimsparkk-next .aim-section-title {
    font-size: 2.75rem;
  }

  body.aimsparkk-next .aim-hosting-status-board {
    grid-template-columns: 1fr;
  }

  .as-contact-path-heading {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .as-contact-path-list {
    grid-template-columns: 1fr;
  }

  .as-contact-path-list li,
  .as-contact-path-list li:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--as-line);
    padding-inline: 0;
  }
}

@media (max-width: 640px) {
  .as-shell {
    width: min(calc(100% - 32px), var(--as-shell));
  }

  .as-header {
    top: 8px;
  }

  .admin-bar .as-header {
    top: 54px;
  }

  .as-header-inner {
    min-height: 64px;
    padding: 7px 8px 7px 14px;
    width: calc(100% - 16px);
  }

  .as-brand img {
    width: 148px;
  }

  .as-account-button,
  .as-mobile-toggle {
    height: 44px;
    width: 44px;
  }

  .as-header-cta {
    display: none;
  }

  .as-mobile-menu {
    inset: 80px 8px auto;
    max-height: calc(100svh - 96px);
    padding: 22px;
  }

  .admin-bar .as-mobile-menu {
    inset-block-start: 126px;
    max-height: calc(100svh - 136px);
  }

  .as-mobile-menu nav a {
    font-size: 1.35rem;
    padding: 13px 0;
  }

  .as-hero {
    min-height: 760px;
    padding: 112px 0 46px;
  }

  .as-hero-grid {
    display: block;
  }

  .as-hero h1 {
    font-size: 2.75rem;
    line-height: 1;
    margin-top: 18px;
  }

  .as-hero-lede {
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 22px;
  }

  .as-hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .as-hero-actions .as-button {
    width: 100%;
  }

  .as-hero-visual {
    inset: 0;
    width: auto;
  }

  .as-hero-visual > img {
    object-position: 67% center;
    opacity: 0.2;
  }

  .as-hero-flow {
    bottom: 8px;
    flex-wrap: wrap;
    font-size: 0.58rem;
    gap: 5px;
    left: 8px;
    padding: 9px 10px;
    right: 8px;
  }

  .as-hero-flow i {
    width: 8px;
  }

  .as-proof-item {
    min-height: 100px;
    padding: 22px 16px;
  }

  .as-proof-item strong {
    font-size: 1.2rem;
  }

  .as-work,
  .as-capabilities,
  .as-process,
  .as-hosting-band {
    padding: 78px 0;
  }

  .as-section-heading h2,
  .as-capabilities-intro h2,
  .as-process-heading h2,
  .as-hosting-heading h2,
  .as-closing h2 {
    font-size: 2.45rem;
    line-height: 1.06;
  }

  .as-work-list {
    margin-top: 46px;
  }

  .as-work-story {
    display: block;
    padding: 32px 0;
  }

  .as-work-meta {
    align-items: center;
    flex-direction: row;
    margin-bottom: 18px;
  }

  .as-work-meta p {
    writing-mode: initial;
  }

  .as-work-copy {
    margin-top: 24px;
  }

  .as-work-copy h3 {
    font-size: 1.75rem;
  }

  .as-work-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .as-capability-list {
    margin-top: 48px;
  }

  .as-capability-row {
    display: grid;
    gap: 14px;
    grid-template-columns: 34px 1fr;
    min-height: 0;
    padding: 28px 0;
  }

  .as-capability-row h3 {
    font-size: 1.55rem;
  }

  .as-capability-services {
    align-items: flex-start;
  }

  .as-hosting-options {
    margin-top: 48px;
  }

  .as-hosting-options > a {
    min-height: 270px;
    padding: 30px 4px;
  }

  .as-hosting-options h3 {
    font-size: 1.7rem;
  }

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

  .as-process-list li {
    gap: 16px;
    grid-template-columns: 36px 1fr;
    min-height: 0;
    padding: 30px 0;
  }

  .as-process-list h3 {
    font-size: 1.65rem;
  }

  .as-closing {
    padding: 76px 0;
  }

  .as-footer {
    padding-top: 62px;
  }

  .as-footer-grid {
    gap: 40px 22px;
    grid-template-columns: repeat(2, 1fr);
  }

  .as-footer-column:last-child {
    grid-column: 1 / -1;
  }

  .as-footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  body.aimsparkk-next:not(.home) .aim-first-section {
    padding-bottom: 72px;
    padding-top: 122px;
  }

  body.aimsparkk-next .aim-page-title {
    font-size: 2.65rem !important;
    line-height: 1.03;
  }

  body.aimsparkk-next .aim-section-title {
    font-size: 2.25rem;
  }

  body.aimsparkk-next .aim-hosting-system-card {
    padding: 26px 22px;
  }

  body.aimsparkk-next .aim-hosting-system-card h2 {
    font-size: 1.75rem;
  }

  .as-contact-hero {
    padding: 120px 0 76px;
  }

  .as-contact-intro {
    padding-top: 0;
  }

  .as-contact-intro h1 {
    font-size: 2.75rem;
    line-height: 1.03;
  }

  .as-contact-links a {
    gap: 8px;
    grid-template-columns: 1fr auto;
    padding: 14px 0;
  }

  .as-contact-links a > span {
    grid-column: 1 / -1;
  }

  .as-contact-form-frame {
    padding: 22px 18px;
  }

  .as-contact-field-pair {
    grid-template-columns: 1fr;
  }

  .as-contact-path-section {
    padding: 76px 0;
  }

  .as-contact-path-heading h2 {
    font-size: 2.35rem;
  }
}

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

  .as-js [data-as-reveal],
  .as-work-image img,
  .as-button,
  .as-nav-panel,
  .as-account-panel,
  .as-mobile-menu {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
