:root {
  --cyan: #54ddeb;
  --aqua: #27c9e9;
  --blue: #0754c9;
  --deep-blue: #003a95;
  --navy: #071320;
  --ink: #122033;
  --muted: #607084;
  --line: #dce9f2;
  --soft: #f5fbff;
  --white: #ffffff;
  --green: #18a86b;
  --coral: #ff6b5f;
  --amber: #f4a62a;
  --shadow: 0 24px 70px rgba(5, 51, 112, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(84, 221, 235, .72);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 233, 242, .9);
  backdrop-filter: blur(18px);
}

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

.brand img { width: 114px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
}

.site-nav > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav > a:hover,
.nav-trigger:hover,
.nav-group:focus-within .nav-trigger {
  background: var(--soft);
  color: var(--blue);
}

.nav-group { position: relative; }

.mega-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.mega-wide {
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  min-width: 420px;
}

.nav-group:hover .mega-panel,
.nav-group:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-panel a {
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.mega-panel a:hover {
  background: var(--soft);
  color: var(--blue);
}

.product-mega {
  grid-template-columns: 250px minmax(680px, 1fr);
  gap: 18px;
  width: min(1160px, calc(100vw - 48px));
  min-width: 0;
  padding: 14px;
}

.product-menu-list {
  display: grid;
  gap: 6px;
}

.product-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.product-menu-item:hover,
.product-menu-item:focus,
.product-menu-item.is-active {
  border-color: rgba(39, 201, 233, .35);
  background: rgba(84, 221, 235, .12);
  color: var(--blue);
}

.product-menu-previews {
  min-height: 260px;
}

.product-menu-preview {
  display: grid;
  grid-template-columns: minmax(430px, .62fr) minmax(280px, .38fr);
  gap: 22px;
  height: 100%;
}

.preview-image {
  min-height: 276px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 24%, rgba(84, 221, 235, .32), transparent 32%),
    linear-gradient(135deg, #edf9ff, #dceeff);
  background-repeat: no-repeat;
  overflow: hidden;
}

.product-menu-preview div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-menu-preview span {
  margin-bottom: 10px;
  color: #014bba;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-menu-preview p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
}

.product-menu-preview a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.product-menu-preview a:hover {
  background: linear-gradient(135deg, var(--cyan), var(--deep-blue));
  color: var(--white);
}

.preview-panel-art,
.preview-video-art,
.preview-mr-art,
.preview-hrms-art {
  position: relative;
}

.preview-panel-art {
  background-image: url("../images/interactive-panels-category.webp");
  background-size: contain;
  background-position: center;
}

.category-image.panel-art {
  background-image: url("../images/interactive-panels-category.webp");
  background-size: cover;
  background-position: center;
}

.category-image.panel-art::before,
.category-image.panel-art::after {
  display: none;
}

.preview-panel-art::before,
.preview-mr-art::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  width: 145px;
  height: 92px;
  transform: translateX(-50%);
  border: 8px solid #122033;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(84, 221, 235, .92), rgba(7, 84, 201, .92));
  box-shadow: 0 22px 40px rgba(7, 84, 201, .18);
}

.preview-panel-art::before,
.preview-panel-art::after {
  display: none;
}

.preview-panel-art::after,
.preview-mr-art::after {
  content: "";
  position: absolute;
  left: calc(50% - 24px);
  bottom: 44px;
  width: 48px;
  height: 12px;
  border-radius: 8px;
  background: #122033;
}

.preview-video-art::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24%;
  width: 128px;
  height: 92px;
  transform: translateX(-50%);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .7) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, .7) 50%, transparent 51%),
    linear-gradient(135deg, var(--deep-blue), var(--cyan));
}

.preview-hrms-art::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24%;
  width: 134px;
  height: 92px;
  transform: translateX(-50%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.2)),
    linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 18px 36px rgba(24, 168, 107, .18);
}

.preview-hrms-art::after {
  content: "";
  position: absolute;
  left: calc(50% - 44px);
  top: 48%;
  width: 88px;
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.95) 16px, transparent 16px, transparent 24px);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  box-shadow: 0 16px 36px rgba(7, 84, 201, .22);
}

.btn-secondary {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .26);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--blue);
  box-shadow: none;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(7, 84, 201, .24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  place-items: center;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-slider {
  position: relative;
  min-height: clamp(610px, 84vh, 760px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(54px, 6vw, 92px) clamp(18px, 6vw, 82px) clamp(84px, 8vw, 116px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px);
  transition: opacity .45s ease, transform .45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 32, .98) 0%, rgba(7, 19, 32, .78) 39%, rgba(7, 19, 32, .26) 100%),
    radial-gradient(circle at 24% 30%, rgba(84, 221, 235, .2), transparent 30%);
  pointer-events: none;
}

.hero-slide-full {
  grid-template-columns: minmax(0, 1fr);
  background-size: cover;
  background-position: center;
}

.hero-slide-full::before {
  background:
    linear-gradient(90deg, rgba(7, 19, 32, .92) 0%, rgba(7, 19, 32, .7) 34%, rgba(7, 19, 32, .12) 68%, rgba(7, 19, 32, .02) 100%);
}

.hero-slide-interactive {
  background-image: url("../images/interactive-panels-hero.webp");
}

.hero-slide-full .hero-copy {
  max-width: 700px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: #014bba;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--cyan); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }

h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  max-width: 780px;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 400;
}

h3 {
  color: var(--navy);
  font-size: 21px;
  font-weight: 500;
}

p { color: var(--muted); }

.hero-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: #d8e9f4;
  font-size: clamp(16px, 1.45vw, 19px);
}

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

.hero-visual {
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background-color: #091726;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/awn-ai-hero-banner.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.04);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 32, .04), rgba(7, 19, 32, .54)),
    linear-gradient(135deg, rgba(84, 221, 235, .18), rgba(255, 107, 95, .08));
}

.hero-visual-cloud::before { background-position: 58% 52%; transform: scale(1.05); }
.hero-visual-security::before { background-position: 78% 50%; transform: scale(1.08); }
.hero-visual-lms::before { background-position: 62% 48%; transform: scale(1.04); }
.hero-visual-interactive::before {
  background-image: url("../images/interactive-panels-product.webp");
  background-position: center;
}
.hero-visual-interactive::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, .05), rgba(7, 19, 32, .05));
}

.hero-glass-card,
.network-orbit,
.camera-grid,
.panel-mockup {
  position: absolute;
  z-index: 2;
}

.hero-glass-card {
  right: 28px;
  bottom: 28px;
  width: min(290px, calc(100% - 56px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(7, 19, 32, .74);
  backdrop-filter: blur(14px);
  color: var(--white);
}

.hero-glass-card span,
.hero-glass-card small {
  display: block;
  color: #c5dceb;
  font-size: 13px;
  font-weight: 500;
}

.hero-glass-card strong {
  display: block;
  margin: 6px 0;
  color: var(--cyan);
  font-size: 52px;
  line-height: 1;
}

.network-orbit {
  inset: 52px;
  border: 1px solid rgba(84, 221, 235, .36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(84, 221, 235, .32) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(244, 166, 42, .22) 50%, transparent 51%);
}

.network-orbit span {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(84, 221, 235, .95);
}

.network-orbit span:nth-child(1) { left: 14%; top: 18%; }
.network-orbit span:nth-child(2) { right: 18%; top: 28%; background: var(--amber); }
.network-orbit span:nth-child(3) { left: 34%; bottom: 18%; background: var(--green); }
.network-orbit span:nth-child(4) { right: 26%; bottom: 22%; }

.camera-grid {
  inset: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.camera-grid span {
  border: 1px solid rgba(84, 221, 235, .28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(84, 221, 235, .22), rgba(7, 84, 201, .06)),
    rgba(7, 19, 32, .48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.panel-mockup {
  left: 48px;
  right: 48px;
  top: 54px;
  bottom: 54px;
  display: grid;
  gap: 16px;
}

.panel-mockup span {
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .24);
}

.panel-mockup span:nth-child(1) { width: 76%; }
.panel-mockup span:nth-child(2) { width: 92%; justify-self: end; background: rgba(84, 221, 235, .9); }
.panel-mockup span:nth-child(3) { width: 68%; background: rgba(255, 107, 95, .86); }

.hero-controls {
  position: absolute;
  left: clamp(18px, 6vw, 82px);
  bottom: 38px;
  z-index: 4;
  display: flex;
  gap: 9px;
}

.hero-controls button {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
  cursor: pointer;
}

.hero-controls button.is-active { background: var(--cyan); }

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 6vw, 82px);
}

.section-head {
  max-width: 880px;
  margin-bottom: 30px;
}

.section-head h2 { max-width: 920px; }

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.tabs-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 14px;
  overflow-x: visible;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f7fcff);
}

.tab-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.tab-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: currentColor;
}

.tab-icon::before,
.tab-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.tab-icon-computing::before {
  width: 18px;
  height: 12px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
}

.tab-icon-computing::after {
  width: 10px;
  height: 1.6px;
  bottom: 4px;
  background: currentColor;
  box-shadow: 0 -3px 0 -1px currentColor;
}

.tab-icon-storage::before {
  width: 18px;
  height: 16px;
  border: 1.6px solid currentColor;
  border-radius: 50% / 22%;
}

.tab-icon-storage::after {
  width: 18px;
  height: 1.6px;
  top: 8px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.tab-icon-cloud::before {
  width: 19px;
  height: 10px;
  left: 3px;
  bottom: 5px;
  border: 1.6px solid currentColor;
  border-radius: 12px;
}

.tab-icon-cloud::after {
  width: 8px;
  height: 8px;
  left: 7px;
  top: 4px;
  border: 1.6px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.tab-icon-security::before {
  width: 16px;
  height: 18px;
  border: 1.6px solid currentColor;
  border-radius: 9px 9px 6px 6px;
  clip-path: polygon(50% 0, 100% 20%, 100% 66%, 50% 100%, 0 66%, 0 20%);
}

.tab-icon-security::after {
  width: 6px;
  height: 10px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(42deg);
}

.tab-icon-smb::before {
  width: 17px;
  height: 15px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
}

.tab-icon-smb::after {
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow: -6px 0 0 currentColor, 6px 0 0 currentColor, -6px 6px 0 currentColor, 0 6px 0 currentColor, 6px 6px 0 currentColor;
}

.tab-icon-panel::before {
  width: 18px;
  height: 14px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
}

.tab-icon-panel::after {
  width: 8px;
  height: 1.6px;
  bottom: 3px;
  background: currentColor;
}

.tab-icon-video::before {
  width: 16px;
  height: 12px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
}

.tab-icon-video::after {
  right: 1px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
}

.tab-icon-mr::before {
  width: 19px;
  height: 11px;
  border: 1.6px solid currentColor;
  border-radius: 10px 10px 7px 7px;
}

.tab-icon-mr::after {
  width: 4px;
  height: 4px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  box-shadow: 8px 0 0 -1.5px var(--white), 8px 0 0 0 currentColor;
}

.tab-icon-hrms::before {
  width: 8px;
  height: 8px;
  top: 3px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}

.tab-icon-hrms::after {
  width: 18px;
  height: 9px;
  bottom: 3px;
  border: 1.6px solid currentColor;
  border-radius: 10px 10px 3px 3px;
}

.tab-button:hover,
.tab-button.is-active {
  border-color: rgba(39, 201, 233, .35);
  background: rgba(84, 221, 235, .12);
  color: var(--blue);
}

.tab-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
}

.tab-panel.is-active { display: grid; }

[hidden] { display: none !important; }

.product-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(245, 251, 255, .94)),
    radial-gradient(circle at 85% 0%, rgba(84, 221, 235, .18), transparent 34%);
  overflow: hidden;
}

.category-overview {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  grid-column: 1 / -1;
  min-height: 410px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f7fcff);
}

.category-image {
  position: relative;
  min-height: 310px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 32% 24%, rgba(84, 221, 235, .3), transparent 32%),
    linear-gradient(135deg, #eef9ff, #dceeff);
  overflow: hidden;
}

.category-copy {
  max-width: 620px;
}

.category-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
}

.category-copy p {
  margin-bottom: 24px;
  font-size: 17px;
}

.card-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.product-card h3 { margin-bottom: 9px; }
.product-card p { margin-bottom: 18px; font-size: 15px; }

.product-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

.product-card a::before,
.text-link::before {
  content: "";
  width: 18px;
  height: 1px;
  margin-right: 8px;
  background: var(--blue);
}

.product-art {
  position: relative;
  flex: 1;
  min-height: 128px;
  margin: 8px 0 20px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(84, 221, 235, .2), rgba(7, 84, 201, .08)),
    #eef7fc;
  overflow: hidden;
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  border-radius: 8px;
}

.compute-art::before,
.rack-art::before,
.storage-art::before,
.vault-art::before,
.security-art::before {
  left: 50%;
  top: 20%;
  width: 92px;
  height: 86px;
  transform: translateX(-50%);
  border: 1px solid rgba(7, 84, 201, .2);
  background: linear-gradient(180deg, #ffffff, #dfeef8);
  box-shadow: 0 18px 35px rgba(7, 84, 201, .12);
}

.compute-art::after,
.rack-art::after,
.storage-art::after {
  left: calc(50% - 35px);
  top: 40%;
  width: 70px;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--blue), var(--blue) 5px, transparent 5px, transparent 11px);
}

.cloud-art::before,
.archive-art::before,
.ai-art::before,
.workflow-art::before {
  left: 50%;
  top: 26%;
  width: 118px;
  height: 62px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 36px rgba(7, 84, 201, .22);
}

.cloud-art::after,
.ai-art::after,
.workflow-art::after {
  left: 50%;
  top: 19%;
  width: 58px;
  height: 58px;
  transform: translateX(-80%);
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
}

.workstation-art::before,
.panel-art::before,
.collab-art::before,
.signage-art::before,
.mr-art::before,
.skill-art::before,
.content-art::before {
  left: 50%;
  top: 18%;
  width: 138px;
  height: 86px;
  transform: translateX(-50%);
  border: 7px solid #122033;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(84, 221, 235, .85), rgba(7, 84, 201, .9));
}

.workstation-art::after,
.panel-art::after {
  left: calc(50% - 22px);
  bottom: 20px;
  width: 44px;
  height: 12px;
  background: #122033;
}

.video-art::before,
.ppe-art::before,
.incident-art::before,
.access-art::before,
.report-art::before {
  left: 50%;
  top: 22%;
  width: 112px;
  height: 84px;
  transform: translateX(-50%);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .7) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, .7) 50%, transparent 51%),
    linear-gradient(135deg, var(--deep-blue), var(--cyan));
}

.smb-art::before,
.branch-art::before,
.support-art::before,
.hrms-art::before,
.field-art::before,
.analytics-art::before {
  left: 50%;
  top: 22%;
  width: 120px;
  height: 84px;
  transform: translateX(-50%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.2)),
    linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 16px 32px rgba(24, 168, 107, .18);
}

.smb-art::after,
.hrms-art::after,
.analytics-art::after {
  left: calc(50% - 42px);
  top: 42%;
  width: 84px;
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.95) 16px, transparent 16px, transparent 24px);
}

.industries-section {
  background:
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 28px;
}

.industry-tabs {
  display: grid;
  max-height: 620px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.industry-tab {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.industry-tab:hover,
.industry-tab.is-active {
  background: linear-gradient(135deg, rgba(84, 221, 235, .18), rgba(7, 84, 201, .08));
  color: var(--blue);
}

.industry-stage {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 19, 32, .74), rgba(7, 19, 32, .18)),
    url("../images/awn-ai-hero-banner.jpg") center / cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.industry-panel {
  min-height: 620px;
  padding: clamp(28px, 4.2vw, 60px);
  color: var(--white);
}

.industry-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.industry-panel h3 {
  max-width: 660px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.industry-panel p {
  max-width: 620px;
  color: #d8e9f4;
  font-size: 18px;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 14px;
  margin-top: 36px;
}

.solution-cards div {
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(7, 19, 32, .68);
  backdrop-filter: blur(12px);
}

.solution-cards strong,
.solution-cards small {
  display: block;
}

.solution-cards strong {
  margin-bottom: 8px;
  color: var(--white);
}

.solution-cards small {
  color: #c5dceb;
  font-size: 14px;
  line-height: 1.45;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(330px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.about-copy p {
  max-width: 760px;
  font-size: 17px;
}

.about-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.logo-orb {
  display: grid;
  place-items: center;
  width: min(330px, 80vw);
  aspect-ratio: 1;
  border: 1px solid rgba(7, 84, 201, .16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, rgba(84, 221, 235, .28), transparent 34%),
    rgba(245, 251, 255, .8);
}

.logo-orb img { width: 74%; }

.about-orbit > span {
  position: absolute;
  min-width: 110px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 15px 40px rgba(7, 84, 201, .1);
  font-weight: 500;
  text-align: center;
}

.about-orbit > span:nth-child(2) { top: 46px; right: 18px; color: var(--coral); }
.about-orbit > span:nth-child(3) { left: 10px; bottom: 92px; color: var(--green); }
.about-orbit > span:nth-child(4) { right: 30px; bottom: 40px; color: var(--blue); }

.metrics-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.metrics-row div {
  padding: 24px;
  background: var(--white);
}

.metrics-row strong {
  display: block;
  color: var(--blue);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1;
}

.metrics-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.partner-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 6vw, 82px);
  padding: clamp(32px, 5vw, 58px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 19, 32, .84), rgba(7, 19, 32, .42)),
    url("../images/challenge-rising-incidents.jpg") center / cover;
  color: var(--white);
}

.partner-band h2 {
  max-width: 780px;
  color: var(--white);
}

.partner-band .eyebrow {
  color: var(--cyan);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, .7fr));
  grid-auto-rows: minmax(270px, auto);
  gap: 16px;
}

.blog-card {
  position: relative;
  min-height: 270px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 18px 50px rgba(7, 19, 32, .14);
}

.blog-feature { grid-row: span 2; }

.blog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 32, .05), rgba(7, 19, 32, .88));
}

.blog-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
}

.blog-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 10px 0 16px;
  color: var(--white);
  font-size: clamp(20px, 1.8vw, 24px);
}

.blog-card a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.site-footer {
  margin-top: clamp(64px, 8vw, 110px);
  padding: 54px clamp(18px, 6vw, 82px) 24px;
  background: #081321;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr);
  gap: 48px;
}

.footer-logo {
  width: 138px;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 420px;
  color: #bed4e2;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.footer-columns h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 15px;
}

.footer-columns a {
  display: block;
  margin: 8px 0;
  color: #bed4e2;
  font-size: 14px;
}

.footer-columns a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #9fb6c7;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .menu-toggle { display: grid; }
  .site-header { flex-wrap: wrap; }
  .site-nav {
    display: none;
    order: 5;
    flex-basis: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a,
  .nav-trigger {
    justify-content: flex-start;
    width: 100%;
  }
  .mega-panel,
  .mega-wide {
    position: static;
    display: none;
    min-width: 0;
    grid-template-columns: 1fr;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .product-mega {
    min-width: 0;
    grid-template-columns: 1fr;
  }
  .product-menu-preview {
    grid-template-columns: 1fr;
  }
  .preview-image {
    min-height: 180px;
  }
  .nav-group:hover .mega-panel,
  .nav-group:focus-within .mega-panel { display: grid; }
  .hero-slide,
  .about-section,
  .footer-main { grid-template-columns: 1fr; }
  .hero-slider { min-height: 920px; }
  .hero-visual { min-height: 360px; }
  .tab-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-overview { grid-template-columns: 1fr; }
  .industry-layout { grid-template-columns: 1fr; }
  .industry-tabs {
    display: flex;
    overflow-x: auto;
    max-height: none;
  }
  .industry-tab { flex: 0 0 auto; white-space: nowrap; }
  .industry-stage,
  .industry-panel { min-height: 520px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-feature { grid-row: auto; grid-column: span 2; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .brand img { width: 102px; }
  .header-cta { display: none; }
  .hero-slider { min-height: 900px; }
  .hero-slide {
    padding: 42px 18px 86px;
    align-content: center;
  }
  .hero-visual { min-height: 310px; }
  .hero-actions,
  .partner-band,
  .section-head-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .btn { width: 100%; }
  .product-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .tab-panel,
  .category-overview,
  .solution-cards,
  .metrics-row,
  .blog-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .blog-feature { grid-column: auto; }
  .product-card { min-height: 330px; }
  .industry-stage,
  .industry-panel { min-height: 620px; }
  .about-orbit { min-height: 350px; }
  .about-orbit > span { min-width: 96px; font-size: 13px; }
}
