:root {
  --ak-bg: #0d0a1a;
  --ak-primary: #5b2c9d;
  --ak-secondary: #63baab;
  --ak-white: #ffffff;
  --ak-muted: rgba(255, 255, 255, 0.72);
  --ak-soft: rgba(255, 255, 255, 0.1);
  --ak-border: rgba(255, 255, 255, 0.16);

  --ak-container: 1200px;
  --ak-radius-pill: 999px;
  --ak-radius-xl: 48px;

  --ak-font-title: 'Nata Sans', system-ui, sans-serif;
  --ak-font-body: 'Nunito Sans', system-ui, sans-serif;

  --ak-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ak-scroll-offset: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--ak-scroll-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ak-bg);
  color: var(--ak-white);
  font-family: var(--ak-font-body);
  font-optical-sizing: auto;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.ak-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(91, 44, 157, 0.2), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(99, 186, 171, 0.13), transparent 26%),
    var(--ak-bg);
}

.ak-page [id] {
  scroll-margin-top: var(--ak-scroll-offset);
}

.ak-container {
  width: min(100% - 48px, var(--ak-container));
  margin-inline: auto;
}

/* Header */

.ak-header {
  position: fixed;
  top: 18px;
  left: 0;
  z-index: 50;
  width: 100%;
  padding-inline: 24px;
}

.ak-navbar {
  width: min(100%, 980px);
  min-height: 56px;
  margin-inline: auto;
  padding: 8px 28px;
  border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius-pill);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ak-navbar__logo {
  display: inline-flex;
  align-items: center;
  width: 220px;
  text-decoration: none;
}

.ak-navbar__logo img {
  width: 100%;
  height: auto;
}

.ak-navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ak-navbar__links a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--ak-font-body);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 200ms var(--ak-ease),
    transform 200ms var(--ak-ease);
}

.ak-navbar__links a:hover {
  color: var(--ak-white);
  transform: translateY(-1px);
}

.ak-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--ak-radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ak-white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* Mobile menu */

.ak-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.ak-mobile-menu.is-open,
.ak-mobile-menu.is-closing {
  display: block;
}

.ak-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.ak-mobile-menu__panel {
  position: absolute;
  inset-inline: 0;
  top: 0;
  min-height: 100vh;
  padding: 28px 24px 48px;
  background:
    radial-gradient(circle at 20% 10%, rgba(91, 44, 157, 0.36), transparent 32%),
    var(--ak-bg);
  color: var(--ak-white);
}

.ak-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ak-mobile-menu__logo {
  width: 220px;
}

.ak-mobile-menu__close {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ak-white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.ak-mobile-menu__links {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ak-mobile-menu__links a {
  color: var(--ak-white);
  font-family: var(--ak-font-title);
  font-size: clamp(44px, 14vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.ak-mobile-menu.is-open .ak-mobile-menu__backdrop {
  animation: ak-fade-in 300ms var(--ak-ease) forwards;
}

.ak-mobile-menu.is-closing .ak-mobile-menu__backdrop {
  animation: ak-fade-out 300ms var(--ak-ease) forwards;
}

.ak-mobile-menu.is-open .ak-mobile-menu__panel {
  animation: ak-slide-down 300ms var(--ak-ease) forwards;
}

.ak-mobile-menu.is-closing .ak-mobile-menu__panel {
  animation: ak-slide-up 300ms var(--ak-ease) forwards;
}

/* Hero */

.ak-hero {
  position: relative;
  padding-top: 116px;
}

.ak-hero__inner {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
}

.ak-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  margin-inline: auto;
}

.ak-hero__logo {
  width: 420px;
  margin: 0 auto 16px;
  opacity: 0.86;
}

.ak-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--ak-font-title);
  font-size: clamp(56px, 6.2vw, 92px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.ak-hero p {
  width: min(100%, 620px);
  margin: 24px auto 0;
  color: var(--ak-muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.ak-hero__cube {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.ak-hero__cube--left {
  top: 70px;
  left: -72px;
  width: 270px;
}

.ak-hero__cube--right {
  top: 150px;
  right: -145px;
  width: 400px;
}

/* Buttons */

.ak-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: var(--ak-font-body);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 200ms var(--ak-ease),
    background-color 200ms var(--ak-ease),
    border-color 200ms var(--ak-ease);
}

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

.ak-button--primary {
  margin-top: 24px;
  background: var(--ak-primary);
  color: var(--ak-white);
}

.ak-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ak-white);
}

/* Product highlight */

.ak-product-highlight {
  padding: 24px 0 96px;
}

.ak-product-card {
  min-height: 190px;
  padding: 38px 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(91, 44, 157, 0.52), rgba(23, 44, 48, 0.78)),
    rgba(255, 255, 255, 0.04);

  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 56px;
}

.ak-eyebrow {
  margin: 0 0 4px;
  color: var(--ak-white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.ak-product-card h2 {
  margin: 0;
  font-family: var(--ak-font-title);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.ak-product-card p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--ak-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.ak-product-card__actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ak-product-card__actions .ak-button {
  margin-top: 0;
}

.ak-product-card__media {
  display: flex;
  justify-content: center;
}

.ak-dashboard-mockup {
  width: min(100%, 420px);
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    rgba(13, 10, 26, 0.76);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.ak-dashboard-mockup__top {
  width: 45%;
  height: 12px;
  border-radius: 999px;
  background: rgba(99, 186, 171, 0.8);
}

.ak-dashboard-mockup__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.ak-dashboard-mockup__grid span {
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.ak-dashboard-mockup__chart {
  margin-top: 16px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(91, 44, 157, 0.8), rgba(99, 186, 171, 0.72));
}

/* Firmware section */

.ak-firmware {
  padding: 8px 0 0;
}

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

.ak-section-heading--center {
  text-align: center;
}

.ak-section-heading h2 {
  margin: 0;
  font-family: var(--ak-font-title);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.ak-section-heading h2,
.ak-section-heading h2 span {
  background: linear-gradient(90deg, var(--ak-primary), var(--ak-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ak-section-heading h2 span {
  display: block;
}

.ak-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.ak-feature-card {
  min-height: 132px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(91, 44, 157, 0.72);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 40px rgba(91, 44, 157, 0.08);
}

.ak-feature-card__icon {
  margin-bottom: 10px;
  color: var(--ak-white);
  font-family: var(--ak-font-body), system-ui, sans-serif;
  font-size: 18px;
  line-height: 1;
}

/* CSS-drawn NE arrow — avoids emoji rendering of ↗ on some platforms */
.ak-feature-card__icon--arrow {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  font-size: 0;
}

.ak-feature-card__icon--arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(1px, 3px);
}

.ak-feature-card h3 {
  max-width: 190px;
  margin: 0;
  font-family: var(--ak-font-title);
  font-size: 22px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.ak-feature-card p {
  margin: 12px 0 0;
  color: var(--ak-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.ak-firmware-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
  padding: 28px 24px;
  background: linear-gradient(90deg, #421080, #5b18a2, #421080);
  text-align: center;
}

.ak-firmware-banner .ak-container {
  width: 100%;
}

.ak-firmware-banner p {
  width: min(100%, 900px);
  margin: 0 auto;
  color: var(--ak-white);
  font-family: var(--ak-font-title);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

/* Operators section */

.ak-operators {
  position: relative;
  padding: 104px 0 88px;
}

.ak-operators__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.ak-operators__shape {
  position: absolute;
  left: -190px;
  bottom: -180px;
  width: 260px;
  pointer-events: none;
  user-select: none;
}

.ak-operators__intro h2 {
  max-width: 420px;
  margin: 0;
  color: var(--ak-secondary);
  font-family: var(--ak-font-title);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.ak-operators__intro p {
  max-width: 390px;
  margin: 28px 0 0;
  color: var(--ak-muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42;
}

.ak-operators__list {
  display: grid;
  gap: 24px;
  padding-left: 28px;
  border-left: 1px solid rgba(99, 186, 171, 0.52);
}

.ak-operators__list article {
  max-width: 620px;
}

.ak-operators__list h3 {
  margin: 0;
  color: var(--ak-white);
  font-family: var(--ak-font-title);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ak-operators__list p {
  margin: 8px 0 0;
  color: var(--ak-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

/* About */

.ak-about {
  padding: 8px 0 92px;
  text-align: center;
}

.ak-about__text {
  width: min(100%, 900px);
  margin: -18px auto 0;
  color: var(--ak-muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

/* Services */

.ak-services {
  padding: 0 0 104px;
}

.ak-services__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 130px;
}

.ak-services__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ak-service-card {
  min-height: 130px;
  padding: 24px 22px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(99, 186, 171, 0.22), transparent 48%),
    rgba(91, 44, 157, 0.52);
}

.ak-service-card h3 {
  margin: 0;
  color: var(--ak-white);
  font-family: var(--ak-font-title);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}

.ak-service-card p {
  margin: 18px 0 0;
  color: var(--ak-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.ak-services__content {
  text-align: center;
}

.ak-services__content h2 {
  margin: 0 auto;
  max-width: 450px;
  color: rgba(99, 186, 171, 0.72);
  font-family: var(--ak-font-title);
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.ak-services__content p {
  width: min(100%, 520px);
  margin: 32px auto 0;
  color: var(--ak-muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42;
}

/* Contact */

.ak-contact {
  padding: 0 0 116px;
}

.ak-contact-card {
  width: min(100%, 860px);
  margin-inline: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
}

.ak-contact-card__content h2 {
  max-width: 330px;
  margin: 0;
  color: var(--ak-white);
  font-family: var(--ak-font-title);
  font-size: 36px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.ak-contact-card__content p {
  max-width: 360px;
  margin: 24px 0 0;
  color: var(--ak-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.ak-contact-form {
  display: grid;
  gap: 12px;
}

.ak-contact-form label {
  display: block;
}

.ak-contact-form span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.ak-contact-form input,
.ak-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.025);
  color: var(--ak-white);
  outline: none;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
}

.ak-contact-form input::placeholder,
.ak-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.ak-contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.ak-contact-form .ak-button {
  width: fit-content;
  min-height: 32px;
  margin-top: 0;
  padding: 8px 16px;
  border: 0;
  cursor: pointer;
}

/* Footer */

.ak-footer {
  padding: 0 0 72px;
}

.ak-footer__inner {
  width: 100%;
  padding: 58px 120px 44px;
  border: 1px solid rgba(91, 44, 157, 0.8);
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 40%, rgba(91, 44, 157, 0.28), transparent 32%),
    rgba(31, 7, 61, 0.72);

  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  grid-template-areas:
    "brand nav"
    "legal legal";
  column-gap: 120px;
  row-gap: 34px;
  align-items: start;
}

.ak-footer__brand {
  grid-area: brand;
}

.ak-footer__brand img {
  width: 215px;
}

.ak-footer__email {
  display: inline-block;
  margin-top: 28px;
  color: var(--ak-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.ak-footer__nav {
  grid-area: nav;
  display: grid;
  align-content: start;
  gap: 15px;
}

.ak-footer__nav a {
  color: var(--ak-white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.ak-footer__nav strong,
.ak-footer__nav span {
  display: block;
}

.ak-footer__nav span {
  margin-top: 6px;
  color: var(--ak-muted);
  font-size: 12px;
  font-weight: 600;
}

.ak-footer__legal {
  grid-area: legal;
  width: 100%;
  margin-top: 4px;
  text-align: center;
}

.ak-footer__legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.ak-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 6px;
}

.ak-footer__legal-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s var(--ak-ease);
}

.ak-footer__legal-links a:hover,
.ak-footer__legal-links a[aria-current="page"] {
  color: var(--ak-secondary);
}

.ak-footer__legal-sep {
  color: rgba(255, 255, 255, 0.32);
  font-size: 11px;
  user-select: none;
}

/* Animations */

@keyframes ak-slide-down {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes ak-slide-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes ak-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ak-fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Responsive */

@media (max-width: 1024px) {
  .ak-navbar {
    width: min(100%, 780px);
  }

  .ak-navbar__logo {
    width: 190px;
  }

  .ak-navbar__links {
    gap: 18px;
  }

  .ak-hero__cube--left {
    left: -120px;
  }

  .ak-hero__cube--right {
    right: -160px;
  }

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

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

  .ak-operators__inner,
  .ak-services__inner,
  .ak-contact-card {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ak-operators__list {
    padding-left: 0;
    border-left: 0;
  }

  .ak-services__content {
    order: -1;
  }

  .ak-footer__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "legal";
    column-gap: 0;
    row-gap: 40px;
    padding: 52px 72px 46px;
    border-radius: 64px;
  }

  .ak-footer__legal {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .ak-container {
    width: min(100% - 32px, var(--ak-container));
  }

  .ak-header {
    top: 18px;
    padding-inline: 16px;
  }

  .ak-navbar {
    width: 100%;
    padding: 8px 10px 8px 18px;
  }

  .ak-navbar__logo {
    width: 185px;
  }

  .ak-navbar__links {
    display: none;
  }

  .ak-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ak-hero {
    padding-top: 100px;
  }

  .ak-hero__inner {
    min-height: 560px;
  }

  .ak-hero__logo {
    width: 280px;
  }

  .ak-hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .ak-hero p {
    font-size: 16px;
  }

  .ak-hero__cube--left {
    top: 76px;
    left: -84px;
    width: 210px;
  }

  .ak-hero__cube--right {
    top: auto;
    right: -110px;
    bottom: 42px;
    width: 300px;
    opacity: 0.78;
  }

  .ak-product-highlight {
    padding-bottom: 72px;
  }

  .ak-product-card {
    padding: 32px 24px;
    border-radius: 28px;
    gap: 32px;
  }

  .ak-product-card__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ak-dashboard-mockup {
    width: 100%;
  }

  .ak-firmware {
    padding-top: 0;
  }

  .ak-section-heading {
    margin-bottom: 28px;
  }

  .ak-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ak-feature-card {
    min-height: auto;
    border-radius: 20px;
  }

  .ak-firmware-banner {
    margin-top: 40px;
    padding: 26px 20px;
  }

  .ak-operators {
    padding: 72px 0;
  }

  .ak-operators__inner {
    gap: 40px;
  }

  .ak-operators__shape {
    left: -120px;
    bottom: -120px;
    width: 190px;
  }

  .ak-services {
    padding-bottom: 72px;
  }

  .ak-services__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ak-contact {
    padding-bottom: 80px;
  }

  .ak-contact-card {
    padding: 24px;
    border-radius: 28px;
  }

  .ak-footer {
    padding-bottom: 40px;
  }

  .ak-footer__inner {
    padding: 40px 26px;
    border-radius: 40px;
    row-gap: 36px;
  }

  .ak-footer__brand img {
    width: min(100%, 210px);
  }

  .ak-footer__legal {
    text-align: left;
  }

  .ak-footer__legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .ak-footer__inner {
    padding: 32px 20px;
    border-radius: 32px;
    row-gap: 30px;
  }

  .ak-footer__brand img {
    width: min(100%, 180px);
  }
}

/* Fidelity polish */

.ak-hero {
  padding-top: 108px;
}

.ak-hero__inner {
  min-height: 540px;
}

.ak-hero__logo {
  width: 390px;
  margin-bottom: 14px;
}

.ak-hero h1 {
  max-width: 840px;
  font-size: clamp(56px, 5.8vw, 86px);
  line-height: 0.94;
}

.ak-hero p {
  margin-top: 22px;
  font-size: 17px;
}

.ak-hero__cube--left {
  top: 82px;
  left: -40px;
  width: 240px;
}

.ak-hero__cube--right {
  top: 148px;
  right: -80px;
  width: 390px;
}

.ak-product-highlight {
  padding-top: 10px;
  padding-bottom: 104px;
}

.ak-product-card {
  min-height: 220px;
  padding: 44px 56px;
}

.ak-dashboard-mockup {
  width: min(100%, 430px);
}

.ak-feature-card {
  min-height: 150px;
  padding: 24px 24px 22px;
  background:
    linear-gradient(135deg, rgba(91, 44, 157, 0.08), transparent 52%),
    rgba(255, 255, 255, 0.018);
}

.ak-feature-card h3 {
  font-size: 21px;
}

.ak-feature-card p {
  font-size: 13px;
}

.ak-firmware-banner p {
  font-size: clamp(21px, 2.1vw, 28px);
}

.ak-about .ak-section-heading h2 {
  background: linear-gradient(90deg, #6f3ac0, #5f6f9f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ak-about {
  padding-bottom: 104px;
}

.ak-about__text {
  max-width: 860px;
  font-size: 17px;
}

.ak-services__content h2 {
  color: rgba(99, 186, 171, 0.68);
}

.ak-contact-card {
  width: min(100%, 880px);
}

/* Product deep-dive — shared accents */

.ak-eyebrow--teal {
  color: var(--ak-secondary);
}

/* Product context band */

.ak-product-context {
  padding: 0 0 96px;
}

.ak-product-context__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  padding: 44px 48px;
  border: 1px solid rgba(99, 186, 171, 0.32);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(99, 186, 171, 0.1), transparent 52%),
    rgba(255, 255, 255, 0.02);
}

.ak-product-context__intro h2 {
  margin: 6px 0 0;
  font-family: var(--ak-font-title);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.ak-product-context__lead {
  margin: 0;
  color: var(--ak-muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

/* How it works — steps */

.ak-how {
  padding: 0 0 96px;
}

.ak-step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ak-step {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid rgba(91, 44, 157, 0.6);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(91, 44, 157, 0.12), transparent 56%),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 40px rgba(91, 44, 157, 0.08);
}

.ak-step__num {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--ak-font-title);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--ak-primary), var(--ak-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ak-step h3 {
  margin: 0;
  font-family: var(--ak-font-title);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}

.ak-step p {
  margin: 12px 0 0;
  color: var(--ak-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* Showcase */

.ak-showcase {
  padding: 0 0 96px;
}

.ak-showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.ak-showcase__content h2 {
  margin: 6px 0 0;
  font-family: var(--ak-font-title);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.ak-showcase__lead {
  margin: 20px 0 0;
  color: var(--ak-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.ak-check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ak-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ak-white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.ak-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ak-secondary);
  font-weight: 900;
}

/* Suppress native list markers where custom ::before icons are used */
.ak-check-list,
.ak-tier__list,
.ak-step-list,
.ak-service-line__list {
  padding-left: 0;
}

.ak-check-list > li,
.ak-tier__list > li,
.ak-step-list > li,
.ak-service-line__list > li {
  list-style: none;
  list-style-type: none;
}

.ak-check-list > li::marker,
.ak-tier__list > li::marker,
.ak-step-list > li::marker,
.ak-service-line__list > li::marker {
  content: none;
  font-size: 0;
}

.ak-dashboard-mockup--lg {
  width: min(100%, 480px);
  margin-inline: auto;
  padding: 22px;
}

.ak-dashboard-mockup__rows {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.ak-dashboard-mockup__rows span {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ak-dashboard-mockup__rows span:nth-child(2) {
  width: 80%;
}

.ak-dashboard-mockup__rows span:nth-child(3) {
  width: 60%;
}

/* Security */

.ak-security {
  padding: 0 0 96px;
}

.ak-feature-card--teal {
  border-color: rgba(99, 186, 171, 0.5);
  box-shadow: inset 0 0 40px rgba(99, 186, 171, 0.07);
  background:
    linear-gradient(135deg, rgba(99, 186, 171, 0.08), transparent 52%),
    rgba(255, 255, 255, 0.018);
}

/* Integration */

.ak-integration {
  padding: 0 0 96px;
}

.ak-integration__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.ak-integration__intro h2 {
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--ak-secondary);
  font-family: var(--ak-font-title);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.ak-integration__intro p {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--ak-muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.42;
}

.ak-integration__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  padding-left: 28px;
  border-left: 1px solid rgba(99, 186, 171, 0.52);
}

.ak-integration__list h3 {
  margin: 0;
  color: var(--ak-white);
  font-family: var(--ak-font-title);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ak-integration__list p {
  margin: 8px 0 0;
  color: var(--ak-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

/* Stats */

.ak-stats {
  padding: 0 0 96px;
}

.ak-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ak-stat {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(91, 44, 157, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.02);
}

.ak-stat__value {
  margin: 0;
  font-family: var(--ak-font-title);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  background: linear-gradient(90deg, var(--ak-primary), var(--ak-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ak-stat__label {
  margin: 12px 0 0;
  color: var(--ak-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* FAQ */

.ak-faq {
  padding: 0 0 96px;
}

.ak-faq__list {
  display: grid;
  gap: 14px;
}

.ak-faq__item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.ak-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--ak-white);
  font-family: var(--ak-font-title);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
  transition: color 200ms var(--ak-ease);
}

.ak-faq__item summary::-webkit-details-marker {
  display: none;
}

.ak-faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  color: var(--ak-secondary);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  transition: transform 200ms var(--ak-ease);
}

.ak-faq__item[open] summary::after {
  transform: rotate(45deg);
}

.ak-faq__item summary:hover {
  color: var(--ak-secondary);
}

.ak-faq__item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--ak-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

/* CTA band */

.ak-cta-band {
  padding: 0 0 104px;
}

.ak-cta-band__inner {
  padding: 44px 48px;
  border: 1px solid rgba(91, 44, 157, 0.8);
  border-radius: 4px;
  background:
    radial-gradient(circle at 18% 30%, rgba(99, 186, 171, 0.18), transparent 38%),
    linear-gradient(90deg, #421080, #5b18a2, #421080);

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.ak-cta-band__inner h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--ak-font-title);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.ak-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ak-cta-band__actions .ak-button {
  margin-top: 0;
}

/* Product deep-dive — responsive */

@media (max-width: 1024px) {
  .ak-product-context__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 32px;
  }

  .ak-step-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .ak-showcase__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ak-integration__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ak-integration__list {
    padding-left: 0;
    border-left: 0;
  }

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

@media (max-width: 768px) {
  .ak-product-context,
  .ak-how,
  .ak-showcase,
  .ak-security,
  .ak-integration,
  .ak-stats,
  .ak-faq {
    padding-bottom: 72px;
  }

  .ak-step-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ak-integration__list {
    grid-template-columns: 1fr;
  }

  .ak-stat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ak-cta-band {
    padding-bottom: 80px;
  }

  .ak-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
}

/* ===== Product page ===== */

/* Interior page hero */

.ak-page-hero {
  padding-top: 140px;
}

.ak-page-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 64px;
}

.ak-page-hero h1 {
  margin: 10px 0 0;
  font-family: var(--ak-font-title);
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.ak-page-hero__lead {
  margin: 22px 0 0;
  max-width: 540px;
  color: var(--ak-muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.ak-page-hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ak-page-hero__actions .ak-button {
  margin-top: 0;
}

/* Console mockup */

.ak-console {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(91, 44, 157, 0.3), transparent 42%),
    radial-gradient(circle at 92% 8%, rgba(99, 186, 171, 0.18), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(13, 10, 26, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.ak-console__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ak-console__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.ak-console__title {
  margin: 0 auto 0 6px;
  color: var(--ak-white);
  font-size: 13px;
  font-weight: 800;
}

.ak-console__chip {
  padding: 5px 10px;
  border: 1px solid rgba(99, 186, 171, 0.5);
  border-radius: 999px;
  color: var(--ak-secondary);
  font-size: 11px;
  font-weight: 800;
}

.ak-console__stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ak-console__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.ak-console__stat-label {
  color: var(--ak-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ak-console__stat-value {
  font-family: var(--ak-font-title);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ak-console__stat-value--ok {
  color: var(--ak-secondary);
}

.ak-console__stat-value--err {
  color: #e8769b;
}

.ak-console__progress {
  margin-top: 16px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ak-console__progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ak-primary), var(--ak-secondary));
}

.ak-console__rows {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.ak-console__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.ak-console__model {
  color: var(--ak-white);
  font-size: 13px;
  font-weight: 800;
}

.ak-console__ver {
  color: var(--ak-muted);
  font-size: 12px;
  font-weight: 700;
}

.ak-console__pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.ak-console__pill--ok {
  background: rgba(99, 186, 171, 0.18);
  color: var(--ak-secondary);
}

.ak-console__pill--run {
  background: rgba(91, 44, 157, 0.3);
  color: #c7a8ff;
}

.ak-console__pill--err {
  background: rgba(232, 118, 155, 0.16);
  color: #e8769b;
}

.ak-console__audit {
  margin: 14px 0 0;
  color: var(--ak-muted);
  font-size: 11px;
  font-weight: 700;
}

.ak-console__field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.ak-console__field span {
  color: var(--ak-muted);
  font-size: 12px;
  font-weight: 700;
}

.ak-console__field em {
  color: var(--ak-white);
  font-size: 13px;
  font-weight: 800;
  font-style: normal;
}

.ak-console--compact {
  width: min(100%, 380px);
  margin-inline: auto;
}

/* Sticky sub-nav */

.ak-subnav {
  position: sticky;
  top: 86px;
  z-index: 40;
  margin: 64px 0 8px;
}

.ak-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius-pill);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.ak-subnav__inner a {
  padding: 8px 16px;
  border-radius: var(--ak-radius-pill);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 200ms var(--ak-ease),
    color 200ms var(--ak-ease);
}

.ak-subnav__inner a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ak-white);
}

/* Modules grid */

.ak-modules {
  padding: 72px 0 96px;
}

.ak-modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ak-module-card {
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(91, 44, 157, 0.14), transparent 56%),
    rgba(255, 255, 255, 0.02);
}

.ak-module-card__icon {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1;
  color: var(--ak-secondary);
}

.ak-module-card h3 {
  margin: 0;
  font-family: var(--ak-font-title);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}

.ak-module-card p {
  margin: 12px 0 0;
  color: var(--ak-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

/* Split feature blocks */

.ak-split {
  padding: 0 0 96px;
}

.ak-split__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
}

.ak-split__inner--reverse .ak-split__content {
  order: 2;
}

.ak-split__content h2 {
  margin: 6px 0 0;
  font-family: var(--ak-font-title);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.ak-split__lead {
  margin: 20px 0 0;
  color: var(--ak-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.ak-split .ak-check-list {
  margin-top: 22px;
}

/* Spec list */

.ak-spec {
  margin: 24px 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ak-spec__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ak-spec dt {
  color: var(--ak-muted);
  font-size: 14px;
  font-weight: 700;
}

.ak-spec dd {
  margin: 0;
  color: var(--ak-white);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

/* Licensing */

.ak-licensing {
  padding: 0 0 96px;
}

.ak-licensing__lead {
  width: min(100%, 640px);
  margin: -16px auto 40px;
  color: var(--ak-muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.ak-licensing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.ak-tier {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 60%),
    rgba(255, 255, 255, 0.02);
}

.ak-tier--featured {
  border-color: rgba(91, 44, 157, 0.9);
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 44, 157, 0.32), transparent 46%),
    linear-gradient(135deg, rgba(99, 186, 171, 0.08), transparent 56%),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 60px rgba(91, 44, 157, 0.14);
}

.ak-tier__badge {
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ak-primary), var(--ak-secondary));
  color: var(--ak-white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ak-tier__name {
  margin: 0;
  font-family: var(--ak-font-title);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.ak-tier__desc {
  margin: 12px 0 0;
  color: var(--ak-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.ak-tier__list {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ak-tier__list li {
  position: relative;
  padding-left: 26px;
  color: var(--ak-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.ak-tier__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ak-secondary);
  font-weight: 900;
}

.ak-tier .ak-button {
  margin-top: auto;
  width: 100%;
}

/* Product page — extra step column */

.ak-step-list--5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Product page — responsive */

@media (max-width: 1024px) {
  .ak-page-hero {
    padding-top: 124px;
  }

  .ak-page-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ak-console--compact {
    margin-inline: 0;
  }

  .ak-subnav {
    top: 80px;
  }

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

  .ak-split__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ak-split__inner--reverse .ak-split__content {
    order: 0;
  }

  .ak-step-list--5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .ak-licensing__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .ak-page-hero {
    padding-top: 108px;
  }

  .ak-modules,
  .ak-split,
  .ak-licensing {
    padding-bottom: 72px;
  }

  .ak-modules {
    padding-top: 56px;
  }

  .ak-modules__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ak-subnav {
    position: static;
    margin-top: 48px;
  }

  .ak-subnav__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    border-radius: 18px;
  }

  .ak-step-list--5 {
    grid-template-columns: 1fr;
  }
}

/* ===== Services page ===== */

/* Hero flow / systems map */

.ak-flow {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 44, 157, 0.28), transparent 46%),
    radial-gradient(circle at 90% 100%, rgba(99, 186, 171, 0.16), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(13, 10, 26, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.ak-flow__group {
  display: grid;
  gap: 8px;
}

.ak-flow__label {
  margin: 0 0 2px;
  color: var(--ak-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ak-flow__node {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ak-white);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.ak-flow__hub {
  display: grid;
  gap: 4px;
  padding: 20px 16px;
  border: 1px solid rgba(91, 44, 157, 0.9);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(91, 44, 157, 0.6), rgba(99, 186, 171, 0.28)),
    rgba(13, 10, 26, 0.6);
  box-shadow: inset 0 0 50px rgba(99, 186, 171, 0.16);
  text-align: center;
}

.ak-flow__hub strong {
  font-family: var(--ak-font-title);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ak-flow__hub em {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
}

.ak-flow__link {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(99, 186, 171, 0.7), rgba(91, 44, 157, 0.7));
}

.ak-flow__link::after {
  content: '›';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ak-secondary);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

/* Service lines */

.ak-service-lines {
  padding: 72px 0 96px;
}

.ak-service-lines__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ak-service-line {
  padding: 30px 28px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(99, 186, 171, 0.22), transparent 48%),
    rgba(91, 44, 157, 0.52);
}

.ak-service-line h3 {
  margin: 0;
  color: var(--ak-white);
  font-family: var(--ak-font-title);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.ak-service-line p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.ak-service-line__list {
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
  display: grid;
  gap: 10px;
}

.ak-service-line__list li {
  position: relative;
  padding-left: 22px;
  color: var(--ak-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.ak-service-line__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--ak-secondary);
  font-size: 16px;
  font-weight: 900;
}

/* Deliverables panel */

.ak-deliverables {
  padding: 0 0 96px;
}

.ak-deliverables__panel {
  padding: 36px 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(91, 44, 157, 0.16), transparent 56%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 60px rgba(91, 44, 157, 0.08);
}

.ak-check-list--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}

/* Services page — responsive */

@media (max-width: 1024px) {
  .ak-service-lines__grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .ak-service-lines {
    padding: 56px 0 72px;
  }

  .ak-service-lines__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ak-deliverables {
    padding-bottom: 72px;
  }

  .ak-deliverables__panel {
    padding: 26px 22px;
  }

  .ak-check-list--2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ak-flow {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 18px;
  }

  .ak-flow__link {
    width: 2px;
    height: 26px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(99, 186, 171, 0.7), rgba(91, 44, 157, 0.7));
  }

  .ak-flow__link::after {
    content: '⌄';
    right: 50%;
    top: auto;
    bottom: -10px;
    transform: translateX(50%);
  }
}

/* ===== About page ===== */

/* Centered editorial hero */

.ak-page-hero--center .ak-page-hero__inner {
  display: block;
  text-align: center;
}

.ak-page-hero--center .ak-page-hero__content {
  width: min(100%, 860px);
  margin-inline: auto;
}

.ak-page-hero--center h1 {
  font-size: clamp(40px, 5.4vw, 76px);
}

.ak-page-hero--center .ak-page-hero__lead {
  margin-inline: auto;
  max-width: 640px;
}

.ak-page-hero--center .ak-page-hero__actions {
  justify-content: center;
}

/* Mission statement */

.ak-statement {
  padding: 24px 0 96px;
  text-align: center;
}

.ak-statement__eyebrow {
  margin-bottom: 18px;
}

.ak-statement__text {
  width: min(100%, 960px);
  margin: 0 auto;
  font-family: var(--ak-font-title);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ak-white);
}

.ak-statement__text span {
  background: linear-gradient(90deg, var(--ak-primary), var(--ak-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ak-statement__support {
  width: min(100%, 620px);
  margin: 24px auto 0;
  color: var(--ak-muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

/* Values reuse modules grid spacing */

.ak-values {
  padding-top: 0;
}

/* Product + services bridge */

.ak-bridge {
  padding: 0 0 104px;
}

.ak-bridge__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ak-bridge__card {
  display: flex;
  flex-direction: column;
  padding: 36px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(91, 44, 157, 0.4), rgba(23, 44, 48, 0.6)),
    rgba(255, 255, 255, 0.03);
}

.ak-bridge__card h3 {
  margin: 8px 0 0;
  font-family: var(--ak-font-title);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.ak-bridge__desc {
  margin: 16px 0 28px;
  color: var(--ak-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.ak-bridge__card .ak-button {
  margin-top: auto;
  width: fit-content;
}

/* About page — responsive */

@media (max-width: 768px) {
  .ak-statement {
    padding-bottom: 72px;
  }

  .ak-bridge {
    padding-bottom: 80px;
  }

  .ak-bridge__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ak-bridge__card {
    padding: 28px 24px;
  }
}

/* ===== Motion ===== */

/* Scroll reveal */

.ak-reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition:
    opacity 720ms var(--ak-ease),
    transform 720ms var(--ak-ease),
    filter 720ms var(--ak-ease);
  transition-delay: var(--ak-delay, 0ms);
}

.ak-reveal:not(.is-visible) {
  will-change: opacity, transform, filter;
}

.ak-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Preserve button hover lift when a button is also a reveal target */
.ak-reveal.is-visible.ak-button:hover {
  transform: translateY(-2px);
}

/* Staggered reveal groups: children animate in sequence */
.ak-reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition:
    opacity 720ms var(--ak-ease),
    transform 720ms var(--ak-ease),
    filter 720ms var(--ak-ease);
}

.ak-reveal-stagger:not(.is-visible) > * {
  will-change: opacity, transform, filter;
}

.ak-reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.ak-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.ak-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 70ms; }
.ak-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 140ms; }
.ak-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 210ms; }
.ak-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 280ms; }
.ak-reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 350ms; }
.ak-reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 420ms; }
.ak-reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 490ms; }

/* Layering: keep content above the fixed particle layer */
main,
.ak-footer {
  position: relative;
  z-index: 1;
}

/* Background particles */

.ak-background-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ak-background-particles span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 186, 171, 0.9),
    rgba(99, 186, 171, 0) 70%
  );
  opacity: 0.16;
  will-change: transform, opacity;
  animation: ak-particle-float 24s var(--ak-ease) infinite;
}

.ak-background-particles span:nth-child(even) {
  background: radial-gradient(
    circle,
    rgba(91, 44, 157, 0.95),
    rgba(91, 44, 157, 0) 70%
  );
}

.ak-background-particles span:nth-child(1)  { left: 8%;  top: 18%; width: 6px;  height: 6px;  animation-duration: 26s; animation-delay: 0s; }
.ak-background-particles span:nth-child(2)  { left: 22%; top: 72%; width: 9px;  height: 9px;  animation-duration: 30s; animation-delay: -4s; }
.ak-background-particles span:nth-child(3)  { left: 35%; top: 32%; width: 5px;  height: 5px;  animation-duration: 22s; animation-delay: -8s; }
.ak-background-particles span:nth-child(4)  { left: 48%; top: 84%; width: 8px;  height: 8px;  animation-duration: 28s; animation-delay: -2s; }
.ak-background-particles span:nth-child(5)  { left: 60%; top: 14%; width: 6px;  height: 6px;  animation-duration: 25s; animation-delay: -10s; }
.ak-background-particles span:nth-child(6)  { left: 71%; top: 60%; width: 10px; height: 10px; animation-duration: 32s; animation-delay: -6s; }
.ak-background-particles span:nth-child(7)  { left: 83%; top: 28%; width: 5px;  height: 5px;  animation-duration: 23s; animation-delay: -12s; }
.ak-background-particles span:nth-child(8)  { left: 92%; top: 76%; width: 7px;  height: 7px;  animation-duration: 29s; animation-delay: -3s; }
.ak-background-particles span:nth-child(9)  { left: 15%; top: 48%; width: 6px;  height: 6px;  animation-duration: 27s; animation-delay: -14s; }
.ak-background-particles span:nth-child(10) { left: 41%; top: 8%;  width: 8px;  height: 8px;  animation-duration: 31s; animation-delay: -5s; }
.ak-background-particles span:nth-child(11) { left: 66%; top: 90%; width: 6px;  height: 6px;  animation-duration: 24s; animation-delay: -9s; }
.ak-background-particles span:nth-child(12) { left: 88%; top: 50%; width: 9px;  height: 9px;  animation-duration: 33s; animation-delay: -7s; }

@keyframes ak-particle-float {
  0% {
    transform: translate(0, 0);
    opacity: 0.08;
  }
  50% {
    transform: translate(10px, -28px);
    opacity: 0.2;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.08;
  }
}

/* Floating hero cubes */

.ak-hero__cube--left {
  will-change: transform;
  animation: ak-cube-float-left 9s var(--ak-ease) infinite;
}

.ak-hero__cube--right {
  will-change: transform;
  animation: ak-cube-float-right 11s var(--ak-ease) infinite;
}

@keyframes ak-cube-float-left {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-2deg);
  }
}

@keyframes ak-cube-float-right {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(16px) rotate(2deg);
  }
}

/* Animated gradient text utility */

.ak-gradient-text {
  background: linear-gradient(
    90deg,
    var(--ak-white),
    var(--ak-secondary),
    var(--ak-primary),
    var(--ak-white)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ak-gradient-pan 9s linear infinite;
}

@keyframes ak-gradient-pan {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  .ak-reveal,
  .ak-reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .ak-background-particles span,
  .ak-hero__cube--left,
  .ak-hero__cube--right,
  .ak-gradient-text {
    animation: none !important;
  }
}

/* Contact form: honeypot + AJAX status (WordPress integration) */

.ak-contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ak-contact-form__status {
  margin: 4px 0 0;
  min-height: 1.2em;
  font-size: 14px;
  font-weight: 700;
}

.ak-contact-form__status.is-success {
  color: var(--ak-secondary);
}

.ak-contact-form__status.is-error {
  color: #ff8597;
}

.ak-contact-form button[disabled] {
  opacity: 0.6;
  cursor: progress;
}

/* ==========================================================================
   Salient compatibility overrides
   --------------------------------------------------------------------------
   The Actuskom design colors headings via inheritance (body { color:#fff })
   and styles buttons/inputs with single-class selectors. The Salient parent
   theme sets explicit colors on h1-h6 and on form controls (often id-scoped),
   which override those rules and made headings render dark and buttons grey.
   These scoped !important rules re-assert the Actuskom look on top of Salient.
   Keep this block at the very end of the file (after any re-copy from src).
   ========================================================================== */

/* Base text + background inside our page wrapper */
.ak-page {
  color: var(--ak-white);
  font-family: var(--ak-font-body);
}

/* Headings: white instead of Salient's heading color (spans keep their own color) */
.ak-page h1,
.ak-page h2,
.ak-page h3,
.ak-page h4,
.ak-page h5,
.ak-page h6 {
  color: var(--ak-white) !important;
}

/* Gradient / highlighted heading spans must keep their treatment */
.ak-page .ak-gradient-text {
  color: transparent !important;
}

/* Buttons: restore primary/secondary appearance over Salient's button styles */
.ak-page .ak-button {
  font-family: var(--ak-font-body);
  font-weight: 800;
  text-decoration: none;
  text-shadow: none;
}

.ak-page .ak-button.ak-button--primary {
  background: var(--ak-primary) !important;
  color: var(--ak-white) !important;
  border: 0 !important;
}

.ak-page .ak-button.ak-button--secondary {
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--ak-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
}

/* Contact form fields: keep the dark, borderless-on-light Actuskom styling */
.ak-page .ak-contact-form input,
.ak-page .ak-contact-form textarea {
  background: rgba(255, 255, 255, 0.025) !important;
  color: var(--ak-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.ak-page .ak-contact-form input::placeholder,
.ak-page .ak-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.56) !important;
}

/* Eyebrows / muted helpers that may inherit a parent-theme color */
.ak-page .ak-eyebrow--teal {
  color: var(--ak-secondary) !important;
}

/* Custom lists: Salient re-adds native bullets/numbers over our ::before icons */
.ak-page .ak-check-list,
.ak-page .ak-tier__list,
.ak-page .ak-step-list,
.ak-page .ak-service-line__list,
.ak-page .ak-clients__list {
  list-style: none !important;
  padding-left: 0 !important;
}

.ak-page .ak-check-list > li,
.ak-page .ak-tier__list > li,
.ak-page .ak-step-list > li,
.ak-page .ak-service-line__list > li,
.ak-page .ak-clients__item {
  list-style: none !important;
  list-style-type: none !important;
}

.ak-page .ak-check-list > li::marker,
.ak-page .ak-tier__list > li::marker,
.ak-page .ak-step-list > li::marker,
.ak-page .ak-service-line__list > li::marker,
.ak-page .ak-clients__item::marker {
  content: none !important;
  font-size: 0 !important;
}

/* Purple firmware banner: keep text vertically centered inside the strip */
.ak-page .ak-firmware-banner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.ak-page .ak-firmware-banner p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}



