:root {
  color-scheme: dark;
  --bg: #050607;
  --bg-soft: #0d1014;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f6f8fb;
  --muted: rgba(246, 248, 251, 0.68);
  --blue: #1f7aff;
  --cyan: #4ecdc4;
  --green: #7bd88f;
  --logo-gradient: linear-gradient(135deg, var(--blue), var(--cyan) 52%, var(--green));
  --logo-gradient-soft: linear-gradient(135deg, rgba(31, 122, 255, 0.2), rgba(78, 205, 196, 0.16), rgba(123, 216, 143, 0.14));
  --font-sans: "Aptos", "Inter", "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Aptos Display", "Inter Tight", "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  font-feature-settings: "kern", "liga", "calt";
  line-height: 1.6;
}

body::selection {
  color: #03100c;
  background: var(--green);
}

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

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

p {
  margin: 0 0 16px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 8vw, 70px);
}

h2 {
  font-size: clamp(30px, 4vw, 58px);
}

h3 {
  font-size: 20px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
  outline: none;
}

button,
.btn,
.primary-menu,
.footer-bottom,
.eyebrow {
  font-family: var(--font-sans);
}

textarea {
  resize: none;
}

label {
  position: relative;
  display: grid;
  gap: 7px;
  color: rgba(246, 248, 251, 0.78);
  font-size: 15px;
  font-weight: 400;
}

.form-label-text {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.25;
}

.sr-only,
.sr-only.form-label-text {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.wrap {
  width: 88%;
  max-width: 1400px;
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 7, 0.74);
  backdrop-filter: blur(20px);
}

.top-policy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  min-height: 34px;
  align-items: center;
  background: linear-gradient(90deg, rgba(31, 122, 255, 0.18), rgba(78, 205, 196, 0.14), rgba(123, 216, 143, 0.12));
  font-size: 12px;
  font-weight: 800;
}

.top-policy a {
  border-radius: 999px;
  padding: 4px 8px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.top-policy a:hover,
.top-policy a:focus,
.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu a.is-active {
  color: var(--green);
}

.top-policy a:hover,
.top-policy a:focus {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-shell {
  width: 88%;
  max-width: 1400px;
  min-height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 950;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: linear-gradient(135deg, rgba(31, 122, 255, 0.72), rgba(78, 205, 196, 0.74));
  box-shadow: 0 14px 30px rgba(31, 122, 255, 0.18);
}

.flash-message {
  position: fixed;
  top: 112px;
  right: 7%;
  z-index: 140;
  max-width: 420px;
  border: 1px solid rgba(123, 216, 143, 0.36);
  border-radius: var(--radius);
  padding: 13px 16px;
  background: rgba(8, 20, 14, 0.96);
  box-shadow: var(--shadow);
}

.home-hero,
.page-hero {
  min-height: 86vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 180px 0 70px;
}

.home-hero video,
.hero-overlay,
.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.home-hero video,
.page-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(1.08) contrast(1.05);
}

.page-hero.template-applications::before {
  opacity: 0.12;
}

.hero-overlay,
.page-hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.58), rgba(5, 6, 7, 0.2)),
    linear-gradient(0deg, #050607 0%, transparent 42%);
}

.policy-top-actions {
  padding: 24px 0 0;
  background: #050607;
}

.policy-top-actions-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(78, 205, 196, 0.08)),
    rgba(10, 14, 15, 0.9);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.policy-top-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(246, 248, 251, 0.76);
  font-size: 13px;
  font-weight: 900;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.policy-top-actions a:hover,
.policy-top-actions a:focus,
.policy-top-actions a.is-active {
  color: #fff;
  border-color: rgba(78, 205, 196, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(78, 205, 196, 0.16)),
    rgba(34, 55, 58, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 30px rgba(78, 205, 196, 0.14);
}

.policy-top-actions a:hover,
.policy-top-actions a:focus {
  transform: translateY(-1px);
}

.page-hero::before {
  content: "";
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  filter: saturate(0.92);
}

.template-contact {
  min-height: 70vh;
}

.template-careers {
  min-height: 78vh;
}

.page-hero.blog-page-hero {
  min-height: 70vh;
}

.home-hero-content,
.hero-inner {
  position: relative;
  z-index: 1;
}

.home-hero-content p,
.hero-inner p {
  font-size: clamp(17px, 2vw, 22px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 16px;
  font-weight: 650;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.btn,
.button-primary,
.button-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: var(--logo-gradient);
  box-shadow: 0 14px 34px rgba(78, 205, 196, 0.2);
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn:hover,
.btn:focus,
.button-primary:hover,
.button-primary:focus,
.button-secondary:hover,
.button-secondary:focus {
  transform: translateY(-2px);
  filter: saturate(1.14);
  box-shadow: 0 20px 48px rgba(123, 216, 143, 0.28);
}

.btn-alt {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 13px;
}

.hero-actions,
.ready-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 840px;
  margin-top: 36px;
}

.market-strip span,
.delivery-steps span,
.flow-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.market-strip span:hover,
.delivery-steps span:hover,
.flow-grid span:hover {
  border-color: rgba(123, 216, 143, 0.5);
  background: linear-gradient(135deg, rgba(31, 122, 255, 0.2), rgba(123, 216, 143, 0.15));
  transform: translateY(-3px);
}

.section {
  padding: 92px 0;
}

.section[id] {
  scroll-margin-top: 120px;
}

.section-shade {
  background:
    radial-gradient(circle at 15% 20%, rgba(31, 122, 255, 0.1), transparent 30%),
    linear-gradient(135deg, #0a0d11, #101318);
}

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(78, 205, 196, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.86) 48%, rgba(5, 6, 7, 0.76)),
    url("../images/curated/software-team-modern-office.jpg") center / cover no-repeat;
}

.intro-section .wrap {
  position: relative;
  z-index: 1;
}

.two-col,
.ready-grid,
.contact-grid,
.blog-layout,
.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.section-head {
  margin-bottom: 34px;
}

.latest-blog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section-head h2 {
  /*max-width: 880px;*/
}

.section-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(78, 205, 196, 0.32);
  border-radius: 999px;
  padding: 0 18px;
  color: #051110;
  background: linear-gradient(135deg, #36a2ff, #54dcc5 55%, #7bd88f);
  box-shadow: 0 14px 34px rgba(78, 205, 196, 0.18);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.section-link:hover,
.section-link:focus {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 44px rgba(31, 122, 255, 0.22);
  filter: brightness(1.06);
  outline: none;
}

.section-link:focus-visible {
  outline: 2px solid rgba(78, 205, 196, 0.56);
  outline-offset: 3px;
}

.stat-panel,
.side-panel,
.support-copy-box,
.form-card,
.admin-card,
.admin-form,
.archive-panel,
.comment-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.stat-panel {
  display: grid;
  gap: 14px;
}

.stat-panel div {
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-panel strong {
  display: block;
  color: var(--green);
  font-size: 36px;
}

.home-service-stream {
  position: relative;
  min-height: 454px;
  max-height: 454px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(10, 18, 23, 0.92), rgba(23, 39, 38, 0.72)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.home-service-stream::before,
.home-service-stream::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 68px;
  content: "";
  pointer-events: none;
}

.home-service-stream::before {
  top: 0;
  background: linear-gradient(180deg, rgba(8, 13, 15, 0.98), rgba(8, 13, 15, 0));
}

.home-service-stream::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(8, 13, 15, 0.98), rgba(8, 13, 15, 0));
}

.home-service-stream-track {
  display: grid;
  gap: 0;
  animation: homeServiceStream 42s linear infinite;
  will-change: transform;
}

.home-service-stream:hover .home-service-stream-track,
.home-service-stream:focus-within .home-service-stream-track {
  animation-play-state: paused;
}

.home-service-stream-set {
  display: grid;
  gap: 14px;
  padding-bottom: 14px;
}

.home-service-stream-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 7px 14px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 11px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-service-stream-card:hover,
.home-service-stream-card:focus {
  border-color: rgba(78, 205, 196, 0.5);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.14), rgba(78, 205, 196, 0.12)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 42px rgba(31, 122, 255, 0.14);
  outline: none;
}

.home-service-stream-card img {
  width: 104px;
  height: 92px;
  grid-row: 1 / span 2;
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.home-service-stream-card span {
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
}

.home-service-stream-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(246, 248, 251, 0.72);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@keyframes homeServiceStream {
  to {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-service-stream-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .home-service-stream {
    min-height: 420px;
    max-height: 420px;
    padding: 10px;
  }

  .home-service-stream-set {
    gap: 10px;
    padding-bottom: 10px;
  }

  .home-service-stream-card {
    min-height: 108px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 6px 10px;
    padding: 9px;
  }

  .home-service-stream-card img {
    width: 82px;
    height: 78px;
  }

  .home-service-stream-card span {
    font-size: 15px;
  }

  .home-service-stream-card p {
    font-size: 12px;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
  gap: 20px;
}

.service-area-grid .card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-card,
.blog-card,
.industry-box,
.logo-tile,
.service-mosaic article,
.mini-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.media-card::after,
.industry-box::after,
.logo-tile::after,
.service-mosaic article::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.18), transparent 70%);
  transform: translateX(-100%);
  transition: opacity 220ms ease, transform 420ms ease;
  pointer-events: none;
}

.media-card:hover,
.blog-card:hover,
.industry-box:hover,
.logo-tile:hover,
.service-mosaic article:hover,
.mini-grid article:hover {
  border-color: rgba(78, 205, 196, 0.42);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 28px 70px rgba(31, 122, 255, 0.16);
  transform: translateY(-6px);
}

.media-card:hover::after,
.industry-box:hover::after,
.logo-tile:hover::after,
.service-mosaic article:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.media-card {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto;
}

.card-image {
  height: 184px;
  min-height: 0;
  overflow: hidden;
}

.card-image img,
.blog-image img,
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.media-card:hover .card-image img,
.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

.media-card > div:last-child,
.blog-card {
  padding: 22px;
}

.media-card > div:last-child {
  display: grid;
  align-content: start;
  gap: 12px;
}

.media-card h3,
.media-card p {
  margin: 0;
}

.media-card p {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(246, 248, 251, 0.72);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.ai-split {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.72) 48%, rgba(5, 6, 7, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.16), transparent 34%),
    url("../images/curated/ai-robot-analytics.jpg") center / cover fixed,
    #111418;
}

.ai-split::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 22%, rgba(31, 122, 255, 0.18), transparent 30%),
    radial-gradient(circle at 88% 74%, rgba(123, 216, 143, 0.14), transparent 34%);
  pointer-events: none;
}

.ai-split > .wrap {
  position: relative;
  z-index: 1;
}

.ai-split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  gap: 34px 48px;
  align-items: start;
}

.ai-copy-panel {
  min-width: 0;
  align-self: center;
}

.ai-copy-panel p {
  max-width: 860px;
}

.ai-side-panel {
  display: grid;
  align-self: stretch;
  align-content: start;
  gap: 34px;
}

.ai-text-callout {
  max-width: 620px;
  justify-self: end;
  padding: 10px 8px 0;
}

.ai-text-callout h2 {
  margin: 0;
  color: rgba(246, 248, 251, 0.92);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.08;
  text-wrap: balance;
}

.ai-automation-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.ai-automation-grid .mini-card-link article {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.ai-automation-grid h3 {
  line-height: 1.14;
}

.ai-page-click-layout {
  display: grid;
  gap: 34px;
}

.ai-page-click-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 34px;
  align-items: end;
}

.ai-page-click-head p {
  max-width: 760px;
  color: rgba(246, 248, 251, 0.76);
  font-size: 18px;
}

.ai-click-showcase {
  display: grid;
  gap: 18px;
}

.ai-split-layout > .ai-click-showcase {
  grid-column: 1 / -1;
}

.ai-click-grid {
  grid-column: auto;
  align-items: start;
}

.ai-click-item {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
}

.ai-detail-trigger {
  width: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.ai-click-showcase.is-link-mode .ai-detail-trigger {
  display: block;
  height: 100%;
}

.ai-detail-trigger article {
  position: relative;
  overflow: hidden;
}

.ai-detail-trigger article::after {
  position: absolute;
  inset: auto 16px 14px auto;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: rgba(246, 248, 251, 0.36);
  box-shadow: 0 0 0 0 rgba(78, 205, 196, 0);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.ai-detail-trigger article span {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-detail-trigger.is-active article {
  border-color: rgba(78, 205, 196, 0.55);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.2), rgba(78, 205, 196, 0.12)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 62px rgba(31, 122, 255, 0.18);
}

.ai-detail-trigger.is-active article::after {
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(78, 205, 196, 0.12);
}

.ai-detail-panels {
  min-height: 430px;
}

.ai-detail-panels[hidden] {
  display: none;
}

.ai-detail-panels-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.ai-detail-panels-wide .ai-detail-panel {
  position: relative;
  isolation: isolate;
  border-color: rgba(78, 205, 196, 0.3);
  background:
    radial-gradient(circle at 12% 14%, rgba(31, 122, 255, 0.18), transparent 32%),
    radial-gradient(circle at 88% 24%, rgba(123, 216, 143, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(4, 7, 10, 0.98), rgba(10, 18, 22, 0.96));
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.48);
  animation: aiDetailReveal 180ms ease both;
}

.ai-detail-panels-wide .ai-detail-panel:hover {
  border-color: rgba(78, 205, 196, 0.3);
  background:
    radial-gradient(circle at 12% 14%, rgba(31, 122, 255, 0.18), transparent 32%),
    radial-gradient(circle at 88% 24%, rgba(123, 216, 143, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(4, 7, 10, 0.98), rgba(10, 18, 22, 0.96));
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.48);
  transform: none;
}

.ai-detail-panels-wide .ai-detail-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 86px);
  opacity: 0.55;
  pointer-events: none;
}

.ai-detail-panels-wide .ai-detail-panel.is-media-left {
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
}

.ai-detail-panels-wide .ai-detail-panel.is-media-right {
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
}

.ai-detail-panels-wide .ai-detail-panel.is-media-right figure {
  order: 2;
}

.ai-detail-panels-wide .ai-detail-panel.is-media-top,
.ai-detail-panels-wide .ai-detail-panel.is-media-bottom {
  grid-template-columns: 1fr;
}

.ai-detail-panels-wide .ai-detail-panel.is-media-top figure,
.ai-detail-panels-wide .ai-detail-panel.is-media-bottom figure {
  min-height: clamp(230px, 28vw, 340px);
}

.ai-detail-panels-wide .ai-detail-panel.is-media-bottom figure {
  order: 2;
}

.ai-detail-panels-wide .ai-detail-panel.is-media-bottom .ai-detail-panel-copy {
  order: 1;
}

.ai-detail-panels-wide .ai-detail-panel figure {
  min-height: 100%;
}

.ai-detail-panels-wide .ai-detail-panel.is-media-top figure,
.ai-detail-panels-wide .ai-detail-panel.is-media-bottom figure {
  height: clamp(230px, 28vw, 340px);
  min-height: 0;
}

.ai-detail-panels-wide .ai-detail-panel figure::after {
  background:
    radial-gradient(circle at 72% 26%, rgba(78, 205, 196, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(5, 6, 7, 0.16), rgba(5, 6, 7, 0.66)),
    linear-gradient(0deg, rgba(5, 6, 7, 0.62), transparent 64%);
}

.ai-detail-panels-wide .ai-detail-panel.is-media-right figure::after {
  background:
    radial-gradient(circle at 28% 28%, rgba(31, 122, 255, 0.22), transparent 34%),
    linear-gradient(270deg, rgba(5, 6, 7, 0.12), rgba(5, 6, 7, 0.68)),
    linear-gradient(0deg, rgba(5, 6, 7, 0.58), transparent 64%);
}

.ai-detail-panels-wide .ai-detail-panel.is-media-top figure::after {
  background:
    linear-gradient(0deg, rgba(5, 6, 7, 0.86), transparent 58%),
    radial-gradient(circle at 78% 20%, rgba(78, 205, 196, 0.18), transparent 34%);
}

.ai-detail-panels-wide .ai-detail-panel.is-media-bottom figure::after {
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.86), transparent 56%),
    radial-gradient(circle at 18% 78%, rgba(31, 122, 255, 0.18), transparent 34%);
}

.ai-detail-panels-wide .ai-detail-panel-copy {
  position: relative;
  z-index: 1;
}

.ai-detail-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(78, 205, 196, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 20%, rgba(78, 205, 196, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(31, 122, 255, 0.05)),
    rgba(8, 14, 17, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.ai-detail-panel[hidden] {
  display: none;
}

.ai-detail-panel figure {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.ai-detail-panel figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 50%, rgba(5, 6, 7, 0.72)),
    linear-gradient(0deg, rgba(5, 6, 7, 0.5), transparent 60%);
  pointer-events: none;
}

.ai-detail-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
}

.ai-detail-panel-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 50px);
}

.ai-detail-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ai-detail-panel-head .eyebrow {
  margin: 0;
}

.ai-detail-panel-head .btn {
  flex: 0 0 auto;
}

.ai-detail-panel-copy h3 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.04;
}

.ai-detail-panel-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(246, 248, 251, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.ai-click-item .ai-detail-panel {
  grid-template-columns: 1fr;
  border-color: rgba(78, 205, 196, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.13), rgba(78, 205, 196, 0.09)),
    rgba(8, 14, 17, 0.9);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  animation: aiDetailReveal 180ms ease both;
}

.ai-click-item .ai-detail-panel:hover {
  border-color: rgba(78, 205, 196, 0.42);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.15), rgba(78, 205, 196, 0.11)),
    rgba(8, 14, 17, 0.92);
  box-shadow: 0 24px 60px rgba(31, 122, 255, 0.12);
  transform: none;
}

.ai-click-item .ai-detail-panel figure {
  display: none;
}

.ai-click-item .ai-detail-panel figure::after {
  background:
    linear-gradient(0deg, rgba(5, 6, 7, 0.54), transparent 62%),
    linear-gradient(90deg, rgba(31, 122, 255, 0.12), transparent 52%, rgba(123, 216, 143, 0.1));
}

.ai-click-item .ai-detail-panel-copy {
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.ai-click-item .ai-detail-panel-copy .eyebrow {
  margin: 0;
  font-size: 11px;
  line-height: 1.25;
}

.ai-click-item .ai-detail-panel-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.14;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ai-click-item .ai-detail-panel-copy p {
  display: -webkit-box;
  overflow: hidden;
  max-width: none;
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.ai-click-item .ai-detail-facts,
.ai-click-item .ai-detail-highlight-list {
  gap: 7px;
}

.ai-click-item .ai-detail-facts span,
.ai-click-item .ai-detail-highlight-list span {
  min-height: 28px;
  padding: 0 8px;
  font-size: 10px;
  line-height: 1.25;
}

.ai-click-item .ai-detail-highlight-list {
  display: none;
}

.ai-click-item .ai-detail-panel-head {
  gap: 8px;
}

.ai-click-item .ai-detail-panel-head .btn {
  min-height: 30px;
  padding: 0 10px;
  font-size: 11px;
}

.ai-detail-highlight-list span i {
  color: var(--green);
}

@keyframes aiDetailReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.data-intelligence {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.74)),
    url("../images/curated/data-intelligence-hero.jpg") center / cover fixed;
}

.data-intelligence::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 14% 20%, rgba(31, 122, 255, 0.2), transparent 28%),
    radial-gradient(circle at 84% 74%, rgba(123, 216, 143, 0.16), transparent 30%);
  pointer-events: none;
}

.data-intelligence-grid,
.data-capability-grid {
  position: relative;
  z-index: 1;
}

.data-intelligence-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.data-intelligence-copy {
  max-width: 720px;
}

.data-intelligence-copy p {
  font-size: 18px;
}

.data-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.data-visual-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(78, 205, 196, 0.28);
  border-radius: 8px;
  background: rgba(8, 12, 13, 0.72);
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.44);
}

.data-visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.9;
}

.data-visual-panel div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(5, 8, 9, 0.76);
  backdrop-filter: blur(12px);
}

.data-visual-panel strong,
.data-visual-panel span {
  display: block;
}

.data-visual-panel strong {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 20px;
}

.data-visual-panel span {
  color: var(--muted);
}

.data-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.data-capability-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px 14px;
  align-content: start;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(78, 205, 196, 0.06)),
    rgba(12, 17, 18, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.data-capability-grid article:hover,
.data-capability-grid article:focus-within {
  border-color: rgba(78, 205, 196, 0.42);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.13), rgba(123, 216, 143, 0.08)),
    rgba(12, 17, 18, 0.86);
  box-shadow: 0 22px 60px rgba(31, 122, 255, 0.16);
}

.data-capability-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #061010;
  background: linear-gradient(135deg, #36a2ff, #54dcc5 55%, #7bd88f);
  font-size: 19px;
}

.data-capability-grid h3 {
  margin: 0;
  line-height: 1.18;
}

.data-capability-grid p {
  grid-column: 1 / -1;
  min-height: 76px;
  margin: 0;
  color: rgba(246, 248, 251, 0.74);
  line-height: 1.58;
}

.mini-grid,
.service-mosaic,
.industry-grid,
.logo-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.app-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.app-highlight-card {
  min-height: 260px;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(78, 205, 196, 0.22);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 88% 18%, rgba(123, 216, 143, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(31, 122, 255, 0.13), rgba(78, 205, 196, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

.app-highlight-card::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%);
  pointer-events: none;
  transition: opacity 200ms ease;
}

.app-highlight-card:hover::after,
.app-highlight-card:focus-within::after {
  opacity: 1;
}

.app-highlight-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: var(--logo-gradient);
  box-shadow: 0 14px 34px rgba(78, 205, 196, 0.22);
}

.app-highlight-icon i {
  font-size: 31px;
  line-height: 1;
}

.app-highlight-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.app-highlight-card h3 {
  font-size: clamp(23px, 2.2vw, 34px);
}

.app-highlight-card p {
  margin-bottom: 0;
}

.app-highlight-card a {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  grid-column: 2;
  border-radius: 999px;
  padding: 0 15px;
  color: #04110d;
  background: linear-gradient(135deg, #4ecdc4, #7bd88f);
  font-weight: 650;
  transition: background 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.app-highlight-card a:hover,
.app-highlight-card a:focus {
  background: linear-gradient(135deg, #7bd88f, #4ecdc4);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.18), 0 14px 30px rgba(78, 205, 196, 0.26);
  filter: saturate(1.08);
  outline: none;
}

.service-delivery-flow {
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 122, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #050607, #0d1518 58%, #050607);
}

.service-flow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.service-flow-copy p {
  color: rgba(246, 248, 251, 0.76);
  font-size: 18px;
}

.service-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-flow-steps article {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(31, 122, 255, 0.055)),
    rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-flow-steps article:hover {
  border-color: rgba(123, 216, 143, 0.46);
  background:
    linear-gradient(145deg, rgba(31, 122, 255, 0.14), rgba(78, 205, 196, 0.09)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 52px rgba(31, 122, 255, 0.13);
}

.service-flow-steps span {
  width: fit-content;
  border: 1px solid rgba(123, 216, 143, 0.3);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.service-flow-steps h3 {
  margin: 0;
  font-size: 22px;
}

.service-flow-steps p {
  margin: 0;
  color: rgba(246, 248, 251, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.application-showcase-section {
  background:
    radial-gradient(circle at 86% 20%, rgba(123, 216, 143, 0.14), transparent 30%),
    linear-gradient(135deg, #080b0f, #071114);
}

.application-showcase-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.application-showcase-left {
  display: grid;
  gap: 12px;
  align-content: start;
}

.application-showcase-media {
  position: relative;
  min-height: 408px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(78, 205, 196, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.4);
}

.application-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.application-showcase-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 18%, rgba(31, 122, 255, 0.18), transparent 28%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.78), transparent 54%);
  pointer-events: none;
}

.application-showcase-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(5, 9, 10, 0.76);
  backdrop-filter: blur(12px);
}

.application-showcase-media span,
.application-showcase-media strong {
  display: block;
}

.application-showcase-media span {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.application-showcase-media strong {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
}

.application-showcase-copy p {
  color: rgba(246, 248, 251, 0.76);
  font-size: 18px;
}

.application-showcase-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.application-showcase-point {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(78, 205, 196, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.application-showcase-point-feature {
  min-height: 80px;
}

.application-showcase-point-feature + .application-showcase-point-feature {
  /*margin-top: 58px;*/
}

.application-showcase-point i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--logo-gradient);
}

.application-showcase-point h3 {
  margin: 0 0 5px;
  font-size: 21px;
}

.application-showcase-point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.technology-stack {
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 122, 255, 0.14), transparent 30%),
    radial-gradient(circle at 90% 24%, rgba(78, 205, 196, 0.16), transparent 28%),
    #050607;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.technology-tile {
  min-height: 138px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(78, 205, 196, 0.055)),
    rgba(255, 255, 255, 0.045);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.technology-tile:hover {
  border-color: rgba(78, 205, 196, 0.44);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.13), rgba(78, 205, 196, 0.1)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 56px rgba(78, 205, 196, 0.1);
}

.technology-logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%),
    var(--logo-gradient);
  box-shadow: 0 14px 32px rgba(78, 205, 196, 0.18);
}

.technology-logo i {
  font-size: 26px;
  line-height: 1;
}

.technology-tile strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 18px;
}

.technology-tile p {
  margin: 0;
  font-size: 13px;
}

.mini-grid article,
.service-mosaic article,
.industry-box {
  padding: 22px;
}

.video-card,
.image-feature,
.ready-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.how-deliver {
  /*min-height: 620px;*/
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.72)),
    url("../images/curated/brainstorming-workshop-table.jpg") center / cover fixed;
}

.delivery-steps,
.flow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.clients-scroller {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.72)),
    url("../images/curated/team-fist-bump-collaboration.jpg") center / cover fixed;
}

.clients-scroller .section-head,
.clients-scroller .client-marquee {
  position: relative;
  z-index: 1;
}

.client-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(5, 8, 9, 0.46);
  backdrop-filter: blur(12px);
}

.client-marquee div {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.client-marquee span,
.logo-tile {
  min-width: 170px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
}

.client-marquee span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(246, 248, 251, 0.86);
  transition: color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.client-marquee span::before,
.client-marquee span::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.client-marquee span::before {
  inset: 8px;
  z-index: -1;
  border-radius: calc(var(--radius) - 3px);
  background:
    linear-gradient(120deg, transparent 0 24%, rgba(255, 255, 255, 0.22) 28%, transparent 34%),
    conic-gradient(from 140deg, rgba(31, 122, 255, 0.36), rgba(78, 205, 196, 0.28), rgba(123, 216, 143, 0.3), rgba(31, 122, 255, 0.36));
  opacity: 0;
  transform: translateX(-54%) skewX(-14deg);
  transition: opacity 240ms ease, transform 520ms cubic-bezier(.2, .9, .2, 1);
}

.client-marquee span::after {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(78, 205, 196, 0.56), transparent 28%, transparent 72%, rgba(31, 122, 255, 0.48)) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, rgba(31, 122, 255, 0.48), transparent 28%, transparent 72%, rgba(123, 216, 143, 0.52)) 0 100% / 100% 2px no-repeat;
  opacity: 0;
  transform: scaleX(0.62);
  transition: opacity 220ms ease, transform 280ms ease;
}

.client-marquee span:hover,
.client-marquee span:focus {
  border-color: rgba(78, 205, 196, 0.48);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 16px 38px rgba(78, 205, 196, 0.12);
  outline: none;
}

.client-marquee span:hover::before,
.client-marquee span:focus::before {
  opacity: 0.48;
  transform: translateX(54%) skewX(-14deg);
}

.client-marquee span:hover::after,
.client-marquee span:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ready-system {
  background:
    radial-gradient(circle at 20% 30%, rgba(31, 122, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #090b0f, #111419);
}

.ready-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.ready-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.blog-image,
.article-image {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
}

.blog-image time,
.article-image time {
  width: 58px;
  height: 58px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--logo-gradient);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.blog-card span,
.article-meta span {
  display: inline-flex;
  margin: 16px 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-panel {
  align-self: start;
  display: grid;
  gap: 10px;
}

.archive-panel a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
}

.archive-panel a:hover,
.archive-panel a.is-active {
  color: var(--text);
  background: rgba(78, 205, 196, 0.14);
}

.article-body {
  min-width: 0;
}

.blog-detail-layout .article-body {
  margin-top: -6%;
}

.article-body p {
  font-size: 18px;
}

.page-hero.blog-detail-hero {
  min-height: 60vh;
  padding: 10px 0 20px;
}

.page-hero.blog-detail-hero::before {
  opacity: 0.74;
  filter: saturate(1.18) contrast(1.1);
}

.page-hero.blog-detail-hero::after {
  background:
    radial-gradient(circle at 78% 22%, rgba(78, 205, 196, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.52), rgba(5, 6, 7, 0.86)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.22), #050607);
}

.blog-compact-hero-inner .eyebrow {
  flex: 0 0 auto;
  margin: 0;
  font-size: 10px;
  white-space: nowrap;
}

.blog-compact-hero-inner h1 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-detail-section {
  padding-top: 46px;
}

.article-title-block {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.article-title-block .article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.article-title-block .article-meta span {
  margin: 0;
}

.article-title-block .article-meta time {
  color: rgba(246, 248, 251, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.article-title-block h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
}

.article-title-block p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.article-image {
  height: clamp(280px, 44vw, 560px);
  margin: 22px 0 30px;
}

.blog-detail-section .article-image {
  margin-top: 0;
}

.article-share-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.source-box,
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.source-box {
  flex-wrap: nowrap;
}

.article-share-tools.is-share-only {
  grid-template-columns: 1fr;
}

.article-share-tools.is-share-only .share-row {
  justify-content: flex-end;
}

.share-row {
  position: relative;
  flex-wrap: nowrap;
  justify-content: flex-end;
  text-align: right;
}

.source-box a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--green);
  font-weight: 900;
}

.share-icons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
}

.share-icon {
  width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(78, 205, 196, 0.22);
  border-radius: 999px;
  padding: 0;
  color: rgba(246, 248, 251, 0.78);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.11), rgba(123, 216, 143, 0.08)),
    rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.share-icon i {
  font-size: 17px;
  line-height: 1;
}

.share-icon:hover,
.share-icon:focus {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 28px rgba(78, 205, 196, 0.15);
  outline: none;
  transform: translateY(-1px);
}

.share-icon.is-facebook:hover,
.share-icon.is-facebook:focus {
  color: #1877f2;
}

.share-icon.is-x:hover,
.share-icon.is-x:focus {
  color: #f6f8fb;
}

.share-icon.is-link:hover,
.share-icon.is-link:focus {
  color: var(--green);
}

.share-icon.is-instagram:hover,
.share-icon.is-instagram:focus {
  color: #e4405f;
}

.share-icon.is-youtube:hover,
.share-icon.is-youtube:focus {
  color: #ff0000;
}

.share-icon.is-google:hover,
.share-icon.is-google:focus {
  color: #4285f4;
}

.share-icon.is-linkedin:hover,
.share-icon.is-linkedin:focus {
  color: #0a66c2;
}

.share-icon.is-whatsapp:hover,
.share-icon.is-whatsapp:focus {
  color: #25d366;
}

.share-icon.is-copied {
  border-color: rgba(123, 216, 143, 0.52);
  color: var(--green);
}

.share-copy-status {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.comment-form {
  margin-top: 30px;
}

.industry-playbook {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.78)),
    url("../images/curated/client-partnership-teamwork.jpg") center / cover fixed;
}

.industry-box i {
  color: var(--green);
  font-size: 28px;
}

.industry-command-center {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 122, 255, 0.2), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(123, 216, 143, 0.16), transparent 32%),
    linear-gradient(135deg, #050607 0%, #0d1516 56%, #050607 100%);
}

.industry-command-center::after {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  content: "";
  background: linear-gradient(0deg, #050607, transparent);
  pointer-events: none;
}

.industry-command-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.industry-command-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: 1.02;
}

.industry-command-copy p,
.industry-gallery-head p {
  color: rgba(246, 248, 251, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

.industry-command-actions,
.industry-detail-playbook-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.industry-command-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.industry-command-stats span {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 7px;
  border-bottom: 1px solid rgba(78, 205, 196, 0.3);
  padding: 12px 0;
}

.industry-command-stats strong,
.industry-command-stats small {
  display: block;
}

.industry-command-stats strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.industry-command-stats small {
  color: rgba(246, 248, 251, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.industry-command-media {
  min-height: 570px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #101317;
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.42);
}

.industry-command-media img,
.industry-playbook-card-image img,
.industry-detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
  transition: transform 320ms ease;
}

.industry-command-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(5, 6, 7, 0.82), transparent 56%),
    linear-gradient(90deg, rgba(31, 122, 255, 0.2), transparent 44%, rgba(123, 216, 143, 0.14));
  pointer-events: none;
}

.industry-command-overlay {
  position: absolute;
  right: 22px;
  bottom: 26px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 7px;
}

.industry-command-overlay span,
.industry-playbook-card-copy span,
.industry-detail-hero-facts span,
.industry-detail-signal-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.industry-command-overlay strong {
  max-width: 620px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 34px);
  line-height: 1.02;
}

.industry-command-mini {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(310px, calc(100% - 36px));
}

.industry-command-mini a {
  min-height: 44px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 5px 13px 5px 6px;
  color: #fff;
  background: rgba(5, 8, 10, 0.68);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.industry-command-mini a:hover,
.industry-command-mini a:focus {
  border-color: rgba(123, 216, 143, 0.54);
  background: rgba(78, 205, 196, 0.14);
  transform: translateX(4px);
  outline: none;
}

.industry-command-mini i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06120f;
  background: var(--logo-gradient);
}

.industry-lens-section {
  background:
    linear-gradient(90deg, rgba(31, 122, 255, 0.08), transparent 38%, rgba(123, 216, 143, 0.08)),
    #050607;
}

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

.industry-lens-grid article,
.industry-detail-signal-grid article {
  min-height: 230px;
  display: grid;
  grid-template-rows: auto auto minmax(72px, auto) 1fr;
  align-content: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(78, 205, 196, 0.045)),
    rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.industry-lens-grid article:hover,
.industry-detail-signal-grid article:hover {
  border-color: rgba(78, 205, 196, 0.46);
  box-shadow: 0 22px 56px rgba(31, 122, 255, 0.14);
  transform: translateY(-4px);
}

.industry-lens-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.industry-lens-title i {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06120f;
  background: var(--logo-gradient);
  font-size: 20px;
}

.industry-lens-grid h3,
.industry-detail-signal-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.industry-lens-title h3 {
  margin: 0;
}

.industry-lens-grid p,
.industry-detail-signal-grid p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(246, 248, 251, 0.74);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.industry-detail-signal-grid small {
  align-self: end;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  color: rgba(246, 248, 251, 0.68);
  line-height: 1.5;
}

.industry-lens-grid {
  gap: 18px;
}

.industry-lens-grid .industry-lens-card {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-color: rgba(143, 229, 218, 0.18);
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(78, 205, 196, 0.11), rgba(31, 122, 255, 0.05) 48%, rgba(244, 198, 106, 0.08)),
    rgba(10, 16, 18, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.industry-lens-grid .industry-lens-card::before {
  content: "";
  position: absolute;
  inset: -45% -35%;
  z-index: -2;
  background:
    radial-gradient(circle at var(--lens-x, 14%) var(--lens-y, 18%), rgba(123, 216, 143, 0.32), transparent 24%),
    conic-gradient(from 130deg, transparent 0 28%, rgba(78, 205, 196, 0.2), transparent 48% 100%);
  opacity: 0;
  transform: rotate(14deg) scale(0.86);
  transition: opacity 260ms ease, transform 520ms ease;
}

.industry-lens-grid .industry-lens-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #26a8ff, #63d98f, transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 220ms ease, transform 420ms ease;
}

.industry-lens-grid .industry-lens-card:nth-child(2) {
  --lens-x: 84%;
  --lens-y: 18%;
}

.industry-lens-grid .industry-lens-card:nth-child(3) {
  --lens-x: 20%;
  --lens-y: 82%;
}

.industry-lens-grid .industry-lens-card:nth-child(4) {
  --lens-x: 78%;
  --lens-y: 76%;
}

.industry-lens-grid .industry-lens-card:hover {
  border-color: rgba(99, 217, 143, 0.62);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.14), rgba(78, 205, 196, 0.12) 52%, rgba(244, 198, 106, 0.1)),
    rgba(11, 22, 24, 0.86);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(99, 217, 143, 0.08),
    0 0 34px rgba(78, 205, 196, 0.16);
  transform: translateY(-8px);
}

.industry-lens-grid .industry-lens-card:hover::before {
  opacity: 1;
  transform: rotate(14deg) scale(1.08);
}

.industry-lens-grid .industry-lens-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.industry-lens-pulse {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(78, 205, 196, 0.22);
  border-radius: 24px;
  opacity: 0.32;
  transform: rotate(12deg);
  transition: opacity 220ms ease, transform 420ms ease, border-radius 220ms ease;
}

.industry-lens-grid .industry-lens-card:hover .industry-lens-pulse {
  border-radius: 50%;
  opacity: 0.72;
  transform: rotate(148deg) scale(1.18);
}

.industry-lens-grid .industry-lens-title {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.industry-lens-grid .industry-lens-title i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(38, 168, 255, 0.18);
  font-size: 22px;
  transition: border-radius 220ms ease, box-shadow 220ms ease, transform 360ms ease;
}

.industry-lens-grid .industry-lens-card:hover .industry-lens-title i {
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(99, 217, 143, 0.24);
  transform: rotate(-10deg) scale(1.08);
}

.industry-lens-title span {
  display: block;
  margin-bottom: 7px;
  color: #7bd88f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.industry-lens-grid h3 {
  max-width: none;
  margin: 0;
  font-size: clamp(27px, 2vw, 36px);
  line-height: 0.98;
}

.industry-lens-grid .industry-lens-card:nth-child(even) h3 {
  font-size: clamp(25px, 1.72vw, 32px);
}

.industry-lens-grid p {
  -webkit-line-clamp: 5;
  position: relative;
  z-index: 1;
  color: rgba(246, 248, 251, 0.8);
  font-size: clamp(17px, 1.18vw, 21px);
  font-weight: 400;
  line-height: 1.55;
}

.industry-lens-grid strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 22px;
  color: #eafef8;
  font-size: 13px;
  line-height: 1.2;
  opacity: 0.72;
  transform: translateY(6px);
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.industry-lens-grid strong::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--logo-gradient);
}

.industry-lens-grid .industry-lens-card:hover strong {
  color: #7bd88f;
  opacity: 1;
  transform: translateY(0);
}

.industry-playbook-gallery {
  background:
    radial-gradient(circle at 10% 8%, rgba(244, 198, 106, 0.12), transparent 30%),
    linear-gradient(180deg, #070a0d, #050607);
}

.industry-gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.56fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}

.industry-gallery-head h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.04;
}

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

.industry-playbook-card {
  min-width: 0;
  min-height: 500px;
  display: grid;
  grid-template-rows: 190px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.industry-playbook-card:hover,
.industry-playbook-card:focus {
  border-color: rgba(78, 205, 196, 0.48);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 74px rgba(31, 122, 255, 0.16);
  outline: none;
}

.industry-playbook-card:hover img,
.industry-playbook-card:focus img,
.industry-detail-hero-media:hover img {
  transform: scale(1.045);
}

.industry-playbook-card-image {
  min-height: 190px;
  overflow: hidden;
  background: #101317;
}

.industry-playbook-card-copy {
  display: grid;
  grid-template-rows: auto minmax(92px, auto) minmax(0, 1fr);
  align-content: stretch;
  gap: 12px;
  padding: 22px;
}

.industry-playbook-card-copy span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.industry-playbook-card-copy span i {
  font-size: 16px;
}

.industry-playbook-card-copy h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 25px;
  line-height: 1.12;
}

.industry-playbook-card-copy h3 i {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 18px;
}

.industry-playbook-card-copy p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 92px;
  margin: 0;
  color: rgba(246, 248, 251, 0.72);
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.industry-playbook-card-copy .industry-card-note {
  align-self: stretch;
  display: -webkit-box;
  overflow: hidden;
  border: 1px solid rgba(78, 205, 196, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding-top: 12px;
  padding: 14px;
  color: rgba(246, 248, 251, 0.7);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.08), rgba(78, 205, 196, 0.055)),
    rgba(255, 255, 255, 0.028);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.industry-playbook-card-copy strong {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.industry-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 126px 0 46px;
  background:
    radial-gradient(circle at 14% 18%, rgba(31, 122, 255, 0.2), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(78, 205, 196, 0.15), transparent 33%),
    linear-gradient(135deg, #050607, #10181b 56%, #050607);
}

.industry-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.industry-detail-hero-copy h1 {
  margin: 10px 0 18px;
  font-size: clamp(48px, 6.6vw, 78px);
  line-height: 1;
}

.industry-detail-hero-copy p {
  color: rgba(246, 248, 251, 0.76);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
}

.industry-detail-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.industry-detail-hero-facts span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(78, 205, 196, 0.28);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(78, 205, 196, 0.08);
}

.industry-detail-hero-media {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px 8px 42px 8px;
  background: #101317;
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.42);
}

.industry-detail-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(5, 6, 7, 0.78), transparent 58%),
    linear-gradient(90deg, rgba(31, 122, 255, 0.18), transparent 48%, rgba(123, 216, 143, 0.12));
  pointer-events: none;
}

.industry-detail-hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.industry-detail-hero-media figcaption span {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(5, 8, 10, 0.72);
  backdrop-filter: blur(14px);
}

.industry-detail-hero-media small,
.industry-detail-hero-media strong {
  display: block;
}

.industry-detail-hero-media small {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.industry-detail-hero-media strong {
  color: #fff;
  font-size: 16px;
}

.industry-detail-playbook {
  background:
    linear-gradient(90deg, rgba(31, 122, 255, 0.08), transparent 42%, rgba(123, 216, 143, 0.08)),
    #050607;
}

.industry-detail-playbook-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

.industry-detail-playbook-copy {
  display: grid;
  align-content: center;
  border-left: 3px solid rgba(78, 205, 196, 0.52);
  padding-left: clamp(22px, 3vw, 38px);
}

.industry-detail-playbook-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.05;
}

.industry-detail-playbook-copy p {
  color: rgba(246, 248, 251, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

.industry-detail-highlight-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.industry-detail-highlight-board article {
  min-height: 330px;
  display: grid;
  grid-template-rows: auto auto minmax(96px, auto) 1fr;
  align-content: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(78, 205, 196, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.industry-detail-highlight-board article:hover {
  border-color: rgba(78, 205, 196, 0.46);
  box-shadow: 0 22px 56px rgba(31, 122, 255, 0.14);
  transform: translateY(-4px);
}

.industry-detail-highlight-board i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: #06120f;
  background: var(--logo-gradient);
  font-size: 22px;
}

.industry-detail-highlight-board h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.08;
}

.industry-detail-highlight-board p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(246, 248, 251, 0.74);
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.industry-detail-highlight-board small {
  align-self: end;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  color: rgba(246, 248, 251, 0.68);
  line-height: 1.55;
}

.industry-detail-signal-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(244, 198, 106, 0.12), transparent 32%),
    #07090c;
}

.client-ecosystem-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  margin-bottom: 28px;
}

.client-ecosystem-copy,
.client-ecosystem-media {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(78, 205, 196, 0.04)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.26);
}

.client-ecosystem-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.client-ecosystem-copy h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 52px);
}

.client-ecosystem-copy p {
  margin-top: 14px;
  color: rgba(246, 248, 251, 0.74);
  font-size: 17px;
  line-height: 1.72;
}

.client-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.client-category-pills span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(246, 248, 251, 0.82);
  background: rgba(255, 255, 255, 0.065);
  font-size: 13px;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.client-category-pills span:hover {
  border-color: rgba(78, 205, 196, 0.42);
  color: #fff;
  background: rgba(78, 205, 196, 0.12);
}

.client-category-pills strong {
  color: var(--green);
  font-size: 12px;
}

.client-ecosystem-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.client-ecosystem-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.client-ecosystem-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.04), rgba(5, 6, 7, 0.76)),
    linear-gradient(90deg, rgba(31, 122, 255, 0.16), transparent 46%);
  pointer-events: none;
}

.client-stat-grid {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.client-stat-grid span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(5, 8, 9, 0.72);
  backdrop-filter: blur(10px);
}

.client-stat-grid strong {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.client-stat-grid small {
  color: rgba(246, 248, 251, 0.64);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.client-page .logo-grid {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  align-items: stretch;
  gap: 18px;
}

.client-logo-pager {
  display: grid;
  grid-template-columns: 1fr auto auto;
  justify-content: stretch;
  gap: 14px 8px;
  align-items: center;
}

.client-logo-pages {
  grid-column: 1 / -1;
  grid-row: 1;
  min-width: 0;
}

.client-page .client-logo-page {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.client-logo-page[hidden] {
  display: none;
}

.client-logo-arrow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-row: 2;
  width: auto;
  min-width: 76px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(78, 205, 196, 0.26);
  border-radius: 999px;
  padding: 0 10px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.16), rgba(78, 205, 196, 0.16)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.client-logo-arrow[data-client-logo-prev] {
  grid-column: 2;
}

.client-logo-arrow[data-client-logo-next] {
  grid-column: 3;
}

.client-logo-arrow::before {
  width: 18px;
  position: absolute;
  inset: -45% auto -45% -32px;
  z-index: -1;
  content: "";
  background: rgba(255, 255, 255, 0.6);
  filter: blur(2px);
  transform: rotate(18deg);
  transition: left 360ms ease;
}

.client-logo-arrow i {
  font-size: 14px;
}

.client-logo-arrow:hover,
.client-logo-arrow:focus {
  border-color: rgba(123, 216, 143, 0.58);
  color: #06120f;
  background: var(--logo-gradient);
  box-shadow: 0 12px 32px rgba(78, 205, 196, 0.22);
  outline: none;
  transform: translateY(-1px);
}

.client-logo-arrow:hover::before,
.client-logo-arrow:focus::before {
  left: calc(100% + 20px);
}

.client-logo-arrow:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: auto;
}

.client-logo-arrow:disabled:hover,
.client-logo-arrow:disabled:focus {
  border-color: rgba(78, 205, 196, 0.42);
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(78, 205, 196, 0.12), rgba(123, 216, 143, 0.1)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.08);
  transform: none;
}

.client-page .logo-tile {
  min-width: 0;
  min-height: 138px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  /*background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(78, 205, 196, 0.055)),
    rgba(255, 255, 255, 0.055);*/
  opacity: 0;
  transform: translateY(18px);
}

.client-page .logo-tile.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.client-page .logo-tile.is-visible:hover {
  border-color: rgba(78, 205, 196, 0.48);
  background:
    linear-gradient(145deg, rgba(31, 122, 255, 0.12), rgba(78, 205, 196, 0.1)),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 20px 54px rgba(31, 122, 255, 0.14);
  transform: translateY(-3px);
}

.client-logo-link {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.client-page .logo-tile img {
  /*width: min(160px, 90%);
  height: 76px;
  max-width: 160px;
  max-height: 76px;*/
  object-fit: contain;
  filter: saturate(1.08) contrast(1.04) brightness(1.08);
}

.client-page .logo-tile.is-initial-logo strong {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--logo-gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 12px 28px rgba(31, 122, 255, 0.18);
  font-size: 18px;
  line-height: 1;
}

.client-page .logo-tile.is-many-more strong {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  color: transparent;
  background: linear-gradient(135deg, #4ecdc4, #7bd88f 48%, #1f7aff);
  box-shadow: none;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
}

.client-page .logo-name {
  min-height: 38px;
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.client-page .logo-tile small {
  min-height: 14px;
  color: rgba(246, 248, 251, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .service-flow-layout,
  .application-showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .application-showcase-point-feature + .application-showcase-point-feature {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .service-flow-steps {
    grid-template-columns: 1fr;
  }

  .application-showcase-media,
  .application-showcase-media img {
    min-height: 360px;
  }

  .application-showcase-point {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .client-ecosystem-feature {
    grid-template-columns: 1fr;
  }

  .client-ecosystem-media,
  .client-ecosystem-media img {
    min-height: 320px;
  }
}

@media (max-width: 1180px) {
  .client-page .client-logo-page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .client-logo-pager {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .client-logo-arrow {
    min-width: 72px;
    min-height: 32px;
  }

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

@media (max-width: 620px) {
  .client-page .logo-grid,
  .client-page .client-logo-page {
    grid-template-columns: 1fr;
  }

  .client-page .logo-tile {
    min-height: 156px;
  }

  .client-stat-grid {
    grid-template-columns: 1fr;
  }

  .client-ecosystem-media,
  .client-ecosystem-media img {
    min-height: 500px;
  }
}

.contact-grid {
  align-items: stretch;
}

.support-copy-box {
  display: grid;
  align-content: center;
}

.support-copy-box i {
  color: var(--green);
  font-size: 46px;
}

.template-contact {
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 122, 255, 0.12), transparent 32%),
    radial-gradient(circle at 88% 28%, rgba(78, 205, 196, 0.1), transparent 34%),
    #050607;
}

.template-contact .contact-section {
  position: relative;
  overflow: hidden;
}

.template-contact .contact-section::before {
  position: absolute;
  inset: 8% -10% auto auto;
  width: 360px;
  height: 360px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 216, 143, 0.13), transparent 68%);
  pointer-events: none;
}

.template-contact .contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.contact-form-card {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 20px;
  padding: clamp(24px, 3vw, 38px);
  background:
    radial-gradient(circle at 88% 0%, rgba(78, 205, 196, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04)),
    rgba(15, 21, 24, 0.84);
}

.contact-form-card::before {
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  content: "";
  border-radius: 48% 52% 45% 55%;
  background: radial-gradient(circle, rgba(54, 162, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.contact-form-head,
.contact-form-focus,
.contact-form-fields,
.contact-submit-row {
  position: relative;
  z-index: 1;
}

.contact-form-head h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 50px);
}

.contact-form-head p {
  max-width: 720px;
  margin-bottom: 6px;
  color: rgba(246, 248, 251, 0.74);
  font-size: 17px;
}

.contact-form-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0px;
}

.contact-form-focus span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(78, 205, 196, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(246, 248, 251, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 800;
}

.contact-form-focus i {
  color: var(--green);
}

.contact-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.template-contact .contact-form-card label {
  gap: 0;
}

.template-contact .contact-form-card input,
.template-contact .contact-form-card textarea {
  border-radius: 10px;
  padding-inline: 18px;
}

.template-contact .contact-form-card input {
  min-height: 56px;
}

.template-contact .contact-form-card textarea {
  min-height: 154px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.contact-message-field {
  width: 100%;
  display: grid;
  margin: 0;
}

.contact-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 0;
}

.contact-submit-row span {
  color: rgba(246, 248, 251, 0.58);
  font-size: 13px;
}

.template-contact .support-copy-box {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-content: stretch;
  gap: 0;
  border-color: rgba(78, 205, 196, 0.2);
  padding: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(78, 205, 196, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(12, 17, 18, 0.78);
}

.template-contact .support-copy-box::before {
  display: none;
}

.template-contact .support-copy-box > * {
  position: relative;
  z-index: 1;
}

.support-copy-image {
  flex: 0 0 40%;
  min-height: 208px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.support-copy-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.template-contact .support-copy-box:hover .support-copy-image img {
  filter: saturate(1.18) contrast(1.07);
  transform: scale(1.035);
}

.support-copy-content {
  flex: 1 1 auto;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
}

.template-contact .support-copy-box h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
}

.template-contact .support-copy-box p {
  max-width: 470px;
  color: rgba(246, 248, 251, 0.78);
  font-size: 16px;
}

.template-contact .support-copy-box .btn {
  justify-self: start;
}

.contact-life-cta {
  position: relative;
  overflow: hidden;
  padding-top: 36px;
  background:
    radial-gradient(circle at 14% 24%, rgba(31, 122, 255, 0.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(123, 216, 143, 0.16), transparent 32%),
    linear-gradient(180deg, #050607, #081116 54%, #050607);
}

.contact-life-card {
  min-height: 430px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(78, 205, 196, 0.055)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.36);
}

.contact-life-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 68% 20%, rgba(123, 216, 143, 0.18), transparent 32%),
    linear-gradient(110deg, rgba(5, 6, 7, 0.2), transparent 54%);
  pointer-events: none;
}

.contact-life-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding: clamp(28px, 4.4vw, 58px);
}

.contact-life-copy h2 {
  max-width: 840px;
  margin-top: 10px;
  font-size: clamp(32px, 4.6vw, 62px);
}

.contact-life-copy p {
  max-width: 760px;
  color: rgba(246, 248, 251, 0.78);
  font-size: 17px;
  line-height: 1.72;
}

.contact-life-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-life-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.contact-life-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.54), rgba(5, 6, 7, 0.08)),
    radial-gradient(circle at 70% 20%, rgba(78, 205, 196, 0.18), transparent 34%);
  pointer-events: none;
}

.contact-life-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
  transition: transform 260ms ease, filter 260ms ease;
}

.contact-life-card:hover .contact-life-image img {
  filter: saturate(1.2) contrast(1.07);
  transform: scale(1.035);
}

.career-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--panel);
}

.career-openings-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(31, 122, 255, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(123, 216, 143, 0.12), transparent 28%),
    linear-gradient(180deg, #050607, #090d10);
}

.career-openings-section .section-head h2 {
  max-width: none;
}

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

.career-opening-card,
.career-openings-empty {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(78, 205, 196, 0.07)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.career-opening-card::before {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  right: -44px;
  top: -44px;
  border-radius: 50%;
  background: var(--logo-gradient);
  opacity: 0.16;
}

.career-opening-card:hover,
.career-opening-card:focus-within {
  border-color: rgba(78, 205, 196, 0.42);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.13), rgba(123, 216, 143, 0.12)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 62px rgba(31, 122, 255, 0.16);
  transform: translateY(-3px);
}

.career-opening-top,
.career-opening-meta,
.career-opening-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.career-opening-top {
  justify-content: space-between;
  margin-bottom: 16px;
}

.career-opening-top span,
.career-opening-top small,
.career-opening-meta span,
.career-opening-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(246, 248, 251, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 850;
}

.career-opening-card h3,
.career-openings-empty h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.12;
}

.career-opening-card p,
.career-openings-empty p {
  color: var(--muted);
}

.career-opening-tags {
  margin: 16px 0 18px;
}

.career-openings-empty {
  grid-column: 1 / -1;
  text-align: center;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.sitemap-list a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--panel);
}

.check-list {
  padding-left: 18px;
  color: var(--muted);
}

.faq-accordion {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.faq-accordion details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.08), rgba(123, 216, 143, 0.055)),
    rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-accordion details:hover,
.faq-accordion details[open] {
  border-color: rgba(123, 216, 143, 0.42);
  background:
    var(--logo-gradient-soft),
    rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.faq-accordion summary {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 17px 54px 17px 18px;
  color: var(--text);
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 16px;
  content: "+";
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--logo-gradient);
  font-weight: 950;
}

.faq-accordion details[open] summary::after {
  content: "-";
}

.faq-accordion p {
  margin: 0;
  padding: 0 18px 18px;
}

.faq-live-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 0 4px;
  text-align: center;
}

.faq-live-line span {
  display: inline-flex;
  align-items: center;
  color: #7bd88f;
  background: linear-gradient(90deg, #7bd88f, #35b7ff, #4ecdc4);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 850;
  -webkit-text-fill-color: transparent;
}

.faq-live-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(78, 205, 196, 0.36);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.28), rgba(123, 216, 143, 0.24)),
    rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-live-button i {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--logo-gradient);
}

.faq-live-button:hover,
.faq-live-button:focus {
  border-color: rgba(78, 205, 196, 0.62);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.38), rgba(123, 216, 143, 0.36)),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 30px rgba(31, 122, 255, 0.16);
  transform: translateY(-1px);
}

.policy-banners {
  background:
    radial-gradient(circle at 84% 12%, rgba(78, 205, 196, 0.14), transparent 30%),
    linear-gradient(135deg, #07090c, #11151a);
}

.policy-banners.is-faq-banner {
  padding: 0;
}

.policy-banner-grid {
  display: grid;
  gap: 18px;
}

.policy-banner-card {
  min-height: 300px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.08), rgba(78, 205, 196, 0.06)),
    rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.policy-banners.is-faq-banner .policy-banner-card {
  border-radius: 0;
}

.policy-banner-card::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(78, 205, 196, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 48%);
  pointer-events: none;
  transition: opacity 220ms ease;
}

.policy-banner-card:hover {
  border-color: rgba(78, 205, 196, 0.45);
  background:
    var(--logo-gradient-soft),
    rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 76px rgba(78, 205, 196, 0.13);
}

.policy-banner-card:hover::after {
  opacity: 1;
}

.policy-banner-image {
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.08), rgba(5, 6, 7, 0.34)),
    var(--banner-image) center / cover;
  transition: filter 220ms ease;
}

.policy-banner-card:hover .policy-banner-image {
  filter: saturate(1.14) contrast(1.06);
}

.policy-banner-copy {
  min-height: 300px;
  display: grid;
  align-content: center;
  padding: 28px;
}

.policy-banner-copy span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.policy-banner-copy h3 {
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 38px);
}

.policy-banner-copy a {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  margin-top: 8px;
  padding: 0 15px;
  color: #04110d;
  background: linear-gradient(135deg, #4ecdc4, #7bd88f);
  font-weight: 950;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.policy-banner-copy a:hover,
.policy-banner-copy a:focus {
  color: #03110d;
  background: linear-gradient(135deg, #7bd88f, #4ecdc4);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.18), 0 14px 30px rgba(78, 205, 196, 0.28);
  outline: none;
}

.modal {
  width: min(760px, 92vw);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  color: var(--text);
  background: transparent;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
}

.modal-card {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(78, 205, 196, 0.16), transparent 34%),
    #0b0e12;
  box-shadow: var(--shadow);
}

.modal-close {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hp-field,
.chat-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.is-hidden {
  display: none;
}

.cookie-banner {
  width: min(720px, 86vw);
  position: fixed;
  left: 7%;
  bottom: 18px;
  z-index: 130;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(9, 11, 14, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 28px;
  background: #07090c;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 32px;
}

.site-footer a,
.site-footer details {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--green);
}

.footer-title,
.site-footer strong {
  color: var(--text);
  font-weight: 950;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.admin-screen {
  min-height: 100vh;
  padding: 170px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(31, 122, 255, 0.14), transparent 32%),
    #050607;
}

.admin-card {
  width: min(460px, 86vw);
  display: grid;
  gap: 16px;
  margin-inline: auto;
}

.admin-dashboard,
.admin-form {
  display: grid;
  gap: 24px;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.admin-page-list {
  display: grid;
  gap: 12px;
}

.admin-page-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--panel);
}

.admin-page-list span,
.admin-note,
.form-error {
  color: var(--muted);
}

.form-error {
  border: 1px solid rgba(255, 107, 107, 0.35);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 107, 107, 0.1);
}

.form-error-summary {
  width: min(560px, 88vw);
  position: fixed;
  top: 108px;
  right: 6%;
  z-index: 135;
  border: 1px solid rgba(255, 107, 107, 0.34);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 107, 107, 0.16), rgba(78, 205, 196, 0.08)),
    rgba(11, 13, 16, 0.96);
  box-shadow: var(--shadow);
}

.form-error-summary strong {
  display: block;
  margin-bottom: 8px;
}

.form-error-summary ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 18px;
  color: rgba(246, 248, 251, 0.76);
  font-size: 13px;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #ff5b6a;
  box-shadow: none;
  outline: none;
}

input.is-invalid:focus,
select.is-invalid:focus,
textarea.is-invalid:focus {
  border-color: #ff5b6a;
  box-shadow: none;
  outline: none;
}

.text-danger.error-msg {
  display: none;
}

.required-star {
  flex: 0 0 auto;
  margin-left: 0;
  color: #ff9a9a;
  line-height: 1;
}

.center {
  text-align: center;
  margin-top: 28px;
}

@media (max-width: 1280px) {
  .menu-toggle {
    position: fixed;
    top: 48px;
    right: 7%;
    z-index: 130;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle i {
    display: none;
  }

  .menu-toggle::before {
    width: 18px;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff;
  }

  .primary-menu {
    position: absolute;
    top: 100%;
    right: 7%;
    left: 7%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(5, 6, 7, 0.97);
  }

  .primary-menu.is-open {
    display: flex;
  }

  .two-col,
  .ready-grid,
  .contact-grid,
  .blog-layout,
  .blog-detail-layout,
  .career-openings-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ai-text-callout {
    max-width: none;
    justify-self: start;
    padding-top: 0;
  }

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

  .ready-actions {
    flex-wrap: nowrap;
  }

  .template-contact .contact-grid,
  .contact-life-card {
    grid-template-columns: 1fr;
  }

  .template-contact .support-copy-box,
  .contact-life-image {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .wrap,
  .nav-shell {
    width: 88%;
  }

  .home-hero,
  .page-hero {
    min-height: 82vh;
    padding-top: 155px;
  }

  .policy-top-actions {
    padding-top: 18px;
  }

  .policy-top-actions-inner {
    width: 88%;
    border-radius: 8px;
    padding: 8px;
  }

  .policy-top-actions a {
    flex: 1 1 calc(50% - 8px);
    min-width: 124px;
    padding-inline: 12px;
  }

  .section {
    padding: 66px 0;
  }

  .form-grid,
  .contact-form-fields,
  .delivery-steps,
  .flow-grid,
  .market-strip,
  .newsletter-form div,
  .ready-actions,
  .policy-banner-card {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
  }

  .ready-actions .btn,
  .hero-actions .btn,
  .contact-submit-row .btn,
  .contact-life-actions .btn,
  .admin-actions .btn {
    width: 100%;
  }

  .contact-submit-row {
    align-items: stretch;
  }

  .template-contact .support-copy-box,
  .contact-life-image {
    min-height: 320px;
  }

  .cookie-banner {
    right: 7%;
    flex-direction: column;
    align-items: stretch;
  }

  .admin-head,
  .career-panel,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-policy-links {
    flex-wrap: wrap;
    white-space: normal;
  }

  .footer-legal {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .page-hero.blog-compact-hero,
  .page-hero.template-generic.blog-detail-compact-hero {
    min-height: 60px;
    height: 60px;
  }

  .page-hero.blog-compact-hero .blog-compact-hero-inner,
  .page-hero.template-generic.blog-detail-compact-hero .blog-compact-hero-inner {
    min-height: 60px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
  }

  .blog-compact-hero-inner h1 {
    width: 100%;
    font-size: 17px;
  }

  .faq-live-line {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-live-button {
    justify-content: center;
  }

  .app-highlight-card {
    grid-template-columns: 1fr;
  }

  .app-highlight-card a {
    grid-column: 1;
  }
}

/* Restored header, footer, market strip and cookie behavior */
.site-header {
  border-bottom: 0;
  padding-top: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  backdrop-filter: none;
}

.site-header .top-policy {
  width: 88%;
  max-width: 1376px;
  display: flex;
  margin: 0 auto 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 6px 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(78, 205, 196, 0.08)),
    rgba(5, 7, 7, 0.86);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
}

.site-header .top-policy a {
  color: rgba(246, 248, 251, 0.76);
}

.site-header .top-policy a:hover,
.site-header .top-policy a:focus,
.site-header .top-policy a.is-active {
  color: #fff;
  background: rgba(78, 205, 196, 0.13);
}

.nav-shell {
  width: 88%;
  max-width: 1376px;
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0 20px 0 26px;
  background:
    radial-gradient(circle at 98% 50%, rgba(78, 205, 196, 0.12), transparent 18%),
    rgba(5, 7, 7, 0.88);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.brand {
  width: 242px;
  min-width: 242px;
  position: relative;
  gap: 0;
}

.brand img {
  width: 230px;
  height: auto;
}

.brand-tooltip {
  width: max-content;
  max-width: min(300px, 64vw);
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(78, 205, 196, 0.09)),
    rgba(7, 10, 12, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, -50%) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.brand-tooltip strong,
.brand-tooltip small {
  display: block;
}

.brand-tooltip strong {
  font-size: 13px;
  line-height: 1.2;
}

.brand-tooltip small {
  margin-top: 3px;
  color: rgba(246, 248, 251, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.brand:hover .brand-tooltip,
.brand:focus-visible .brand-tooltip {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
  visibility: visible;
}

.primary-menu {
  gap: 13px;
  font-size: 14px;
  font-weight: 560;
}

.primary-menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(246, 248, 251, 0.78);
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@media (max-width: 1280px) and (min-width: 1181px) {
  .brand {
    width: 212px;
    min-width: 212px;
  }

  .brand img {
    width: 200px;
  }

  .primary-menu {
    gap: 9px;
    font-size: 13.5px;
  }

  .primary-menu a {
    padding-inline: 8px;
  }

  .primary-menu a.is-active:not(.is-contact) {
    padding-inline: 13px;
  }
}

.primary-menu a:hover,
.primary-menu a:focus {
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.primary-menu a.is-active:not(.is-contact) {
  padding-inline: 16px;
  color: #fff;
  background: rgba(75, 112, 116, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 30px rgba(78, 205, 196, 0.12);
}

.primary-menu a.is-contact {
  min-width: 74px;
  justify-content: center;
  padding-inline: 18px;
  color: #fff;
  background: linear-gradient(135deg, #1f9dff, #57dfb4);
  box-shadow: 0 14px 36px rgba(78, 205, 196, 0.32);
}

.primary-menu a.is-contact:hover,
.primary-menu a.is-contact:focus {
  box-shadow: 0 18px 48px rgba(78, 205, 196, 0.42);
}

.market-section {
  padding: 10px 0 72px;
  background: #050607;
}

.market-strip {
  max-width: 1376px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  /*background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    #101113;*/
}

.market-tile {
  min-height: 126px;
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
  padding: 22px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.012);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.market-tile:last-child {
  border-right: 0;
}

.market-tile::before,
.market-tile::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.market-tile::before {
  inset: 9px;
  z-index: 1;
  border: 1px solid transparent;
  border-radius: 6px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.018);
  transform: scale(0.975);
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.market-tile::after {
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(115deg, transparent 24%, rgba(78, 205, 196, 0.22), rgba(123, 216, 143, 0.15), transparent 72%);
  transform: translateX(-115%);
  transition: opacity 180ms ease, transform 520ms ease;
}

.market-tile strong {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.market-tile span {
  position: relative;
  z-index: 2;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(246, 248, 251, 0.67);
  background: transparent;
  font-size: 14px;
}

.market-tile:hover,
.market-tile:focus {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(78, 205, 196, 0.2), transparent 58%),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 40px rgba(78, 205, 196, 0.16);
  outline: none;
  transform: translateY(-2px);
}

.market-tile:hover::before,
.market-tile:focus::before,
.market-tile.is-highlight:hover::before,
.market-tile.is-highlight:focus::before {
  border-color: rgba(78, 205, 196, 0.54);
  opacity: 1;
  transform: scale(1);
}

.market-tile:hover::after,
.market-tile:focus::after,
.market-tile.is-highlight:hover::after,
.market-tile.is-highlight:focus::after {
  opacity: 1;
  transform: translateX(115%);
}

.market-tile.is-highlight:hover strong,
.market-tile.is-highlight:focus strong {
  text-shadow: 0 0 22px rgba(78, 205, 196, 0.56);
}

.cookie-banner[hidden],
.cookie-banner.is-hidden {
  display: none !important;
}

.cookie-banner {
  z-index: 180;
}

.site-footer {
  border-top: 0;
  padding: 16px 0 34px;
  background: #000;
}

.footer-shell {
  max-width: 1376px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(620px, 1.2fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: start;
}

.footer-brand {
  max-width: 520px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 620px;
  margin: 0;
  color: rgba(246, 248, 251, 0.76);
  font-size: 16px;
  line-height: 1.62;
}

.footer-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.footer-proof-row span {
  min-height: 86px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(78, 205, 196, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-proof-row span:hover {
  border-color: rgba(78, 205, 196, 0.38);
  background:
    radial-gradient(circle at 16% 18%, rgba(31, 122, 255, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(78, 205, 196, 0.13), rgba(123, 216, 143, 0.085)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 34px rgba(78, 205, 196, 0.13);
  transform: translateY(-2px);
}

.footer-proof-row strong,
.footer-proof-row small {
  display: block;
}

.footer-proof-row strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 17px;
}

.footer-proof-row small {
  color: rgba(246, 248, 251, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.footer-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-service-tags span {
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(246, 248, 251, 0.78);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.09), rgba(123, 216, 143, 0.06)),
    rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-service-tags span:hover {
  border-color: rgba(123, 216, 143, 0.45);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.2), rgba(78, 205, 196, 0.18), rgba(123, 216, 143, 0.16)),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 26px rgba(31, 122, 255, 0.12);
  transform: translateY(-1px) scale(1.02);
}

.footer-side {
  display: block;
}

.footer-action-card {
  min-height: 265px;
  display: grid;
  grid-template-columns: minmax(300px, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  /*margin-top: 48px;*/
  align-items: stretch;
  align-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(123, 216, 143, 0.14), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(31, 122, 255, 0.13), transparent 36%),
    linear-gradient(135deg, rgba(18, 31, 34, 0.9), rgba(12, 18, 21, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.newsletter-form {
  width: 100%;
  display: grid;
  gap: 12px;
  margin-top: 0;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.newsletter-form label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
}

.newsletter-form input[type="email"] {
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.075);
}

.newsletter-form .btn {
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 8px;
}

.newsletter-form p {
  margin: 0;
  color: rgba(246, 248, 251, 0.67);
  font-size: 13px;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
}

.site-footer .footer-social-link {
  width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(78, 205, 196, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.11), rgba(123, 216, 143, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-social-link i {
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 30px rgba(78, 205, 196, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.site-footer .footer-social-link:hover i,
.site-footer .footer-social-link:focus i {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: currentColor;
  transform: scale(1.08);
}

.site-footer .footer-social-link.is-facebook:hover,
.site-footer .footer-social-link.is-facebook:focus {
  color: #1877f2;
}

.site-footer .footer-social-link.is-instagram:hover,
.site-footer .footer-social-link.is-instagram:focus {
  color: #e4405f;
}

.site-footer .footer-social-link.is-google:hover,
.site-footer .footer-social-link.is-google:focus {
  color: #4285f4;
}

.site-footer .footer-social-link.is-youtube:hover,
.site-footer .footer-social-link.is-youtube:focus {
  color: #ff0000;
}

.site-footer .footer-social-link.is-whatsapp:hover,
.site-footer .footer-social-link.is-whatsapp:focus {
  color: #25d366;
}

.footer-action-panel {
  min-height: 202px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: 8px;
  align-content: center;
  align-items: end;
  overflow: hidden;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 22px;
  background: rgba(5, 9, 10, 0.72);
}

.footer-action-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-action-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 9, 10, 0.9), rgba(5, 9, 10, 0.76) 48%, rgba(5, 9, 10, 0.18)),
    radial-gradient(circle at 18% 22%, rgba(78, 205, 196, 0.16), transparent 38%);
  pointer-events: none;
}

.footer-action-media img {
  width: 100%;
  height: 100%;
  min-height: 202px;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.footer-action-panel:hover .footer-action-media img,
.footer-action-panel:focus-within .footer-action-media img {
  filter: saturate(1.16) contrast(1.06);
  transform: scale(1.04);
}

.footer-action-panel > span {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-action-panel strong {
  position: relative;
  z-index: 1;
  max-width: 330px;
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
}

.footer-action-panel > div:last-child {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.site-footer .footer-action-panel a,
.footer-action-panel button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-footer .footer-action-panel a:hover,
.site-footer .footer-action-panel a:focus,
.footer-action-panel button:hover,
.footer-action-panel button:focus {
  border-color: rgba(78, 205, 196, 0.42);
  color: #fff;
  background: rgba(78, 205, 196, 0.12);
  box-shadow: 0 14px 32px rgba(78, 205, 196, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.site-footer .footer-links a,
.footer-links button {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  border: 0;
  padding: 0;
  color: rgba(246, 248, 251, 0.76);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus,
.footer-links button:hover,
.footer-links button:focus {
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(246, 248, 251, 0.5);
  font-size: 13px;
  line-height: 1;
}

.footer-legal,
.footer-policy-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1;
}

.footer-legal {
  gap: 5px;
}

.footer-legal > * {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  line-height: 1;
}

.footer-policy-links {
  gap: 12px;
}

.footer-copy-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 248, 251, 0.56);
  line-height: 1;
}

.footer-legal a,
.footer-policy-links a {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

.footer-legal a:hover,
.footer-legal a:focus,
.footer-policy-links a:hover,
.footer-policy-links a:focus {
  filter: brightness(1.18) saturate(1.12);
  outline: none;
}

@media (min-width: 1181px) {
  .menu-toggle {
    display: none;
  }

  .primary-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 0;
    padding: 0;
    background: transparent;
  }
}

@media (max-width: 1180px) {
  .nav-shell {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .brand {
    width: auto;
    max-width: min(230px, calc(100% - 58px));
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand img {
    width: min(230px, calc(100vw - 150px));
    max-width: 100%;
  }

  .menu-toggle {
    position: static;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle i {
    display: none;
  }

  .menu-toggle::before {
    width: 18px;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff;
  }

  .primary-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: rgba(5, 6, 7, 0.98);
  }

  .primary-menu.is-open {
    display: flex;
  }

  .primary-menu a,
  .primary-menu a.is-contact {
    justify-content: center;
    padding-inline: 16px;
  }

  .market-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-tile:nth-child(3) {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-side {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .footer-action-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .footer-action-panel {
    min-height: 220px;
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px;
  }

  .footer-action-media img {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    width: 88%;
    min-height: 64px;
    gap: 10px;
    padding: 0 12px 0 16px;
  }

  .brand {
    width: auto;
    max-width: min(190px, calc(100% - 52px));
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand img {
    width: min(190px, calc(100vw - 144px));
    max-width: 100%;
  }

  .menu-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .market-section {
    padding-bottom: 50px;
  }

  .market-strip {
    width: 88%;
    grid-template-columns: 1fr;
  }

  .market-tile {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  }

  .market-tile:last-child {
    border-bottom: 0;
  }

  .footer-links {
    gap: 14px;
  }

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

  .footer-action-panel {
    grid-template-columns: 1fr;
  }

  .footer-action-media,
  .footer-action-panel > span,
  .footer-action-panel strong,
  .footer-action-panel > div:last-child {
    grid-column: 1;
  }

  .footer-action-media {
    grid-row: auto;
    order: -1;
  }

  .footer-action-panel > div:last-child {
    display: grid;
  }

  .site-footer .footer-action-panel a,
  .footer-action-panel button {
    justify-content: center;
  }
}

/* Static glass nav layer. Rollback: remove ipad-glass-nav from the nav element. */
.ipad-glass-nav {
  isolation: isolate;
  overflow: visible;
  cursor: default;
  touch-action: auto;
  user-select: auto;
  transform: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  will-change: backdrop-filter;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045) 42%, rgba(78, 205, 196, 0.12)),
    rgba(8, 12, 13, 0.44);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07),
    0 22px 70px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(26px) saturate(1.65);
  -webkit-backdrop-filter: blur(26px) saturate(1.65);
}

.ipad-glass-nav::before,
.ipad-glass-nav::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.ipad-glass-nav::before {
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.3), transparent 18% 76%, rgba(78, 205, 196, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 44%);
  opacity: 0.62;
}

.ipad-glass-nav::after {
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(255, 255, 255, 0.22) 46%, transparent 58% 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 9px);
  opacity: 0.42;
  transform: translateX(-34%);
  animation: ipadGlassSweep 7s ease-in-out infinite;
}

.ipad-glass-nav:hover,
.ipad-glass-nav:focus-within {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.055) 42%, rgba(78, 205, 196, 0.14)),
    rgba(8, 12, 13, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 26px 82px rgba(0, 0, 0, 0.5),
    0 18px 54px rgba(78, 205, 196, 0.12);
}

.ipad-glass-nav .brand,
.ipad-glass-nav .primary-menu,
.ipad-glass-nav .menu-toggle {
  position: relative;
  z-index: 1;
}

.ipad-glass-nav a,
.ipad-glass-nav button {
  cursor: pointer;
  user-select: auto;
}

.ipad-glass-nav .primary-menu a {
  color: rgba(246, 248, 251, 0.84);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.ipad-glass-nav .primary-menu a:hover,
.ipad-glass-nav .primary-menu a:focus {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.ipad-glass-nav .primary-menu a.is-active:not(.is-contact) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(78, 205, 196, 0.17)),
    rgba(48, 74, 78, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 32px rgba(0, 0, 0, 0.24);
}

.ipad-glass-nav .primary-menu a.is-contact {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, #1f9dff, #55e0b6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 18px 42px rgba(78, 205, 196, 0.36);
}

@keyframes ipadGlassSweep {
  0%, 28% {
    transform: translateX(-40%);
    opacity: 0.28;
  }

  48% {
    transform: translateX(36%);
    opacity: 0.46;
  }

  76%, 100% {
    transform: translateX(54%);
    opacity: 0.18;
  }
}

@media (max-width: 760px) {
  .ipad-glass-nav {
    cursor: default;
    touch-action: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ipad-glass-nav,
  .ipad-glass-nav::after,
  .ad-track,
  .topic-ad-shell.is-carousel .topic-ad-grid,
  .policy-banner-shell.is-carousel .policy-banner-grid {
    animation: none;
    transition: none;
  }
}

/* Market hover and blog archive polish. */
.blog-layout,
.blog-detail-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 34px;
  align-items: start;
}

.blog-layout .blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.blog-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
}

.blog-card h2 {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.18;
}

.blog-card h2 a {
  color: var(--text);
}

.blog-card p {
  margin: 0;
}

.archive-panel {
  position: sticky;
  top: 108px;
  max-height: calc(100vh - 132px);
  overflow-y: hidden;
  gap: 22px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(12, 17, 20, 0.78);
}

.archive-panel:hover,
.archive-panel:focus-within {
  overflow-y: auto;
}

.archive-panel::-webkit-scrollbar {
  width: 8px;
}

.archive-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(78, 205, 196, 0.34);
}

.archive-group {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.archive-panel h2 {
  margin: 0 0 2px;
  font-size: 22px;
  line-height: 1.15;
}

.archive-group > a {
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.archive-group > a span {
  flex: 0 0 auto;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.archive-panel .tag-cloud a {
  width: auto;
  min-height: 34px;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(78, 205, 196, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(246, 248, 251, 0.78);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  line-height: 1.2;
}

.archive-panel .tag-cloud a span {
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 6px;
  color: #fff;
  background: rgba(78, 205, 196, 0.3);
  font-size: 11px;
  font-weight: 900;
}

.archive-panel .tag-cloud a:hover,
.archive-panel .tag-cloud a.is-active {
  border-color: rgba(78, 205, 196, 0.46);
  color: #fff;
  background: rgba(78, 205, 196, 0.16);
}

.related-group > a {
  justify-content: flex-start;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .blog-layout,
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-layout .article-body {
    margin-top: 0;
  }

  .archive-panel {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
}

@media (max-width: 760px) {
  .blog-layout .blog-grid {
    grid-template-columns: 1fr;
  }

  .archive-panel {
    padding: 18px;
  }

  .article-share-tools {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .source-box,
  .share-row {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .share-icons {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .share-copy-status {
    right: auto;
    left: 0;
  }
}

/* Final responsive polish: static header, blog tags, comments and image ads. */
.ipad-glass-nav {
  cursor: default;
  touch-action: auto;
  transform: none;
}

.ipad-glass-nav .primary-menu {
  cursor: default;
  touch-action: auto;
  transform: none;
  transition: none;
  will-change: auto;
}

.page-hero::before {
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.04);
}

.card-image img,
.blog-image img,
.article-image img,
.ad-media img {
  image-rendering: auto;
}

.tag-cloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.archive-panel .tag-cloud a {
  width: auto;
  min-width: 0;
  max-width: 100%;
  min-height: 38px;
  flex: 0 1 auto;
  justify-content: center;
  padding: 8px 10px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-panel .tag-cloud a span {
  display: none;
}

.home-core-services {
  padding-block: 68px 46px;
}

.home-core-services .section-head {
  margin-bottom: 20px;
}

@media (min-width: 781px) {
  .home-core-services .section-head h2,
  #home-applications .section-head h2,
  #latest-blogs .section-head h2,
  .ai-split h2 {
    max-width: none;
  }
}

.home-core-services + .ai-split {
  padding-top: 56px;
}

.home-blog-carousel,
.home-service-carousel,
.home-application-carousel {
  --carousel-gutter: max(6%, calc((100% - 1400px) / 2));
  position: relative;
  width: 100%;
  max-width: none;
  display: block;
}

.home-blog-window,
.home-service-window,
.home-application-window {
  width: 88%;
  max-width: 1400px;
  min-width: 0;
  overflow: hidden;
  margin-inline: auto;
  padding: 4px 2px 8px;
}

.home-blog-track,
.home-service-track,
.home-application-track {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  padding: 4px 1px 18px;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.home-blog-track.is-dragging,
.home-service-track.is-dragging,
.home-application-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.home-blog-track.is-dragging a,
.home-service-track.is-dragging a,
.home-application-track.is-dragging a {
  pointer-events: none;
}

.home-blog-track::-webkit-scrollbar,
.home-service-track::-webkit-scrollbar,
.home-application-track::-webkit-scrollbar {
  display: none;
}

.home-service-carousel[data-service-loop] .home-service-track,
.home-application-carousel[data-service-loop] .home-application-track {
  overflow-x: hidden;
  scroll-snap-type: none;
  cursor: default;
  user-select: auto;
}

.home-blog-track .blog-card {
  flex: 0 0 calc((100% - 54px) / 4);
  scroll-snap-align: start;
}

.home-service-track .media-card,
.home-application-track .media-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-height: 0;
  scroll-snap-align: start;
}

.home-service-track .media-card {
  height: auto;
  grid-template-rows: auto auto;
}

.home-application-track .media-card {
  height: auto;
  grid-template-rows: auto auto;
}

.home-service-track .media-card:hover,
.home-service-track .media-card:focus,
.home-application-track .media-card:hover,
.home-application-track .media-card:focus {
  border-color: rgba(78, 205, 196, 0.5);
  background: rgba(255, 255, 255, 0.105);
  box-shadow: 0 22px 62px rgba(31, 122, 255, 0.16);
  outline: none;
  transform: none;
}

.home-service-track .media-card .card-image {
  height: 150px;
  min-height: 0;
  position: relative;
}

.home-application-track .media-card .card-image {
  height: 164px;
  min-height: 0;
}

.home-core-service-label {
  position: absolute;
  right: 12px;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  /*max-width: calc(100% - 24px);
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);*/
  border-radius: 999px;
  padding: 0 10px;
  color: #fff;
  /*background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.32), rgba(78, 205, 196, 0.22)),
    rgba(5, 8, 9, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);*/
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  /*backdrop-filter: blur(12px);*/
}

.home-service-track .media-card > div:last-child,
.home-application-track .media-card > div:last-child {
  min-height: 0;
}

.home-service-track .media-card h3,
.home-application-track .media-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-service-track .media-card p,
.home-application-track .media-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.home-blog-track .blog-card:hover,
.home-blog-track .blog-card:focus-within {
  border-color: rgba(78, 205, 196, 0.5);
  background: rgba(255, 255, 255, 0.105);
  box-shadow: 0 22px 62px rgba(31, 122, 255, 0.16);
  transform: none;
}

.home-blog-track .blog-card h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.18;
}

.home-blog-track .blog-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-blog-track .blog-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(78, 205, 196, 0.16)),
    rgba(8, 12, 13, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  transform: translateY(-50%);
}

.carousel-prev {
  left: max(12px, calc(var(--carousel-gutter) - 52px));
}

.carousel-next {
  right: max(12px, calc(var(--carousel-gutter) - 52px));
}

.carousel-arrow:hover,
.carousel-arrow:focus {
  border-color: rgba(78, 205, 196, 0.42);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.28), rgba(78, 205, 196, 0.34)),
    rgba(8, 12, 13, 0.88);
  outline: none;
  transform: translateY(-50%);
}

.carousel-arrow i {
  font-size: 24px;
}

.comment-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04)),
    rgba(25, 30, 32, 0.78);
}

.comment-form .eyebrow {
  margin-bottom: -4px;
}

.comment-form h2 {
  max-width: 760px;
  margin-bottom: -4px;
  font-size: clamp(25px, 2.5vw, 36px);
}

.comment-form p {
  max-width: 760px;
  margin-bottom: 4px;
  font-size: 17px;
}

.comment-form textarea {
  min-height: 134px;
  resize: none;
}

.comment-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -2px;
}

.comment-actions .btn {
  gap: 10px;
  min-width: 200px;
}

.blog-ad-slider {
  overflow: hidden;
  scroll-margin-top: 110px;
  padding: 56px 0 72px;
  background:
    radial-gradient(circle at 82% 16%, rgba(78, 205, 196, 0.14), transparent 30%),
    linear-gradient(180deg, #050607, #080b0e 48%, #050607),
    #050607;
}

.blog-ad-slider.about-next-step-slider {
  background: transparent;
}

.blog-ad-head {
  margin-bottom: 18px;
}

.blog-ad-head h2 {
  max-width: 780px;
  margin-top: 8px;
  font-size: clamp(28px, 3.5vw, 46px);
}

.about-next-step-slider .blog-ad-head h2 {
  max-width: none;
}

.ad-slider-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(78, 205, 196, 0.06)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.38);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.ad-slider-shell::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(78, 205, 196, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
  transition: opacity 220ms ease;
}

.ad-slider-shell:hover,
.ad-slider-shell:focus-within {
  border-color: rgba(78, 205, 196, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(78, 205, 196, 0.075)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 78px rgba(78, 205, 196, 0.12);
}

.ad-slider-shell:hover::after,
.ad-slider-shell:focus-within::after {
  opacity: 1;
}

.ad-track {
  display: flex;
  width: calc(var(--ad-slide-count, 6) * 100%);
  animation: adStepLoop 24s ease-in-out infinite;
}

.ad-slider-shell:hover .ad-track,
.ad-slider-shell:focus-within .ad-track {
  animation-play-state: paused;
}

.ad-track article {
  min-height: 320px;
  flex: 0 0 calc(100% / var(--ad-slide-count, 6));
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 42px);
  animation: none;
}

.ad-track article::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.62), rgba(5, 6, 7, 0.42)),
    var(--ad-image) center / cover;
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.01);
}

.ad-track article::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 80% 28%, rgba(78, 205, 196, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(31, 122, 255, 0.16), transparent 46%);
}

.ad-content {
  max-width: 720px;
}

.ad-content span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ad-content h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
}

.ad-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.36);
}

.ad-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transition: filter 220ms ease;
}

.ad-slider-shell:hover .ad-media img,
.ad-slider-shell:focus-within .ad-media img {
  filter: saturate(1.16) contrast(1.07);
}

.ad-track a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 18px;
  border-radius: 999px;
  padding: 0 16px;
  color: #05100e;
  background: linear-gradient(135deg, #4ecdc4, #7bd88f);
  box-shadow: 0 14px 34px rgba(78, 205, 196, 0.22);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, filter 180ms ease;
}

.ad-track a:hover,
.ad-track a:focus {
  color: #03110d;
  background: linear-gradient(135deg, #7bd88f, #4ecdc4);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.18), 0 16px 34px rgba(78, 205, 196, 0.3);
  filter: saturate(1.08);
  outline: none;
}

@keyframes adStepLoop {
  0%, 20% { transform: translateX(0); }
  28%, 45% { transform: translateX(calc(-100% / var(--ad-slide-count, 6))); }
  53%, 70% { transform: translateX(calc(-200% / var(--ad-slide-count, 6))); }
  78%, 100% { transform: translateX(-50%); }
}

.topic-ad-shell,
.policy-banner-shell {
  overflow: hidden;
}

.topic-ad-shell.is-carousel .topic-ad-grid,
.policy-banner-shell.is-carousel .policy-banner-grid {
  display: flex;
  gap: 0;
}

.topic-ad-shell.is-carousel .topic-ad-grid {
  width: 400%;
  animation: topicAdLoop 34s linear infinite;
}

.topic-ad-shell.is-carousel .topic-ad-card {
  flex: 0 0 calc(100% / 4);
}

.policy-banner-shell.is-carousel .policy-banner-grid {
  width: 1000%;
  animation: policyAdLoop 56s linear infinite;
}

.policy-banner-shell.is-carousel .policy-banner-card {
  flex: 0 0 calc(100% / 10);
}

.topic-ad-shell.is-carousel:hover .topic-ad-grid,
.topic-ad-shell.is-carousel:focus-within .topic-ad-grid,
.policy-banner-shell.is-carousel:hover .policy-banner-grid,
.policy-banner-shell.is-carousel:focus-within .policy-banner-grid {
  animation-play-state: paused;
}

@keyframes topicAdLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes policyAdLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
  .ipad-glass-nav .menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .ipad-glass-nav .primary-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    z-index: 4;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: rgba(5, 6, 7, 0.98);
    cursor: default;
    transform: none;
    transition: none;
  }

  .ipad-glass-nav .primary-menu.is-open {
    display: flex;
  }

  .service-area-grid .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .app-highlight-grid {
    grid-template-columns: 1fr;
  }

  .data-intelligence-grid {
    grid-template-columns: 1fr;
  }

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

  .home-blog-track .blog-card,
  .home-service-track .media-card,
  .home-application-track .media-card {
    flex-basis: calc((100% - 36px) / 3);
  }
}

@media (max-width: 920px) {
  .ad-track article {
    grid-template-columns: 1fr;
  }

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

  .ad-media {
    order: -1;
  }

  .home-blog-track .blog-card,
  .home-service-track .media-card,
  .home-application-track .media-card {
    flex-basis: calc((100% - 18px) / 2);
  }

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

@media (max-width: 640px) {
  .latest-blog-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-area-grid .card-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-carousel,
  .home-service-carousel,
  .home-application-carousel {
    display: block;
  }

  .home-blog-window,
  .home-service-window,
  .home-application-window {
    width: 88%;
    padding-inline: 46px;
  }

  .carousel-prev {
    left: 6%;
  }

  .carousel-next {
    right: 6%;
  }

  .home-blog-track .blog-card,
  .home-service-track .media-card,
  .home-application-track .media-card {
    flex-basis: 100%;
  }

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

  .data-visual-panel,
  .data-visual-panel img {
    min-height: 320px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .comment-actions {
    justify-content: stretch;
  }

  .comment-actions .btn {
    width: 100%;
  }

  .ad-track article {
    min-height: 0;
  }
}

/* Data Intelligence page */
.data-page-overview {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(57, 197, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(123, 216, 143, 0.14), transparent 32%),
    linear-gradient(180deg, #050607 0%, #081016 54%, #050607 100%);
}

.data-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.data-page-copy h2,
.data-lab-section h2 {
  font-size: clamp(34px, 5vw, 68px);
}

.data-page-copy p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.72;
}

.data-page-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.data-page-kpis span {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(78, 205, 196, 0.055)),
    rgba(255, 255, 255, 0.045);
}

.data-page-kpis strong {
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.data-page-kpis small {
  color: rgba(246, 248, 251, 0.7);
  font-weight: 820;
}

.data-dashboard-card {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #10171d;
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.44);
}

.data-dashboard-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
}

.data-dashboard-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(5, 6, 7, 0.72), transparent 58%),
    linear-gradient(90deg, rgba(31, 122, 255, 0.18), transparent 44%);
  pointer-events: none;
}

.dashboard-float {
  width: min(260px, calc(100% - 36px));
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(8, 12, 15, 0.82);
  backdrop-filter: blur(14px);
}

.dashboard-float strong,
.dashboard-float span {
  display: block;
}

.dashboard-float strong {
  color: #fff;
  font-size: 18px;
}

.dashboard-float span {
  margin-top: 4px;
  color: rgba(246, 248, 251, 0.68);
  font-size: 13px;
}

.dashboard-float-one {
  right: 18px;
  top: 18px;
}

.dashboard-float-two {
  left: 18px;
  bottom: 18px;
}

.data-capability-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 10%, rgba(78, 205, 196, 0.14), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(31, 122, 255, 0.14), transparent 30%),
    #050607;
}

.data-capability-section::before {
  width: min(780px, 70vw);
  height: min(780px, 70vw);
  position: absolute;
  right: -18%;
  top: 8%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(123, 216, 143, 0.12), transparent 68%);
  pointer-events: none;
}

.data-capability-section::after {
  position: fixed;
  inset: 0;
  z-index: 3;
  content: "";
  opacity: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(78, 205, 196, 0.13), transparent 30%),
    rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(2px);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.data-capability-section:has(.data-capability-cluster:hover)::after,
.data-capability-section:has(.data-capability-cluster:focus-within)::after {
  opacity: 1;
}

.data-capability-matrix {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.data-capability-cluster {
  position: relative;
  display: grid;
  grid-template-rows: 178px auto 1fr;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  overflow: visible;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(78, 205, 196, 0.052)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.data-capability-cluster::before {
  display: none;
}

.data-capability-hover-detail {
  position: absolute;
  top: 3%;
  left: calc(100% + 30px);
  z-index: 30;
  width: 94%;
  height: 94%;
  min-height: 0;
  display: grid;
  align-content: center;
  gap: 9px;
  overflow: visible;
  border: 1px solid rgba(78, 205, 196, 0.36);
  border-radius: 8px;
  padding: clamp(16px, 2vw, 23px);
  color: #f8fbff;
  background:
    radial-gradient(circle at 22% 18%, rgba(78, 205, 196, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(4, 7, 10, 0.98), rgba(12, 28, 30, 0.96));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.data-capability-hover-detail::before {
  width: 58px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: -57px;
  z-index: 2;
  content: "";
  /*background: linear-gradient(135deg, #36a2ff 0%, #4ecdc4 46%, #7bd88f 100%);*/
  clip-path: polygon(0 0, 34% 0, 100% 50%, 34% 100%, 0 100%, 64% 50%);
  filter:
    drop-shadow(0 0 10px rgba(78, 205, 196, 0.7))
    drop-shadow(0 0 22px rgba(54, 162, 255, 0.34));
  transform: translateY(-50%);
}

.data-capability-hover-detail::after {
  width: 28px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: -30px;
  z-index: 3;
  content: "";
  background: rgba(64, 180, 231);
  clip-path: polygon(0 0, 34% 0, 100% 50%, 34% 100%, 0 100%, 62% 50%);
  transform: translateY(-50%);
}

.data-capability-cluster:nth-child(3n) .data-capability-hover-detail {
  right: calc(100% + 30px);
  left: auto;
  transform: translateX(-10px);
}

.data-capability-cluster:nth-child(3n)::before {
  display: none;
}

.data-capability-cluster:nth-child(3n) .data-capability-hover-detail::before {
  right: -57px;
  left: auto;
  transform: translateY(-50%) scaleX(-1);
}

.data-capability-cluster:nth-child(3n) .data-capability-hover-detail::after {
  right: -30px;
  left: auto;
  transform: translateY(-50%) scaleX(-1);
}

.data-capability-hover-detail span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.data-capability-hover-detail h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.1;
}

.data-capability-hover-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.data-capability-hover-badges em {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: #06120f;
  background: linear-gradient(135deg, #4ecdc4, #7bd88f);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.data-capability-hover-badges em:nth-child(2) {
  background: linear-gradient(135deg, #36a2ff, #4ecdc4);
}

.data-capability-hover-badges em:nth-child(3) {
  background: linear-gradient(135deg, #f4c66a, #7bd88f);
}

.data-capability-hover-detail strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.45;
}

.data-capability-hover-detail p {
  max-width: 100%;
  margin: 0;
  color: rgba(248, 251, 255, 0.88);
  font-size: 13px;
  line-height: 1.5;
}

.data-capability-cluster:hover {
  z-index: 28;
  border-color: rgba(78, 205, 196, 0.46);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.13), rgba(123, 216, 143, 0.09)),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 28px 84px rgba(31, 122, 255, 0.14);
}

.data-capability-cluster:hover::before,
.data-capability-cluster:focus-within::before {
  opacity: 1;
}

.data-capability-matrix:has(.data-capability-cluster:hover) .data-capability-cluster:not(:hover),
.data-capability-matrix:has(.data-capability-cluster:focus-within) .data-capability-cluster:not(:focus-within) {
  opacity: 0.2;
  filter: saturate(0.58);
}

.data-capability-cluster:hover .data-capability-hover-detail,
.data-capability-cluster:focus .data-capability-hover-detail,
.data-capability-cluster:focus-within .data-capability-hover-detail {
  opacity: 1;
  transform: translateX(0);
}

.data-capability-image {
  min-height: 178px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.data-capability-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 40%, rgba(5, 6, 7, 0.36)),
    radial-gradient(circle at 82% 18%, rgba(78, 205, 196, 0.16), transparent 34%);
  pointer-events: none;
}

.data-capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
  border-radius: 8px;
}

.data-capability-cluster:hover .data-capability-image img {
  filter: saturate(1.16) contrast(1.06);
  /*transform: scale(1.035);*/
}

.data-capability-cluster-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0 22px;
}

.data-capability-cluster-head > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06120f;
  background: var(--logo-gradient);
  box-shadow: 0 18px 44px rgba(78, 205, 196, 0.22);
  font-size: 23px;
}

.data-capability-cluster-head span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-capability-cluster-head h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 28px);
}

.data-capability-cluster p {
  margin: 0;
  padding: 0 22px 24px;
  color: rgba(246, 248, 251, 0.74);
  font-size: 15px;
  line-height: 1.72;
}

.data-lab-section {
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.08), transparent 36%, rgba(123, 216, 143, 0.08)),
    #070b0f;
}

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

.data-lab-grid article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(78, 205, 196, 0.055)),
    rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.data-lab-grid article:hover {
  border-color: rgba(78, 205, 196, 0.44);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.14), rgba(123, 216, 143, 0.1)),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 22px 60px rgba(78, 205, 196, 0.13);
}

.data-lab-grid i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06120f;
  background: var(--logo-gradient);
  font-size: 22px;
}

.data-lab-grid h3 {
  font-size: 24px;
}

.data-lab-grid p {
  margin: 0;
  font-size: 15px;
}

.data-contact-ad {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  background:
    radial-gradient(circle at 12% 20%, rgba(31, 122, 255, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(78, 205, 196, 0.12), transparent 30%),
    linear-gradient(180deg, #070b0f, #050607);
}

.data-contact-ad-card {
  min-height: 390px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(78, 205, 196, 0.055)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.34);
}

.data-contact-ad-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 70% 20%, rgba(123, 216, 143, 0.16), transparent 32%),
    linear-gradient(110deg, rgba(5, 6, 7, 0.15), transparent 54%);
  pointer-events: none;
}

.data-contact-ad-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.data-contact-ad-copy h2 {
  max-width: 860px;
  margin-top: 10px;
  font-size: clamp(31px, 4vw, 56px);
}

.data-contact-ad-copy p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.72;
}

.data-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.data-contact-ad-image {
  min-height: 390px;
  position: relative;
  overflow: hidden;
}

.data-contact-ad-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.54), rgba(5, 6, 7, 0.08)),
    radial-gradient(circle at 72% 24%, rgba(78, 205, 196, 0.15), transparent 32%);
  pointer-events: none;
}

.data-contact-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

@media (max-width: 1180px) {
  .data-page-grid {
    grid-template-columns: 1fr;
  }

  .data-contact-ad-card {
    grid-template-columns: 1fr;
  }

  .data-contact-ad-image {
    order: -1;
    min-height: 300px;
  }

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

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

  .data-capability-cluster:nth-child(3n) .data-capability-hover-detail {
    right: auto;
    left: calc(100% + 30px);
    transform: translateX(10px);
  }

  .data-capability-cluster:nth-child(3n)::before {
    display: none;
  }

  .data-capability-cluster:nth-child(3n) .data-capability-hover-detail::before {
    right: auto;
    left: -57px;
    transform: translateY(-50%);
  }

  .data-capability-cluster:nth-child(3n) .data-capability-hover-detail::after {
    right: auto;
    left: -44px;
    transform: translateY(-50%);
  }

  .data-capability-cluster:nth-child(2n) .data-capability-hover-detail {
    right: calc(100% + 30px);
    left: auto;
    transform: translateX(-10px);
  }

  .data-capability-cluster:nth-child(2n)::before {
    display: none;
  }

  .data-capability-cluster:nth-child(2n) .data-capability-hover-detail::before {
    right: -57px;
    left: auto;
    transform: translateY(-50%) scaleX(-1);
  }

  .data-capability-cluster:nth-child(2n) .data-capability-hover-detail::after {
    right: -44px;
    left: auto;
    transform: translateY(-50%) scaleX(-1);
  }

  .data-capability-cluster:hover .data-capability-hover-detail,
  .data-capability-cluster:focus .data-capability-hover-detail,
  .data-capability-cluster:focus-within .data-capability-hover-detail {
    transform: translateX(0);
  }
}

@media (max-width: 640px) {
  .data-page-kpis,
  .data-lab-grid,
  .data-capability-matrix {
    grid-template-columns: 1fr;
  }

  .data-capability-cluster {
    min-height: 0;
    grid-template-rows: 150px auto 1fr;
  }

  .data-capability-image {
    min-height: 150px;
  }

  .data-capability-hover-detail,
  .data-capability-cluster:nth-child(2n) .data-capability-hover-detail,
  .data-capability-cluster:nth-child(3n) .data-capability-hover-detail {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0 18px 18px;
    opacity: 1;
    transform: none;
  }

  .data-capability-hover-detail::before,
  .data-capability-hover-detail::after,
  .data-capability-cluster::before,
  .data-capability-cluster:nth-child(2n) .data-capability-hover-detail::before,
  .data-capability-cluster:nth-child(2n) .data-capability-hover-detail::after,
  .data-capability-cluster:nth-child(3n) .data-capability-hover-detail::before,
  .data-capability-cluster:nth-child(3n) .data-capability-hover-detail::after {
    display: none;
  }

  .data-capability-section:has(.data-capability-cluster:hover)::after,
  .data-capability-section:has(.data-capability-cluster:focus-within)::after {
    opacity: 0;
  }

  .data-capability-matrix:has(.data-capability-cluster:hover) .data-capability-cluster:not(:hover),
  .data-capability-matrix:has(.data-capability-cluster:focus-within) .data-capability-cluster:not(:focus-within) {
    opacity: 1;
    filter: none;
  }

  .data-capability-cluster-head {
    grid-template-columns: 48px minmax(0, 1fr);
    padding-inline: 18px;
  }

  .data-capability-cluster-head > i {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .data-capability-cluster p {
    padding: 0 18px 20px;
  }

  .data-dashboard-card,
  .data-dashboard-card img {
    min-height: 360px;
  }

  .data-contact-ad {
    padding-top: 46px;
  }

  .data-contact-ad-image {
    min-height: 240px;
  }

  .data-contact-actions .btn {
    width: 100%;
  }
}

.admin-analytics {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.admin-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.admin-section-head small {
  color: var(--muted);
  font-weight: 900;
}

.admin-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
}

.analytics-stat-grid,
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

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

.analytics-stat-grid article,
.analytics-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.065);
}

.analytics-stat-grid span,
.journey-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.analytics-stat-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.analytics-panel h3 {
  margin-bottom: 14px;
}

.analytics-row,
.journey-row {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.analytics-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.analytics-row:first-of-type,
.journey-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.analytics-row span,
.journey-row p {
  min-width: 0;
  color: rgba(246, 248, 251, 0.78);
  overflow-wrap: anywhere;
}

.analytics-row strong {
  color: var(--green);
}

.journey-row strong {
  display: block;
  margin-bottom: 2px;
}

.journey-row p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 1020px) {
  .analytics-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .analytics-stat-grid {
    grid-template-columns: 1fr;
  }
}

.topic-ad-banners {
  padding: 58px 0 74px;
  background:
    radial-gradient(circle at 14% 18%, rgba(31, 122, 255, 0.14), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(123, 216, 143, 0.12), transparent 28%),
    #050607;
}

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

.topic-ad-card {
  min-height: 360px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.54fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.36);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.topic-ad-card::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 48%);
  pointer-events: none;
  transition: opacity 200ms ease;
}

.topic-ad-card:hover {
  border-color: rgba(78, 205, 196, 0.44);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 26px 82px rgba(78, 205, 196, 0.12);
}

.topic-ad-card:hover::after {
  opacity: 1;
}

.topic-ad-image {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.02), rgba(5, 6, 7, 0.42)),
    var(--topic-image) center / cover;
  filter: saturate(1.08) contrast(1.04);
  transition: filter 200ms ease;
}

.topic-ad-card:hover .topic-ad-image {
  filter: saturate(1.18) contrast(1.07);
}

.topic-ad-copy {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: clamp(22px, 3vw, 34px);
}

.topic-ad-copy span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.topic-ad-copy h2 {
  margin-top: 10px;
  font-size: clamp(30px, 3.15vw, 42px);
  line-height: 1.1;
}

.topic-ad-copy p {
  margin-bottom: 18px;
}

.topic-ad-copy a {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 15px;
  color: #04110d;
  background: linear-gradient(135deg, #4ecdc4, #7bd88f);
  font-weight: 950;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, filter 180ms ease;
}

.topic-ad-copy a:hover,
.topic-ad-copy a:focus {
  color: #03110d;
  background: linear-gradient(135deg, #7bd88f, #4ecdc4);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.18), 0 14px 30px rgba(78, 205, 196, 0.28);
  filter: saturate(1.08);
  outline: none;
}

.faq-life {
  background:
    radial-gradient(circle at 16% 10%, rgba(31, 122, 255, 0.12), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(78, 205, 196, 0.13), transparent 28%),
    #050607;
}

.faq-life-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}

.faq-life-copy,
.faq-help-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(14, 18, 22, 0.78);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.34);
}

.faq-life-copy {
  padding: clamp(24px, 4vw, 44px);
}

.faq-life-copy h2 {
  max-width: 980px;
  font-size: clamp(34px, 5vw, 68px);
}

.faq-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.faq-topic-grid article {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.faq-topic-grid i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #06130f;
  background: linear-gradient(135deg, #4ecdc4, #7bd88f);
  font-size: 18px;
}

.faq-topic-grid strong {
  font-size: 18px;
}

.faq-topic-grid span {
  color: var(--muted);
  font-size: 14px;
}

.faq-help-panel {
  display: grid;
  align-content: end;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.18), rgba(5, 6, 7, 0.9)),
    url("../images/curated/support-roadmap.jpg") center / cover;
}

.faq-help-panel span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.faq-help-panel h3 {
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 36px);
}

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

.faq-accordion details {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028)),
    rgba(15, 20, 24, 0.82);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-accordion details:hover,
.faq-accordion details[open] {
  border-color: rgba(78, 205, 196, 0.42);
  background:
    linear-gradient(135deg, rgba(78, 205, 196, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(15, 20, 24, 0.86);
  transform: translateY(-2px);
}

.faq-accordion summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  color: #fff;
  font-weight: 950;
}

.faq-accordion summary::after {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  content: "+";
  border-radius: 50%;
  color: #06130f;
  background: linear-gradient(135deg, #4ecdc4, #7bd88f);
}

.faq-accordion details[open] summary::after {
  content: "-";
}

.faq-accordion p {
  margin: 0;
  padding: 0 20px 20px;
}

@media (max-width: 1180px) {
  .ai-split-layout {
    grid-template-columns: 1fr;
  }

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

  .topic-ad-grid,
  .faq-life-grid,
  .faq-accordion {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .brand-tooltip {
    top: calc(100% + 8px);
    left: 0;
    max-width: calc(100vw - 12%);
    transform: translateY(-4px) scale(0.98);
  }

  .brand:hover .brand-tooltip,
  .brand:focus-visible .brand-tooltip {
    transform: translateY(0) scale(1);
  }

  .form-error-summary {
    right: 6%;
    left: 6%;
    width: auto;
    top: 92px;
  }

  .topic-ad-card {
    grid-template-columns: 1fr;
  }

  .ai-automation-grid {
    grid-template-columns: 1fr;
  }

  .topic-ad-image {
    min-height: 230px;
  }

  .faq-topic-grid {
    grid-template-columns: 1fr;
  }
}

/* Policy page top without hero imagery. */
.page-hero.policy-hero {
  min-height: 0;
  overflow: visible;
  align-items: center;
  padding: 148px 0 46px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(78, 205, 196, 0.08), transparent 34%),
    #050607;
}

.page-hero.policy-hero::before,
.page-hero.policy-hero::after {
  display: none;
}

.policy-hero .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.policy-hero .eyebrow {
  margin-bottom: 8px;
  color: rgba(246, 248, 251, 0.72);
  font-size: clamp(15px, 1.6vw, 20px);
}

.policy-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5.8vw, 76px);
}

.policy-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(246, 248, 251, 0.68);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
}

.policy-page-actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.policy-page-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: rgba(246, 248, 251, 0.78);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 850;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.policy-page-actions a:hover,
.policy-page-actions a:focus,
.policy-page-actions a.is-active {
  color: #fff;
  border-color: rgba(78, 205, 196, 0.34);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.18), rgba(78, 205, 196, 0.16)),
    rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  outline: none;
}

.policy-content-section {
  padding-top: 42px;
}

.policy-copy {
  max-width: 1020px;
}

@media (max-width: 920px) {
  .policy-page-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .page-hero.policy-hero {
    padding-top: 130px;
  }

  .policy-page-actions {
    grid-template-columns: 1fr;
  }
}

/* Career hero action and legal page split layout. */
.page-hero.template-careers {
  padding-bottom: 132px;
}

.career-hero-action {
  position: absolute;
  right: 6%;
  bottom: 56px;
  z-index: 2;
}

.career-apply-hero {
  min-height: 54px;
  padding-inline: 26px;
  font-size: 16px;
}

.policy-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.policy-copy {
  max-width: none;
}

.policy-image-panel {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.06), rgba(5, 6, 7, 0.92)),
    var(--policy-image) center / cover;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.34);
}

.policy-image-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.12), transparent 34%, rgba(0, 0, 0, 0.26));
  pointer-events: none;
}

.policy-image-panel span,
.policy-image-panel h3 {
  position: relative;
  z-index: 1;
}

.policy-image-panel span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.policy-image-panel h3 {
  margin: 8px 0 0;
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.05;
}

.policy-banner-card {
  grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
}

.policy-banner-image {
  min-height: 300px;
}

.policy-banner-copy {
  min-height: 300px;
  padding: clamp(26px, 4vw, 46px);
}

@media (max-width: 920px) {
  .career-hero-action {
    right: 6%;
    bottom: 34px;
  }

  .policy-content-grid,
  .policy-banner-card {
    grid-template-columns: 1fr;
  }

  .policy-image-panel,
  .policy-banner-image {
    min-height: 280px;
  }

}

@media (max-width: 560px) {
  .career-hero-action {
    right: 6%;
    bottom: 28px;
    left: 6%;
    width: auto;
  }

  .career-apply-hero {
    width: 100%;
  }
}

/* About page: editorial, visual and proof-led. */
.about-story-section {
  padding-top: 86px;
  background:
    linear-gradient(180deg, #050607 0%, #0a0d10 52%, #050607 100%);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.about-story-copy h2,
.about-growth-head h2,
.about-operating-head h2,
.about-proof-copy h2 {
  max-width: 980px;
  font-size: clamp(34px, 5vw, 38px);
}

.about-story-copy p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.72;
}

.about-signature {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  border-left: 3px solid #7bd88f;
  padding-left: 18px;
}

.about-signature span {
  color: #8bd7ff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-signature strong {
  max-width: 520px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
}

.about-media-board {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #101317;
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.42);
}

.about-media-board img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.about-media-board::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.08), transparent 46%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.86), transparent 58%);
  pointer-events: none;
}

.about-proof-panel {
  width: min(490px, calc(100% - 36px));
  position: absolute;
  right: 100px;
  bottom: -10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 10px 18px;
  background: rgba(8, 11, 14, 0.86);
  backdrop-filter: blur(16px);
}

.about-proof-panel span {
  color: #7bd88f;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-proof-panel strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
}

.about-journey-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 122, 255, 0.16), transparent 30%),
    radial-gradient(circle at 88% 42%, rgba(123, 216, 143, 0.12), transparent 32%),
    linear-gradient(180deg, #050607 0%, #0b1114 54%, #050607 100%);
}

.about-journey-section::before {
  position: absolute;
  top: 170px;
  bottom: 110px;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(78, 205, 196, 0.36), rgba(123, 216, 143, 0.28), transparent);
  pointer-events: none;
}

.about-journey-head {
  position: relative;
  z-index: 1;
  /*max-width: 980px;*/
  margin-bottom: 34px;
}

.about-journey-head h2 {
  font-size: clamp(34px, 5vw, 68px);
}

.about-journey-head p {
  max-width: 760px;
  font-size: 18px;
}

.about-journey-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding: 12px 0;
}

.about-journey-card {
  width: calc(50% - 94px);
  position: relative;
  min-height: 270px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(78, 205, 196, 0.05)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.24);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.about-journey-card:nth-child(even) {
  margin-left: auto;
}

.about-journey-card:nth-child(n + 2) {
  margin-top: -18px;
}

.about-journey-card:hover,
.about-journey-card:focus {
  z-index: 4;
  transform: translateY(-3px);
  border-color: rgba(78, 205, 196, 0.42);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.12), rgba(123, 216, 143, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 78px rgba(31, 122, 255, 0.14);
  outline: none;
}

.about-journey-card.is-special {
  min-height: 250px;
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.18), rgba(78, 205, 196, 0.09), rgba(123, 216, 143, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.about-journey-marker {
  width: 132px;
  position: absolute;
  top: 22px;
  left: calc(100% + 28px);
  display: grid;
  justify-items: center;
  gap: 12px;
  z-index: 2;
}

.about-journey-card:nth-child(even) .about-journey-marker {
  right: calc(100% + 28px);
  left: auto;
}

.about-journey-marker span {
  min-width: 112px;
  max-width: 132px;
  min-height: 42px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--green);
  background: rgba(5, 6, 7, 0.94);
  box-shadow: 0 0 0 6px rgba(5, 6, 7, 0.86), 0 14px 36px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.12;
}

.about-journey-marker span::after {
  width: 38px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: -38px;
  content: "";
  background: rgba(78, 205, 196, 0.48);
  transform: translateY(-50%);
  pointer-events: none;
}

.about-journey-card:nth-child(even) .about-journey-marker span::after {
  right: -38px;
  left: auto;
}

.about-journey-marker i {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06120f;
  background: var(--logo-gradient);
  box-shadow: 0 20px 48px rgba(78, 205, 196, 0.28);
  font-size: 30px;
  transform-style: preserve-3d;
  transition: transform 520ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.about-journey-card:hover .about-journey-marker i,
.about-journey-card:focus .about-journey-marker i {
  color: #06120f;
  background: #fff;
  box-shadow: 0 24px 60px rgba(139, 215, 255, 0.24);
  transform: rotateY(1turn) scale(1.08);
}

.about-journey-copy {
  min-width: 0;
}

.about-journey-copy strong {
  display: inline-flex;
  margin-bottom: 10px;
  color: #8bd7ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-journey-copy h3 {
  font-size: clamp(24px, 2.8vw, 38px);
}

.about-journey-copy p {
  margin: 0;
  font-size: 16px;
}

.about-journey-hover-image {
  width: 45vw;
  max-width: 620px;
  min-width: 380px;
  height: 180px;
  position: absolute;
  top: 46px;
  left: calc(100% + 150px);
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
  pointer-events: none;
  transform: translateY(10px) scale(0.985);
  transition: opacity 180ms ease, transform 220ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-journey-card:nth-child(even) .about-journey-hover-image {
  right: calc(100% + 150px);
  left: auto;
}

.about-journey-hover-image::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.45), transparent 20%, transparent 78%, rgba(5, 6, 7, 0.42)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.36), transparent 24%, transparent 72%, rgba(5, 6, 7, 0.42)),
    radial-gradient(circle at 82% 14%, rgba(78, 205, 196, 0.16), transparent 32%);
  pointer-events: none;
}

.about-journey-hover-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  border-radius: inherit;
  transition: transform 260ms ease, filter 260ms ease;
}

.about-journey-card:hover .about-journey-hover-image,
.about-journey-card:focus .about-journey-hover-image {
  opacity: 1;
  border-color: rgba(78, 205, 196, 0.34);
  box-shadow: 0 26px 76px rgba(78, 205, 196, 0.12), 0 22px 64px rgba(0, 0, 0, 0.34);
  transform: translateY(0) scale(1);
}

.about-journey-card:hover .about-journey-hover-image img,
.about-journey-card:focus .about-journey-hover-image img {
  filter: saturate(1.16) contrast(1.06);
  transform: scale(1.04);
}

.about-growth-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(244, 198, 106, 0.2), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(57, 197, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #050607 0%, #081117 42%, #050607 100%);
}

.about-growth-shell {
  display: grid;
  gap: 0;
}

.about-growth-head {
  max-width: min(780px, calc(100% - 370px));
  position: relative;
  z-index: 3;
  margin: 0 0 clamp(28px, 3.4vw, 46px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-growth-head h2 {
  margin: 0 0 14px;
  max-width: 780px;
  line-height: 1.08;
}

.about-growth-head p {
  max-width: 760px;
  margin: 0;
  color: rgba(246, 248, 251, 0.72);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
}

.about-growth-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(78, 205, 196, 0.04)),
    linear-gradient(180deg, rgba(14, 25, 31, 0.92), rgba(7, 11, 14, 0.96));
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.34);
}

.about-growth-board::before {
  position: absolute;
  right: -80px;
  top: -90px;
  width: 360px;
  height: 360px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(123, 216, 143, 0.2), transparent 64%);
  pointer-events: none;
}

.about-growth-board::after {
  position: absolute;
  left: -70px;
  bottom: -90px;
  width: 320px;
  height: 320px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 198, 106, 0.16), transparent 66%);
  pointer-events: none;
}

.about-growth-note {
  width: min(310px, 100%);
  position: absolute;
  top: 26px;
  right: clamp(24px, 4vw, 46px);
  z-index: 3;
  transform: rotate(-2deg);
  border: 1px solid rgba(244, 198, 106, 0.36);
  border-radius: 6px;
  padding: 18px;
  color: #151106;
  background: linear-gradient(145deg, #ffe376, #f5bd45);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.about-growth-note::before {
  width: 28px;
  height: 28px;
  position: absolute;
  top: -14px;
  left: 24px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff, transparent 18%),
    #1f272d;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.about-growth-note span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-growth-note strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.about-growth-steps {
  min-height: 620px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
  align-items: end;
  margin-top: clamp(-42px, -3vw, -22px);
  padding-top: 0;
}

.about-growth-steps::before {
  position: absolute;
  right: 4%;
  bottom: 238px;
  left: 4%;
  z-index: -1;
  height: 92px;
  content: "";
  border-top: 5px dashed rgba(139, 215, 255, 0.24);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.about-growth-step {
  --growth-rise: calc(var(--level) * -18px);
  min-width: 0;
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: calc(295px + (var(--level) * 30px));
  transform: translateY(calc((6 - var(--level)) * 12px + var(--growth-rise)));
  transition: transform 220ms ease;
}

.about-growth-visual {
  position: relative;
  min-height: calc(170px + (var(--level) * 18px));
  display: grid;
  align-items: end;
  overflow: visible;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  border-radius: 8px;
  padding: 12px 12px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 255, 250, 0.92));
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    inset 0 0 0 4px rgba(255, 255, 255, 0.45);
  transition: transform 240ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.about-growth-visual img {
  width: 100%;
  height: min(210px, calc(150px + (var(--level) * 12px)));
  display: block;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.02);
  transform-origin: bottom center;
  transition: transform 260ms ease;
}

.about-growth-year {
  position: absolute;
  top: 12px;
  left: 12px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 7px 12px;
  color: #07100f;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  font-size: 13px;
  font-weight: 950;
}

.about-growth-icon {
  width: 48px;
  height: 48px;
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07100f;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition: transform 360ms ease, color 180ms ease, background 180ms ease;
}

.about-growth-icon i {
  position: relative;
  z-index: 1;
  font-size: 22px;
}

.about-growth-copy {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), rgba(255, 255, 255, 0.05));
  transition: border-color 180ms ease, background 180ms ease;
}

.about-growth-copy::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: var(--accent);
}

.about-growth-copy strong {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 22px;
  font-weight: 950;
}

.about-growth-copy h3 {
  font-size: 19px;
}

.about-growth-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.about-growth-step:hover {
  transform: translateY(calc((6 - var(--level)) * 12px + var(--growth-rise) - 10px));
}

.about-growth-step:hover .about-growth-visual {
  filter: saturate(1.18) contrast(1.04);
  border-color: color-mix(in srgb, var(--accent) 74%, #fff 26%);
  box-shadow:
    0 34px 72px rgba(78, 205, 196, 0.2),
    inset 0 0 0 4px rgba(255, 255, 255, 0.58);
  transform: rotate(-1deg);
}

.about-growth-step:hover .about-growth-visual img {
  transform: scale(1.07) rotate(1deg);
}

.about-growth-step:hover .about-growth-icon {
  color: #fff;
  background: #07100f;
  transform: rotateY(1turn) scale(1.12);
}

.about-growth-step:hover .about-growth-copy {
  border-color: color-mix(in srgb, var(--accent) 46%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 24%, transparent), rgba(255, 255, 255, 0.07));
}

.about-operating-section {
  background:
    linear-gradient(90deg, rgba(31, 122, 255, 0.08), transparent 34%, rgba(123, 216, 143, 0.07)),
    #07090c;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.99)), url('http://localhost:8080/mss_laravel/images/curated/business-consulting.jpg')
}

.about-operating-head {
  margin-bottom: 28px;
}

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

.about-operating-card {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(7, 13, 16, 0.88), rgba(12, 24, 26, 0.78)),
    rgba(5, 6, 7, 0.68);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.about-operating-card:hover {
  border-color: rgba(78, 205, 196, 0.38);
  background:
    linear-gradient(135deg, rgba(10, 22, 26, 0.94), rgba(15, 35, 34, 0.84)),
    rgba(5, 6, 7, 0.74);
  box-shadow: 0 22px 60px rgba(78, 205, 196, 0.1);
}

.about-operating-card i {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #06130f;
  background: #7bd88f;
  font-size: 18px;
}

.about-operating-card:nth-child(2) i {
  background: #8bd7ff;
}

.about-operating-card:nth-child(3) i {
  background: #f4c66a;
}

.about-operating-card:nth-child(4) i {
  background: #4ecdc4;
}

.about-operating-card h3 {
  font-size: 23px;
}

.about-operating-card p {
  margin: 0;
  font-size: 15px;
}

.about-proof-section {
  background: #050607;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.about-proof-image {
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
}

.about-proof-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
}

.about-proof-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 26px;
}

.about-proof-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0 0 11px;
  color: rgba(246, 248, 251, 0.78);
  font-weight: 500;
}

.about-proof-list i {
  color: #7bd88f;
  line-height: 1.7;
}

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

@media (max-width: 1180px) {
  .about-story-grid,
  .about-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .about-journey-section::before {
    left: calc(6% + 24px);
  }

  .about-journey-card,
  .about-journey-card:nth-child(even),
  .about-journey-card.is-special {
    width: auto;
    margin-right: 0;
    margin-left: 118px;
  }

  .about-journey-marker,
  .about-journey-card:nth-child(even) .about-journey-marker {
    right: calc(100% + 28px);
    left: auto;
    width: 132px;
  }

  .about-journey-marker span::after,
  .about-journey-card:nth-child(even) .about-journey-marker span::after {
    right: -38px;
    left: auto;
  }

  .about-journey-hover-image {
    display: none;
  }

  .about-growth-steps {
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    padding-top: 0;
  }

  .about-growth-steps::before {
    bottom: 52%;
    transform: rotate(-3deg);
  }

  .about-growth-step {
    min-height: 0;
    transform: none;
  }

  .about-growth-step:hover {
    transform: translateY(-8px);
  }

  .about-growth-visual {
    min-height: calc(188px + (var(--level) * 8px));
  }

  .about-growth-visual img {
    height: 190px;
  }
}

@media (max-width: 640px) {
  .about-media-board,
  .about-media-board img,
  .about-proof-image,
  .about-proof-image img {
    min-height: 340px;
  }

  .about-proof-panel {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .about-operating-grid,
  .about-journey-grid {
    grid-template-columns: 1fr;
  }

  .about-journey-section::before {
    display: none;
  }

  .about-journey-card,
  .about-journey-card:nth-child(even),
  .about-journey-card.is-special {
    grid-column: auto;
    width: auto;
    margin-left: 0;
    margin-top: 0;
    min-height: 0;
  }

  .about-journey-marker {
    position: static;
    width: auto;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
    margin-bottom: 18px;
  }

  .about-journey-card:nth-child(even) .about-journey-marker {
    position: static;
    width: auto;
  }

  .about-journey-marker span::after,
  .about-journey-card:nth-child(even) .about-journey-marker span::after {
    display: none;
  }

  .about-journey-marker i {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }

  .about-growth-note {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-bottom: 24px;
  }

  .about-growth-head {
    max-width: none;
    margin-bottom: 24px;
  }

  .about-growth-steps {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 0;
  }

  .about-growth-steps::before {
    display: none;
  }

  .about-growth-step,
  .about-growth-step:hover {
    transform: none;
  }

  .about-growth-visual {
    min-height: 210px;
    transform: none;
  }

  .about-growth-visual img {
    height: 190px;
  }

  .about-growth-step:hover .about-growth-visual {
    transform: translateY(-6px);
  }

  .about-actions .btn {
    width: 100%;
  }
}

/* Category detail pages for services, applications, automation and industries. */
.card-link {
  height: 100%;
  color: inherit;
}

.mini-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.mini-card-link article {
  height: 100%;
}

.industry-box {
  color: inherit;
}

.technology-logo {
  position: relative;
  isolation: isolate;
}

.technology-logo i {
  position: absolute;
  opacity: 0.18;
  font-size: 31px;
}

.tech-abbr {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.category-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 0px;
  background:
    radial-gradient(circle at 8% 18%, rgba(31, 122, 255, 0.22), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(123, 216, 143, 0.16), transparent 32%),
    linear-gradient(135deg, #050607 0%, #0d1216 56%, #050607 100%);
}

.category-detail-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  content: "";
  background: linear-gradient(0deg, #050607, transparent);
  pointer-events: none;
}

.category-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.category-detail-copy h1 {
  max-width: 920px;
  font-size: clamp(46px, 7vw, 70px);
}

.category-detail-copy,
.category-detail-media,
.detail-story-panel,
.detail-highlight-grid,
.detail-tech-grid,
.detail-related-grid,
.technology-tile {
  min-width: 0;
}

.category-detail-copy p {
  max-width: 780px;
  font-size: clamp(17px, 1.6vw, 21px);
}

.category-detail-copy h1,
.category-detail-copy p,
.detail-story-title,
.detail-story-panel p,
.detail-highlight-grid h3,
.detail-highlight-grid p,
.detail-related-card h3,
.detail-related-card p {
  overflow-wrap: break-word;
}

.detail-back-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(246, 248, 251, 0.76);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.detail-back-link:hover,
.detail-back-link:focus {
  border-color: rgba(78, 205, 196, 0.42);
  color: #fff;
  background: rgba(78, 205, 196, 0.12);
  outline: none;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.category-detail-media {
  height: clamp(300px, 32vw, 400px);
  min-height: 0;
  max-height: 400px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.44);
}

.category-detail-media img,
.category-detail-media video {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 400px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.category-detail-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.04), rgba(5, 6, 7, 0.78)),
    linear-gradient(90deg, rgba(31, 122, 255, 0.16), transparent 42%, rgba(123, 216, 143, 0.12));
  pointer-events: none;
}

.category-proof-strip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.category-proof-strip span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(7, 10, 12, 0.78);
  backdrop-filter: blur(14px);
}

.category-proof-strip small,
.category-proof-strip strong {
  display: block;
}

.category-proof-strip small {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.category-proof-strip strong {
  margin-top: 3px;
  color: #fff;
  font-size: 16px;
}

.category-detail-story {
  padding: 16px 0 18px;
  background:
    linear-gradient(90deg, rgba(31, 122, 255, 0.08), transparent 36%, rgba(78, 205, 196, 0.07)),
    #050607;
}

.category-detail-story-grid {
  width: min(93%, 1400px);
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(24px, 3.3vw, 36px);
  align-items: stretch;
}

.detail-story-panel {
  min-height: 474px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: clamp(24px, 2.6vw, 28px);
  background:
    radial-gradient(circle at 14% 18%, rgba(78, 205, 196, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.3);
}

.detail-topic-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.detail-topic-facts span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(78, 205, 196, 0.28);
  border-radius: 999px;
  padding: 0 8px;
  color: #fff;
  background: rgba(78, 205, 196, 0.09);
  font-size: 16px;
  font-weight: 650;
}

.detail-story-visual {
  min-width: 0;
  display: grid;
  grid-template-rows: 200px auto;
  gap: 10px;
}

.detail-story-visual figure {
  min-height: 200px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #101317;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.28);
}

.detail-story-visual figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(5, 6, 7, 0.54), transparent 58%),
    linear-gradient(90deg, rgba(31, 122, 255, 0.12), transparent 44%, rgba(123, 216, 143, 0.1));
  pointer-events: none;
}

.detail-story-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transition: transform 320ms ease;
}

.detail-story-visual:hover img {
  transform: scale(1.035);
}

.category-detail-story-services .detail-story-panel {
  background:
    radial-gradient(circle at 14% 18%, rgba(57, 197, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.category-detail-story-applications .detail-story-panel {
  background:
    radial-gradient(circle at 18% 22%, rgba(244, 198, 106, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.category-detail-story-automation .detail-story-panel {
  background:
    radial-gradient(circle at 18% 18%, rgba(123, 216, 143, 0.17), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.category-detail-story-industries .detail-story-panel {
  background:
    radial-gradient(circle at 16% 20%, rgba(78, 205, 196, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.detail-story-title,
.category-flow-head h2,
.detail-tech-section h2,
.detail-related-section h2 {
  font-size: clamp(32px, 4.6vw, 62px);
}

.detail-story-title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: 1.08;
}

.detail-story-title-compact {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.detail-story-panel p {
  font-size: 17px;
  line-height: 1.6;
}

.detail-focus-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.detail-focus-lines span {
  display: block;
  border-left: 3px solid rgba(78, 205, 196, 0.72);
  padding: 8px 12px;
  color: rgba(246, 248, 251, 0.86);
  background:
    linear-gradient(90deg, rgba(78, 205, 196, 0.13), rgba(31, 122, 255, 0.055) 72%, transparent),
    rgba(255, 255, 255, 0.025);
  font-size: 15px;
  line-height: 1.55;
}

.detail-focus-lines strong {
  color: #fff;
  font-weight: 900;
}

.detail-story-panel .eyebrow {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
}

.detail-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
}

.detail-highlight-grid article {
  min-height: 264px;
  display: grid;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 15px 16px;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.detail-highlight-grid article:hover {
  border-color: rgba(78, 205, 196, 0.42);
  box-shadow: 0 22px 60px rgba(31, 122, 255, 0.14);
}

.detail-highlight-grid i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #06120f;
  background: var(--logo-gradient);
  font-size: 20px;
}

.detail-highlight-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.detail-highlight-grid p {
  margin: 0;
  color: rgba(246, 248, 251, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.application-detail-workspace {
  position: relative;
  overflow: hidden;
  padding: 34px 0 48px;
  background:
    radial-gradient(circle at 13% 20%, rgba(31, 122, 255, 0.2), transparent 30%),
    radial-gradient(circle at 90% 24%, rgba(123, 216, 143, 0.12), transparent 32%),
    linear-gradient(135deg, #06090d 0%, #10171a 54%, #050607 100%);
}

.application-workspace-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.application-workspace-media {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px 18px 44px 18px;
  background: #101317;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.application-workspace-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
}

.application-workspace-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(5, 6, 7, 0.84), transparent 54%),
    linear-gradient(120deg, rgba(31, 122, 255, 0.26), transparent 46%, rgba(78, 205, 196, 0.16));
  pointer-events: none;
}

.application-workspace-media figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 7px;
}

.application-workspace-media figcaption span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.application-workspace-media figcaption strong {
  max-width: 460px;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.04;
}

.application-workspace-copy {
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 20px;
  border-left: 1px solid rgba(78, 205, 196, 0.24);
  padding-left: clamp(22px, 3vw, 38px);
}

.application-workspace-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.02;
}

.application-workspace-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(246, 248, 251, 0.76);
  font-size: 18px;
  line-height: 1.74;
}

.application-workspace-copy .detail-focus-lines {
  max-width: 760px;
  margin-top: 0;
}

.application-workspace-facts,
.ai-detail-facts,
.ai-detail-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.application-workspace-facts span,
.ai-detail-facts span,
.ai-detail-highlight-list span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(78, 205, 196, 0.28);
  border-radius: 999px;
  padding: 0 13px;
  color: #fff;
  background: rgba(78, 205, 196, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.application-workspace-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.application-workspace-capabilities article {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(78, 205, 196, 0.045)),
    rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.application-workspace-capabilities article:hover {
  border-color: rgba(78, 205, 196, 0.42);
  box-shadow: 0 18px 52px rgba(31, 122, 255, 0.16);
  transform: translateY(-3px);
}

.application-workspace-capabilities i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06120f;
  background: var(--logo-gradient);
  font-size: 18px;
}

.application-workspace-capabilities h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.application-workspace-capabilities p {
  margin: 0;
  color: rgba(246, 248, 251, 0.72);
  font-size: 15px;
}

.category-detail-flow {
  background:
    linear-gradient(180deg, #0a0d11 0%, #050607 100%);
}

.category-flow-head {
  margin-bottom: 28px;
}

.detail-process-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.category-detail-story-automation + .category-detail-flow .detail-process-row {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.detail-process-row span,
.detail-process-row a {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(78, 205, 196, 0.05)),
    rgba(255, 255, 255, 0.045);
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.detail-process-row span:hover,
.detail-process-row a:hover,
.detail-process-row a:focus {
  border-color: rgba(123, 216, 143, 0.48);
  background:
    linear-gradient(135deg, rgba(31, 122, 255, 0.14), rgba(123, 216, 143, 0.1)),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 44px rgba(78, 205, 196, 0.12);
  outline: none;
}

.detail-process-row small {
  color: var(--green);
  font-size: 12px;
}

.detail-tech-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(78, 205, 196, 0.14), transparent 30%),
    #080b0f;
}

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

.detail-related-section {
  background:
    linear-gradient(135deg, #050607, #0e1317);
}

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

.detail-related-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: 210px auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.detail-related-card:hover,
.detail-related-card:focus {
  border-color: rgba(78, 205, 196, 0.44);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 24px 64px rgba(31, 122, 255, 0.14);
  outline: none;
}

.detail-related-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.detail-related-card:hover img,
.detail-related-card:focus img {
  transform: scale(1.04);
}

.detail-related-card span,
.detail-related-card h3,
.detail-related-card p {
  margin-inline: 22px;
}

.detail-related-card span {
  margin-top: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-related-card h3 {
  margin-top: 6px;
}

.detail-related-card p {
  margin-bottom: 22px;
}

@media (max-width: 1180px) {
  .industry-command-grid,
  .industry-detail-hero-grid,
  .category-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .industry-command-media,
  .industry-detail-hero-media {
    min-height: 440px;
  }

  .industry-lens-grid,
  .industry-detail-signal-grid,
  .industry-playbook-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-gallery-head,
  .industry-detail-playbook-grid {
    grid-template-columns: 1fr;
  }

  .industry-detail-playbook-copy {
    border-top: 3px solid rgba(78, 205, 196, 0.52);
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }

  .application-workspace-grid,
  .ai-page-click-head,
  .ai-detail-panel {
    grid-template-columns: 1fr;
  }

  .ai-detail-panels-wide .ai-detail-panel.is-media-left,
  .ai-detail-panels-wide .ai-detail-panel.is-media-right {
    grid-template-columns: 1fr;
  }

  .ai-detail-panels-wide .ai-detail-panel.is-media-right figure,
  .ai-detail-panels-wide .ai-detail-panel.is-media-bottom figure,
  .ai-detail-panels-wide .ai-detail-panel.is-media-bottom .ai-detail-panel-copy {
    order: initial;
  }

  .application-workspace-media,
  .application-workspace-copy,
  .ai-detail-panel figure {
    min-height: 360px;
  }

  .application-workspace-copy {
    border-left: 0;
    border-top: 1px solid rgba(78, 205, 196, 0.24);
    padding-top: 26px;
    padding-left: 0;
  }

  .application-workspace-capabilities {
    grid-template-columns: 1fr;
  }

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

  .detail-process-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .industry-detail-highlight-board {
    grid-template-columns: 1fr;
  }

  .category-detail-story-grid {
    grid-template-columns: 1fr;
  }

  .detail-highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .industry-command-center,
  .industry-detail-hero {
    padding-top: 80px;
  }

  .industry-command-stats,
  .industry-lens-grid,
  .industry-detail-signal-grid,
  .industry-playbook-cards,
  .industry-detail-hero-media figcaption {
    grid-template-columns: 1fr;
  }

  .industry-command-media,
  .industry-detail-hero-media {
    min-height: 360px;
  }

  .industry-command-mini {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 14px;
  }

  .industry-command-overlay {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    padding: 0 18px 18px;
  }

  .industry-command-media {
    display: grid;
    align-content: end;
  }

  .industry-command-media img {
    position: absolute;
    inset: 0;
  }

  .category-detail-hero {
    padding: 80px 0 0px;
  }

  .category-detail-media,
  .category-detail-media img,
  .category-detail-media video {
    height: clamp(280px, 58vw, 360px);
    min-height: 0;
  }

  .category-proof-strip,
  .detail-highlight-grid,
  .detail-tech-grid,
  .detail-related-grid,
  .ai-automation-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .industry-command-copy h2,
  .industry-gallery-head h2,
  .industry-detail-hero-copy h1,
  .industry-detail-playbook-copy h2 {
    overflow-wrap: break-word;
  }

  .industry-command-actions .btn,
  .industry-detail-playbook-actions .btn {
    width: 100%;
  }

  .industry-playbook-card {
    min-height: 0;
  }

  .industry-playbook-card-copy p {
    min-height: 0;
  }

  .category-detail-hero-grid {
    width: min(88%, calc(100vw - 56px));
    max-width: calc(100vw - 56px);
  }

  .category-detail-copy,
  .category-detail-copy p,
  .category-detail-media {
    width: 100%;
    max-width: 100%;
  }

  .category-detail-copy,
  .category-detail-copy p,
  .detail-actions {
    max-width: min(100%, 330px);
  }

  .category-detail-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .detail-actions .btn,
  .detail-back-link {
    width: 100%;
  }

  .category-proof-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -92px 12px 12px;
  }

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