/* MANTRA IDENTITY SOLUTIONS Ã¢â‚¬â€ Design System */
/* ── Local Poppins font declarations — no external requests ── */
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-Light.woff2') format('woff2'),
       url('/assets/fonts/Poppins/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-Regular.woff2') format('woff2'),
       url('/assets/fonts/Poppins/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-Medium.woff2') format('woff2'),
       url('/assets/fonts/Poppins/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-SemiBold.woff2') format('woff2'),
       url('/assets/fonts/Poppins/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-Bold.woff2') format('woff2'),
       url('/assets/fonts/Poppins/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-ExtraBold.woff2') format('woff2'),
       url('/assets/fonts/Poppins/Poppins-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-Black.woff2') format('woff2'),
       url('/assets/fonts/Poppins/Poppins-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

[id] {
  scroll-margin-top: 100px;
}

:root {
  --ink-900: #0a1628;
  --ink-800: #0f1f35;
  --ink-700: #162d4a;
  --ink-600: #1e3a5f;
  --ink-200: #c8d3e0;
  --ink-100: #e4eaf0;
  --ink-50: #f1f4f8;
  --surface: #f7f9fb;
  --surface-alt: #eef2f7;
  --surface-dark: #0a1628;
  --surface-blue-tint: #f0f4fa;
  --surface-blue-light: #e8eef8;
  --surface-blue-pale: #f5f7fc;
  --primary: #034694;
  --primary-hover: #0550a8;
  --primary-light: #0a5ec2;
  --primary-dark: #022f6b;
  --primary-muted: #e1eaf6;
  --primary-dim: rgba(3, 70, 148, 0.08);
  --primary-glow: rgba(3, 70, 148, 0.15);
  --accent: #034694;
  --accent-hover: #0550a8;
  --accent-muted: #e1eaf6;
  --accent-dim: rgba(3, 70, 148, 0.08);
  --text: #1a2332;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --text-muted: #64748b;
  --text-on-dark: #e2e8f0;
  --text-on-dark-muted: #a8b8cc;
  --font: 'Poppins', system-ui, sans-serif;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.10);

  --ma-metadata-limited: 10px;
  --ma-metadata: 12px;
  --ma-body-text: 14px;
  --ma-header: 18px;
  --ma-pane-header: 20px;
  --ma-section-title: 24px;
  --ma-page-title: 28px;
  --ma-greeting-title: 32px;
  --ma-hero-title: 42px;
  --ma-xl-numerics-limited: 68px;
  --ma-tag-black: #1a2332;
  --ma-grey130: #475569;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

* {
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

body {
  font-family: var(--font);
  font-size: var(--ma-body-text);
  line-height: 1.7;
  color: var(--text);
  background: var(--surface);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* Typography */
h1 {
  font-size: var(--ma-hero-title);
  line-height: 1.1;
  color: var(--ma-tag-black);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--ma-greeting-title);
  line-height: 1.2;
  color: var(--ma-tag-black);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--ma-header);
  color: var(--ma-tag-black);
  font-weight: 500;
}

h4 {
  font-size: var(--ma-body-text);
  color: var(--ma-tag-black);
  font-weight: 500;
}

h5 {
  font-size: var(--ma-body-text);
  color: var(--ma-tag-black);
  font-weight: 500;
}

h6 {
  font-size: var(--ma-metadata);
  color: var(--ma-tag-black);
  font-weight: 500;
}

p {
  font-size: var(--ma-body-text);
  color: var(--ma-grey130);
  font-weight: 400;
  max-width: 68ch;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 400ms var(--ease-quart);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 600ms var(--ease-quart), height 600ms var(--ease-quart);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.35);
}

.btn-ghost {
  border: 1.5px solid var(--ink-200);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-white {
  background: #f7f9fb;
  color: var(--ink-900);
}

.btn-white:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 400ms var(--ease-quart);
}

.navbar.scrolled {
  background: rgba(247, 249, 251, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.navbar-logo .logo-mark {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar-logo .logo-mark img {
  height: 32px;
  width: auto;
  display: block;
}

.navbar-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.navbar.scrolled .navbar-logo {
  color: var(--text);
}

/* Logo swap: white logo on dark hero, normal logo on scroll */
.navbar-logo .logo-default {
  display: block;
  transition: opacity 300ms var(--ease-quart);
}

.navbar-logo .logo-scrolled {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 300ms var(--ease-quart);
}

.navbar.scrolled .logo-default {
  opacity: 0;
  pointer-events: none;
}

.navbar.scrolled .logo-scrolled {
  opacity: 1;
  pointer-events: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex: 1;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-cta {
  flex: 0 0 200px;
  display: flex;
  justify-content: flex-end;
}

.nav-link {
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: var(--text-on-dark);
  position: relative;
  transition: color 200ms ease, transform 200ms ease;
  text-decoration: none;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 300ms var(--ease-quart);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--text-on-dark);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-link:hover {
  color: var(--text);
}

.nav-link-arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 200ms;
  font-size: var(--ma-metadata);
}

.nav-link:hover .nav-link-arrow {
  transform: rotate(180deg);
}

.nav-cta .btn-primary {
  padding: 0.625rem 1.5rem;
  font-size: var(--ma-body-text);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 820px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--ink-100);
  box-shadow: 0 12px 40px rgba(10,22,40,0.13), 0 2px 8px rgba(10,22,40,0.06);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  pointer-events: none;
  overflow: visible;
  margin-top: 0;
}

/* Invisible bridge fills the gap between nav link and menu so hover isn't lost */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

.nav-link-has-menu {
  position: static;
}

.nav-link-has-menu:hover .mega-menu,
.nav-link-has-menu.mm-hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mega-menu-col h4 {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.mega-menu-col a {
  display: block;
  padding: 0.375rem 0;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  transition: color 200ms;
}

.mega-menu-col a:hover {
  color: var(--accent);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-on-dark);
  transition: all 300ms var(--ease-quart);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text);
}

/* ============ VALUE PROPOSITION ============ */
.value-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.value-header {
  text-align: center;
  margin-bottom: 4rem;
}

.value-header h2 {
  margin-bottom: 1rem;
}

.value-header p {
  color: var(--text-secondary);
  font-size: var(--ma-body-text);
  margin: 0 auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-item {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  transition: all 400ms var(--ease-quart);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(3, 70, 148, 0.05), transparent);
  transition: left 600ms var(--ease-quart);
}

.value-item:hover::before {
  left: 100%;
}

.value-item:hover {
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.value-item p {
  color: var(--text-secondary);
  font-size: var(--ma-body-text);
}

/* ============ COMPANY INTRO ============ */
.intro-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--surface-alt);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.intro-text p strong {
  color: var(--accent);
  font-weight: 700;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-block {
  padding: 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
}

.stat-number {
  font-size: var(--ma-greeting-title);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: var(--ma-metadata);
  color: var(--text-muted);
  font-weight: 500;
}

/* ============ SOLUTIONS ============ */
.solutions-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: linear-gradient(180deg, #070e1a 0%, var(--ink-900) 40%, #0c1a2e 100%);
  color: var(--text-on-dark);
}

.solutions-header {
  margin-bottom: 4rem;
  max-width: 560px;
}

.solutions-header h2 {
  color: #e8eef6;
  margin-bottom: 1rem;
}

.solutions-header p {
  color: var(--text-on-dark-muted);
}

.solution-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
  transition: all 400ms var(--ease-quart);
}

.solution-card:hover {
  border-color: rgba(3, 70, 148, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.solution-card:last-child {
  margin-bottom: 0;
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.solution-tag-dot {
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
}

.solution-info h3 {
  font-size: var(--ma-pane-header);
  color: #e8eef6;
  margin-bottom: 0.75rem;
}

.solution-info p {
  color: rgba(160, 190, 230, 0.65);
  font-size: var(--ma-body-text);
  margin-bottom: 1.5rem;
}

.solution-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.solution-link {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #60a5fa;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 200ms, color 200ms;
}

.solution-link:hover {
  gap: 0.5rem;
  color: #93c5fd;
}

.solution-link svg {
  width: 14px;
  height: 14px;
}

.solution-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
}

.solution-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.solution-card:nth-child(even) .solution-info {
  order: 2;
}

.solution-card:nth-child(even) .solution-visual {
  order: 1;
}

/* ============ SECTORS (tabbed home layout) ============ */
.sectors-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: linear-gradient(180deg, #070e1a 0%, var(--ink-900) 40%, #0c1a2e 100%);
  color: var(--text-on-dark);
}

.sectors-header {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.sectors-eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.sectors-header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #e8eef6;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sectors-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 3rem;
}

.sector-tab {
  font-family: var(--font);
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: rgba(160, 190, 230, 0.55);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: color 200ms, border-color 200ms;
  margin-bottom: -1px;
}

.sector-tab:hover {
  color: rgba(160, 190, 230, 0.85);
}

.sector-tab.active {
  color: #e8eef6;
  border-bottom-color: #3b82f6;
}

.sectors-body {
  position: relative;
  overflow: hidden;
}

.sector-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
  pointer-events: none;
}

.sector-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.sector-panel__content h3 {
  font-size: var(--ma-pane-header);
  font-weight: 500;
  color: #e8eef6;
  margin-bottom: 0.75rem;
}

.sector-panel__content p {
  font-size: var(--ma-body-text);
  color: rgba(160, 190, 230, 0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sector-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.sector-bullets li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--ma-body-text);
  color: rgba(160, 190, 230, 0.75);
  line-height: 1.8;
}

.sector-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3b82f6;
}

.sector-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: #60a5fa;
  transition: color 200ms, gap 200ms;
}

.sector-cta:hover {
  color: #93c5fd;
  gap: 0.75rem;
}

.sector-cta svg {
  width: 14px;
  height: 14px;
}

.sector-panel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-panel__visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .sector-panel.active {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sectors-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sector-tab {
    white-space: nowrap;
    padding: 0.75rem 1rem;
  }
}

/* ============ PRODUCTS ============ */
.products-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--surface-alt);
}

.products-header {
  margin-bottom: 3.5rem;
}

.products-header h2 {
  margin-bottom: 0.75rem;
}

.products-header p {
  color: var(--text-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  padding: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  transition: all 400ms var(--ease-quart);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-quart);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card:hover {
  border-color: rgba(0, 196, 180, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 2rem 1.25rem;
}

.product-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.product-tag {
  display: inline-block;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  margin: 0 2rem 0.75rem;
  width: fit-content;
}

.product-card h3 {
  font-size: var(--ma-header);
  margin-bottom: 0.5rem;
  padding: 0 2rem;
}

.product-card p {
  color: var(--text-secondary);
  font-size: var(--ma-body-text);
  margin-bottom: 1.25rem;
  padding: 0 2rem;
  flex: 1;
}

.product-card-link {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 200ms;
  padding: 0 2rem 2rem;
}

.product-card-link:hover {
  gap: 0.5rem;
}

/* ============ METRICS ============ */
.metrics-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, var(--ink-900) 0%, #0c1a2e 100%);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric {
  padding: 2rem 1rem;
}

.metric-number {
  font-size: var(--ma-xl-numerics-limited);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.metric-text-val {
  font-size: var(--ma-greeting-title);
}

.metric-label {
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: var(--text-on-dark-muted);
}

/* ============ LIFECYCLE ============ */
.lifecycle-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(180deg, rgba(6, 15, 30, 0.62) 0%, rgba(6, 15, 30, 0.72) 50%, rgba(6, 15, 30, 0.62) 100%),
    url('../images/home/identity-lifecycle-bg.webp') center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lifecycle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(3, 70, 148, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.lifecycle-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.lifecycle-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93bbef;
  background: rgba(3, 70, 148, 0.15);
  border: 1px solid rgba(3, 70, 148, 0.35);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lifecycle-header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lifecycle-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Journey timeline */
.lifecycle-timeline {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Central spine */
.lifecycle-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(3, 70, 148, 0.25) 5%,
      rgba(3, 70, 148, 0.15) 50%,
      rgba(3, 70, 148, 0.25) 95%,
      transparent 100%);
  box-shadow: 0 0 8px rgba(3, 70, 148, 0.12);
  z-index: 0;
  pointer-events: none;
}

/* Timeline row */
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

/* Alternating sides */
.timeline-row:nth-child(odd) .timeline-card-body {
  grid-column: 1;
}

.timeline-row:nth-child(odd) .timeline-card-body .card-content {
  margin-left: auto;
}

.timeline-row:nth-child(even) .timeline-card-body {
  grid-column: 3;
}

.timeline-row:nth-child(even) .timeline-node {
  grid-column: 2;
}

.timeline-row:nth-child(odd) .timeline-node {
  grid-column: 2;
}

/* Node (center) */
.timeline-node {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.timeline-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(3, 70, 148, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93bbef;
  box-shadow:
    0 0 20px rgba(3, 70, 148, 0.2),
    0 0 0 4px rgba(3, 70, 148, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 500ms var(--ease-quart);
}

.timeline-ring svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-ring i.fa-solid {
  font-size: var(--ma-pane-header);
  color: #93bbef !important;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-num {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: rgba(147, 187, 239, 0.7);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  text-shadow: 0 0 6px rgba(3, 70, 148, 0.3);
}

/* Card body */
.timeline-card-body {
  position: relative;
}

.card-content {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  max-width: 460px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 500ms var(--ease-quart);
  position: relative;
}

.card-content:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(3, 70, 148, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-color: rgba(3, 70, 148, 0.4);
  border-top-color: rgba(255, 255, 255, 0.3);
}

.timeline-row:hover .timeline-ring {
  border-color: rgba(3, 70, 148, 0.7);
  box-shadow:
    0 0 24px rgba(3, 70, 148, 0.3),
    0 0 0 6px rgba(3, 70, 148, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.card-step {
  font-family: var(--font);
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 0.35rem;
}

.card-content h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.card-lead {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.card-lead em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  position: relative;
  padding-left: 1rem;
  font-size: var(--ma-metadata);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* Arrow connectors */
.timeline-row:nth-child(odd) .card-content::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(255, 255, 255, 0.08);
  filter: none;
}

.timeline-row:nth-child(even) .card-content::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid rgba(255, 255, 255, 0.08);
  filter: none;
}

/* Initial hidden state - prevents cards from flashing before animation */
.timeline-row .card-content,
.timeline-row .timeline-ring {
  opacity: 0;
}

/* Scroll reveal animations - .reveal class handles row-level fade-up */
.timeline-row:nth-child(1).visible .card-content {
  animation: slideInLeft 700ms var(--ease-quart) 120ms both;
}

.timeline-row:nth-child(1).visible .timeline-ring {
  animation: popIn 500ms var(--ease-quart) 0ms both;
}

.timeline-row:nth-child(2).visible .card-content {
  animation: slideInRight 700ms var(--ease-quart) 220ms both;
}

.timeline-row:nth-child(2).visible .timeline-ring {
  animation: popIn 500ms var(--ease-quart) 100ms both;
}

.timeline-row:nth-child(3).visible .card-content {
  animation: slideInLeft 700ms var(--ease-quart) 320ms both;
}

.timeline-row:nth-child(3).visible .timeline-ring {
  animation: popIn 500ms var(--ease-quart) 200ms both;
}

.timeline-row:nth-child(4).visible .card-content {
  animation: slideInRight 700ms var(--ease-quart) 420ms both;
}

.timeline-row:nth-child(4).visible .timeline-ring {
  animation: popIn 500ms var(--ease-quart) 300ms both;
}

.timeline-row:nth-child(5).visible .card-content {
  animation: slideInLeft 700ms var(--ease-quart) 520ms both;
}

.timeline-row:nth-child(5).visible .timeline-ring {
  animation: popIn 500ms var(--ease-quart) 400ms both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .lifecycle-timeline::before {
    left: 2rem;
    transform: none;
  }

  .timeline-row {
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
  }

  .timeline-row:nth-child(odd) .timeline-card-body,
  .timeline-row:nth-child(even) .timeline-card-body {
    grid-column: 2;
    text-align: left;
  }

  .timeline-row:nth-child(odd) .timeline-card-body .card-content,
  .timeline-row:nth-child(even) .timeline-card-body .card-content {
    margin-left: 0;
    max-width: none;
  }

  .timeline-node {
    grid-column: 1 !important;
    align-items: flex-start;
  }

  .timeline-ring {
    width: 48px;
    height: 48px;
  }

  .timeline-ring svg {
    width: 20px;
    height: 20px;
  }

  .card-content {
    padding: 1.5rem;
  }

  .timeline-row:nth-child(odd) .card-content::after,
  .timeline-row:nth-child(even) .card-content::after {
    display: none;
  }
}

/* ============ CERTIFICATIONS ============ */
.certs-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  text-align: center;
  background: #ffffff;
}

.certs-title {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.certs-sub {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin: 0 auto 2.5rem;
}

.certs-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.certs-logos img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  opacity: 0.85;
  transition: filter 300ms ease, opacity 300ms ease;
}

.certs-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ============ CASE STUDIES ============ */
.cases-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--surface-alt);
}

.cases-header {
  margin-bottom: 3rem;
}

.cases-header h2 {
  margin-bottom: 0.75rem;
}

.cases-header p {
  color: var(--text-secondary);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  transition: all 400ms var(--ease-quart);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  border-color: rgba(0, 196, 180, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.case-tag {
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.case-card h3 {
  font-size: var(--ma-header);
  margin-bottom: 0.75rem;
}

.case-card p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
}

.case-link {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 200ms;
}

.case-link:hover {
  gap: 0.5rem;
}

/* ============ WHY MANTRA ============ */
.why-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #0a1628 0%, #0c1e38 50%, #0a1628 100%);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.04) 1px, transparent 0);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 0%, transparent 70%);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.why-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.why-header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #e8eef6;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.why-header p {
  color: rgba(160, 190, 230, 0.55);
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Bento grid */
.why-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  transition: all 400ms var(--ease-quart);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}


/* Icon rings */
.why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.why-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.why-card__icon--purple {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
}

.why-card__icon--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.why-card__icon--teal {
  background: rgba(20, 184, 166, 0.12);
  color: #2dd4bf;
}

.why-card__icon--amber {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.why-card__icon--green {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.why-card__icon--rose {
  background: rgba(244, 63, 94, 0.12);
  color: #fb7185;
}

.why-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #e8eef6;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.why-card p {
  font-size: var(--ma-body-text);
  color: rgba(160, 190, 230, 0.55);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .why-bento {
    grid-template-columns: 1fr;
  }
}

/* ============ LEAD CAPTURE FORM ============ */
.form-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f4fa 50%, #e8eef8 100%);
  position: relative;
  overflow: hidden;
}

/* Large decorative gradient orbs for visual depth */
.form-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.03) 40%, transparent 70%);
  pointer-events: none;
  animation: form-orb-float 20s ease-in-out infinite alternate;
}

.form-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.08) 0%, rgba(3, 70, 148, 0.02) 40%, transparent 70%);
  pointer-events: none;
  animation: form-orb-float 25s ease-in-out infinite alternate-reverse;
}

@keyframes form-orb-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-20px, 15px) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {

  .form-section::before,
  .form-section::after {
    animation: none;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-info h2 {
  color: var(--ink-900);
  font-size: var(--ma-greeting-title);
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.form-sub {
  color: #475569;
  font-size: var(--ma-header);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 460px;
}

.form-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 0;
}

.form-checks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--ma-body-text);
  color: var(--text);
  font-weight: 500;
}

.form-checks li svg {
  flex-shrink: 0;
  color: var(--primary);
}

.form-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: #b45309;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #fcd34d;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.15);
  position: relative;
}

.form-urgency::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  animation: urgency-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes urgency-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.form-urgency svg {
  flex-shrink: 0;
}

/* Decorative accent on left side */
.form-accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ---- Premium form-info redesign ---- */
.form-info__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(3, 70, 148, 0.08);
  border: 1px solid rgba(3, 70, 148, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.form-info__badge i {
  font-size: var(--ma-metadata-limited);
}

.form-info__highlight {
  color: var(--primary);
}

/* Checks grid: 2-column layout with icon circles */
.form-info__checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 2.25rem;
}

.form-info__check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(3, 70, 148, 0.04);
  border: 1px solid rgba(3, 70, 148, 0.08);
  border-radius: 12px;
  transition: all 250ms ease;
}

.form-info__check-item:hover {
  background: rgba(3, 70, 148, 0.08);
  border-color: rgba(3, 70, 148, 0.18);
  transform: translateY(-1px);
}

.form-info__check-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #1d6fd3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-metadata);
  flex-shrink: 0;
}

.form-info__check-item span {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.35;
}

/* Trust stats bar */
.form-info__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1d6fd3 60%, #2563eb 100%);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(3, 70, 148, 0.25);
  margin-bottom: 2rem;
}

.form-info__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-info__trust-item strong {
  font-size: var(--ma-pane-header);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.form-info__trust-item span {
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-info__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Responsive: checklist to single column */
@media (max-width: 640px) {
  .form-info__checks-grid {
    grid-template-columns: 1fr;
  }

  .form-info__trust {
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .form-info__trust-item strong {
    font-size: var(--ma-header);
  }
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ Demo Page Ã¢â€â‚¬Ã¢â€â‚¬ */
.demo-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
  color: var(--text-on-dark);
}

.demo-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.demo-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 1.25rem;
}

.demo-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}

.demo-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin: 0 auto;
}

.demo-main {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.demo-info h2 {
  font-size: var(--ma-section-title);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.demo-info>p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.demo-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.demo-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin-bottom: 0.875rem;
  line-height: 1.5;
}

.demo-features li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--primary);
}

.demo-trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.625rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
}

.demo-trust-strip svg {
  flex-shrink: 0;
  color: var(--primary);
}

.demo-form {
  padding: 2.5rem;
  background: #fff;
  border: 1px solid rgba(203, 213, 225, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 12px 40px rgba(3, 70, 148, 0.06);
  transition: box-shadow 400ms var(--ease-quart);
}

.demo-form:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 48px rgba(3, 70, 148, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 0.75rem;
}

.form-group label {
  display: block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--ma-body-text);
  font-family: var(--font);
  color: var(--text);
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: all 200ms ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(3, 70, 148, 0.08);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: #f8fafc;
}

.form-group select option {
  background: #fff;
  color: var(--text);
}

.btn-form {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: var(--ma-body-text);
  margin-top: 0.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(3, 70, 148, 0.25);
  transition: all 400ms var(--ease-quart);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-form:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.35);
}

.btn-form:active {
  transform: translateY(0);
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-privacy svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink-900);
  color: var(--text-on-dark-muted);
  padding: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2.6fr;
  gap: 3rem;
  align-items: start;
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.footer-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: var(--ma-body-text);
  margin-top: 1rem;
  max-width: 30ch;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

.footer-accent-bar {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa 0%, rgba(96, 165, 250, 0.2) 100%);
  border-radius: 2px;
  margin: 1rem 0 0.25rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 3rem;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-col h5 {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0;
}

.footer-col a {
  display: block;
  font-size: var(--ma-body-text);
  padding: 0.15rem 0;
  color: var(--text-on-dark-muted);
  transition: color 200ms;
  text-decoration: none;
}

.footer-col a:hover {
  color: #60a5fa;
}

.footer-bottom {
  padding: 1.25rem 0;
  font-size: var(--ma-metadata);
  color: var(--text-on-dark-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom__copy {
  margin: 0;
  text-align: left;
  line-height: 1.6;
  white-space: nowrap;
}

.footer-bottom__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ============ FOOTER CONTACT ============ */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-contact--inline {
  margin-top: 0;
}

.footer-contact__item {
  display: flex !important;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: var(--ma-metadata);
  color: var(--text-on-dark-muted);
  text-decoration: none;
  line-height: 1.55;
  transition: color 200ms;
}

.footer-contact__item i {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  margin-top: 0.2rem;
  color: #60a5fa;
  font-size: var(--ma-metadata);
}

a.footer-contact__item:hover {
  color: #60a5fa;
}


.footer-contact__social-label {
  font-size: var(--ma-metadata);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-muted);
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text-on-dark-muted);
  transition: all 250ms;
  text-decoration: none;
  font-size: var(--ma-body-text);
}

.footer-social-icon:hover {
  border-color: #60a5fa;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.08);
}


/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms var(--ease-expo), transform 800ms var(--ease-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

/* ============ UNIFIED CTA ============ */
.cta-section {
  padding: 0;
  background: #ffffff;
}

.cta-card {
  position: relative;
  text-align: center;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  background: #ffffff;
  overflow: hidden;
  max-width: none;
  margin: 0;
  border: none;
  border-top: none;
  box-shadow: none;
  border-radius: 0;
  transition: all 400ms var(--ease-quart);
}

.cta-visual {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  opacity: 0.1;
  animation: cta-float 6s ease-in-out infinite;
}

.cta-visual svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

@keyframes cta-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-card>* {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-card p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.65;
  margin: 0 auto 28px;
  max-width: 48ch;
}

.cta-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-actions .btn-primary {
  border: none;
  box-shadow: 0 4px 16px rgba(3, 70, 148, 0.25);
}

.cta-actions .btn-ghost {
  color: #334155;
  border-color: #cbd5e1;
}

.cta-actions .btn-ghost:hover {
  color: #0f172a;
  border-color: #94a3b8;
  background: #fff;
}

/* ===== BREADCRUMB BAR ===== */
.page-breadcrumb {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 0;
  position: sticky;
  top: 56px;
  z-index: 95;
  transition: all 300ms var(--ease-quart);
}

.page-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  color: #64748b;
}

.page-breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  line-height: 1.4;
}

.page-breadcrumb a:hover {
  color: #034694;
  background: rgba(3, 70, 148, 0.08);
}

.page-breadcrumb__sep {
  color: #cbd5e1;
  font-size: var(--ma-metadata-limited);
}

.page-breadcrumb__current {
  color: #034694;
  font-weight: 600;
  background: rgba(3, 70, 148, 0.1);
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
}

.cta-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--ink-100);
  background: var(--surface);
  color: var(--text);
  font-size: var(--ma-body-text);
  font-family: inherit;
  outline: none;
  transition: box-shadow 0.2s;
}

.cta-form input::placeholder {
  color: var(--text-tertiary);
}

.cta-form input:focus {
  box-shadow: 0 0 0 3px rgba(3, 70, 148, 0.15);
  border-color: var(--primary);
}

.cta-form button {
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-size: var(--ma-body-text);
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s var(--ease-quart);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(3, 70, 148, 0.2);
}

.cta-form button:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(3, 70, 148, 0.3);
}

@media (max-width: 640px) {
  .cta-card {
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 1.5rem);
  }

  .cta-form {
    flex-direction: column;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    grid-template-columns: 1fr;
  }

  .solution-card:nth-child(even) .solution-info {
    order: 1;
  }

  .solution-card:nth-child(even) .solution-visual {
    order: 2;
  }

  .solution-visual {
    min-height: 200px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lifecycle-steps {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .lifecycle-connector {
    display: none;
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }


}

@media (max-width: 768px) {
  /* OLD mobile nav rules removed - handled by mobile drawer section */

  .value-grid {
    grid-template-columns: 1fr;
  }

  .intro-stats {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifecycle-step {
    max-width: 100%;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .demo-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demo-form {
    padding: 1.5rem;
  }


}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== MEGA MENU WIDE Ã¢â‚¬â€ UNIFIED 3 COLUMN ===== */
.mega-menu-wide {
  width: 1320px;
  max-width: 98vw;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: visible;
  margin-top: 0;
}

/* Narrower Products menu Ã¢â‚¬â€ only 2 columns, less whitespace */
.mega-menu-wide:has(.mega-menu-2col) {
  width: 720px;
}

/* Solutions menu with dynamic layout - reduced width to minimize empty space */
.mega-menu-wide:has(.mm-sol-dynamic) {
  width: 900px;
}

.nav-link-has-menu:hover .mega-menu-wide,
.nav-link-has-menu.mm-hover .mega-menu-wide {
  transform: translateX(-50%) translateY(0);
}

.mega-menu-body {
  padding: 8px;
}

.mega-menu-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.mega-menu-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mm-col {
  padding: 16px;
  border-right: 1px solid #e2e8f0;
}

.mm-col:last-child {
  border-right: none;
}

.mm-col-title {
  font-size: var(--ma-metadata);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 16px;
  font-weight: 700;
}

/* Flat item style — no card background or border */
.mm-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  margin-bottom: 0;
  border-radius: 7px;
  background: transparent;
  border: none;
  text-decoration: none;
  transition: background 130ms ease;
}

.mm-item:hover {
  background: var(--surface-blue-pale);
  border-color: transparent;
  box-shadow: none;
}

.mm-item strong {
  display: block;
  font-family: var(--font);
  font-size: 12.5px;
  color: var(--text);
  margin-bottom: 0;
  font-weight: 600;
}

.mm-item span {
  display: block;
  font-family: var(--font);
  font-size: 11px;
  color: var(--text-tertiary);
  line-height: 1.35;
}

.mm-item:hover strong { color: var(--primary); }

/* Resources menu compact */
.mega-menu:not(.mega-menu-wide) {
  width: 240px;
  padding: 0;
}

/* Tags (used in use case column) */
.mm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.mm-tags span {
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 3px 10px;
  border-radius: 6px;
}

/* Featured label */
.mm-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: #c2410c;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mm-label i {
  color: #f59e0b;
  font-size: var(--ma-metadata);
}

/* Footer */
.mega-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px;
  background: var(--surface);
  border-top: 1px solid var(--ink-100);
  border-radius: 0 0 10px 10px;
}

.mm-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 140ms ease;
}

.mm-footer-link:hover {
  color: var(--primary);
}

.mm-footer-link svg {
  transition: transform .2s;
}

.mm-footer-link:hover svg {
  transform: translateX(3px);
}

.mm-footer-cta {
  color: #fff;
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 7px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.mm-footer-cta:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(3, 70, 148, 0.25);
}

/* Responsive - mobile mega menus handled in mobile drawer section */

/* ===== DYNAMIC SOLUTIONS MEGA MENU ===== */
.mm-sol-dynamic {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 260px;
}

.mm-sol-nav {
  border-right: 1px solid var(--ink-100);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mm-sol-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 10px 11px 12px;
  margin: 0 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  border-left: none;
  transition: background 140ms ease;
  cursor: pointer;
}

.mm-sol-tab:hover {
  background: var(--surface-blue-pale);
  border-left-color: transparent;
  color: var(--text-secondary);
}

.mm-sol-tab__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 14px;
  flex-shrink: 0;
  transition: all 140ms ease;
}

.mm-sol-tab:hover .mm-sol-tab__icon {
  background: var(--primary-dim);
  color: var(--primary);
}

.mm-sol-tab strong {
  display: block;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.mm-sol-tab span {
  display: block;
  font-family: var(--font);
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 400;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.35;
}

.mm-sol-tab .mm-sol-arrow {
  margin-left: auto;
  color: var(--ink-200);
  font-size: 9px;
  flex-shrink: 0;
  padding-left: 6px;
  transition: none;
}

.mm-sol-tab:hover .mm-sol-arrow {
  color: var(--primary);
  transform: none;
}

.mm-sol-panels {
  position: relative;
  padding: 12px 14px;
  overflow: hidden;
}

.mm-sol-panel {
  display: none;
  position: relative;
  inset: auto;
  padding: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
  min-height: 0;
}

.mm-sol-panel.active {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: none;
  position: relative;
}

.mm-sol-panel__title {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink-100);
}

.mm-sol-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  height: auto;
  min-height: auto;
}

.mm-sol-panel__grid .mm-item {
  margin-bottom: 0;
}

/* ===== SOLUTIONS PAGE Ã¢â‚¬â€ REDESIGNED ===== */

/* --- Solutions Hero --- */
.sol-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  text-align: center;
}

.sol-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.sol-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(5, 12, 24, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.sol-hero .container {
  position: relative;
  z-index: 2;
}

.sol-hero__content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.sol-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.sol-hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.cs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.cs-hero__eyebrow i {
  color: var(--accent);
  font-size: var(--ma-metadata);
}

.sol-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.sol-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto 48px;
}

.sol-hero__segments {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.sol-hero__seg-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-on-dark-muted);
  transition: all 300ms var(--ease-quart);
  text-decoration: none;
  cursor: pointer;
}

.sol-hero__seg-link:hover {
  background: rgba(3, 70, 148, 0.12);
  border-color: rgba(3, 70, 148, 0.3);
  color: #e8eef6;
  transform: translateY(-2px);
}

.sol-hero__seg-num {
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: inherit;
  letter-spacing: 0.05em;
}

.sol-hero__seg-name {
  font-size: var(--ma-body-text);
  font-weight: 600;
}

/* --- Sticky Segment Nav --- */
.sol-seg-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 400ms var(--ease-quart), opacity 400ms var(--ease-quart);
}

.sol-seg-nav.stuck {
  transform: translateY(0);
  opacity: 1;
}

.sol-seg-nav__inner {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}

.sol-seg-nav__tab {
  padding: 10px 20px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  transition: all 200ms;
  text-decoration: none;
  cursor: pointer;
}

.sol-seg-nav__tab:hover {
  color: var(--ink-900);
  background: var(--ink-50);
}

.sol-seg-nav__tab.active {
  color: var(--primary);
  background: var(--primary-dim);
}

/* --- Segment Section --- */
.sol-segment {
  padding: clamp(5rem, 9vw, 7rem) 0;
  background: var(--surface);
}

.sol-segment--alt {
  background: var(--surface-alt);
}

.sol-segment__header {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.sol-segment__num {
  font-size: var(--ma-xl-numerics-limited);
  font-weight: 800;
  color: var(--ink-50);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  min-width: 80px;
}

.sol-segment__intro h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.sol-segment__intro p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 64ch;
}

/* --- Flagship Solution Card --- */
.sol-flagship {
  background: linear-gradient(145deg, #0a1628 0%, #0f2847 50%, #0c1e38 100%);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.sol-flagship::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.sol-flagship__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(3, 70, 148, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.sol-flagship__badge svg {
  width: 16px;
  height: 16px;
}

.sol-flagship__content {
  position: relative;
  z-index: 1;
}

.sol-flagship h3 {
  font-size: var(--ma-pane-header);
  color: #e8eef6;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.sol-flagship__lead {
  font-size: var(--ma-body-text);
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.sol-flagship p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 72ch;
}

.sol-flagship .sol-details {
  margin-top: 20px;
  border-color: rgba(255, 255, 255, 0.08);
}

.sol-flagship .sol-details summary {
  color: #e8eef6;
}

.sol-flagship .sol-details summary:hover {
  color: var(--primary);
}

.sol-flagship .sol-details[open] summary {
  border-color: rgba(255, 255, 255, 0.1);
}

.sol-flagship .sol-details li {
  color: var(--text-on-dark-muted);
}

.sol-flagship .sol-pills span {
  color: var(--text-on-dark-muted);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

/* --- Compact Solution Card --- */
.sol-compact {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--ink-100);
  transition: transform 400ms var(--ease-quart), box-shadow 400ms var(--ease-quart);
}

.sol-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.sol-compact--full {
  margin-bottom: 24px;
}

.sol-compact__tag {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.sol-compact h3 {
  font-size: var(--ma-header);
  color: var(--ink-900);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.3;
}

.sol-compact p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Mini Solution Card --- */
.sol-mini {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--ink-100);
  transition: transform 400ms var(--ease-quart), box-shadow 400ms var(--ease-quart);
}

.sol-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.07);
}

.sol-mini--tall {
  display: flex;
  flex-direction: column;
}

.sol-mini__tag {
  display: inline-block;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.sol-mini h3 {
  font-size: var(--ma-header);
  color: var(--ink-900);
  margin-bottom: 8px;
  font-weight: 500;
}

.sol-mini p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

/* --- Shared: Details, Pills, Grids --- */
.sol-details {
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  margin-top: 16px;
  overflow: hidden;
}

.sol-details summary {
  padding: 14px 18px;
  font-size: var(--ma-body-text);
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  transition: color 200ms;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sol-details summary::-webkit-details-marker {
  display: none;
}

.sol-details summary::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--ink-50);
  font-size: var(--ma-body-text);
  font-weight: 400;
  color: var(--text-secondary);
  transition: all 200ms;
}

.sol-details[open] summary::before {
  content: 'Ã¢Ë†â€™';
  background: var(--primary-dim);
  color: var(--primary);
}

.sol-details summary:hover {
  color: var(--primary);
}

.sol-details[open] summary {
  border-bottom: 1px solid var(--ink-100);
}

.sol-details ul {
  list-style: none;
  padding: 16px 18px;
  margin: 0;
}

.sol-details li {
  position: relative;
  padding-left: 18px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 8px;
}

.sol-details li:last-child {
  margin-bottom: 0;
}

.sol-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

.sol-flagship .sol-details li::before {
  background: var(--primary);
  opacity: 0.8;
}

.sol-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.sol-pills span {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-alt);
  padding: 4px 10px;
  border-radius: 16px;
  border: 1px solid var(--ink-100);
  white-space: nowrap;
}

.sol-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.sol-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

/* --- Solutions Responsive --- */
@media (max-width: 1024px) {
  .sol-segment__header {
    flex-direction: column;
    gap: 16px;
  }

  .sol-grid-2 {
    grid-template-columns: 1fr;
  }

  .sol-cards-grid--bento,
  .sol-cards-grid--split {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-cards-grid--bento .sol-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 960px) {
  .sol-hero__segments {
    flex-direction: column;
    align-items: center;
  }

  .sol-hero__seg-link {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .sol-grid-3 {
    grid-template-columns: 1fr;
  }

  .sol-seg-nav__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {

  .sol-cards-grid--bento,
  .sol-cards-grid--split,
  .sol-cards-grid--3,
  .sol-cards-grid {
    grid-template-columns: 1fr;
  }

  .sol-cards-grid--bento .sol-card:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .sol-cards-grid--split .sol-card:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .sol-cards-grid--split .sol-card:nth-child(2),
  .sol-cards-grid--split .sol-card:nth-child(3) {
    grid-column: auto;
  }

  .sol-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {

  .hero,
  #hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .sol-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .sol-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .sol-flagship {
    padding: 24px;
    border-radius: 18px;
  }

  .sol-compact {
    padding: 24px;
  }

  .mega-menu-wide {
    display: none;
  }
}


/* ===== ABOUT PAGE Ã¢â‚¬â€ REDESIGNED ===== */

/* --- Shared About Label --- */
.abt-label {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-muted);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.abt-label--light {
  color: var(--accent);
  background: rgba(3, 70, 148, 0.15);
}

/* --- Cinematic Hero --- */
.abt-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  text-align: center;
}

.abt-hero__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.abt-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.abt-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.3) 0%, transparent 70%);
  top: -10%;
  right: 10%;
  animation: abt-orb-drift 18s ease-in-out infinite alternate;
}

.abt-hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.18) 0%, transparent 70%);
  bottom: -5%;
  left: 5%;
  animation: abt-orb-drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes abt-orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, -30px) scale(1.12);
  }
}

.abt-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.07) 1px, transparent 0);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 45%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 45%, black 0%, transparent 70%);
}

.abt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.abt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.abt-hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.abt-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.abt-hero h1 em {
  font-style: normal;
  color: #e8eef6;
  position: relative;
}

.abt-hero h1 em::after {
  display: none;
}

.abt-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 auto;
}

.abt-hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.abt-hero__scroll-cue span {
  font-size: var(--ma-metadata);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-dark-muted);
}

.abt-hero__scroll-cue svg {
  color: var(--primary);
  animation: abt-bounce 2.4s ease-in-out infinite;
}

@keyframes abt-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* --- Narrative Section --- */
.abt-narrative {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--surface);
}

.abt-narrative__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.abt-narrative__lead {
  position: sticky;
  top: 120px;
}

.abt-narrative__lead h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.abt-narrative__body p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.abt-narrative__body p strong {
  color: var(--primary);
  font-weight: 700;
}

.abt-narrative__body p:last-child {
  margin-bottom: 0;
}

/* --- Impact Metrics Ribbon --- */
.abt-metrics {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, var(--ink-900) 0%, #0c1a2e 100%);
  position: relative;
  overflow: hidden;
}

.abt-metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(3, 70, 148, 0.4) 50%, transparent 100%);
}

.abt-metrics::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(3, 70, 148, 0.4) 50%, transparent 100%);
}

.abt-metrics__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.abt-metric {
  padding: 1.5rem 1rem;
  position: relative;
}

.abt-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.abt-metric__value {
  font-size: var(--ma-xl-numerics-limited);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.abt-metric__label {
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.02em;
}

/* --- Philosophy (Mission/Vision/Commitment) --- */
.abt-philosophy {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--surface);
}

.abt-philosophy__header {
  text-align: center;
  margin-bottom: 56px;
}

.abt-philosophy__header h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 700;
}

.abt-philosophy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.abt-phil-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px 36px;
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: transform 400ms var(--ease-quart);
}

.abt-phil-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.10);
}

.abt-phil-card__number {
  font-size: var(--ma-xl-numerics-limited);
  font-weight: 800;
  color: var(--ink-50);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  user-select: none;
}

.abt-phil-card h3 {
  font-size: var(--ma-header);
  color: var(--ink-900);
  margin-bottom: 12px;
  font-weight: 500;
}

.abt-phil-card p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.7;
}

.abt-phil-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 20px 20px;
}

.abt-phil-card--mission .abt-phil-card__accent {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.abt-phil-card--vision .abt-phil-card__accent {
  background: linear-gradient(90deg, #0369a1 0%, #0ea5e9 100%);
}

.abt-phil-card--values .abt-phil-card__accent {
  background: linear-gradient(90deg, #0f766e 0%, #14b8a6 100%);
}

/* --- Differentiators (Dark Section) --- */
.abt-diff {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: linear-gradient(180deg, #0c1a2e 0%, var(--ink-900) 100%);
  color: var(--text-on-dark);
}

.abt-diff__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.abt-diff__intro h2 {
  font-size: var(--ma-greeting-title);
  color: var(--text-on-dark);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.abt-diff__intro p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

.abt-diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.abt-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 400ms var(--ease-quart);
}

.abt-diff-item:hover {
  background: rgba(3, 70, 148, 0.08);
  border-color: rgba(3, 70, 148, 0.2);
  transform: translateY(-3px);
}

.abt-diff-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(3, 70, 148, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-diff-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.abt-diff-item__text strong {
  display: block;
  font-size: var(--ma-body-text);
  color: var(--text-on-dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.abt-diff-item__text span {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.55;
}

/* --- Certifications --- */
.abt-certs {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--surface-alt);
}

.abt-certs__inner {
  text-align: center;
}

.abt-certs__header {
  margin-bottom: 36px;
}

.abt-certs__header h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  margin-bottom: 10px;
}

.abt-certs__header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 520px;
}

.abt-certs__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.abt-cert-chip {
  padding: 10px 20px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-pill);
  background: #fff;
  transition: all 300ms var(--ease-quart);
}

.abt-cert-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
  transform: translateY(-2px);
}

/* --- About Page Responsive --- */
@media (max-width: 1024px) {
  .abt-narrative__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abt-narrative__lead {
    position: static;
  }

  .abt-diff__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .abt-philosophy__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .abt-diff__grid {
    grid-template-columns: 1fr;
  }

  .abt-metrics__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-metric:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .abt-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .abt-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .abt-metrics__row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== RESOURCES PAGE ===== */

/* --- Resources Hero --- */
.res-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
}

.res-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 0%, transparent 70%);
}

.res-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(3, 70, 148, 0.12);
  border: 1px solid rgba(3, 70, 148, 0.22);
  border-radius: 40px;
}

.res-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.res-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 auto;
}

/* --- Category Filter --- */
.res-filter {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.res-filter__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.res-filter__tab {
  padding: 10px 18px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--text-secondary);
  border: none;
  background: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 200ms;
  white-space: nowrap;
}

.res-filter__tab:hover {
  color: var(--ink-900);
  background: var(--ink-50);
}

.res-filter__tab.active {
  color: var(--primary);
  background: var(--primary-dim);
}

/* --- Featured Card --- */
.res-featured {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface);
}

.res-feature-card {
  background: linear-gradient(145deg, #0a1628 0%, #0f2847 50%, #0c1e38 100%);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.res-feature-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.res-feature-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.res-feature-card__meta time {
  font-size: var(--ma-metadata);
  color: var(--text-on-dark-muted);
}

.res-feature-card h2 {
  font-size: var(--ma-greeting-title);
  color: #e8eef6;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 52ch;
}

.res-feature-card>p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 72ch;
  margin-bottom: 28px;
}

.res-feature-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.res-feature-card__tags {
  display: flex;
  gap: 6px;
}

.res-feature-card__tags span {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--text-on-dark-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 14px;
}

/* --- Shared Link Style --- */
.res-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-body-text);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 300ms var(--ease-quart);
}

.res-link:hover {
  gap: 10px;
}

.res-feature-card .res-link {
  color: #e8eef6;
}

/* --- Resource Type Badges --- */
.res-type {
  display: inline-block;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
}

.res-type--insight {
  color: #1d4ed8;
  background: #dbeafe;
}

.res-type--case-study {
  color: #047857;
  background: #d1fae5;
}

.res-type--whitepaper {
  color: var(--primary);
  background: var(--primary-dim);
}

.res-type--technical {
  color: #7c3aed;
  background: #ede9fe;
}

.res-type--event {
  color: #b45309;
  background: #fef3c7;
}

/* --- Content Grid --- */
.res-grid-section {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
  background: var(--surface);
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.res-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--ink-100);
  transition: transform 400ms var(--ease-quart), box-shadow 400ms var(--ease-quart);
}

.res-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.res-card--wide {
  grid-column: span 2;
}

.res-card__inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.res-card h3 {
  font-size: var(--ma-header);
  color: var(--ink-900);
  font-weight: 500;
  line-height: 1.35;
  margin: 12px 0 8px;
}

.res-card p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.res-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
}

.res-card__bottom time {
  font-size: var(--ma-metadata);
  color: var(--text-tertiary);
  font-weight: 500;
}

/* --- Load More --- */
.res-load-more {
  text-align: center;
  padding-top: 40px;
}

/* --- Newsletter --- */
.res-newsletter {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--surface-alt);
}

.res-newsletter__card {
  position: relative;
  padding: 56px 48px;
  background: linear-gradient(145deg, #0a1628 0%, #0f2847 50%, #0c1e38 100%);
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
}

.res-newsletter__glow {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.res-newsletter__content {
  position: relative;
  z-index: 1;
}

.res-newsletter h2 {
  font-size: var(--ma-greeting-title);
  color: #e8eef6;
  margin-bottom: 12px;
  font-weight: 700;
}

.res-newsletter p {
  font-size: var(--ma-body-text);
  color: #a8b8cc;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.res-newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 14px;
}

.res-newsletter__form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #e8eef6;
  font-size: var(--ma-body-text);
  outline: none;
  transition: border-color 200ms;
}

.res-newsletter__form input::placeholder {
  color: #64748b;
}

.res-newsletter__form input:focus {
  border-color: var(--primary);
}

.res-newsletter__form .btn-primary {
  background: #fff;
  color: var(--ink-900);
  font-weight: 700;
  white-space: nowrap;
}

.res-newsletter__form .btn-primary:hover {
  background: #e2e8f0;
}

.res-newsletter__note {
  font-size: var(--ma-metadata);
  color: #64748b;
}

/* --- Resources Responsive --- */
@media (max-width: 1024px) {
  .res-grid {
    grid-template-columns: 1fr 1fr;
  }

  .res-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .res-grid {
    grid-template-columns: 1fr;
  }

  .res-card--wide {
    grid-column: span 1;
  }

  .res-feature-card {
    padding: 28px;
    border-radius: 18px;
  }

  .res-feature-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .res-newsletter__form {
    flex-direction: column;
  }

  .res-newsletter__card {
    padding: 40px 28px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .res-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .res-hero h1 {
    font-size: var(--ma-greeting-title);
  }
}


/* ===== CONTACT PAGE ===== */

.ct-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
}

.ct-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, black 0%, transparent 70%);
}

.ct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.ct-hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.ct-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.ct-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto;
}

/* --- Intent Cards --- */
.ct-intents {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: var(--surface);
  position: relative;
  z-index: 2;
}

.ct-intents__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ct-intent {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 300ms var(--ease-quart), box-shadow 300ms var(--ease-quart), border-color 200ms;
  cursor: pointer;
}

.ct-intent:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.ct-intent--active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.ct-intent__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dim);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 16px;
}

.ct-intent h3 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.ct-intent p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}

.ct-intent__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-body-text);
  font-weight: 700;
  color: var(--primary);
  transition: gap 300ms var(--ease-quart);
}

.ct-intent:hover .ct-intent__cta {
  gap: 10px;
}

/* --- Quick Connect Bar --- */
.ct-quick {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--surface);
}

.ct-quick__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 32px;
  background: var(--surface-alt);
  border-radius: 16px;
  flex-wrap: wrap;
}

.ct-quick__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  color: var(--ink-900);
}

.ct-quick__item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.ct-quick__label {
  display: block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.ct-quick__item a {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.ct-quick__value {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-quick__divider {
  width: 1px;
  height: 32px;
  background: var(--ink-100);
}


/* Form */
.ct-form-header {
  margin-bottom: 28px;
}

.ct-form-header h2 {
  font-size: var(--ma-section-title);
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 6px;
}

.ct-form-header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-form__field--full {
  margin-bottom: 16px;
}

.ct-req {
  color: #dc2626;
}

.ct-form__field label {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-form__field input,
.ct-form__field select,
.ct-form__field textarea {
  padding: 12px 16px;
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  font-size: var(--ma-body-text);
  color: var(--ink-900);
  background: #fff;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
  font-family: inherit;
}

.ct-form__field input:focus,
.ct-form__field select:focus,
.ct-form__field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.ct-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-form__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.ct-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ct-form__privacy {
  font-size: var(--ma-metadata);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.ct-form__privacy a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.ct-form__success {
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #d1fae5;
  color: #047857;
  border-radius: 10px;
  font-size: var(--ma-body-text);
  font-weight: 600;
}

/* --- Sidebar: Map, Offices, Trust --- */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-map-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--ink-100);
}

.ct-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 285px;
  border: 0;
  display: block;
}

.ct-offices {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
}

.ct-offices h4 {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.ct-office {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.ct-office:not(:last-child) {
  border-bottom: 1px solid var(--ink-50);
}

.ct-office__badge {
  font-size: var(--ma-metadata-limited);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.ct-office h2,
.ct-office h5 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.ct-office p {
  font-size: var(--ma-metadata);
  color: var(--text-secondary);
  line-height: 1.5;
}

.ct-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ct-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-alt);
  padding: 8px 14px;
  border-radius: 8px;
}

.ct-trust__item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.ct-sidebar-intents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-sidebar-intents .ct-intent {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
}

.ct-sidebar-intents .ct-intent__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
}

@media (min-width: 1025px) {
  .ct-sidebar-intents {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .ct-sidebar-intents {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --- FAQ Section --- */
.ct-faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.ct-faq__header h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 8px;
}

.ct-faq__header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.ct-faq__header a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.ct-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.ct-faq__item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 300ms var(--ease-quart);
}

.ct-faq__item[open] {
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.06);
}

.ct-faq__item summary {
  padding: 18px 24px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-faq__item summary::-webkit-details-marker {
  display: none;
}

.ct-faq__item summary::after {
  content: '+';
  font-size: var(--ma-pane-header);
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform 200ms;
}

.ct-faq__item[open] summary::after {
  content: 'ÃƒÂ¢Ã‹â€ Ã¢â‚¬â„¢';
}

.ct-faq__item p {
  padding: 16px 24px 18px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Contact Responsive --- */
@media (max-width: 1024px) {
  .ct-intents__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ct-form__row {
    grid-template-columns: 1fr;
  }

  .ct-quick__bar {
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
  }

  .ct-quick__divider {
    width: 100%;
    height: 1px;
  }

  .ct-quick__item {
    padding: 8px 0;
  }
}

@media (max-width: 640px) {
  .ct-hero {
    padding: 130px 0 56px;
  }

  .ct-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .ct-intents__grid {
    grid-template-columns: 1fr;
  }

  .ct-form__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===== LEGAL / PRIVACY PAGE ===== */

.legal-hero {
  padding: 160px 0 60px;
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  text-align: center;
}

.legal-hero h1 {
  font-size: var(--ma-hero-title);
  color: #e8eef6;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.legal-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
}

.legal-body {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--ma-pane-header);
  color: var(--ink-900);
  font-weight: 700;
  margin: 36px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-100);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: var(--ma-header);
  color: var(--ink-900);
  font-weight: 600;
  margin: 20px 0 8px;
}

.legal-content p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.legal-content li {
  position: relative;
  padding-left: 18px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 8px;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

.legal-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}


/* ===== PRODUCTS PAGE ===== */

.prd-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
}

.prd-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 0%, transparent 70%);
}

.prd-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.prd-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.prd-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 auto;
}

.prd-hero__cats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.prd-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e8eef6;
  font-size: var(--ma-body-text);
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms, transform 200ms;
  cursor: pointer;
}

.prd-hero__cat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ===== EDITORIAL INTRO (shared by About, Products) ===== */
.abt-intro {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.abt-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.abt-intro__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: var(--primary-dim);
  padding: 8px 16px;
  border-radius: 10px;
}

.abt-intro__label i {
  font-size: var(--ma-metadata);
}

.abt-intro__headline {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.abt-intro__headline span {
  color: var(--primary);
}

.abt-intro__lead {
  font-size: var(--ma-pane-header);
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.25rem;
}

.abt-intro__accent {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--primary);
}

.abt-intro__body {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #475569;
}

.abt-intro__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0;
}

.abt-intro__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(10, 30, 60, 0.04);
  transition: all 0.3s;
}

.abt-intro__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.08);
  border-color: #cbd5e1;
}

.abt-intro__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-dim);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
}

.abt-intro__item-text h3,
.abt-intro__item-text h4 {
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 3px;
}

.abt-intro__item-text p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .abt-intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.prd-segment {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: #ffffff;
  position: relative;
}

.prd-segment--alt {
  background: #edf5fc;
}

.prd-segment--bg3 {
  background: #f4f5f7;
}

/* --- Section Header: Number + Title --- */
.prd-segment__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.prd-segment__num {
  font-size: var(--ma-header);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.prd-segment__intro h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.prd-segment__tagline {
  font-size: var(--ma-metadata);
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* --- Cohesive Hero: Image + Content Panel --- */
.prd-segment__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

.prd-segment--alt .prd-segment__hero {
  direction: rtl;
}

.prd-segment--alt .prd-segment__hero>* {
  direction: ltr;
}

.prd-segment__visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 30, 60, 0.12);
}

.prd-segment__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 30, 60, 0.12), transparent 55%);
  pointer-events: none;
}

.prd-segment__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.prd-segment__visual:hover img {
  transform: scale(1.04);
}

/* Right-side content panel */
.prd-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.07);
}

.prd-detail__overview h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.prd-detail__overview p {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #3e4c5e;
}

.prd-detail__features h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Full-width Offers Section */
.prd-detail__offers {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.07);
}

.prd-detail__offers h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
}

.prd-detail__offers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.prd-detail__offers li {
  position: relative;
  padding: 1rem 1.25rem 1rem 3.5rem;
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  transition: background 200ms;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.prd-detail__offers li:nth-last-child(-n+2) {
  border-bottom: none;
}

.prd-detail__offers li::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--primary-dim);
}

.prd-detail__offers li::after {
  content: '\2713';
  position: absolute;
  left: calc(0.75rem + 6px);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.prd-detail__offers li:hover {
  background: rgba(59, 130, 246, 0.04);
}

/* Feature Tags */
.prd-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.prd-feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #1e3a5f;
  background: #f1f5f9;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  letter-spacing: 0.01em;
  transition: all 250ms;
}

.prd-feature-tags span:hover {
  background: var(--primary-dim);
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--primary);
  transform: translateY(-2px);
  cursor: default;
}

/* --- Separator line between sections --- */
.prd-segment+.prd-segment::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04) 30%, rgba(0, 0, 0, 0.04) 70%, transparent);
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* --- Legacy grid fallbacks --- */
.prd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prd-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.prd-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 28px;
  transition: transform 400ms var(--ease-quart), box-shadow 400ms var(--ease-quart);
}

.prd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.prd-card--horizontal {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.prd-card--horizontal .prd-card__icon {
  flex-shrink: 0;
}

.prd-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dim);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 16px;
}

.prd-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.prd-card p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.prd-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.prd-card__specs span {
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .prd-segment__hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prd-segment--alt .prd-segment__hero {
    direction: ltr;
  }

  .prd-detail__offers ul {
    grid-template-columns: 1fr;
  }

  .prd-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .prd-grid,
  .prd-grid--2 {
    grid-template-columns: 1fr;
  }

  .prd-card--horizontal {
    flex-direction: column;
  }

  .prd-hero-panel {
    padding: 1.75rem;
    gap: 1.75rem;
  }

  .prd-detail__offers {
    padding: 1.75rem 2rem 1.75rem -16px;
  }
}

@media (max-width: 640px) {
  .prd-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .prd-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .prd-segment__header {
    flex-direction: column;
    gap: 12px;
  }

  .demo-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .demo-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .prd-detail__offers {
    padding: 1.5rem;
  }

  .prd-detail__offers li {
    padding-left: 3.25rem;
  }

  /* Left-align products page elements on mobile */
  .prd-hero,
  .prd-segment__header,
  .prd-segment__intro,
  .prd-detail,
  .prd-segment__visual,
  .prd-card,
  .sol-card--product {
    text-align: left !important;
  }

  .prd-hero h1,
  .prd-segment__intro h2,
  .prd-card h3,
  .sol-card--product h3 {
    text-align: left !important;
  }

  .prd-pills,
  .sol-card--product .sol-pills {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .prd-pills span,
  .sol-card--product .sol-pills span {
    display: inline-block;
    text-align: left !important;
  }
}


/* ============ SOLUTIONS PAGE V2 ============ */

/* Segment Hero Ã¢â‚¬â€ Image + Text Side by Side */
.sol-segment__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.sol-segment__hero-text {
  position: relative;
}

.sol-segment__hero-text .sol-segment__num {
  font-size: var(--ma-metadata);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

.sol-segment__hero-text h2 {
  margin-bottom: 1rem;
  font-size: var(--ma-greeting-title);
}

.sol-segment__hero-text p {
  color: var(--text-secondary);
  font-size: var(--ma-body-text);
  margin-bottom: 1.5rem;
  max-width: 48ch;
}

.sol-segment__hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sol-segment__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 600ms var(--ease-expo);
}

.sol-segment__hero-img:hover img {
  transform: scale(1.03);
}

/* Segment Stats Row */
.sol-segment__stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sol-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  transition: all 300ms var(--ease-quart);
}

.sol-stat:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(3, 70, 148, 0.1);
  transform: translateY(-2px);
}

.sol-stat i {
  color: var(--primary);
  font-size: var(--ma-metadata);
}

.sol-stat strong {
  font-size: var(--ma-header);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.sol-stat span {
  font-size: var(--ma-metadata);
  color: var(--text-muted);
  font-weight: 500;
}

/* Solution Cards Grid */
.sol-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sol-cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Individual Solution Card */
.sol-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 400ms var(--ease-quart);
  display: flex;
  flex-direction: column;
}

.sol-card:hover {
  border-color: rgba(3, 70, 148, 0.3);
  box-shadow: 0 8px 32px rgba(3, 70, 148, 0.1);
  transform: translateY(-6px);
}

.sol-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 300ms var(--ease-quart);
}

.sol-card:hover .sol-card__icon {
  background: var(--primary);
}

.sol-card__icon i {
  font-size: var(--ma-pane-header);
  color: var(--primary);
  transition: color 300ms;
}

.sol-card:hover .sol-card__icon i {
  color: #fff;
}

.sol-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.sol-card p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.sol-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

.sol-card__pills span {
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sol-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--primary);
  transition: gap 300ms var(--ease-quart);
  margin-top: auto;
}

.sol-card__cta:hover {
  gap: 10px;
}

.sol-card__cta i {
  font-size: var(--ma-metadata);
  transition: transform 300ms;
}

.sol-card__cta:hover i {
  transform: translateX(3px);
}

/* ---- Bento Grid Variants ---- */
.sol-cards-grid--bento {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
}

.sol-cards-grid--bento .sol-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.sol-cards-grid--split {
  grid-template-columns: 2fr 1fr;
  grid-auto-flow: dense;
}

.sol-cards-grid--split .sol-card:nth-child(1) {
  grid-row: span 2;
}

.sol-cards-grid--split .sol-card:nth-child(2),
.sol-cards-grid--split .sol-card:nth-child(3) {
  grid-column: 2;
}

/* ---- Spotlight Hover Effect ---- */
.sol-card {
  position: relative;
  overflow: hidden;
}

.sol-card::before {
  content: '';
  position: absolute;
  top: var(--y, -999px);
  left: var(--x, -999px);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 0;
}

.sol-card:hover::before {
  opacity: 1;
}

.sol-card>* {
  position: relative;
  z-index: 1;
}

/* ---- Animated Gradient Border for Featured ---- */
.sol-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #f0f4fa 0%, #e8eef8 100%);
  border: none;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.sol-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: conic-gradient(from var(--angle, 0deg), rgba(3, 70, 148, 0.4), rgba(45, 212, 191, 0.4), rgba(3, 70, 148, 0.1), rgba(3, 70, 148, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: border-rotate 4s linear infinite;
}

@keyframes border-rotate {
  to {
    --angle: 360deg;
  }
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ---- Staggered Reveal ---- */
.sol-cards-grid .sol-card.reveal {
  transition-delay: calc(var(--i, 0) * 80ms);
}

.sol-cards-grid .sol-card:nth-child(1) {
  --i: 0;
}

.sol-cards-grid .sol-card:nth-child(2) {
  --i: 1;
}

.sol-cards-grid .sol-card:nth-child(3) {
  --i: 2;
}

.sol-cards-grid .sol-card:nth-child(4) {
  --i: 3;
}

.sol-cards-grid .sol-card:nth-child(5) {
  --i: 4;
}

.sol-cards-grid .sol-card:nth-child(6) {
  --i: 5;
}

.sol-cards-grid .sol-card:nth-child(7) {
  --i: 6;
}

.sol-cards-grid .sol-card:nth-child(8) {
  --i: 7;
}

.sol-cards-grid .sol-card:nth-child(9) {
  --i: 8;
}

.sol-card--featured .sol-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: var(--primary);
  background: rgba(3, 70, 148, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sol-card--featured .sol-card__badge i {
  font-size: var(--ma-metadata);
}

.sol-card--featured h3 {
  font-size: var(--ma-pane-header);
}

.sol-card--featured p {
  font-size: var(--ma-body-text);
  max-width: 64ch;
}

.sol-card__features {
  list-style: none;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
}

.sol-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.sol-card__features li i {
  color: #059669;
  font-size: var(--ma-metadata);
}

/* Product Card Variant */
.sol-card--product {
  text-align: center;
  align-items: center;
}

.sol-card--product .sol-card__icon {
  width: 56px;
  height: 56px;
}

.sol-card--product .sol-card__icon i {
  font-size: var(--ma-section-title);
}

.sol-card--product .sol-card__pills {
  justify-content: center;
}

/* Products CTA centered */
.sol-products-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Segment Alt Background */
.sol-segment--alt {
  background: var(--surface-alt);
}

/* Sol Segment Header (for segment 04) */
.sol-segment__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.sol-segment__header .sol-segment__num {
  font-size: var(--ma-header);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.sol-segment__intro h2 {
  margin-bottom: 0.75rem;
}

.sol-segment__intro p {
  color: var(--text-secondary);
  max-width: 56ch;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Solutions Side-Nav Dots Ã¢â€â‚¬Ã¢â€â‚¬ */
.side-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.15);
  cursor: pointer;
  transition: all 300ms var(--ease-quart);
  position: relative;
  border: 2px solid transparent;
}

.side-nav__dot.active {
  transform: scale(1.4);
  border-color: rgba(3, 70, 148, 0.25);
}

.side-nav__dot[data-seg="e-government"].active {
  background: #1A6FE0;
}

.side-nav__dot[data-seg="bfsi"].active {
  background: #0EA5A0;
}

.side-nav__dot[data-seg="enterprise"].active {
  background: #6C47E8;
}

.side-nav__label {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink-900);
  color: #fff;
  font-size: var(--ma-metadata);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  letter-spacing: 0.02em;
}

.side-nav__dot:hover .side-nav__label {
  opacity: 1;
}

.side-nav__label::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--ink-900);
}

@media (max-width: 1024px) {
  .side-nav {
    display: none;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Segment Accent Modifiers Ã¢â€â‚¬Ã¢â€â‚¬ */
.sol-segment--bg-blue {
  background: var(--surface-blue-light);
}

.sol-segment--bg-white {
  background: var(--surface);
}

/* Card left-border accents per segment */
.sol-segment--accent-blue .sol-card {
  border-left: 3px solid #1A6FE0;
}

.sol-segment--accent-teal .sol-card {
  border-left: 3px solid #0EA5A0;
}

.sol-segment--accent-purple .sol-card {
  border-left: 3px solid #6C47E8;
}

/* Stat icon colors per segment */
.sol-segment--accent-blue .sol-stat i {
  color: #1A6FE0;
}

.sol-segment--accent-teal .sol-stat i {
  color: #0EA5A0;
}

.sol-segment--accent-purple .sol-stat i {
  color: #6C47E8;
}

/* Stat hover per segment */
.sol-segment--accent-blue .sol-stat:hover {
  border-color: rgba(26, 111, 224, 0.3);
  box-shadow: 0 4px 12px rgba(26, 111, 224, 0.1);
}

.sol-segment--accent-teal .sol-stat:hover {
  border-color: rgba(14, 165, 160, 0.3);
  box-shadow: 0 4px 12px rgba(14, 165, 160, 0.1);
}

.sol-segment--accent-purple .sol-stat:hover {
  border-color: rgba(108, 71, 232, 0.3);
  box-shadow: 0 4px 12px rgba(108, 71, 232, 0.1);
}

/* Card icon & pill accent per segment */
.sol-segment--accent-blue .sol-card:hover .sol-card__icon {
  background: #1A6FE0;
}

.sol-segment--accent-teal .sol-card:hover .sol-card__icon {
  background: #0EA5A0;
}

.sol-segment--accent-purple .sol-card:hover .sol-card__icon {
  background: #6C47E8;
}

.sol-segment--accent-blue .sol-card__pills span {
  color: #1A6FE0;
  background: rgba(26, 111, 224, 0.08);
  border-color: rgba(26, 111, 224, 0.15);
}

.sol-segment--accent-teal .sol-card__pills span {
  color: #0EA5A0;
  background: rgba(14, 165, 160, 0.08);
  border-color: rgba(14, 165, 160, 0.15);
}

.sol-segment--accent-purple .sol-card__pills span {
  color: #6C47E8;
  background: rgba(108, 71, 232, 0.08);
  border-color: rgba(108, 71, 232, 0.15);
}

/* Hero eyebrow accent per segment */
.sol-segment--accent-blue .sol-segment__hero-text .sol-segment__num {
  color: #1A6FE0;
  background: rgba(26, 111, 224, 0.1);
}

.sol-segment--accent-teal .sol-segment__hero-text .sol-segment__num {
  color: #0EA5A0;
  background: rgba(14, 165, 160, 0.1);
}

.sol-segment--accent-purple .sol-segment__hero-text .sol-segment__num {
  color: #6C47E8;
  background: rgba(108, 71, 232, 0.1);
}

/* Spotlight hover per segment */
.sol-segment--accent-teal .sol-card::before {
  background: radial-gradient(circle, rgba(14, 165, 160, 0.12) 0%, transparent 60%);
}

.sol-segment--accent-purple .sol-card::before {
  background: radial-gradient(circle, rgba(108, 71, 232, 0.12) 0%, transparent 60%);
}

/* ============ RESOURCES PAGE V2 ============ */
.res-card__thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  width: calc(100% + 3rem);
}

.res-card--has-thumb .res-card__inner {
  padding-top: 0;
}

/* ============ COMING SOON V2 ============ */
.cs-page__features {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cs-page__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-on-dark-muted);
  font-size: var(--ma-body-text);
  font-weight: 500;
  transition: all 300ms var(--ease-quart);
}

.cs-page__feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(3, 70, 148, 0.4);
  transform: translateY(-2px);
}

.cs-page__feature i {
  color: var(--primary);
  font-size: var(--ma-header);
}

/* ============ RESPONSIVE Ã¢â‚¬â€ SOLUTIONS V2 ============ */
@media (max-width: 1024px) {
  .sol-segment__hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sol-segment__hero-img {
    max-height: 300px;
  }

  .sol-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {

  .sol-cards-grid,
  .sol-cards-grid--3 {
    grid-template-columns: 1fr;
  }

  .sol-segment__stats {
    flex-direction: column;
  }

  .sol-card__features {
    grid-template-columns: 1fr;
  }

  .cs-page__features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .sol-segment {
    padding: 3rem 0;
  }

  .sol-card {
    padding: 1.25rem;
  }

  .sol-card--featured {
    padding: 1.5rem;
  }

  /* Left-align solutions page elements on mobile */
  .sol-segment__header,
  .sol-segment__intro,
  .sol-flagship,
  .sol-card,
  .sol-card--featured,
  .sol-card--product {
    text-align: left !important;
  }

  .sol-segment__intro h2,
  .sol-flagship h3,
  .sol-card h3,
  .sol-card--featured h3,
  .sol-card--product h3 {
    text-align: left !important;
  }

  .sol-pills,
  .sol-card--featured .sol-pills,
  .sol-flagship .sol-pills {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .sol-pills span {
    display: inline-block;
    text-align: left !important;
  }
}

/* ============ RESOURCE CARD ICON BADGES ============ */
.res-card__icon-badge {
  width: 44px;
  height: 44px;
  background: var(--primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 300ms var(--ease-quart);
}

.res-card:hover .res-card__icon-badge {
  background: var(--primary);
  transform: scale(1.05);
}

.res-card__icon-badge i {
  font-size: var(--ma-header);
  color: var(--primary);
  transition: color 300ms;
}

.res-card:hover .res-card__icon-badge i {
  color: #fff;
}

.res-card__icon-badge--event {
  background: rgba(234, 88, 12, 0.08);
}

.res-card__icon-badge--event i {
  color: #ea580c;
}

.res-card:hover .res-card__icon-badge--event {
  background: #ea580c;
}

.res-card:hover .res-card__icon-badge--event i {
  color: #fff;
}

/* Resource Type Badge with Icon */
.res-type i {
  margin-right: 4px;
  font-size: var(--ma-metadata);
}

/* Featured Card with Image */
.res-feature-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: all 400ms var(--ease-quart);
}

.res-feature-card:hover {
  border-color: rgba(3, 70, 148, 0.3);
  box-shadow: 0 12px 40px rgba(3, 70, 148, 0.12);
  transform: translateY(-4px);
}

.res-feature-card__visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.res-feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-expo);
}

.res-feature-card:hover .res-feature-card__img {
  transform: scale(1.05);
}

.res-feature-card__icon-wrap {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 48px;
  height: 48px;
  background: rgba(3, 70, 148, 0.9);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.res-feature-card__icon-wrap i {
  font-size: var(--ma-pane-header);
  color: #fff;
}

.res-feature-card__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.res-feature-card__body h2 {
  font-size: var(--ma-page-title);
  margin-bottom: 0.75rem;
}

.res-feature-card__body p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Resource Bottom with Icon */
.res-card__bottom time i {
  margin-right: 4px;
  font-size: var(--ma-metadata);
}

.res-link i {
  margin-left: 4px;
  font-size: var(--ma-metadata);
  transition: transform 300ms;
}

.res-link:hover i {
  transform: translateX(3px);
}

/* Newsletter Icon */
.res-newsletter__icon {
  font-size: var(--ma-hero-title);
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 1.25rem;
}

.res-newsletter__note i {
  margin-right: 6px;
  font-size: var(--ma-metadata);
}

.res-newsletter__form button i {
  margin-right: 4px;
}

/* Resource Filter Icons */
.res-filter__tab i {
  margin-right: 4px;
  font-size: var(--ma-metadata);
}

/* Btn Secondary */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink-200);
  color: var(--text);
  background: #fff;
  transition: all 300ms var(--ease-quart);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(3, 70, 148, 0.1);
  transform: translateY(-2px);
}

.btn-secondary i {
  font-size: var(--ma-metadata);
}

@media (max-width: 768px) {
  .res-feature-card {
    grid-template-columns: 1fr;
  }

  .res-feature-card__visual {
    min-height: 200px;
  }

  .res-feature-card__body {
    padding: 1.5rem;
  }
}

/* ============ NEW HERO (from ideal) ============ */
#hero {
  position: relative;
  width: 100%;
  min-height: 75vh;
  background: #020912;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/home/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.hero-network-canvas,
#hero canvas#network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glow-ambient {
  position: absolute;
  pointer-events: none;
  width: 780px;
  height: 480px;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(29, 78, 216, 0.11) 0%, transparent 70%);
  filter: blur(32px);
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  max-width: 820px;
  width: 100%;
}

.eyebrow {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 40px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.demo-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.demo-hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.headline {
  text-align: center;
  font-family: var(--font);
  font-size: var(--ma-hero-title);
  font-weight: 700;
  line-height: 1.15;
  color: #cddaee;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}

.tw-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
}

.tw-word {
  font-weight: 500;
  background: linear-gradient(110deg, #2570e8 0%, #3d9bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  min-width: 12ch;
  white-space: nowrap;
}

.tw-cursor {
  display: inline-block;
  width: 2px;
  height: 0.78em;
  background: #3d8ef0;
  border-radius: 1px;
  vertical-align: baseline;
  position: relative;
  top: 0.05em;
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.subtext {
  font-family: var(--font);
  font-size: var(--ma-header);
  font-weight: 400;
  color: rgba(180, 205, 240, 0.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.65s forwards;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.85s forwards;
}

/* Hero-specific: resting shadow + active press */
#hero .btn-primary {
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.35);
}

#hero .btn-primary:active {
  transform: translateY(0) scale(0.98);
}

/* Hero ghost: dark-theme color overrides */
#hero .btn-ghost {
  color: var(--text-on-dark-muted);
  border-color: rgba(255, 255, 255, 0.15);
}

#hero .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.06);
}

#hero .btn-ghost:active {
  transform: translateY(0) scale(0.98);
}

.proof-strip {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.1s forwards;
}

.proof-item {
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  color: rgba(140, 180, 225, 0.45);
  letter-spacing: 0.02em;
  font-weight: 500;
}

.proof-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.proof-divider {
  width: 1px;
  height: 12px;
  background: rgba(59, 130, 246, 0.1);
}

/* Hero metrics strip */
.hero-metrics {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.1s forwards;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  z-index: 10;
}

.hero-metric {
  text-align: center;
}

.hero-metric__num {
  font-family: var(--font);
  font-size: var(--ma-section-title);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-metric__num.hero-metric__text {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hero-metric__label {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: rgba(180, 205, 240, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.hero-metrics__disclaimer {
  text-align: center;
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: rgba(160, 190, 230, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 1.75rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: fadeIn 0.8s ease 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.9;
  }
}

.scroll-label {
  font-size: var(--ma-metadata-limited);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(80, 130, 210, 0.3);
  font-weight: 400;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* ===== CONTACT PAGE ===== */

/* --- Contact Hero --- */
.ct-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  text-align: center;
  overflow: hidden;
}

.ct-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.ct-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
  pointer-events: none;
}


.ct-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.ct-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* --- Intent Cards --- */
.ct-intents {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.ct-intents__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ct-intent {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  transition: all 400ms var(--ease-quart);
  text-decoration: none;
  cursor: pointer;
}

.ct-intent:hover,
.ct-intent--active {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(3, 70, 148, 0.10);
  transform: translateY(-4px);
}

.ct-intent--active {
  border-color: var(--primary);
  background: var(--primary-dim);
}

.ct-intent__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 300ms;
}

.ct-intent:hover .ct-intent__icon,
.ct-intent--active .ct-intent__icon {
  background: var(--primary-muted);
}

.ct-intent__icon svg {
  stroke: var(--primary);
}

.ct-intent h3 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ct-intent p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.ct-intent__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  transition: gap 300ms var(--ease-quart);
}

.ct-intent:hover .ct-intent__cta {
  gap: 10px;
}

/* --- Quick Connect Bar --- */
.ct-quick {
  padding: 48px 0;
}

.ct-quick__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
}

.ct-quick__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  flex: 1;
  justify-content: center;
}

.ct-quick__item svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

.ct-quick__label {
  display: block;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.ct-quick__item a,
.ct-quick__value {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-quick__item a:hover {
  color: var(--primary);
}

.ct-quick__divider {
  width: 1px;
  height: 40px;
  background: var(--ink-100);
  flex-shrink: 0;
}

/* --- Main Grid (Form + Sidebar) --- */
.ct-main {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* --- Contact Form --- */
.ct-form-wrap {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 20px;
  margin-top: 0;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.ct-form-header {
  margin-bottom: 32px;
}

.ct-form-header h2 {
  font-size: var(--ma-section-title);
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.ct-form-header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-form__field {
  display: flex;
  flex-direction: column;
}

.ct-form__field--full {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.ct-form__field label {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.ct-req {
  color: #e53e3e;
}

.ct-form__field input,
.ct-form__field select,
.ct-form__field textarea {
  font-family: var(--font);
  font-size: var(--ma-body-text);
  color: var(--ink-900);
  padding: 12px 16px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
  width: 100%;
}

.ct-form__field input:focus,
.ct-form__field select:focus,
.ct-form__field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.ct-form__field input::placeholder,
.ct-form__field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.ct-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.ct-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-form__submit {
  padding: 14px 32px;
}


.ct-form__privacy a {
  color: var(--primary);
  text-decoration: underline;
}

.ct-form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 20px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: #065f46;
}

.ct-form__success svg {
  stroke: #059669;
  flex-shrink: 0;
}

/* --- Sidebar --- */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-map-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
}

.ct-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 285px;
  border: 0;
  display: block;
}

/* --- Offices --- */
.ct-offices {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.ct-offices h4 {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 20px;
}

.ct-office {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--ink-50);
}

.ct-office:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ct-office__badge {
  width: 40px;
  height: 40px;
  background: var(--primary-dim);
  color: var(--primary);
  font-size: var(--ma-metadata-limited);
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-office h2,
.ct-office h5 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
  line-height: 1.3;
}

.ct-office p {
  font-size: var(--ma-metadata);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --- Trust Badges --- */
.ct-trust {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.ct-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-trust__item svg {
  stroke: #059669;
  flex-shrink: 0;
}

/* --- FAQ --- */
.ct-faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--surface-alt);
}

.ct-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.ct-faq__header h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 10px;
}

.ct-faq__header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin: 0 auto;
}

.ct-faq__header a {
  color: var(--primary);
  font-weight: 600;
}

.ct-faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.ct-faq__item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 300ms;
}

.ct-faq__item:hover {
  box-shadow: var(--shadow-sm);
}

.ct-faq__item summary {
  padding: 20px 24px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 200ms;
}

.ct-faq__item summary::-webkit-details-marker {
  display: none;
}

.ct-faq__item summary::after {
  content: '+';
  font-size: var(--ma-pane-header);
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 300ms var(--ease-quart);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink-50);
}

.ct-faq__item[open] summary::after {
  content: '\2212';
  background: var(--primary-dim);
  color: var(--primary);
}

.ct-faq__item summary:hover {
  color: var(--primary);
}

.ct-faq__item[open] summary {
  border-bottom: 1px solid var(--ink-100);
}

.ct-faq__item p {
  padding: 20px 24px 20px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Contact Responsive --- */
@media (max-width: 1024px) {
  .ct-intents__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ct-grid {
    grid-template-columns: 1fr;
  }

  .ct-quick__bar {
    flex-wrap: wrap;
    gap: 16px;
  }

  .ct-quick__divider {
    display: none;
  }

  .ct-quick__item {
    flex: 0 0 calc(50% - 8px);
    padding: 12px 0;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ct-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .ct-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .ct-intents__grid {
    grid-template-columns: 1fr;
  }

  .ct-intents {
    margin-top: -24px;
  }

  .ct-form-wrap {
    padding: 24px;
  }

  .ct-form__row {
    grid-template-columns: 1fr;
  }

  .ct-quick__item {
    flex: 0 0 100%;
  }

  .ct-quick__bar {
    padding: 20px;
  }
}



/* ============================================================ */
/* CONSOLIDATED INLINE STYLES                                   */
/* Extracted from HTML <style> blocks on 2026-05-12           */
/* ============================================================ */

/* --- about.html --- */

.abt-hero__cats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.abt-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e8eef6;
  font-size: var(--ma-body-text);
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms, transform 200ms;
  cursor: pointer;
}

.abt-hero__cat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.abt-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
}

/* Left panel: quote text with background image */
.abt-vision__quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  padding-left: max(1.5rem, calc((100vw - 1400px) / 2 + 1.5rem));
  position: relative;
  overflow: hidden;
}

/* Background image behind text */
.abt-vision__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: vision-bg-drift 25s ease-in-out infinite alternate;
}

@keyframes vision-bg-drift {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.06) translate(-1%, 1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .abt-vision__bg-img {
    animation: none;
  }
}

/* Gradient overlay for text readability */
.abt-vision__quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(5, 12, 24, 0.55) 0%,
      rgba(10, 22, 40, 0.4) 50%,
      rgba(5, 12, 24, 0.6) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Decorative quotation mark */
.abt-vision__quote::before {
  content: '\201c';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: clamp(10rem, 20vw, 16rem);
  font-weight: 900;
  color: rgba(140, 180, 230, 0.06);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font);
  z-index: 1;
}

.abt-vision__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8cb4e6;
  margin-bottom: 1.5rem;
  background: rgba(140, 180, 230, 0.1);
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(140, 180, 230, 0.15);
  position: relative;
  z-index: 1;
}

.abt-vision__label i {
  font-size: var(--ma-metadata);
}

.abt-vision__heading {
  font-size: var(--ma-greeting-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.abt-vision__quote p {
  font-size: var(--ma-body-text);
  line-height: 1.85;
  color: rgba(232, 238, 246, 0.85);
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Right panel: capability cards */
.abt-vision__capabilities {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem);
  padding-right: max(1.5rem, calc((100vw - 1400px) / 2 + 1.5rem));
  background: linear-gradient(135deg, #071225 0%, #0c1e38 100%);
  overflow: hidden;
}

.abt-vision__capabilities::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(3, 70, 148, 0.12) 0%, transparent 60%);
}

.abt-vision__cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.abt-vision__cap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 300ms ease;
}

.abt-vision__cap:hover {
  background: rgba(3, 70, 148, 0.12);
  border-color: rgba(3, 70, 148, 0.3);
  transform: translateY(-2px);
}

.abt-vision__cap-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(140, 180, 230, 0.1);
  color: #8cb4e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
}

.abt-vision__cap-text {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: rgba(232, 238, 246, 0.8);
  line-height: 1.35;
}


.abt-portfolio {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: #f8fafc;
  position: relative;
}

.abt-portfolio__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.abt-portfolio__header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.abt-portfolio__header p {
  color: #64748b;
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
}

.abt-portfolio__lead {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 2.5rem 3rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(10, 30, 60, 0.04);
}

.abt-portfolio__lead-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  background: rgba(3, 70, 148, 0.08);
  color: #034694;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.abt-portfolio__lead h3 {
  font-size: var(--ma-pane-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.abt-portfolio__lead p {
  font-size: var(--ma-body-text);
  line-height: 1.75;
  color: #475569;
}

.abt-showcase {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 2rem 2.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.abt-showcase:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 28px rgba(3, 70, 148, 0.07);
  transform: translateX(4px);
}

.abt-showcase__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-pane-header);
  flex-shrink: 0;
}

.abt-showcase__content {
  flex: 1;
}

.abt-showcase__content h3,
.abt-showcase__content h4 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.abt-showcase__content p {
  color: #64748b;
  font-size: var(--ma-body-text);
  line-height: 1.6;
}

.abt-showcase__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.06);
  color: #3b82f6;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
  transition: all 0.3s;
}

.abt-showcase:hover .abt-showcase__arrow {
  background: #3b82f6;
  color: #fff;
}

.abt-marquee {
  padding: clamp(3rem, 4vw, 4rem) 0;
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  position: relative;
}

.abt-marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: abt-scroll 40s linear infinite;
}

.abt-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 40px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 238, 246, 0.75);
  font-size: var(--ma-body-text);
  font-weight: 600;
  transition: all 300ms;
}

.abt-marquee__item i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

@keyframes abt-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.abt-values {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: #fff;
}

.abt-values__header {
  text-align: center;
  margin-bottom: 3rem;
}

.abt-values__header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.abt-values__header p {
  color: #64748b;
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
}

.abt-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.abt-value-card {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: all 0.3s;
  text-align: center;
}

.abt-value-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.08);
  transform: translateY(-2px);
}

.abt-value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-pane-header);
}

.abt-value-card h3,
.abt-value-card h4 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.abt-value-card p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.6;
}

.abt-stats {
  padding: clamp(3rem, 4vw, 4rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.abt-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.abt-stat__number {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.abt-stat__label {
  font-size: var(--ma-metadata);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .abt-intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .abt-vision {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .abt-vision__cap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .abt-showcase {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .abt-showcase__arrow {
    align-self: flex-end;
  }


  .abt-vision__cap-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .abt-hero__cat {
    padding: 10px 16px;
    font-size: var(--ma-metadata);
  }

  .abt-values__grid {
    grid-template-columns: 1fr;
  }

  .abt-stats__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .abt-vision__quote {
    padding: 2.5rem 1.5rem;
  }

  .abt-portfolio__lead {
    padding: 1.5rem;
  }
}

/* --- coming-soon.html --- */

:root {
  --cs-bg: #060D1A;
  --cs-blue: #1A6FE0;
  --cs-blue-light: #4D9FFF;
  --cs-blue-dark: #1560C8;
}

html {
  scroll-behavior: smooth;
}

.cs-page {
  position: relative;
  min-height: 100vh;
  background: var(--cs-bg);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 20px 80px;
}

.cs-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.cs-orb--1 {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -100px;
  background: rgba(26, 58, 110, 0.2);
  animation: orb1 12s ease-in-out infinite alternate;
}

.cs-orb--2 {
  width: 800px;
  height: 800px;
  bottom: -150px;
  right: -150px;
  background: rgba(10, 42, 85, 0.15);
  animation: orb2 16s ease-in-out infinite alternate;
}

.cs-orb--3 {
  width: 400px;
  height: 400px;
  top: 40%;
  right: 10%;
  background: rgba(26, 111, 224, 0.08);
  animation: orb3 20s ease-in-out infinite alternate;
}

@keyframes orb1 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(40px, 30px);
  }
}

@keyframes orb2 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-30px, -40px);
  }
}

@keyframes orb3 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(25px, -20px);
  }
}

.cs-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
}

.cs-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cs-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.cs-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cs-blue);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(26, 111, 224, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(26, 111, 224, 0);
  }
}

.cs-headline {
  margin-top: 24px;
}

.cs-overline {
  display: block;
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cs-headline h1 {
  font-size: var(--ma-greeting-title);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.cs-gradient-text {
  background: linear-gradient(90deg, #4D9FFF, #1A6FE0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-headline p {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 540px;
  margin: 20px auto 0;
}

.cs-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.cs-countdown__block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center;
  min-width: 90px;
}

.cs-countdown__num {
  font-size: var(--ma-hero-title);
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transition: opacity 0.15s ease;
}

.cs-countdown__label {
  font-size: var(--ma-metadata-limited);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}

.cs-countdown__sep {
  font-size: var(--ma-greeting-title);
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  font-weight: 300;
}

.cs-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 520px;
  width: 100%;
}

.cs-feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  transition: all 0.2s ease;
}

.cs-feature-card:hover {
  background: rgba(26, 111, 224, 0.08);
  border-color: rgba(26, 111, 224, 0.3);
  transform: translateY(-2px);
}

.cs-feature-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: var(--ma-metadata-limited);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(26, 111, 224, 0.15);
  color: var(--cs-blue-light);
  border-radius: 4px;
  padding: 2px 7px;
}

.cs-feature-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.cs-feature-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--cs-blue-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cs-feature-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.cs-feature-card p {
  font-size: var(--ma-metadata);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0;
}

.cs-email {
  margin-top: 48px;
  max-width: 440px;
  width: 100%;
}

.cs-email__overline {
  display: block;
  font-size: var(--ma-metadata-limited);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cs-blue-light);
  margin-bottom: 10px;
}

.cs-email h2 {
  font-size: var(--ma-section-title);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.cs-email>p {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto 24px;
}

.cs-email__form {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.cs-email__form input {
  flex: 1;
  height: 52px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: var(--ma-body-text);
  padding: 0 18px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cs-email__form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cs-email__form input:focus {
  border-color: rgba(26, 111, 224, 0.6);
  box-shadow: 0 0 0 3px rgba(26, 111, 224, 0.15);
}

.cs-email__form button {
  height: 52px;
  padding: 0 24px;
  background: var(--cs-blue);
  color: #fff;
  font-weight: 600;
  font-size: var(--ma-body-text);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}

.cs-email__form button:hover {
  background: var(--cs-blue-dark);
  transform: scale(1.01);
}

.cs-email__form button:active {
  transform: scale(0.99);
}

.cs-email__success {
  display: none;
  animation: fadeUp 0.3s ease forwards;
}

.cs-email__success svg {
  width: 24px;
  height: 24px;
  color: #4ADE80;
  margin-bottom: 8px;
}

.cs-email__success p {
  font-size: var(--ma-pane-header);
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.cs-email__success span {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.45);
}

.cs-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: var(--ma-metadata);
  color: rgba(255, 255, 255, 0.3);
}

.cs-avatars {
  display: flex;
}

.cs-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  color: #fff;
  margin-left: -8px;
  border: 2px solid var(--cs-bg);
}

.cs-avatar:first-child {
  margin-left: 0;
  background: #3b82f6;
}

.cs-avatar:nth-child(2) {
  background: #8b5cf6;
}

.cs-avatar:nth-child(3) {
  background: #10b981;
}

.cs-avatar:nth-child(4) {
  background: #f59e0b;
}

.cs-avatar:nth-child(5) {
  background: #ef4444;
}

.cs-back {
  margin-top: 60px;
  font-size: var(--ma-metadata);
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s, letter-spacing 0.2s;
  letter-spacing: 0;
}

.cs-back:hover {
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
  .cs-headline h1 {
    font-size: var(--ma-hero-title);
  }

  .cs-countdown__block {
    padding: 16px 20px;
    min-width: 70px;
  }

  .cs-countdown__num {
    font-size: var(--ma-hero-title);
  }
}

@media (max-width: 767px) {
  .cs-page {
    padding: 100px 20px 60px;
  }

  .cs-headline h1 {
    font-size: var(--ma-greeting-title);
  }

  .cs-countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cs-countdown__block {
    padding: 14px 18px;
    min-width: 65px;
  }

  .cs-countdown__num {
    font-size: var(--ma-greeting-title);
  }

  .cs-features {
    grid-template-columns: 1fr;
  }

  .cs-email__form {
    flex-direction: column;
  }

  .cs-orbs {
    display: none;
  }
}

@media (max-width: 480px) {
  .cs-headline h1 {
    font-size: var(--ma-greeting-title);
  }

  .cs-countdown__block {
    padding: 12px 14px;
  }

  .cs-countdown__num {
    font-size: var(--ma-page-title);
  }

  .cs-feature-card {
    padding: 20px;
  }
}

/* --- resources.html --- */

.res-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(4rem, 5vw, 6rem);
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  color: #e8eef6;
}

.res-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.res-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(5, 12, 24, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.res-hero__content {
  position: relative;
  z-index: 2;
}

.res-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #fff;
}

.res-hero h1 span {
  color: white;
}

.res-hero p {
  font-size: var(--ma-body-text);
  color: rgba(232, 238, 246, 0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

.res-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}


.res-gateways {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: #f8fafc;
}

.res-gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.res-gateway {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.res-gateway::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 300ms ease;
}

.res-gateway:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.res-gateway:hover::after {
  transform: scaleX(1);
}

.res-gateway__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: var(--ma-pane-header);
}

.res-gateway__body h2,
.res-gateway__body h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 6px;
}

.res-gateway__body p {
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 12px;
}

.res-gateway__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--primary);
}

.res-gateway__cta i {
  font-size: var(--ma-metadata);
  transition: transform 200ms ease;
}

.res-gateway:hover .res-gateway__cta i {
  transform: translateX(3px);
}

.res-filter-strip {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
  position: sticky;
  top: 56px;
  z-index: 90;
}

.res-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.res-filter__pill {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 200ms ease;
}

.res-filter__pill:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.res-filter__pill.active {
  background: #071525;
  color: #fff;
  border-color: #071525;
  font-weight: 600;
}

.res-filter__divider {
  width: 1px;
  height: 28px;
  background: #e2e8f0;
  margin: 0 8px;
}

.res-filter__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid rgba(26, 111, 224, 0.2);
  background: rgba(26, 111, 224, 0.04);
  transition: all 200ms ease;
}

.res-filter__link:hover {
  background: rgba(26, 111, 224, 0.1);
  border-color: var(--primary);
}

.res-filter__link i {
  font-size: var(--ma-metadata);
}

.res-featured {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: #f8fafc;
}

.res-featured__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: box-shadow 300ms ease;
}

.res-featured__card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.res-featured__visual {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.res-featured__visual svg {
  width: 400px;
  height: 400px;
  opacity: 0.15;
}

.res-featured__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 6px;
}

.res-featured__body {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.res-featured__tag {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.res-featured__body h2 {
  font-size: var(--ma-page-title);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.res-featured__body p {
  font-size: var(--ma-body-text);
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

.res-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: var(--ma-metadata);
  color: #94a3b8;
}

.res-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.res-featured__cta:hover {
  text-decoration: underline;
}

.res-grid-section {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
}

.res-grid-section__header {
  margin-bottom: 2rem;
}

.res-grid-section__header h2 {
  font-size: var(--ma-section-title);
  font-weight: 800;
  color: #0f172a;
}

.res-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.res-article {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 300ms ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.res-article:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.res-article__visual {
  height: 200px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.res-article__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.res-article:hover .res-article__visual img {
  transform: scale(1.05);
}

.res-article__visual svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.res-article__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--primary);
}

.res-article__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.res-article__body h3 {
  font-size: var(--ma-header);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.res-article__body p {
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #64748b;
  flex: 1;
}

.res-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--ma-metadata);
  color: #94a3b8;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.res-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f8fafc;
}

.res-cta__card {
  background: linear-gradient(135deg, #060D1A 0%, #0f1d35 100%);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.res-cta__card h2 {
  font-size: var(--ma-page-title);
  font-weight: 800;
  margin-bottom: 1rem;
}

.res-cta__card p {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.res-cta__form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.res-cta__form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: var(--ma-body-text);
}

.res-cta__form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.res-cta__form button {
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: var(--ma-body-text);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms ease;
}

.res-cta__form button:hover {
  background: #1560C8;
}

@media (max-width: 768px) {
  .res-gateway-grid {
    grid-template-columns: 1fr;
  }

  .res-article-grid {
    grid-template-columns: 1fr;
  }

  .res-cta__form {
    flex-direction: column;
  }

  .res-filter {
    gap: 8px;
  }
}

/* --- resources/media.html --- */

.media-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(4rem, 5vw, 6rem);
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  color: #e8eef6;
}

.media-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.media-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(5, 12, 24, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.media-hero__content {
  position: relative;
  z-index: 2;
}

.media-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.media-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.media-hero p {
  font-size: var(--ma-body-text);
  color: rgba(232, 238, 246, 0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

.media-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.media-section:nth-child(odd) {
  background: #f8fafc;
}

.media-section:nth-child(even) {
  background: #fff;
}

.media-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.media-section__header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.media-section__header p {
  color: #64748b;
  font-size: var(--ma-body-text);
  max-width: 480px;
  margin: 0 auto;
}

.media-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.media-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.event-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.08);
  transform: translateY(-3px);
}

.event-card__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 1rem;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 8px;
  width: fit-content;
}

.event-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-card p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.event-card__location {
  font-size: var(--ma-metadata);
  color: #94a3b8;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 0.75rem;
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.event-card__badge--past {
  background: rgba(100, 116, 139, 0.08);
  color: #64748b;
  border-color: rgba(100, 116, 139, 0.18);
}

/* ── Upcoming Events Empty State ── */
.upcoming-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2.5rem, 4vw, 3.5rem) 2rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.upcoming-empty__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-pane-header);
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

.upcoming-empty__title {
  font-size: var(--ma-header);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.4rem;
}

.upcoming-empty__text {
  font-size: var(--ma-body-text);
  line-height: 1.65;
  color: #94a3b8;
  max-width: 38ch;
  margin-bottom: 0;
}

/* ── Event Showcase (horizontal split-card) ── */
.event-showcase {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.event-showcase__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.event-showcase__card:hover {
  box-shadow: 0 12px 32px rgba(3, 70, 148, 0.08);
  transform: translateY(-2px);
}

/* ── Media side (left) ── */
.event-showcase__media {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-showcase__hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.event-showcase__hero img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.event-showcase__hero:hover img {
  transform: scale(1.03);
}

.event-showcase__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.event-showcase__tag--domestic {
  background: rgba(16, 185, 129, 0.85);
  color: #fff;
}

.event-showcase__tag--international {
  background: rgba(59, 130, 246, 0.85);
  color: #fff;
}

.event-showcase__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.event-showcase__thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.event-showcase__thumbs img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.event-showcase__thumbs img.active {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px #3b82f6;
  opacity: 0.75;
}

.event-showcase__hero img {
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.event-showcase__hero img.swapping {
  opacity: 0;
}

.event-showcase__hero img.swapped-in {
  animation: fadeIn 0.35s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Body side (right) ── */
.event-showcase__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

.event-showcase__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.event-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(100, 116, 139, 0.08);
  color: #64748b;
  border: 1px solid rgba(100, 116, 139, 0.15);
}

.event-showcase__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #3b82f6;
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 6px;
}

.event-showcase__body h3 {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.event-showcase__body p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.7;
  flex: 1;
}

.event-showcase__location {
  font-size: var(--ma-metadata);
  color: #94a3b8;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .event-showcase__card {
    grid-template-columns: 1fr;
  }

  .event-showcase__hero img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .event-showcase__thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-showcase__thumbs img {
    height: 70px;
  }

  .event-showcase__hero img {
    height: 180px;
  }
}

.press-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.press-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  cursor: pointer;
}

.press-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.08);
}

.press-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--ma-header);
  color: #64748b;
}

.press-card__source {
  font-size: var(--ma-metadata);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.press-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.press-card p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.6;
}

.press-card__date {
  font-size: var(--ma-metadata);
  color: #94a3b8;
  margin-top: 0.5rem;
}

.video-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.video-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.08);
  transform: translateY(-3px);
}

.video-card__thumb {
  height: 180px;
  background: linear-gradient(135deg, #0d213f, #1a508f);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-card__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
}

.video-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--ma-pane-header);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.video-card:hover .video-card__play {
  background: rgba(59, 130, 246, 0.5);
  border-color: rgba(59, 130, 246, 0.6);
  transform: scale(1.05);
}

.video-card__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 1;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 8px;
  border-radius: 4px;
}

.video-card__body {
  padding: 1.25rem;
}

.video-card__body h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.video-card__body p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1024px) {

  .event-cards,
  .video-cards {
    grid-template-columns: 1fr 1fr;
  }

  .press-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .event-cards,
  .video-cards {
    grid-template-columns: 1fr;
  }

  .res-subnav__links {
    padding: 8px 0;
    gap: 2px;
  }

  .res-subnav__link {
    padding: 8px 14px;
    font-size: var(--ma-metadata);
  }
}

/* --- solutions/e-governance.html --- */

.sol-intro {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: #fff
}

.sol-intro__text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center
}

.sol-intro__lead {
  font-size: var(--ma-pane-header);
  line-height: 1.75;
  color: #334155
}

.sol-segment {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #ffffff;
  position: relative
}

.sol-segment--alt {
  background: #edf5fc
}

.sol-segment--bg3 {
  background: #f4f5f7
}

.sol-segment+.sol-segment::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%)
}

.sol-segment__header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 2.5rem
}

.sol-segment__num {
  font-size: var(--ma-header);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sol-segment__intro h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.02em;
  line-height: 1.2
}

.sol-segment__tagline {
  font-size: var(--ma-metadata);
  color: var(--primary);
  font-weight: 600;
  font-style: italic
}

.sol-segment__hero {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem
}

.sol-segment--alt .sol-segment__hero {
  direction: rtl
}

.sol-segment--alt .sol-segment__hero>* {
  direction: ltr
}

.sol-segment__visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 30, 60, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px
}

.sol-segment__visual i {
  font-size: var(--ma-xl-numerics-limited);
  opacity: .4
}

.sol-segment__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0
}

/* .sol-segment__visual--blue {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: #3b82f6
}

.sol-segment__visual--teal {
  background: linear-gradient(135deg, #ccfbf1, #f0fdfa);
  color: #14b8a6
}

.sol-segment__visual--sky {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  color: #0284c7
}

.sol-segment__visual--violet {
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
  color: #8b5cf6
}

.sol-segment__visual--amber {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  color: #f59e0b
}

.sol-segment__visual--slate {
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  color: #64748b
}

.sol-segment__visual--dark {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #94a3b8
} */

.sol-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(10, 30, 60, .07)
}

.sol-detail__overview h3,
.sol-detail__features h3,
.sol-detail__offers h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: .85rem
}

.sol-detail__overview p {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #3e4c5e
}

.sol-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem
}

.sol-feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 5px 10px;
  letter-spacing: .01em;
  transition: all .25s
}

.sol-feature-tags span:hover {
  background: var(--primary-dim);
  border-color: rgba(59, 130, 246, .3);
  color: var(--primary)
}

.sol-detail__offers {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(10, 30, 60, .07)
}

.sol-detail__offers h3 {
  padding-left: 0.75rem;
}

.sol-detail__offers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.sol-detail__offers li {
  position: relative;
  padding: 1rem 1.25rem 1rem 3.5rem;
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  transition: background .2s;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.sol-detail__offers li:nth-last-child(-n+2) {
  border-bottom: none
}

.sol-detail__offers li::before {
  content: '';
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--primary-dim)
}

.sol-detail__offers li::after {
  content: '\2713';
  position: absolute;
  left: calc(.75rem + 6px);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.sol-detail__offers li:hover {
  background: rgba(59, 130, 246, .04)
}

@media(max-width:1024px) {
  .sol-segment__hero {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .sol-segment--alt .sol-segment__hero {
    direction: ltr
  }

  .sol-detail__offers ul {
    grid-template-columns: 1fr
  }

  .sol-detail__offers li:nth-last-child(-n+2) {
    border-bottom: 1px solid #e2e8f0
  }

  .sol-detail__offers li:last-child {
    border-bottom: none
  }
}

@media(max-width:768px) {
  .sol-hero-panel {
    padding: 1.5rem;
    gap: 1.25rem
  }

  .sol-detail__offers {
    padding: 1.5rem 1.5rem 1.5rem -16px
  }

  .sol-detail__offers li {
    padding-left: 3rem
  }

  .sol-segment__header {
    flex-direction: column;
    gap: 8px
  }

  .sol-segment__visual {
    min-height: 180px
  }

  .sol-segment__visual i {
    font-size: var(--ma-hero-title)
  }
}

/* --- resources/blog-insights.html --- */

.blog-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(4rem, 5vw, 6rem);
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  color: #e8eef6;
}

.blog-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.blog-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(5, 12, 24, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.blog-hero__content {
  position: relative;
  z-index: 2;
}

.blog-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.blog-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #fff;
}

.blog-hero p {
  font-size: var(--ma-body-text);
  color: rgba(232, 238, 246, 0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

.blog-grid {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: #f8fafc;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}

.blog-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 40px rgba(3, 70, 148, 0.1);
  transform: translateY(-4px);
}

.blog-card__accent {
  height: 6px;
  background: linear-gradient(90deg, #1a4eb5 0%, #3b82f6 100%);
}

.blog-card__accent--insight {
  background: linear-gradient(90deg, #854f0b 0%, #f59e0b 100%);
}

.blog-card__accent--technical {
  background: linear-gradient(90deg, #4b2ea2 0%, #8b5cf6 100%);
}

.blog-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__pill {
  display: inline-block;
  width: fit-content;
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.blog-card__pill--whitepaper {
  background: #eef3ff;
  color: #1a4eb5;
}

.blog-card__pill--insight {
  background: #fff8ec;
  color: #854f0b;
}

.blog-card__pill--technical {
  background: #f3f0ff;
  color: #4b2ea2;
}

.blog-card__body h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card__body p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.65;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.blog-card__date {
  font-size: var(--ma-metadata);
  color: #94a3b8;
}

.blog-card__read {
  font-size: var(--ma-metadata);
  color: #94a3b8;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: #3b82f6;
  margin-top: 0.75rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.blog-card__link:hover {
  gap: 0.6rem;
}

@media (max-width: 1024px) {
  .blog-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }

  .res-subnav__links {
    padding: 8px 0;
    gap: 2px;
  }

  .res-subnav__link {
    padding: 8px 14px;
    font-size: var(--ma-metadata);
  }
}

/* --- solutions.html --- */

.sg-intro {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.sg-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.sg-intro__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: var(--primary-dim);
  padding: 8px 16px;
  border-radius: 10px;
}

.sg-intro__label i {
  font-size: var(--ma-metadata);
}

.sg-intro__headline {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.sg-intro__headline span {
  color: var(--primary);
}

.sg-intro__lead {
  font-size: var(--ma-pane-header);
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.25rem;
}

.sg-intro__body {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #475569;
}

.sg-intro__accent {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--primary);
}

.sg-intro__accent::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 40px;
  background: var(--primary);
  border-radius: 3px;
}

.sg-intro__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.sg-intro__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(10, 30, 60, 0.04);
  transition: all 0.3s;
}

.sg-intro__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.08);
  border-color: #cbd5e1;
}

.sg-intro__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-dim);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
}

.sg-intro__item-text h3,
.sg-intro__item-text h4 {
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 3px;
}

.sg-intro__item-text p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .sg-intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sg-intro__accent {
    padding-left: 1.5rem;
  }
}

.sg-segments {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: #f8fafc;
}

.sg-segments__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sg-segments__header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.sg-segments__header p {
  color: #64748b;
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
}

.sg-showcase {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 2rem 2.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.sg-showcase:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 28px rgba(3, 70, 148, 0.07);
  transform: translateX(4px);
}

.sg-showcase__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-pane-header);
  flex-shrink: 0;
}

.sg-showcase__content {
  flex: 1;
}

.sg-showcase__num {
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.sg-showcase__content h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.sg-showcase__content p {
  color: #64748b;
  font-size: var(--ma-body-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.sg-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sg-showcase__tags span {
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
}

.sg-showcase__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.06);
  color: #3b82f6;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
  transition: all 0.3s;
}

.sg-showcase:hover .sg-showcase__arrow {
  background: #3b82f6;
  color: #fff;
}

@media (max-width: 768px) {
  .sg-showcase {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .sg-showcase__arrow {
    align-self: flex-end;
  }
}

.sg-capabilities {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: #fff;
}

.sg-capabilities__header {
  text-align: center;
  margin-bottom: 3rem;
}

.sg-capabilities__header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.sg-capabilities__header p {
  color: #64748b;
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
}

.sg-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sg-cap {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: all 0.3s;
  text-align: center;
}

.sg-cap:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.08);
  transform: translateY(-2px);
}

.sg-cap__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-pane-header);
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
}

.sg-cap h3,
.sg-cap h4 {
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.sg-cap p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.6;
}

.sg-stats {
  padding: clamp(3rem, 4vw, 4rem) 0;
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
}

.sg-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.sg-stat__number {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.sg-stat__label {
  font-size: var(--ma-metadata);
  color: rgba(232, 238, 246, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .sg-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .sg-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sg-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .sg-cap-grid {
    grid-template-columns: 1fr;
  }

  .sg-stats__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --- 404.html --- */

.err-page {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}

.err-page__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
}

.err-page__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.err-page__orb--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: rgba(26, 58, 110, 0.2);
  animation: errOrb1 10s ease-in-out infinite alternate;
}

.err-page__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: rgba(59, 130, 246, 0.12);
  animation: errOrb2 14s ease-in-out infinite alternate;
}

@keyframes errOrb1 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(30px, 25px);
  }
}

@keyframes errOrb2 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-25px, -30px);
  }
}

.err-page__glitch {
  position: absolute;
  z-index: 0;
  font-size: clamp(14rem, 35vw, 30rem);
  font-weight: 900;
  color: rgba(59, 130, 246, 0.04);
  letter-spacing: -0.04em;
  user-select: none;
  line-height: 1;
  animation: err-flicker 5s infinite;
}

@keyframes err-flicker {

  0%,
  90%,
  100% {
    opacity: 1;
  }

  91% {
    opacity: 0.3;
    transform: translateX(3px) skewX(-1deg);
  }

  92% {
    opacity: 1;
    transform: translateX(-2px);
  }

  93% {
    opacity: 0.5;
    transform: translateX(1px) skewX(0.5deg);
  }

  94% {
    opacity: 1;
    transform: translateX(0);
  }
}

.err-page__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.err-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 1.5rem;
  padding: 8px 16px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.err-page__badge i {
  font-size: var(--ma-metadata);
}

.err-page h1 {
  font-size: var(--ma-greeting-title);
  color: #e8eef6;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.err-page p {
  font-size: var(--ma-body-text);
  color: rgba(232, 238, 246, 0.6);
  line-height: 1.7;
  max-width: 44ch;
  margin: 0 auto 36px;
}

.err-page__links .btn-primary {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}

.err-page__links .btn-primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
}

.err-page__links .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e8eef6;
}

.err-page__quick {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.err-page__quick-label {
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.err-page__quick-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.err-page__quick-links a {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}

.err-page__quick-links a:hover {
  color: #fff;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

/* --- solutions/enterprise-solution.html --- */

.sol-intro {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: #fff
}

.sol-intro__text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center
}

.sol-intro__lead {
  font-size: var(--ma-pane-header);
  line-height: 1.75;
  color: #334155
}

.sol-segment {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #ffffff;
  position: relative
}

.sol-segment--alt {
  background: #edf5fc
}

.sol-segment--bg3 {
  background: #f4f5f7
}

.sol-segment+.sol-segment::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%)
}

.sol-segment__header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 2.5rem
}

.sol-segment__num {
  font-size: var(--ma-header);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sol-segment__intro h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.02em;
  line-height: 1.2
}

.sol-segment__tagline {
  font-size: var(--ma-metadata);
  color: var(--primary);
  font-weight: 600;
  font-style: italic
}

.sol-segment__hero {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem
}

.sol-segment--alt .sol-segment__hero {
  direction: rtl
}

.sol-segment--alt .sol-segment__hero>* {
  direction: ltr
}

.sol-segment__visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 30, 60, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px
}

.sol-segment__visual i {
  font-size: var(--ma-xl-numerics-limited);
  opacity: .4
}

.sol-segment__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0
}

.sol-segment__visual--blue {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: #3b82f6
}

.sol-segment__visual--teal {
  background: linear-gradient(135deg, #ccfbf1, #f0fdfa);
  color: #14b8a6
}

.sol-segment__visual--sky {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  color: #0284c7
}

.sol-segment__visual--violet {
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
  color: #8b5cf6
}

.sol-segment__visual--amber {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  color: #f59e0b
}

.sol-segment__visual--slate {
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  color: #64748b
}

.sol-segment__visual--dark {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #94a3b8
}

.sol-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(10, 30, 60, .07)
}

.sol-detail__overview h3,
.sol-detail__features h3,
.sol-detail__offers h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: .85rem
}

.sol-detail__overview p {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #3e4c5e
}

.sol-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem
}

.sol-feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 5px 10px;
  letter-spacing: .01em;
  transition: all .25s
}

.sol-feature-tags span:hover {
  background: var(--primary-dim);
  border-color: rgba(59, 130, 246, .3);
  color: var(--primary)
}

.sol-detail__offers {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(10, 30, 60, .07)
}

.sol-detail__offers h3 {
  padding-left: 0.75rem;
}

.sol-detail__offers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.sol-detail__offers li {
  position: relative;
  padding: 1rem 1.25rem 1rem 3.5rem;
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  transition: background .2s;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.sol-detail__offers li:nth-last-child(-n+2) {
  border-bottom: none
}

.sol-detail__offers li::before {
  content: '';
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--primary-dim)
}

.sol-detail__offers li::after {
  content: '\2713';
  position: absolute;
  left: calc(.75rem + 6px);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.sol-detail__offers li:hover {
  background: rgba(59, 130, 246, .04)
}

@media(max-width:1024px) {
  .sol-segment__hero {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .sol-segment--alt .sol-segment__hero {
    direction: ltr
  }

  .sol-detail__offers ul {
    grid-template-columns: 1fr
  }

  .sol-detail__offers li:nth-last-child(-n+2) {
    border-bottom: 1px solid #e2e8f0
  }

  .sol-detail__offers li:last-child {
    border-bottom: none
  }
}

@media(max-width:768px) {
  .sol-hero-panel {
    padding: 1.5rem;
    gap: 1.25rem
  }

  .sol-detail__offers {
    padding: 1.5rem 1.5rem 1.5rem -16px
  }

  .sol-detail__offers li {
    padding-left: 3rem
  }

  .sol-segment__header {
    flex-direction: column;
    gap: 8px
  }

  .sol-segment__visual {
    min-height: 180px
  }

  .sol-segment__visual i {
    font-size: var(--ma-hero-title)
  }
}

/* --- resources/case-studies.html --- */

.cst-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(4rem, 5vw, 6rem);
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  color: #e8eef6;
}

.cst-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.cst-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(5, 12, 24, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.cst-hero__content {
  position: relative;
  z-index: 2;
}

.cst-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.cst-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #fff;
}

.cst-hero p {
  font-size: var(--ma-body-text);
  color: rgba(232, 238, 246, 0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

.cst-grid {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: #f8fafc;
}

.cst-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cst-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}

.cst-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.cst-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 40px rgba(3, 70, 148, 0.1);
  transform: translateY(-4px);
}

.cst-card__visual {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cst-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  z-index: 1;
}

.cst-card__visual i {
  font-size: var(--ma-hero-title);
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.cst-card__pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: #edfbf5;
  color: #0b6e4f;
}

.cst-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cst-card__body h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cst-card__body p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.65;
  flex: 1;
}

.cst-card__meta {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.cst-card__tag {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cst-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: #3b82f6;
  margin-top: 1rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.cst-card__link:hover {
  gap: 0.6rem;
}

@media (max-width: 1024px) {
  .cst-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .cst-cards {
    grid-template-columns: 1fr;
  }

  .res-subnav__links {
    padding: 8px 0;
    gap: 2px;
  }

  .res-subnav__link {
    padding: 8px 14px;
    font-size: var(--ma-metadata);
  }
}


/* --- Hamburger Button (hidden on desktop) --- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 210;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: all 300ms var(--ease-quart);
  position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.mobile-menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.navbar.scrolled .mobile-menu-toggle span {
  background: var(--text);
}

/* Hamburger to X animation */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(0);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(0);
}

/* --- Accordion chevron base transition --- */
.nav-link-has-menu>.nav-link .nav-link-arrow {
  transition: transform 300ms var(--ease-quart);
}

/* --- Backdrop (created by JS, hidden on desktop) --- */
.mobile-drawer-backdrop {
  display: none;
}

@media (max-width: 900px) {

  /* Elevate navbar above backdrop on mobile */
  .navbar {
    z-index: 9999;
  }

  /* Show hamburger */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide desktop CTA */
  .nav-cta {
    display: none;
  }

  /* ---- Backdrop overlay ---- */
  .mobile-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 350ms var(--ease-quart),
      visibility 350ms var(--ease-quart);
  }

  .mobile-drawer-backdrop.visible {
    opacity: 1;
    visibility: visible;
  }

  /* ---- Drawer panel ---- */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: 100%;
    min-width: 100%;
    max-width: none;
    height: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 400ms var(--ease-quart);
    box-shadow: none;
    z-index: 200;
    display: flex;
    visibility: hidden;
  }

  .nav-links.open {
    transform: translateX(0);
    box-shadow: none;
    visibility: visible;
  }

  /* Remove old pseudo-element backdrop */
  .nav-links::before {
    display: none !important;
  }

  .nav-links::after {
    display: none;
  }

  /* Scrollable content area */
  .nav-links {
    padding-top: 72px;
    padding-bottom: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* ---- Top-level nav items (Level 1) ---- */
  .nav-links>.nav-link,
  .nav-links>.nav-link-has-menu>.nav-link {
    color: var(--ink-900) !important;
    font-size: var(--ma-body-text);
    font-weight: 600;
    padding: 16px 24px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(228, 234, 240, 0.7);
    letter-spacing: -0.01em;
    transition: background-color 150ms ease, color 150ms ease;
    text-decoration: none;
  }

  .nav-links>.nav-link:active,
  .nav-links>.nav-link-has-menu>.nav-link:active {
    background-color: var(--surface-alt);
  }

  /* Active page highlighting - REMOVED */
  .nav-links>.nav-link.active,
  .nav-links>.nav-link-has-menu>.nav-link.active {
    color: var(--ink-900) !important;
    background: transparent;
    position: relative;
  }

  .nav-links>.nav-link.active::before,
  .nav-links>.nav-link-has-menu>.nav-link.active::before {
    display: none;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: var(--primary);
    border-radius: 0 3px 3px 0;
  }

  /* Hide desktop underline effect */
  .nav-links .nav-link::after {
    display: none;
  }

  /* Disable hover transform on mobile */
  .nav-links .nav-link:hover {
    transform: none;
  }

  /* ---- Chevron indicator ---- */
  .nav-links .nav-link .nav-link-arrow {
    font-size: var(--ma-metadata);
    color: var(--text-tertiary);
    transition: transform 300ms var(--ease-quart),
      color 300ms ease,
      background-color 300ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-alt);
    flex-shrink: 0;
    margin-left: auto;
  }

  /* Chevron rotated when accordion open */
  .nav-link-has-menu.mega-open>.nav-link .nav-link-arrow {
    transform: rotate(180deg);
    background: var(--primary-dim);
    color: var(--primary);
  }

  /* ---- Mega Menu Accordion ---- */
  .nav-link-has-menu {
    position: static;
  }

  .nav-link-has-menu>.mega-menu {
    position: static !important;
    width: 100% !important;
    max-height: 0;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0;
    background: var(--surface-blue-pale);
    border: none !important;
    pointer-events: auto !important;
    transition: max-height 450ms var(--ease-quart);
    margin: 0;
    padding: 0 !important;
    left: auto;
    top: auto;
  }

  /* Disable hover-based open */
  .nav-link-has-menu:hover>.mega-menu {
    max-height: 0 !important;
    transform: none !important;
  }

  /* Accordion expanded state */
  .nav-link-has-menu.mega-open>.mega-menu {
    max-height: 3000px !important;
    padding: 8px 0 16px !important;
    overflow: visible !important;
  }

  /* ---- Mega Menu Body ---- */
  .mega-menu-body {
    padding: 4px 12px;
  }

  .mega-menu-wide {
    width: 100% !important;
    display: block !important;
  }

  /* ---- Solutions Dynamic Menu ---- */
  .mm-sol-dynamic {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    min-height: auto;
  }

  .mm-sol-nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    border-right: none;
    border-bottom: 1px solid rgba(228, 234, 240, 0.8);
    padding: 8px 12px;
    margin-bottom: 4px;
    min-width: 0;
    width: 100%;
    scrollbar-width: none;
  }

  .mm-sol-nav::-webkit-scrollbar {
    display: none;
  }

  .mm-sol-tab {
    white-space: nowrap;
    padding: 6px 8px;
    font-size: var(--ma-body-text);
    min-width: auto;
    border-radius: 8px;
    border-left: none;
    margin: 0 1px;
    flex-shrink: 0;
    gap: 6px;
  }

  .mm-sol-tab:hover {
    border-left-color: transparent;
    background: var(--primary-dim);
  }

  .mm-sol-tab__icon {
    width: 24px;
    height: 24px;
    font-size: var(--ma-metadata);
    border-radius: 6px;
  }

  .mm-sol-tab strong {
    font-size: 0;
    line-height: 0;
    overflow: hidden;
  }

  .mm-sol-tab strong[data-short]::after {
    content: attr(data-short);
    font-size: var(--ma-metadata);
    line-height: normal;
    font-weight: 700;
  }

  .mm-sol-tab span {
    display: none;
  }

  .mm-sol-arrow {
    display: none;
  }

  /* Panels */
  .mm-sol-panels {
    min-height: auto;
    padding: 8px 0;
  }

  .mm-sol-panel {
    position: relative;
    padding: 4px 0;
    min-height: auto;
    opacity: 0;
    visibility: hidden;
    display: none;
    transform: none;
    inset: auto;
  }

  .mm-sol-panel.active {
    opacity: 1;
    visibility: visible;
    display: block;
    position: relative;
    transform: none;
  }

  .mm-sol-panel__title {
    font-size: var(--ma-metadata-limited);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin: 8px 16px 6px;
    font-weight: 700;
  }

  .mm-sol-panel__grid {
    grid-template-columns: 1fr !important;
    gap: 2px;
    padding: 0 4px;
  }

  /* ---- Products mega menu ---- */
  .mega-menu-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mm-col {
    padding: 8px 4px;
    border-right: none;
    border-bottom: 1px solid rgba(228, 234, 240, 0.5);
  }

  .mm-col:last-child {
    border-bottom: none;
  }

  /* ---- Group Labels (Level 2) ---- */
  .mm-col-title {
    font-size: var(--ma-metadata-limited);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin: 4px 12px 6px;
    font-weight: 700;
  }

  /* ---- Individual Links (Level 3) ---- */
  .mega-menu .mm-item {
    display: block;
    padding: 12px 16px;
    margin: 2px 4px;
    min-height: 44px;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: var(--text);
    text-decoration: none;
    font-size: var(--ma-body-text);
    pointer-events: auto !important;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: background-color 150ms ease;
  }

  .mega-menu .mm-item:active {
    background: rgba(3, 70, 148, 0.06);
  }

  .mega-menu .mm-item strong {
    font-size: var(--ma-body-text);
    font-weight: 600;
    color: var(--ink-800);
    margin-bottom: 1px;
  }

  .mega-menu .mm-item span {
    font-size: var(--ma-metadata);
    color: var(--text-tertiary);
    line-height: 1.3;
  }

  /* ---- Mega Menu Footer ---- */
  .mega-menu-footer {
    padding: 12px 16px;
    flex-direction: column;
    gap: 8px;
    background: transparent;
    border-top: 1px solid rgba(228, 234, 240, 0.6);
  }

  .mm-footer-link {
    padding: 10px 16px;
    min-height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: var(--ma-body-text);
  }

  .mm-footer-cta {
    display: none;
  }

  /* ---- Navbar inner ---- */
  .navbar-inner {
    justify-content: space-between;
  }

  .navbar-logo {
    flex: 0 0 auto;
    z-index: 210;
  }
}


.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.mobile-menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.navbar.scrolled .mobile-menu-toggle span {
  background: var(--text);
}

/* Hamburger Ã¢â€ â€™ X animation when open */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(0);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(0);
}

/* --- Mobile Nav Accordion Toggle --- */
.nav-link-has-menu>.nav-link .nav-link-arrow {
  transition: transform 300ms var(--ease-quart);
}

@media (max-width: 1024px) {

  /* Elevate navbar above backdrop on mobile */
  .navbar {
    z-index: 9999;
  }

  /* Show hamburger */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide CTA from navbar row on mobile */
  .nav-cta {
    display: none;
  }

  /* Old nav-links overlay rules removed - handled by mobile drawer section */

  /* Mega menus: accordion style on mobile */
  .nav-link-has-menu {
    position: static;
  }

  .nav-link-has-menu>.mega-menu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: var(--surface-alt);
    border: none;
    pointer-events: auto;
    transition: max-height 400ms var(--ease-quart);
    margin: 0;
    padding: 0;
  }

  .nav-link-has-menu:hover>.mega-menu {
    /* Disable hover on mobile Ã¢â‚¬â€ use JS tap instead */
    max-height: 0;
    transform: none;
  }

  .nav-link-has-menu.mega-open>.mega-menu {
    max-height: 2000px;
    padding: 12px 0;
  }

  .nav-link-has-menu.mega-open>.nav-link .nav-link-arrow {
    transform: rotate(180deg);
  }

  /* Mega menu body adjustments */
  .mega-menu-body {
    padding: 8px 16px;
  }

  .mega-menu-wide {
    width: 100% !important;
  }

  /* Solutions mega menu: stack tabs and panels */
  .mm-sol-dynamic {
    flex-direction: column;
  }

  .mm-sol-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    border-right: none;
    border-bottom: 1px solid var(--ink-100);
    padding-bottom: 8px;
    margin-bottom: 8px;
    min-width: 0;
    width: 100%;
  }

  .mm-sol-tab {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: var(--ma-body-text);
    min-width: auto;
  }

  .mm-sol-arrow {
    display: none;
  }

  .mm-sol-panels {
    min-height: auto;
  }

  .mm-sol-panel__grid {
    grid-template-columns: 1fr !important;
    gap: 4px;
  }

  .mm-item {
    padding: 10px 12px;
  }

  /* Products mega menu */
  .mega-menu-2col {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Mega menu footer */
  .mega-menu-footer {
    padding: 12px 16px;
    flex-direction: column;
    gap: 8px;
  }

  /* Navbar inner: keep logo and hamburger visible */
  .navbar-inner {
    justify-content: space-between;
  }

  .navbar-logo {
    flex: 0 0 auto;
    z-index: 110;
  }
}




/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 2 Ã¢â‚¬â€ INDEX.HTML (HOME PAGE)
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* --- Hero Section --- */
@media (max-width: 768px) {
  #hero {
    padding-top: 100px;
  }

  .hero-inner {
    padding: 0 20px;
  }

  .headline {
    font-size: var(--ma-greeting-title);
  }

  .subtext {
    font-size: var(--ma-body-text);
  }

  .cta-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .cta-row .btn-primary,
  .cta-row .btn-ghost {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero-metrics {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .hero-metric {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 90px;
  }
}

@media (max-width: 480px) {
  .hero-metric {
    flex: 0 0 calc(50% - 12px);
  }

  .hero-metric__num {
    font-size: var(--ma-pane-header);
  }

  .hero-metric__text {
    font-size: var(--ma-body-text);
  }
}

/* --- Certs / Standards Section --- */
@media (max-width: 768px) {
  .certs-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .certs-logos img {
    height: 40px;
  }
}

/* --- Value Grid --- */
@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- Intro Grid --- */
@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .intro-stats {
    grid-template-columns: 1fr;
  }
}

/* --- Sectors Section --- */
@media (max-width: 640px) {
  .sectors-tabs {
    gap: 6px;
  }

  .sector-tab {
    font-size: var(--ma-metadata);
    padding: 0.6rem 0.8rem;
  }

  .sector-panel.active,
  .sector-panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sector-panel__visual {
    order: -1;
  }

  .sector-panel__visual img {
    max-width: 100%;
  }
}

/* --- Products Grid --- */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Cases Grid --- */
@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* --- Why Mantra Bento Grid --- */
@media (max-width: 1024px) {
  .why-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-bento {
    grid-template-columns: 1fr;
  }
}

/* --- Lead Capture Form --- */
@media (max-width: 1024px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-visual {
    display: none;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-grid {
    padding: 0 4px;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 3 Ã¢â‚¬â€ ABOUT PAGE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 768px) {
  .abt-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .abt-timeline {
    padding-left: 20px;
  }

  .abt-timeline::before {
    left: 0;
  }

  .abt-milestone {
    padding-left: 32px;
  }

  .abt-milestone::before {
    left: -6px;
  }

  .abt-values-grid {
    grid-template-columns: 1fr;
  }

  .abt-leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .abt-leadership-grid {
    grid-template-columns: 1fr;
  }

  .abt-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 3 Ã¢â‚¬â€ CONTACT PAGE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 1024px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ct-intents__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ct-intents__grid {
    grid-template-columns: 1fr;
  }

  .ct-form__row {
    grid-template-columns: 1fr;
  }

  .ct-quick__bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .ct-quick__divider {
    width: 100%;
    height: 1px;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 3 Ã¢â‚¬â€ BOOK DEMO PAGE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 768px) {
  .demo-form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demo-form-sidebar {
    order: 2;
  }

  .demo-form-row {
    grid-template-columns: 1fr;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 3 Ã¢â‚¬â€ PRODUCTS PAGE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 768px) {
  .prd-hero__content {
    padding: 0 16px;
  }

  .prd-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .prd-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .prd-grid,
  .prd-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .prd-detail-visual {
    order: -1;
  }

  .prd-specs-grid {
    grid-template-columns: 1fr;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 3 Ã¢â‚¬â€ SOLUTIONS SUBPAGES
   (e-governance, fintech-bfsi, enterprise)
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 768px) {

  /* Hero nav links (section jumps) */
  .sol-hero__nav {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .sol-hero__nav a {
    font-size: var(--ma-metadata);
    padding: 6px 12px;
  }

  /* Split sections: text + image */
  .sol-section__grid,
  .sol-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sol-section__visual,
  .sol-split__visual {
    order: -1;
  }

  .sol-section__visual img,
  .sol-split__visual img {
    max-width: 100%;
    height: auto;
  }

  /* Feature grids inside solution sections */
  .sol-features-grid {
    grid-template-columns: 1fr;
  }

  /* CTA banner */
  .sol-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 32px 20px;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 3 Ã¢â‚¬â€ SOLUTIONS HUB PAGE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 768px) {
  .sol-cards-grid {
    grid-template-columns: 1fr;
  }

  .sol-hub-header {
    text-align: center;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 3 Ã¢â‚¬â€ RESOURCES PAGES
   (resources, media, blog, case-studies)
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 768px) {
  .res-gateway-grid {
    grid-template-columns: 1fr;
  }

  .res-cards-grid,
  .res-grid {
    grid-template-columns: 1fr;
  }

  .res-filter-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 6px;
    padding-bottom: 8px;
  }

  .res-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Media page */
  .media-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  /* Blog page */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Case studies */
  .cst-grid {
    grid-template-columns: 1fr;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 3 Ã¢â‚¬â€ PRIVACY & TERMS PAGES
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 768px) {

  .legal-content,
  .privacy-content,
  .terms-content {
    padding: 0 16px;
  }

  .legal-content h2,
  .privacy-content h2,
  .terms-content h2 {
    font-size: var(--ma-pane-header);
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 3 Ã¢â‚¬â€ COMING SOON PAGE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 768px) {
  .cs-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cs-countdown {
    gap: 12px;
  }

  .cs-countdown__num {
    font-size: var(--ma-greeting-title);
  }
}

@media (max-width: 480px) {
  .cs-features {
    grid-template-columns: 1fr;
  }

  .cs-headline h1 {
    font-size: var(--ma-section-title);
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PHASE 3 Ã¢â‚¬â€ 404 PAGE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 480px) {
  .error-page h1 {
    font-size: var(--ma-greeting-title);
  }

  .error-page p {
    font-size: var(--ma-body-text);
    padding: 0 16px;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   GLOBAL Ã¢â‚¬â€ COMMON HERO RESPONSIVE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 768px) {

  .sol-hero,
  .ct-hero,
  .demo-hero,
  .prd-hero,
  .abt-hero,
  .res-hero,
  .media-hero,
  .blog-hero,
  .cst-hero {
    padding: clamp(6rem, 8vw, 8rem) 0 clamp(3rem, 4vw, 4rem);
    min-height: auto;
  }

  .sol-hero h1,
  .ct-hero h1,
  .demo-hero h1,
  .prd-hero h1,
  .abt-hero h1,
  .res-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .sol-hero p,
  .ct-hero p,
  .demo-hero p,
  .prd-hero p,
  .abt-hero p,
  .res-hero p {
    font-size: var(--ma-body-text);
  }

  .sol-hero__eyebrow,
  .ct-hero__eyebrow,
  .demo-hero__eyebrow,
  .prd-hero__eyebrow,
  .abt-hero__eyebrow,
  .res-hero__eyebrow,
  .hero__eyebrow,
  .media-hero__eyebrow,
  .blog-hero__eyebrow,
  .cst-hero__eyebrow {
    font-size: var(--ma-metadata);
    padding: 6px 14px;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   GLOBAL Ã¢â‚¬â€ BREADCRUMB RESPONSIVE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 640px) {
  .page-breadcrumb {
    top: 60px !important;
    z-index: 95;
  }

  .page-breadcrumb__inner {
    font-size: var(--ma-metadata);
    padding: 8px 16px;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   GLOBAL Ã¢â‚¬â€ FAQ RESPONSIVE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 640px) {
  .ct-faq__item summary {
    font-size: var(--ma-body-text);
    padding: 14px 16px;
  }

  .ct-faq__item p {
    padding: 12px 16px 14px;
    font-size: var(--ma-body-text);
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   GLOBAL Ã¢â‚¬â€ SECTION SPACING MOBILE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .container-wide {
    padding: 0 16px;
  }

  section {
    overflow-x: hidden;
    padding: 2rem 0;
  }

  /* Prevent overflow in common problem areas */
  .hero-inner,
  .value-grid,
  .metrics-grid,
  .lifecycle-grid,
  .sectors-tabs,
  .res-filter__inner,
  .sol-seg-nav__inner,
  .footer-inner,
  .page-breadcrumb__inner {
    overflow-x: hidden;
    max-width: 100%;
  }

  /* Ensure all grid layouts don't overflow */
  .value-grid,
  .metrics-grid,
  .lifecycle-grid,
  .footer-links {
    width: 100%;
    min-width: 0;
  }

  /* Fix spacing inconsistencies */
  .hero,
  .section,
  .value-section,
  .lifecycle-section,
  .why-section,
  .cta-section,
  .form-section {
    margin: 0;
    padding: 2rem 0;
  }

  /* Ensure no content touches screen edges */
  .hero-inner,
  .value-header,
  .lifecycle-header,
  .why-header,
  .cta-card,
  .form-inner {
    margin-left: 0;
    margin-right: 0;
    padding: 0 8px;
  }

  /* Remove random gaps */
  .value-item,
  .lifecycle-step,
  .why-bento-item,
  .metric {
    margin-bottom: 1rem;
  }

  .value-item:last-child,
  .lifecycle-step:last-child,
  .why-bento-item:last-child,
  .metric:last-child {
    margin-bottom: 0;
  }

  /* Fix card spacing */
  .sol-card,
  .prd-card,
  .res-card,
  .value-card {
    margin-bottom: 1rem;
  }

  .sol-card:last-child,
  .prd-card:last-child,
  .res-card:last-child,
  .value-card:last-child {
    margin-bottom: 0;
  }

  h2 {
    font-size: var(--ma-greeting-title);
    margin-bottom: 1rem;
  }

  h3 {
    margin-bottom: 0.75rem;
  }

  p {
    margin-bottom: 1rem;
  }

  p:last-child {
    margin-bottom: 0;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   GLOBAL Ã¢â‚¬â€ BUTTON MIN TAP TARGETS
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

@media (max-width: 768px) {

  .btn,
  .btn-primary,
  .btn-ghost,
  .sector-tab,
  .prd-tab,
  .res-filter-btn,
  details summary {
    min-height: 44px;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   GLOBAL Ã¢â‚¬â€ NO HORIZONTAL OVERFLOW
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

html,
body {
  overflow-x: hidden;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE OVERHAUL â€” Corrections & Additional Rules
   Appended: 2026-05-12 (Part 2)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* --- Mobile CTA (pinned at bottom of drawer) --- */
.nav-cta-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .nav-cta-mobile {
    display: block;
    padding: 16px 24px 24px;
    margin-top: auto;
    position: sticky;
    bottom: 0;
    background: linear-gradient(to top, #ffffff 70%, rgba(255, 255, 255, 0));
    padding-top: 32px;
    z-index: 5;
  }

  .nav-cta-mobile .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 52px;
    font-size: var(--ma-body-text);
    font-weight: 700;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(3, 70, 148, 0.3);
  }
}




/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT PAGE â€” Corrected selectors
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .abt-hero__cats {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .abt-hero__cat {
    font-size: var(--ma-metadata);
    padding: 6px 12px;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRODUCTS PAGE â€” Corrected selectors
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .abt-intro__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prd-hero__cats {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .prd-hero__cat {
    font-size: var(--ma-metadata);
    padding: 6px 12px;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SOLUTIONS SUBPAGES â€” Hero segments
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .sol-hero__segments {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 8px;
  }

  .sol-hero__seg-link {
    padding: 10px 8px;
    font-size: var(--ma-metadata);
  }

  .sol-hero__seg-num {
    font-size: var(--ma-metadata);
  }

  .sol-hero__seg-name {
    font-size: var(--ma-metadata);
  }
}

@media (max-width: 480px) {
  .sol-hero__segments {
    grid-template-columns: 1fr;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SOLUTIONS HUB â€” Corrected selectors
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .sg-intro__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sg-cap-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESOURCES PAGE â€” Corrected selectors
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .res-gateway-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .res-article-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .res-grid-section__header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MEDIA PAGE â€” Corrected selectors
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .media-hero__content {
    padding: 0 16px;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG PAGE â€” Corrected selectors
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .blog-hero__content {
    padding: 0 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CASE STUDIES PAGE â€” Corrected selectors
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .cst-hero__content {
    padding: 0 16px;
  }

  .cst-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COMING SOON PAGE â€” Corrected selectors
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .cs-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BOOK DEMO PAGE â€” Additional rules
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .demo-hero {
    min-height: auto;
    padding: clamp(6rem, 8vw, 8rem) 0 clamp(3rem, 4vw, 4rem);
  }

  .demo-hero__eyebrow {
    font-size: var(--ma-metadata);
  }

  .demo-hero h1 {
    font-size: var(--ma-greeting-title);
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GLOBAL â€” Prevent horizontal overflow
   on all section containers
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {

  .container,
  .container-wide {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Ensure images never break layout */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Tables: horizontal scroll */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
}

/* --- Mobile logo sizing --- */
@media (max-width: 768px) {

  .navbar-logo .logo-mark img,
  .navbar-logo-img {
    height: 28px;
  }
}

/* MOBILE MEGA MENU FIX - handled by mobile drawer section above */

/* ==== FOOTER MOBILE REDESIGN - Spacious, elegant, Products & Company side-by-side ==== */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 0;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
    text-align: left;
  }

  /* ---- Brand section: spacious top area ---- */
  .footer-brand {
    align-items: flex-start;
    padding: 0 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-logo {
    margin-bottom: 0.75rem;
  }

  .footer-logo img {
    height: 30px !important;
  }

  .footer-accent-bar {
    width: 36px;
    height: 2px;
    margin: 0.75rem 0 0.5rem;
  }

  .footer-tagline {
    max-width: 100%;
    font-size: var(--ma-metadata);
    line-height: 1.65;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
  }

  /* ---- Links area: full-width stacked ---- */
  .footer-links {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: left;
  }

  /* Contact column */
  .footer-col--contact {
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-col h5 {
    font-size: var(--ma-metadata-limited);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
  }

  .footer-contact__item {
    gap: 0.875rem !important;
  }

  .footer-contact__item i {
    font-size: var(--ma-metadata);
  }

  /* Products, Technology & Company - side by side on mobile */
  .footer-nav-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 1rem 1rem;
    padding-top: 0.25rem;
  }

  @media (max-width: 480px) {
    .footer-nav-columns {
      grid-template-columns: 1fr 1fr !important;
    }
  }

  .footer-col--nav h5 {
    margin-bottom: 0.875rem;
    position: relative;
  }

  .footer-col--nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }

  .footer-col a {
    font-size: var(--ma-metadata);
    padding: 0.3rem 0;
    justify-content: flex-start !important;
    text-align: left !important;
    transition: color 200ms, padding-left 200ms;
  }

  .footer-col a:active {
    color: #60a5fa;
    padding-left: 4px;
  }

  /* ---- Bottom bar ---- */
  .footer-bottom {
    padding: 1.25rem 0;
    font-size: var(--ma-metadata-limited);
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }

  .footer-bottom__copy {
    text-align: left;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    white-space: normal;
  }

  .footer-bottom__social {
    justify-content: flex-start;
  }

  .footer-social-icon {
    width: 36px;
    height: 36px;
  }
}

/* Very small screens - still side-by-side but tighter */
@media (max-width: 374px) {
  .footer-nav-columns {
    gap: 1rem 1rem !important;
  }

  .footer-col a {
    font-size: var(--ma-metadata);
    padding: 0.25rem 0;
  }

  .footer-col h5 {
    font-size: var(--ma-metadata-limited);
  }
}


/* HAMBURGER MENU FULL WIDTH - removed, handled by mobile drawer */


/* ==== HERO SECTIONS - MORE BREATHING SPACE ==== */
@media (max-width: 768px) {
  #hero {
    padding-top: 120px !important;
    padding-bottom: 60px !important;
  }

  .hero-inner {
    padding: 0 24px;
  }

  .headline {
    margin-bottom: 1rem;
  }

  .subtext {
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }

  .hero-metrics {
    margin-top: 2.5rem;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-metric {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 120px;
    text-align: center;
  }

  .hero-metric__num {
    font-size: var(--ma-pane-header);
    line-height: 1.1;
    margin-bottom: 0.1rem;
  }

  .hero-metric__label {
    font-size: var(--ma-metadata-limited);
    line-height: 1.2;
    margin-top: 0.1rem;
  }

  .sol-hero,
  .ct-hero,
  .demo-hero,
  .prd-hero,
  .abt-hero,
  .res-hero,
  .media-hero,
  .blog-hero,
  .cst-hero {
    padding: 120px 0 60px !important;
    min-height: auto;
  }

  .sol-hero h1,
  .ct-hero h1,
  .demo-hero h1,
  .prd-hero h1,
  .abt-hero h1,
  .res-hero h1,
  .media-hero h1,
  .blog-hero h1,
  .cst-hero h1 {
    margin-bottom: 0.75rem;
  }

  .sol-hero p,
  .ct-hero p,
  .demo-hero p,
  .prd-hero p,
  .abt-hero p,
  .res-hero p,
  .media-hero p,
  .blog-hero p,
  .cst-hero p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }

  .sol-hero__eyebrow,
  .ct-hero__eyebrow,
  .demo-hero__eyebrow,
  .prd-hero__eyebrow,
  .abt-hero__eyebrow,
  .res-hero__eyebrow,
  .hero__eyebrow,
  .media-hero__eyebrow,
  .blog-hero__eyebrow,
  .cst-hero__eyebrow {
    margin-bottom: 1rem;
  }
}


/* ==== SCROLL MARGIN - PREVENT TITLES HIDING UNDER NAVBAR ==== */
[id] {
  scroll-margin-top: 100px;
}

section[id],
div[id] {
  scroll-margin-top: 100px;
}


/* ==== SECTIONS - PROPER SPACING ON MOBILE ==== */
@media (max-width: 768px) {
  section {
    position: relative;
    z-index: 1;
  }

  .certs-section,
  .value-section,
  .intro-section,
  .sectors-section,
  .products-section,
  .lifecycle-section,
  .cases-section,
  .why-section,
  .ct-faq,
  .form-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}


/* MEGA MENU INNER LINKS - handled by mobile drawer section above */

/* ==== HIDE HERO SECTION JUMP LINKS ON MOBILE ==== */
@media (max-width: 768px) {

  .sol-hero__segments,
  .abt-hero__cats,
  .prd-hero__cats {
    display: none !important;
  }
}


/* MOBILE ACCORDION FIX - handled by mobile drawer section above */


/* ==== LIFECYCLE TIMELINE - Center icons with cards on mobile ==== */
@media (max-width: 768px) {
  .timeline-row {
    grid-template-columns: 56px 1fr !important;
    align-items: start !important;
  }

  .timeline-node {
    grid-row: 1 !important;
    grid-column: 1 !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 1.5rem;
  }

  .timeline-row>div:empty {
    display: none !important;
  }

  .timeline-row:nth-child(odd) .timeline-card-body,
  .timeline-row:nth-child(even) .timeline-card-body {
    grid-row: 1 !important;
    grid-column: 2 !important;
  }

  .timeline-num {
    display: none;
  }
}


/* ==== SCROLL MARGIN - Increase to prevent titles hiding behind navbar ==== */
[id] {
  scroll-margin-top: 120px;
}

section[id],
div[id] {
  scroll-margin-top: 120px;
}


/* ==== FAQ - Ensure summary text and icon are centered aligned ==== */
@media (max-width: 768px) {
  .ct-faq__item summary {
    align-items: center !important;
    gap: 12px;
    padding: 16px 16px;
  }

  .ct-faq__item summary::after {
    flex-shrink: 0;
    align-self: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   CRITICAL - Mobile Overflow Fix (all sections)
   Appended: 2026-05-18
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ---- Global overflow safety ---- */
  html,
  body {
    overflow-x: hidden !important;
    width: 100%;
  }

  section,
  .container,
  .container-wide {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
  }

  /* ---- Hero: constrain canvas & glow ---- */
  #hero {
    overflow: hidden;
    max-width: 100vw;
  }

  #network,
  .glow-ambient {
    max-width: 100% !important;
    overflow: hidden;
  }

  /* ---- Intro Section: stack 2-col to 1-col ---- */
  .intro-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .intro-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* ---- Value Grid: stack 3-col to 1-col ---- */
  .value-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* ---- Sectors: stack panel 2-col to 1-col ---- */
  .sector-panel {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .sector-panel__visual {
    order: -1;
  }

  .sector-panel__visual img {
    max-width: 100%;
    width: 100%;
  }

  .sectors-tabs {
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sectors-tabs::-webkit-scrollbar {
    display: none;
  }

  /* ---- Products Grid: stack 3-col to 1-col ---- */
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .product-card-icon {
    margin: 1.25rem 1.25rem 1rem;
  }

  .product-tag {
    margin: 0 1.25rem 0.5rem;
  }

  .product-card h3 {
    padding: 0 1.25rem;
  }

  .product-card p {
    padding: 0 1.25rem;
  }

  .product-card-link {
    padding: 0 1.25rem 1.5rem;
  }

  /* ---- Metrics Grid: stack 5-col to 2-col ---- */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  .metric {
    padding: 1.25rem 0.75rem;
  }

  /* ---- Cases Grid: stack 3-col to 1-col ---- */
  .cases-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  /* ---- Solution Cards: stack 2-col to 1-col ---- */
  .solution-card {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .solution-card:nth-child(even) .solution-info {
    order: 1;
  }

  .solution-card:nth-child(even) .solution-visual {
    order: 2;
  }

  .solution-visual {
    min-height: auto;
  }

  /* ---- Form Grid: stack 2-col to 1-col ---- */
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }

  .form-sub {
    max-width: 100%;
  }

  /* ---- Certs Logos: tighter gap on mobile ---- */
  .certs-logos {
    gap: 1.5rem;
  }

  .certs-logos img {
    height: 40px;
  }

  /* ---- Form section pseudo-elements: prevent overflow ---- */
  .form-section::before,
  .form-section::after {
    display: none;
  }

  /* ---- Why section dot grid: prevent overflow ---- */
  .why-section::before {
    display: none;
  }

  /* ---- Lifecycle section: constrain overflow ---- */
  .lifecycle-section {
    overflow: hidden;
  }

  .lifecycle-timeline {
    padding: 0 0.5rem;
    max-width: 100%;
  }

  .card-content {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* ---- Demo layout: stack to 1-col ---- */
  .demo-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  /* ---- Ensure all text wraps properly ---- */
  h1,
  h2,
  h3,
  h4,
  p,
  li,
  span,
  a,
  summary {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* ---- Ensure images never overflow ---- */
  img,
  video,
  canvas,
  svg,
  iframe {
    max-width: 100%;
    height: auto;
  }

  /* ---- Form info check grid ---- */
  .form-info__checks-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* ---- Form urgency badge: wrap text ---- */
  .form-urgency {
    font-size: var(--ma-metadata);
    padding: 0.625rem 1rem;
    white-space: normal;
    text-align: left;
  }
}

/* ==========================================
   MOBILE & TABLET LAYOUT REFINEMENTS
   ========================================== */

/* 1. Remove inner vertical scrollbars inside section containers and fix mobile spacing */
@media (max-width: 768px) {
  section,
  .container,
  .container-wide {
    overflow: visible !important;
  }
  
  /* Fix CTA cards vertical padding */
  .cta-card {
    padding: 3.5rem 1.5rem !important;
  }
  
  /* Fix spacing between lifecycle timeline intro text and cards */
  .lifecycle-header {
    margin-bottom: 3.5rem !important;
  }

  /* Wise line breaks on mobile: hide forced <br> in headings and caps */
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br,
  .abt-vision__cap-text br {
    display: none !important;
  }

  /* Hero Section Mobile Enhancements */
  .headline {
    line-height: 1.3 !important;
  }

  #hero .btn-ghost {
    border-color: rgba(255, 255, 255, 0.35) !important;
  }

  .hero-metrics {
    gap: 1.5rem 1rem !important;
  }

  /* Ensure consistent button widths in CTA sections on mobile */
  .cta-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .cta-actions .btn,
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  /* Hero title font size override for small phones to prevent bad wrap */
  .headline {
    font-size: 26px !important;
  }
}

/* 2. Reorder forms to the top on mobile & tablet stack views */
@media (max-width: 1024px) {
  /* Careers Page */
  #careers-section .ct-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  #careers-section .ct-form-col {
    order: -1 !important;
    margin-bottom: 1.5rem !important;
  }

  /* Book Demo Page */
  .demo-layout {
    display: flex !important;
    flex-direction: column !important;
  }
  .demo-form {
    order: -1 !important;
    margin-bottom: 1.5rem !important;
  }

  /* Contact Page */
  #form-section .ct-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  #form-section .ct-form-col {
    order: -1 !important;
    margin-bottom: 1.5rem !important;
  }

  /* Home Page Bottom Lead Form */
  #cta .form-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  #cta .demo-form {
    order: -1 !important;
    margin-bottom: 1.5rem !important;
  }
}

/* ======== PAGE: about.css ======== */
/* ABOUT PAGE */
/* ===== ABOUT PAGE Ã¢â‚¬â€ REDESIGNED ===== */

/* --- Shared About Label --- */
.abt-label {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-muted);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.abt-label--light {
  color: var(--accent);
  background: rgba(3, 70, 148, 0.15);
}

/* --- Cinematic Hero --- */
.abt-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  text-align: center;
}

.abt-hero__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.abt-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.abt-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.3) 0%, transparent 70%);
  top: -10%;
  right: 10%;
  animation: abt-orb-drift 18s ease-in-out infinite alternate;
}

.abt-hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.18) 0%, transparent 70%);
  bottom: -5%;
  left: 5%;
  animation: abt-orb-drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes abt-orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, -30px) scale(1.12);
  }
}

.abt-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.07) 1px, transparent 0);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 45%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 45%, black 0%, transparent 70%);
}

.abt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.abt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.abt-hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.abt-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.abt-hero h1 em {
  font-style: normal;
  color: #e8eef6;
  position: relative;
}

.abt-hero h1 em::after {
  display: none;
}

.abt-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 auto;
}

.abt-hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.abt-hero__scroll-cue span {
  font-size: var(--ma-metadata);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-dark-muted);
}

.abt-hero__scroll-cue svg {
  color: var(--primary);
  animation: abt-bounce 2.4s ease-in-out infinite;
}

@keyframes abt-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* --- Narrative Section --- */
.abt-narrative {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--surface);
}

.abt-narrative__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.abt-narrative__lead {
  position: sticky;
  top: 120px;
}

.abt-narrative__lead h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.abt-narrative__body p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.abt-narrative__body p strong {
  color: var(--primary);
  font-weight: 700;
}

.abt-narrative__body p:last-child {
  margin-bottom: 0;
}

/* --- Impact Metrics Ribbon --- */
.abt-metrics {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, var(--ink-900) 0%, #0c1a2e 100%);
  position: relative;
  overflow: hidden;
}

.abt-metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(3, 70, 148, 0.4) 50%, transparent 100%);
}

.abt-metrics::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(3, 70, 148, 0.4) 50%, transparent 100%);
}

.abt-metrics__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.abt-metric {
  padding: 1.5rem 1rem;
  position: relative;
}

.abt-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.abt-metric__value {
  font-size: var(--ma-xl-numerics-limited);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.abt-metric__label {
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.02em;
}

/* --- Philosophy (Mission/Vision/Commitment) --- */
.abt-philosophy {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--surface);
}

.abt-philosophy__header {
  text-align: center;
  margin-bottom: 56px;
}

.abt-philosophy__header h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 700;
}

.abt-philosophy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.abt-phil-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px 36px;
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: transform 400ms var(--ease-quart);
}

.abt-phil-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.10);
}

.abt-phil-card__number {
  font-size: var(--ma-xl-numerics-limited);
  font-weight: 800;
  color: var(--ink-50);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  user-select: none;
}

.abt-phil-card h3 {
  font-size: var(--ma-header);
  color: var(--ink-900);
  margin-bottom: 12px;
  font-weight: 500;
}

.abt-phil-card p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.7;
}

.abt-phil-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 20px 20px;
}

.abt-phil-card--mission .abt-phil-card__accent {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.abt-phil-card--vision .abt-phil-card__accent {
  background: linear-gradient(90deg, #0369a1 0%, #0ea5e9 100%);
}

.abt-phil-card--values .abt-phil-card__accent {
  background: linear-gradient(90deg, #0f766e 0%, #14b8a6 100%);
}

/* --- Differentiators (Dark Section) --- */
.abt-diff {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: linear-gradient(180deg, #0c1a2e 0%, var(--ink-900) 100%);
  color: var(--text-on-dark);
}

.abt-diff__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.abt-diff__intro h2 {
  font-size: var(--ma-greeting-title);
  color: var(--text-on-dark);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.abt-diff__intro p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

.abt-diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.abt-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 400ms var(--ease-quart);
}

.abt-diff-item:hover {
  background: rgba(3, 70, 148, 0.08);
  border-color: rgba(3, 70, 148, 0.2);
  transform: translateY(-3px);
}

.abt-diff-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(3, 70, 148, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-diff-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.abt-diff-item__text strong {
  display: block;
  font-size: var(--ma-body-text);
  color: var(--text-on-dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.abt-diff-item__text span {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.55;
}

/* --- Certifications --- */
.abt-certs {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--surface-alt);
}

.abt-certs__inner {
  text-align: center;
}

.abt-certs__header {
  margin-bottom: 36px;
}

.abt-certs__header h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  margin-bottom: 10px;
}

.abt-certs__header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 520px;
}

.abt-certs__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.abt-cert-chip {
  padding: 10px 20px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-pill);
  background: #fff;
  transition: all 300ms var(--ease-quart);
}

.abt-cert-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
  transform: translateY(-2px);
}

/* --- About Page Responsive --- */
@media (max-width: 1024px) {
  .abt-narrative__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abt-narrative__lead {
    position: static;
  }

  .abt-diff__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .abt-philosophy__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .abt-diff__grid {
    grid-template-columns: 1fr;
  }

  .abt-metrics__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-metric:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .abt-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .abt-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .abt-metrics__row {
    grid-template-columns: 1fr 1fr;
  }
}


/* ── About - consolidated inline styles ── */
/* --- about.html --- */

.abt-hero__cats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.abt-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e8eef6;
  font-size: var(--ma-body-text);
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms, transform 200ms;
  cursor: pointer;
}

.abt-hero__cat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.abt-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
}

/* Left panel: quote text with background image */
.abt-vision__quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  padding-left: max(1.5rem, calc((100vw - 1400px) / 2 + 1.5rem));
  position: relative;
  overflow: hidden;
}

/* Background image behind text */
.abt-vision__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: vision-bg-drift 25s ease-in-out infinite alternate;
}

@keyframes vision-bg-drift {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.06) translate(-1%, 1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .abt-vision__bg-img {
    animation: none;
  }
}

/* Gradient overlay for text readability */
.abt-vision__quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(5, 12, 24, 0.55) 0%,
      rgba(10, 22, 40, 0.4) 50%,
      rgba(5, 12, 24, 0.6) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Decorative quotation mark */
.abt-vision__quote::before {
  content: '\201c';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: clamp(10rem, 20vw, 16rem);
  font-weight: 900;
  color: rgba(140, 180, 230, 0.06);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font);
  z-index: 1;
}

.abt-vision__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8cb4e6;
  margin-bottom: 1.5rem;
  background: rgba(140, 180, 230, 0.1);
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(140, 180, 230, 0.15);
  position: relative;
  z-index: 1;
}

.abt-vision__label i {
  font-size: var(--ma-metadata);
}

.abt-vision__heading {
  font-size: var(--ma-greeting-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.abt-vision__quote p {
  font-size: var(--ma-body-text);
  line-height: 1.85;
  color: rgba(232, 238, 246, 0.85);
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Right panel: capability cards */
.abt-vision__capabilities {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem);
  padding-right: max(1.5rem, calc((100vw - 1400px) / 2 + 1.5rem));
  background: linear-gradient(135deg, #071225 0%, #0c1e38 100%);
  overflow: hidden;
}

.abt-vision__capabilities::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(3, 70, 148, 0.12) 0%, transparent 60%);
}

.abt-vision__cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.abt-vision__cap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 300ms ease;
}

.abt-vision__cap:hover {
  background: rgba(3, 70, 148, 0.12);
  border-color: rgba(3, 70, 148, 0.3);
  transform: translateY(-2px);
}

.abt-vision__cap-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(140, 180, 230, 0.1);
  color: #8cb4e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
}

.abt-vision__cap-text {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: rgba(232, 238, 246, 0.8);
  line-height: 1.35;
}


.abt-portfolio {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: #f8fafc;
  position: relative;
}

.abt-portfolio__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.abt-portfolio__header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.abt-portfolio__header p {
  color: #64748b;
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
}

.abt-portfolio__lead {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 2.5rem 3rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(10, 30, 60, 0.04);
}

.abt-portfolio__lead-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  background: rgba(3, 70, 148, 0.08);
  color: #034694;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.abt-portfolio__lead h3 {
  font-size: var(--ma-pane-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.abt-portfolio__lead p {
  font-size: var(--ma-body-text);
  line-height: 1.75;
  color: #475569;
}

.abt-showcase {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 2rem 2.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.abt-showcase:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 28px rgba(3, 70, 148, 0.07);
  transform: translateX(4px);
}

.abt-showcase__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-pane-header);
  flex-shrink: 0;
}

.abt-showcase__content {
  flex: 1;
}

.abt-showcase__content h3,
.abt-showcase__content h4 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.abt-showcase__content p {
  color: #64748b;
  font-size: var(--ma-body-text);
  line-height: 1.6;
}

.abt-showcase__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.06);
  color: #3b82f6;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
  transition: all 0.3s;
}

.abt-showcase:hover .abt-showcase__arrow {
  background: #3b82f6;
  color: #fff;
}

.abt-marquee {
  padding: clamp(3rem, 4vw, 4rem) 0;
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  position: relative;
}

.abt-marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: abt-scroll 40s linear infinite;
}

.abt-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 40px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 238, 246, 0.75);
  font-size: var(--ma-body-text);
  font-weight: 600;
  transition: all 300ms;
}

.abt-marquee__item i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

@keyframes abt-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.abt-values {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: #fff;
}

.abt-values__header {
  text-align: center;
  margin-bottom: 3rem;
}

.abt-values__header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.abt-values__header p {
  color: #64748b;
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
}

.abt-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.abt-value-card {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: all 0.3s;
  text-align: center;
}

.abt-value-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.08);
  transform: translateY(-2px);
}

.abt-value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-pane-header);
}

.abt-value-card h3,
.abt-value-card h4 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.abt-value-card p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.6;
}

.abt-stats {
  padding: clamp(3rem, 4vw, 4rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.abt-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.abt-stat__number {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.abt-stat__label {
  font-size: var(--ma-metadata);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .abt-intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .abt-vision {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .abt-vision__cap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .abt-showcase {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .abt-showcase__arrow {
    align-self: flex-end;
  }


  .abt-vision__cap-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .abt-hero__cat {
    padding: 10px 16px;
    font-size: var(--ma-metadata);
  }

  .abt-values__grid {
    grid-template-columns: 1fr;
  }

  .abt-stats__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .abt-vision__quote {
    padding: 2.5rem 1.5rem;
  }

  .abt-portfolio__lead {
    padding: 1.5rem;
  }
}


/* ======== PAGE: contact.css ======== */
/* =====================================================
   CONTACT PAGE
   ===================================================== */

/* ===== CONTACT PAGE ===== */

.ct-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
}

.ct-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, black 0%, transparent 70%);
}

.ct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.ct-hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.ct-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.ct-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto;
}

/* --- Intent Cards --- */
.ct-intents {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: var(--surface);
  position: relative;
  z-index: 2;
}

.ct-intents__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ct-intent {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 300ms var(--ease-quart), box-shadow 300ms var(--ease-quart), border-color 200ms;
  cursor: pointer;
}

.ct-intent:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.ct-intent--active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.ct-intent__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dim);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 16px;
}

.ct-intent h3 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.ct-intent p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}

.ct-intent__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-body-text);
  font-weight: 700;
  color: var(--primary);
  transition: gap 300ms var(--ease-quart);
}

.ct-intent:hover .ct-intent__cta {
  gap: 10px;
}

/* --- Quick Connect Bar --- */
.ct-quick {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--surface);
}

.ct-quick__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 32px;
  background: var(--surface-alt);
  border-radius: 16px;
  flex-wrap: wrap;
}

.ct-quick__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  color: var(--ink-900);
}

.ct-quick__item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.ct-quick__label {
  display: block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.ct-quick__item a {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.ct-quick__value {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-quick__divider {
  width: 1px;
  height: 32px;
  background: var(--ink-100);
}


/* Form */
.ct-form-header {
  margin-bottom: 28px;
}

.ct-form-header h2 {
  font-size: var(--ma-section-title);
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 6px;
}

.ct-form-header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-form__field--full {
  margin-bottom: 16px;
}

.ct-req {
  color: #dc2626;
}

.ct-form__field label {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-form__field input,
.ct-form__field select,
.ct-form__field textarea {
  padding: 12px 16px;
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  font-size: var(--ma-body-text);
  color: var(--ink-900);
  background: #fff;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
  font-family: inherit;
}

.ct-form__field input:focus,
.ct-form__field select:focus,
.ct-form__field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.ct-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-form__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.ct-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ct-form__privacy {
  font-size: var(--ma-metadata);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.ct-form__privacy a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.ct-form__success {
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #d1fae5;
  color: #047857;
  border-radius: 10px;
  font-size: var(--ma-body-text);
  font-weight: 600;
}

/* --- Sidebar: Map, Offices, Trust --- */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-map-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--ink-100);
}

.ct-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 285px;
  border: 0;
  display: block;
}

.ct-offices {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
}

.ct-offices h4 {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.ct-office {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.ct-office:not(:last-child) {
  border-bottom: 1px solid var(--ink-50);
}

.ct-office__badge {
  font-size: var(--ma-metadata-limited);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.ct-office h2,
.ct-office h5 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.ct-office p {
  font-size: var(--ma-metadata);
  color: var(--text-secondary);
  line-height: 1.5;
}

.ct-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ct-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-alt);
  padding: 8px 14px;
  border-radius: 8px;
}

.ct-trust__item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.ct-sidebar-intents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-sidebar-intents .ct-intent {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
}

.ct-sidebar-intents .ct-intent__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
}

@media (min-width: 1025px) {
  .ct-sidebar-intents {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .ct-sidebar-intents {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --- FAQ Section --- */
.ct-faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.ct-faq__header h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 8px;
}

.ct-faq__header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.ct-faq__header a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.ct-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.ct-faq__item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 300ms var(--ease-quart);
}

.ct-faq__item[open] {
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.06);
}

.ct-faq__item summary {
  padding: 18px 24px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-faq__item summary::-webkit-details-marker {
  display: none;
}

.ct-faq__item summary::after {
  content: '+';
  font-size: var(--ma-pane-header);
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform 200ms;
}

.ct-faq__item[open] summary::after {
  content: 'ÃƒÂ¢Ã‹â€ Ã¢â‚¬â„¢';
}

.ct-faq__item p {
  padding: 16px 24px 18px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Contact Responsive --- */
@media (max-width: 1024px) {
  .ct-intents__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ct-form__row {
    grid-template-columns: 1fr;
  }

  .ct-quick__bar {
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
  }

  .ct-quick__divider {
    width: 100%;
    height: 1px;
  }

  .ct-quick__item {
    padding: 8px 0;
  }
}

@media (max-width: 640px) {
  .ct-hero {
    padding: 130px 0 56px;
  }

  .ct-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .ct-intents__grid {
    grid-template-columns: 1fr;
  }

  .ct-form__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* ── Contact V2 (additional styles) ── */
/* ===== CONTACT PAGE ===== */

/* --- Contact Hero --- */
.ct-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  text-align: center;
  overflow: hidden;
}

.ct-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.ct-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
  pointer-events: none;
}


.ct-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.ct-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* --- Intent Cards --- */
.ct-intents {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.ct-intents__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ct-intent {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  transition: all 400ms var(--ease-quart);
  text-decoration: none;
  cursor: pointer;
}

.ct-intent:hover,
.ct-intent--active {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(3, 70, 148, 0.10);
  transform: translateY(-4px);
}

.ct-intent--active {
  border-color: var(--primary);
  background: var(--primary-dim);
}

.ct-intent__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 300ms;
}

.ct-intent:hover .ct-intent__icon,
.ct-intent--active .ct-intent__icon {
  background: var(--primary-muted);
}

.ct-intent__icon svg {
  stroke: var(--primary);
}

.ct-intent h3 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ct-intent p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.ct-intent__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  transition: gap 300ms var(--ease-quart);
}

.ct-intent:hover .ct-intent__cta {
  gap: 10px;
}

/* --- Quick Connect Bar --- */
.ct-quick {
  padding: 48px 0;
}

.ct-quick__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
}

.ct-quick__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  flex: 1;
  justify-content: center;
}

.ct-quick__item svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

.ct-quick__label {
  display: block;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.ct-quick__item a,
.ct-quick__value {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-quick__item a:hover {
  color: var(--primary);
}

.ct-quick__divider {
  width: 1px;
  height: 40px;
  background: var(--ink-100);
  flex-shrink: 0;
}

/* --- Main Grid (Form + Sidebar) --- */
.ct-main {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* --- Contact Form --- */
.ct-form-wrap {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 20px;
  margin-top: 0;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.ct-form-header {
  margin-bottom: 32px;
}

.ct-form-header h2 {
  font-size: var(--ma-section-title);
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.ct-form-header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-form__field {
  display: flex;
  flex-direction: column;
}

.ct-form__field--full {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.ct-form__field label {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.ct-req {
  color: #e53e3e;
}

.ct-form__field input,
.ct-form__field select,
.ct-form__field textarea {
  font-family: var(--font);
  font-size: var(--ma-body-text);
  color: var(--ink-900);
  padding: 12px 16px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
  width: 100%;
}

.ct-form__field input:focus,
.ct-form__field select:focus,
.ct-form__field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.ct-form__field input::placeholder,
.ct-form__field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.ct-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.ct-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-form__submit {
  padding: 14px 32px;
}


.ct-form__privacy a {
  color: var(--primary);
  text-decoration: underline;
}

.ct-form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 20px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: #065f46;
}

.ct-form__success svg {
  stroke: #059669;
  flex-shrink: 0;
}

/* --- Sidebar --- */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-map-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
}

.ct-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 285px;
  border: 0;
  display: block;
}

/* --- Offices --- */
.ct-offices {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.ct-offices h4 {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 20px;
}

.ct-office {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--ink-50);
}

.ct-office:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ct-office__badge {
  width: 40px;
  height: 40px;
  background: var(--primary-dim);
  color: var(--primary);
  font-size: var(--ma-metadata-limited);
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-office h2,
.ct-office h5 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
  line-height: 1.3;
}

.ct-office p {
  font-size: var(--ma-metadata);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --- Trust Badges --- */
.ct-trust {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.ct-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-trust__item svg {
  stroke: #059669;
  flex-shrink: 0;
}

/* --- FAQ --- */
.ct-faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--surface-alt);
}

.ct-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.ct-faq__header h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 10px;
}

.ct-faq__header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin: 0 auto;
}

.ct-faq__header a {
  color: var(--primary);
  font-weight: 600;
}

.ct-faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.ct-faq__item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 300ms;
}

.ct-faq__item:hover {
  box-shadow: var(--shadow-sm);
}

.ct-faq__item summary {
  padding: 20px 24px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 200ms;
}

.ct-faq__item summary::-webkit-details-marker {
  display: none;
}

.ct-faq__item summary::after {
  content: '+';
  font-size: var(--ma-pane-header);
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 300ms var(--ease-quart);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink-50);
}

.ct-faq__item[open] summary::after {
  content: '\2212';
  background: var(--primary-dim);
  color: var(--primary);
}

.ct-faq__item summary:hover {
  color: var(--primary);
}

.ct-faq__item[open] summary {
  border-bottom: 1px solid var(--ink-100);
}

.ct-faq__item p {
  padding: 20px 24px 20px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Contact Responsive --- */
@media (max-width: 1024px) {
  .ct-intents__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ct-grid {
    grid-template-columns: 1fr;
  }

  .ct-quick__bar {
    flex-wrap: wrap;
    gap: 16px;
  }

  .ct-quick__divider {
    display: none;
  }

  .ct-quick__item {
    flex: 0 0 calc(50% - 8px);
    padding: 12px 0;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ct-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .ct-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .ct-intents__grid {
    grid-template-columns: 1fr;
  }

  .ct-intents {
    margin-top: -24px;
  }

  .ct-form-wrap {
    padding: 24px;
  }

  .ct-form__row {
    grid-template-columns: 1fr;
  }

  .ct-quick__item {
    flex: 0 0 100%;
  }

  .ct-quick__bar {
    padding: 20px;
  }
}




/* ======== PAGE: errors.css ======== */
/* =====================================================
   ERROR & COMING SOON PAGES
   ===================================================== */

/* --- coming-soon.html --- */

:root {
  --cs-bg: #060D1A;
  --cs-blue: #1A6FE0;
  --cs-blue-light: #4D9FFF;
  --cs-blue-dark: #1560C8;
}

html {
  scroll-behavior: smooth;
}

.cs-page {
  position: relative;
  min-height: 100vh;
  background: var(--cs-bg);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 20px 80px;
}

.cs-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.cs-orb--1 {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -100px;
  background: rgba(26, 58, 110, 0.2);
  animation: orb1 12s ease-in-out infinite alternate;
}

.cs-orb--2 {
  width: 800px;
  height: 800px;
  bottom: -150px;
  right: -150px;
  background: rgba(10, 42, 85, 0.15);
  animation: orb2 16s ease-in-out infinite alternate;
}

.cs-orb--3 {
  width: 400px;
  height: 400px;
  top: 40%;
  right: 10%;
  background: rgba(26, 111, 224, 0.08);
  animation: orb3 20s ease-in-out infinite alternate;
}

@keyframes orb1 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(40px, 30px);
  }
}

@keyframes orb2 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-30px, -40px);
  }
}

@keyframes orb3 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(25px, -20px);
  }
}

.cs-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
}

.cs-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cs-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.cs-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cs-blue);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(26, 111, 224, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(26, 111, 224, 0);
  }
}

.cs-headline {
  margin-top: 24px;
}

.cs-overline {
  display: block;
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cs-headline h1 {
  font-size: var(--ma-greeting-title);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.cs-gradient-text {
  background: linear-gradient(90deg, #4D9FFF, #1A6FE0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-headline p {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 540px;
  margin: 20px auto 0;
}

.cs-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.cs-countdown__block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center;
  min-width: 90px;
}

.cs-countdown__num {
  font-size: var(--ma-hero-title);
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transition: opacity 0.15s ease;
}

.cs-countdown__label {
  font-size: var(--ma-metadata-limited);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}

.cs-countdown__sep {
  font-size: var(--ma-greeting-title);
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  font-weight: 300;
}

.cs-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 520px;
  width: 100%;
}

.cs-feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  transition: all 0.2s ease;
}

.cs-feature-card:hover {
  background: rgba(26, 111, 224, 0.08);
  border-color: rgba(26, 111, 224, 0.3);
  transform: translateY(-2px);
}

.cs-feature-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: var(--ma-metadata-limited);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(26, 111, 224, 0.15);
  color: var(--cs-blue-light);
  border-radius: 4px;
  padding: 2px 7px;
}

.cs-feature-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.cs-feature-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--cs-blue-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cs-feature-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.cs-feature-card p {
  font-size: var(--ma-metadata);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0;
}

.cs-email {
  margin-top: 48px;
  max-width: 440px;
  width: 100%;
}

.cs-email__overline {
  display: block;
  font-size: var(--ma-metadata-limited);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cs-blue-light);
  margin-bottom: 10px;
}

.cs-email h2 {
  font-size: var(--ma-section-title);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.cs-email>p {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto 24px;
}

.cs-email__form {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.cs-email__form input {
  flex: 1;
  height: 52px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: var(--ma-body-text);
  padding: 0 18px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cs-email__form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cs-email__form input:focus {
  border-color: rgba(26, 111, 224, 0.6);
  box-shadow: 0 0 0 3px rgba(26, 111, 224, 0.15);
}

.cs-email__form button {
  height: 52px;
  padding: 0 24px;
  background: var(--cs-blue);
  color: #fff;
  font-weight: 600;
  font-size: var(--ma-body-text);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}

.cs-email__form button:hover {
  background: var(--cs-blue-dark);
  transform: scale(1.01);
}

.cs-email__form button:active {
  transform: scale(0.99);
}

.cs-email__success {
  display: none;
  animation: fadeUp 0.3s ease forwards;
}

.cs-email__success svg {
  width: 24px;
  height: 24px;
  color: #4ADE80;
  margin-bottom: 8px;
}

.cs-email__success p {
  font-size: var(--ma-pane-header);
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.cs-email__success span {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.45);
}

.cs-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: var(--ma-metadata);
  color: rgba(255, 255, 255, 0.3);
}

.cs-avatars {
  display: flex;
}

.cs-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  color: #fff;
  margin-left: -8px;
  border: 2px solid var(--cs-bg);
}

.cs-avatar:first-child {
  margin-left: 0;
  background: #3b82f6;
}

.cs-avatar:nth-child(2) {
  background: #8b5cf6;
}

.cs-avatar:nth-child(3) {
  background: #10b981;
}

.cs-avatar:nth-child(4) {
  background: #f59e0b;
}

.cs-avatar:nth-child(5) {
  background: #ef4444;
}

.cs-back {
  margin-top: 60px;
  font-size: var(--ma-metadata);
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s, letter-spacing 0.2s;
  letter-spacing: 0;
}

.cs-back:hover {
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
  .cs-headline h1 {
    font-size: var(--ma-hero-title);
  }

  .cs-countdown__block {
    padding: 16px 20px;
    min-width: 70px;
  }

  .cs-countdown__num {
    font-size: var(--ma-hero-title);
  }
}

@media (max-width: 767px) {
  .cs-page {
    padding: 100px 20px 60px;
  }

  .cs-headline h1 {
    font-size: var(--ma-greeting-title);
  }

  .cs-countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cs-countdown__block {
    padding: 14px 18px;
    min-width: 65px;
  }

  .cs-countdown__num {
    font-size: var(--ma-greeting-title);
  }

  .cs-features {
    grid-template-columns: 1fr;
  }

  .cs-email__form {
    flex-direction: column;
  }

  .cs-orbs {
    display: none;
  }
}

@media (max-width: 480px) {
  .cs-headline h1 {
    font-size: var(--ma-greeting-title);
  }

  .cs-countdown__block {
    padding: 12px 14px;
  }

  .cs-countdown__num {
    font-size: var(--ma-page-title);
  }

  .cs-feature-card {
    padding: 20px;
  }
}


/* ── 404 page ── */
/* --- 404.html --- */

.err-page {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}

.err-page__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
}

.err-page__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.err-page__orb--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: rgba(26, 58, 110, 0.2);
  animation: errOrb1 10s ease-in-out infinite alternate;
}

.err-page__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: rgba(59, 130, 246, 0.12);
  animation: errOrb2 14s ease-in-out infinite alternate;
}

@keyframes errOrb1 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(30px, 25px);
  }
}

@keyframes errOrb2 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-25px, -30px);
  }
}

.err-page__glitch {
  position: absolute;
  z-index: 0;
  font-size: clamp(14rem, 35vw, 30rem);
  font-weight: 900;
  color: rgba(59, 130, 246, 0.04);
  letter-spacing: -0.04em;
  user-select: none;
  line-height: 1;
  animation: err-flicker 5s infinite;
}

@keyframes err-flicker {

  0%,
  90%,
  100% {
    opacity: 1;
  }

  91% {
    opacity: 0.3;
    transform: translateX(3px) skewX(-1deg);
  }

  92% {
    opacity: 1;
    transform: translateX(-2px);
  }

  93% {
    opacity: 0.5;
    transform: translateX(1px) skewX(0.5deg);
  }

  94% {
    opacity: 1;
    transform: translateX(0);
  }
}

.err-page__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.err-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 1.5rem;
  padding: 8px 16px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.err-page__badge i {
  font-size: var(--ma-metadata);
}

.err-page h1 {
  font-size: var(--ma-greeting-title);
  color: #e8eef6;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.err-page p {
  font-size: var(--ma-body-text);
  color: rgba(232, 238, 246, 0.6);
  line-height: 1.7;
  max-width: 44ch;
  margin: 0 auto 36px;
}

.err-page__links .btn-primary {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}

.err-page__links .btn-primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
}

.err-page__links .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e8eef6;
}

.err-page__quick {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.err-page__quick-label {
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.err-page__quick-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.err-page__quick-links a {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}

.err-page__quick-links a:hover {
  color: #fff;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}


/* ======== PAGE: home.css ======== */
/* HOME PAGE */
/* ============ SOLUTIONS ============ */
.solutions-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: linear-gradient(180deg, #070e1a 0%, var(--ink-900) 40%, #0c1a2e 100%);
  color: var(--text-on-dark);
}

.solutions-header {
  margin-bottom: 4rem;
  max-width: 560px;
}

.solutions-header h2 {
  color: #e8eef6;
  margin-bottom: 1rem;
}

.solutions-header p {
  color: var(--text-on-dark-muted);
}

.solution-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
  transition: all 400ms var(--ease-quart);
}

.solution-card:hover {
  border-color: rgba(3, 70, 148, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.solution-card:last-child {
  margin-bottom: 0;
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.solution-tag-dot {
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
}

.solution-info h3 {
  font-size: var(--ma-pane-header);
  color: #e8eef6;
  margin-bottom: 0.75rem;
}

.solution-info p {
  color: rgba(160, 190, 230, 0.65);
  font-size: var(--ma-body-text);
  margin-bottom: 1.5rem;
}

.solution-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.solution-link {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #60a5fa;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 200ms, color 200ms;
}

.solution-link:hover {
  gap: 0.5rem;
  color: #93c5fd;
}

.solution-link svg {
  width: 14px;
  height: 14px;
}

.solution-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
}

.solution-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.solution-card:nth-child(even) .solution-info {
  order: 2;
}

.solution-card:nth-child(even) .solution-visual {
  order: 1;
}

/* ============ SECTORS (tabbed home layout) ============ */
.sectors-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: linear-gradient(180deg, #070e1a 0%, var(--ink-900) 40%, #0c1a2e 100%);
  color: var(--text-on-dark);
}

.sectors-header {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.sectors-eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.sectors-header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #e8eef6;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sectors-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 3rem;
}

.sector-tab {
  font-family: var(--font);
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: rgba(160, 190, 230, 0.55);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: color 200ms, border-color 200ms;
  margin-bottom: -1px;
}

.sector-tab:hover {
  color: rgba(160, 190, 230, 0.85);
}

.sector-tab.active {
  color: #e8eef6;
  border-bottom-color: #3b82f6;
}

.sectors-body {
  position: relative;
  overflow: hidden;
}

.sector-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
  pointer-events: none;
}

.sector-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.sector-panel__content h3 {
  font-size: var(--ma-pane-header);
  font-weight: 500;
  color: #e8eef6;
  margin-bottom: 0.75rem;
}

.sector-panel__content p {
  font-size: var(--ma-body-text);
  color: rgba(160, 190, 230, 0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sector-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.sector-bullets li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--ma-body-text);
  color: rgba(160, 190, 230, 0.75);
  line-height: 1.8;
}

.sector-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3b82f6;
}

.sector-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: #60a5fa;
  transition: color 200ms, gap 200ms;
}

.sector-cta:hover {
  color: #93c5fd;
  gap: 0.75rem;
}

.sector-cta svg {
  width: 14px;
  height: 14px;
}

.sector-panel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-panel__visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .sector-panel.active {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sectors-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sector-tab {
    white-space: nowrap;
    padding: 0.75rem 1rem;
  }
}

/* ============ PRODUCTS ============ */
.products-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--surface-alt);
}

.products-header {
  margin-bottom: 3.5rem;
}

.products-header h2 {
  margin-bottom: 0.75rem;
}

.products-header p {
  color: var(--text-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  padding: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  transition: all 400ms var(--ease-quart);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-quart);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card:hover {
  border-color: rgba(0, 196, 180, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 2rem 1.25rem;
}

.product-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.product-tag {
  display: inline-block;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  margin: 0 2rem 0.75rem;
  width: fit-content;
}

.product-card h3 {
  font-size: var(--ma-header);
  margin-bottom: 0.5rem;
  padding: 0 2rem;
}

.product-card p {
  color: var(--text-secondary);
  font-size: var(--ma-body-text);
  margin-bottom: 1.25rem;
  padding: 0 2rem;
  flex: 1;
}

.product-card-link {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 200ms;
  padding: 0 2rem 2rem;
}

.product-card-link:hover {
  gap: 0.5rem;
}

/* ============ METRICS ============ */
.metrics-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, var(--ink-900) 0%, #0c1a2e 100%);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric {
  padding: 2rem 1rem;
}

.metric-number {
  font-size: var(--ma-xl-numerics-limited);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.metric-text-val {
  font-size: var(--ma-greeting-title);
}

.metric-label {
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: var(--text-on-dark-muted);
}

/* ============ LIFECYCLE ============ */
.lifecycle-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(180deg, rgba(6, 15, 30, 0.62) 0%, rgba(6, 15, 30, 0.72) 50%, rgba(6, 15, 30, 0.62) 100%),
    url('../images/home/identity-lifecycle-bg.webp') center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lifecycle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(3, 70, 148, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.lifecycle-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.lifecycle-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93bbef;
  background: rgba(3, 70, 148, 0.15);
  border: 1px solid rgba(3, 70, 148, 0.35);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lifecycle-header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lifecycle-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Journey timeline */
.lifecycle-timeline {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Central spine */
.lifecycle-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(3, 70, 148, 0.25) 5%,
      rgba(3, 70, 148, 0.15) 50%,
      rgba(3, 70, 148, 0.25) 95%,
      transparent 100%);
  box-shadow: 0 0 8px rgba(3, 70, 148, 0.12);
  z-index: 0;
  pointer-events: none;
}

/* Timeline row */
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

/* Alternating sides */
.timeline-row:nth-child(odd) .timeline-card-body {
  grid-column: 1;
}

.timeline-row:nth-child(odd) .timeline-card-body .card-content {
  margin-left: auto;
}

.timeline-row:nth-child(even) .timeline-card-body {
  grid-column: 3;
}

.timeline-row:nth-child(even) .timeline-node {
  grid-column: 2;
}

.timeline-row:nth-child(odd) .timeline-node {
  grid-column: 2;
}

/* Node (center) */
.timeline-node {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.timeline-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(3, 70, 148, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93bbef;
  box-shadow:
    0 0 20px rgba(3, 70, 148, 0.2),
    0 0 0 4px rgba(3, 70, 148, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 500ms var(--ease-quart);
}

.timeline-ring svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-ring i.fa-solid {
  font-size: var(--ma-pane-header);
  color: #93bbef !important;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-num {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: rgba(147, 187, 239, 0.7);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  text-shadow: 0 0 6px rgba(3, 70, 148, 0.3);
}

/* Card body */
.timeline-card-body {
  position: relative;
}

.card-content {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  max-width: 460px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 500ms var(--ease-quart);
  position: relative;
}

.card-content:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(3, 70, 148, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-color: rgba(3, 70, 148, 0.4);
  border-top-color: rgba(255, 255, 255, 0.3);
}

.timeline-row:hover .timeline-ring {
  border-color: rgba(3, 70, 148, 0.7);
  box-shadow:
    0 0 24px rgba(3, 70, 148, 0.3),
    0 0 0 6px rgba(3, 70, 148, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.card-step {
  font-family: var(--font);
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 0.35rem;
}

.card-content h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.card-lead {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.card-lead em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  position: relative;
  padding-left: 1rem;
  font-size: var(--ma-metadata);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* Arrow connectors */
.timeline-row:nth-child(odd) .card-content::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(255, 255, 255, 0.08);
  filter: none;
}

.timeline-row:nth-child(even) .card-content::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid rgba(255, 255, 255, 0.08);
  filter: none;
}

/* Initial hidden state - prevents cards from flashing before animation */
.timeline-row .card-content,
.timeline-row .timeline-ring {
  opacity: 0;
}

/* Scroll reveal animations - .reveal class handles row-level fade-up */
.timeline-row:nth-child(1).visible .card-content {
  animation: slideInLeft 700ms var(--ease-quart) 120ms both;
}

.timeline-row:nth-child(1).visible .timeline-ring {
  animation: popIn 500ms var(--ease-quart) 0ms both;
}

.timeline-row:nth-child(2).visible .card-content {
  animation: slideInRight 700ms var(--ease-quart) 220ms both;
}

.timeline-row:nth-child(2).visible .timeline-ring {
  animation: popIn 500ms var(--ease-quart) 100ms both;
}

.timeline-row:nth-child(3).visible .card-content {
  animation: slideInLeft 700ms var(--ease-quart) 320ms both;
}

.timeline-row:nth-child(3).visible .timeline-ring {
  animation: popIn 500ms var(--ease-quart) 200ms both;
}

.timeline-row:nth-child(4).visible .card-content {
  animation: slideInRight 700ms var(--ease-quart) 420ms both;
}

.timeline-row:nth-child(4).visible .timeline-ring {
  animation: popIn 500ms var(--ease-quart) 300ms both;
}

.timeline-row:nth-child(5).visible .card-content {
  animation: slideInLeft 700ms var(--ease-quart) 520ms both;
}

.timeline-row:nth-child(5).visible .timeline-ring {
  animation: popIn 500ms var(--ease-quart) 400ms both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .lifecycle-timeline::before {
    left: 2rem;
    transform: none;
  }

  .timeline-row {
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
  }

  .timeline-row:nth-child(odd) .timeline-card-body,
  .timeline-row:nth-child(even) .timeline-card-body {
    grid-column: 2;
    text-align: left;
  }

  .timeline-row:nth-child(odd) .timeline-card-body .card-content,
  .timeline-row:nth-child(even) .timeline-card-body .card-content {
    margin-left: 0;
    max-width: none;
  }

  .timeline-node {
    grid-column: 1 !important;
    align-items: flex-start;
  }

  .timeline-ring {
    width: 48px;
    height: 48px;
  }

  .timeline-ring svg {
    width: 20px;
    height: 20px;
  }

  .card-content {
    padding: 1.5rem;
  }

  .timeline-row:nth-child(odd) .card-content::after,
  .timeline-row:nth-child(even) .card-content::after {
    display: none;
  }
}

/* ============ CASE STUDIES ============ */
.cases-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--surface-alt);
}

.cases-header {
  margin-bottom: 3rem;
}

.cases-header h2 {
  margin-bottom: 0.75rem;
}

.cases-header p {
  color: var(--text-secondary);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  transition: all 400ms var(--ease-quart);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  border-color: rgba(0, 196, 180, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.case-tag {
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.case-card h3 {
  font-size: var(--ma-header);
  margin-bottom: 0.75rem;
}

.case-card p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
}

.case-link {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 200ms;
}

.case-link:hover {
  gap: 0.5rem;
}

/* ============ WHY MANTRA ============ */
.why-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #0a1628 0%, #0c1e38 50%, #0a1628 100%);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.04) 1px, transparent 0);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 0%, transparent 70%);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.why-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.why-header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #e8eef6;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.why-header p {
  color: rgba(160, 190, 230, 0.55);
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Bento grid */
.why-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  transition: all 400ms var(--ease-quart);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}


/* Icon rings */
.why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.why-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.why-card__icon--purple {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
}

.why-card__icon--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.why-card__icon--teal {
  background: rgba(20, 184, 166, 0.12);
  color: #2dd4bf;
}

.why-card__icon--amber {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.why-card__icon--green {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.why-card__icon--rose {
  background: rgba(244, 63, 94, 0.12);
  color: #fb7185;
}

.why-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #e8eef6;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.why-card p {
  font-size: var(--ma-body-text);
  color: rgba(160, 190, 230, 0.55);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .why-bento {
    grid-template-columns: 1fr;
  }
}

/* ============ LEAD CAPTURE FORM ============ */
.form-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f4fa 50%, #e8eef8 100%);
  position: relative;
  overflow: hidden;
}

/* Large decorative gradient orbs for visual depth */
.form-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.03) 40%, transparent 70%);
  pointer-events: none;
  animation: form-orb-float 20s ease-in-out infinite alternate;
}

.form-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.08) 0%, rgba(3, 70, 148, 0.02) 40%, transparent 70%);
  pointer-events: none;
  animation: form-orb-float 25s ease-in-out infinite alternate-reverse;
}

@keyframes form-orb-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-20px, 15px) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {

  .form-section::before,
  .form-section::after {
    animation: none;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-info h2 {
  color: var(--ink-900);
  font-size: var(--ma-greeting-title);
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.form-sub {
  color: #475569;
  font-size: var(--ma-header);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 460px;
}

.form-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 0;
}

.form-checks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--ma-body-text);
  color: var(--text);
  font-weight: 500;
}

.form-checks li svg {
  flex-shrink: 0;
  color: var(--primary);
}

.form-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: #b45309;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #fcd34d;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.15);
  position: relative;
}

.form-urgency::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  animation: urgency-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes urgency-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.form-urgency svg {
  flex-shrink: 0;
}

/* Decorative accent on left side */
.form-accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ---- Premium form-info redesign ---- */
.form-info__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(3, 70, 148, 0.08);
  border: 1px solid rgba(3, 70, 148, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.form-info__badge i {
  font-size: var(--ma-metadata-limited);
}

.form-info__highlight {
  color: var(--primary);
}

/* Checks grid: 2-column layout with icon circles */
.form-info__checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 2.25rem;
}

.form-info__check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(3, 70, 148, 0.04);
  border: 1px solid rgba(3, 70, 148, 0.08);
  border-radius: 12px;
  transition: all 250ms ease;
}

.form-info__check-item:hover {
  background: rgba(3, 70, 148, 0.08);
  border-color: rgba(3, 70, 148, 0.18);
  transform: translateY(-1px);
}

.form-info__check-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #1d6fd3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-metadata);
  flex-shrink: 0;
}

.form-info__check-item span {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.35;
}

/* Trust stats bar */
.form-info__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1d6fd3 60%, #2563eb 100%);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(3, 70, 148, 0.25);
  margin-bottom: 2rem;
}

.form-info__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-info__trust-item strong {
  font-size: var(--ma-pane-header);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.form-info__trust-item span {
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-info__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Responsive: checklist to single column */
@media (max-width: 640px) {
  .form-info__checks-grid {
    grid-template-columns: 1fr;
  }

  .form-info__trust {
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .form-info__trust-item strong {
    font-size: var(--ma-header);
  }
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ Demo Page Ã¢â€â‚¬Ã¢â€â‚¬ */
.demo-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
  color: var(--text-on-dark);
}

.demo-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.demo-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 1.25rem;
}

.demo-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}

.demo-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin: 0 auto;
}

.demo-main {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.demo-info h2 {
  font-size: var(--ma-section-title);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.demo-info>p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.demo-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.demo-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin-bottom: 0.875rem;
  line-height: 1.5;
}

.demo-features li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--primary);
}

.demo-trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.625rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
}

.demo-trust-strip svg {
  flex-shrink: 0;
  color: var(--primary);
}

.demo-form {
  padding: 2.5rem;
  background: #fff;
  border: 1px solid rgba(203, 213, 225, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 12px 40px rgba(3, 70, 148, 0.06);
  transition: box-shadow 400ms var(--ease-quart);
}

.demo-form:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 48px rgba(3, 70, 148, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 0.75rem;
}

.form-group label {
  display: block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--ma-body-text);
  font-family: var(--font);
  color: var(--text);
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: all 200ms ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(3, 70, 148, 0.08);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: #f8fafc;
}

.form-group select option {
  background: #fff;
  color: var(--text);
}

.btn-form {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: var(--ma-body-text);
  margin-top: 0.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(3, 70, 148, 0.25);
  transition: all 400ms var(--ease-quart);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-form:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.35);
}

.btn-form:active {
  transform: translateY(0);
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-privacy svg {
  flex-shrink: 0;
  color: var(--text-muted);
}


/* ── New Hero ── */
/* ============ NEW HERO (from ideal) ============ */
#hero {
  position: relative;
  width: 100%;
  min-height: 75vh;
  background: #020912;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/home/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.hero-network-canvas,
#hero canvas#network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glow-ambient {
  position: absolute;
  pointer-events: none;
  width: 780px;
  height: 480px;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(29, 78, 216, 0.11) 0%, transparent 70%);
  filter: blur(32px);
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  max-width: 820px;
  width: 100%;
}

.eyebrow {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 40px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.demo-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.demo-hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.headline {
  text-align: center;
  font-family: var(--font);
  font-size: var(--ma-hero-title);
  font-weight: 700;
  line-height: 1.15;
  color: #cddaee;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}

.tw-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
}

.tw-word {
  font-weight: 500;
  background: linear-gradient(110deg, #2570e8 0%, #3d9bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  min-width: 12ch;
  white-space: nowrap;
}

.tw-cursor {
  display: inline-block;
  width: 2px;
  height: 0.78em;
  background: #3d8ef0;
  border-radius: 1px;
  vertical-align: baseline;
  position: relative;
  top: 0.05em;
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.subtext {
  font-family: var(--font);
  font-size: var(--ma-header);
  font-weight: 400;
  color: rgba(180, 205, 240, 0.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.65s forwards;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.85s forwards;
}

/* Hero-specific: resting shadow + active press */
#hero .btn-primary {
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.35);
}

#hero .btn-primary:active {
  transform: translateY(0) scale(0.98);
}

/* Hero ghost: dark-theme color overrides */
#hero .btn-ghost {
  color: var(--text-on-dark-muted);
  border-color: rgba(255, 255, 255, 0.15);
}

#hero .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.06);
}

#hero .btn-ghost:active {
  transform: translateY(0) scale(0.98);
}

.proof-strip {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.1s forwards;
}

.proof-item {
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  color: rgba(140, 180, 225, 0.45);
  letter-spacing: 0.02em;
  font-weight: 500;
}

.proof-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.proof-divider {
  width: 1px;
  height: 12px;
  background: rgba(59, 130, 246, 0.1);
}

/* Hero metrics strip */
.hero-metrics {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.1s forwards;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  z-index: 10;
}

.hero-metric {
  text-align: center;
}

.hero-metric__num {
  font-family: var(--font);
  font-size: var(--ma-section-title);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-metric__num.hero-metric__text {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hero-metric__label {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: rgba(180, 205, 240, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.hero-metrics__disclaimer {
  text-align: center;
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: rgba(160, 190, 230, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 1.75rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: fadeIn 0.8s ease 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.9;
  }
}

.scroll-label {
  font-size: var(--ma-metadata-limited);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(80, 130, 210, 0.3);
  font-weight: 400;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



/* ======== PAGE: legal.css ======== */
/* =====================================================
   LEGAL / PRIVACY PAGE
   ===================================================== */

/* ===== LEGAL / PRIVACY PAGE ===== */

.legal-hero {
  padding: 160px 0 60px;
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  text-align: center;
}

.legal-hero h1 {
  font-size: var(--ma-hero-title);
  color: #e8eef6;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.legal-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
}

.legal-body {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--ma-pane-header);
  color: var(--ink-900);
  font-weight: 700;
  margin: 36px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-100);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: var(--ma-header);
  color: var(--ink-900);
  font-weight: 600;
  margin: 20px 0 8px;
}

.legal-content p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.legal-content li {
  position: relative;
  padding-left: 18px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 8px;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

.legal-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}



/* ======== PAGE: products.css ======== */
/* =====================================================
   PRODUCTS PAGE
   ===================================================== */

/* ===== PRODUCTS PAGE ===== */

.prd-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
}

.prd-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 0%, transparent 70%);
}

.prd-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.prd-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.prd-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 auto;
}

.prd-hero__cats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.prd-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e8eef6;
  font-size: var(--ma-body-text);
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms, transform 200ms;
  cursor: pointer;
}

.prd-hero__cat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}


/* ======== PAGE: resources.css ======== */
/* RESOURCES / MEDIA / BLOG / CASE STUDIES PAGES */
/* ===== RESOURCES PAGE ===== */

/* --- Resources Hero --- */
.res-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
}

.res-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 0%, transparent 70%);
}

.res-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(3, 70, 148, 0.12);
  border: 1px solid rgba(3, 70, 148, 0.22);
  border-radius: 40px;
}

.res-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.res-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 auto;
}

/* --- Category Filter --- */
.res-filter {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.res-filter__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.res-filter__tab {
  padding: 10px 18px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--text-secondary);
  border: none;
  background: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 200ms;
  white-space: nowrap;
}

.res-filter__tab:hover {
  color: var(--ink-900);
  background: var(--ink-50);
}

.res-filter__tab.active {
  color: var(--primary);
  background: var(--primary-dim);
}

/* --- Featured Card --- */
.res-featured {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface);
}

.res-feature-card {
  background: linear-gradient(145deg, #0a1628 0%, #0f2847 50%, #0c1e38 100%);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.res-feature-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.res-feature-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.res-feature-card__meta time {
  font-size: var(--ma-metadata);
  color: var(--text-on-dark-muted);
}

.res-feature-card h2 {
  font-size: var(--ma-greeting-title);
  color: #e8eef6;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 52ch;
}

.res-feature-card>p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 72ch;
  margin-bottom: 28px;
}

.res-feature-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.res-feature-card__tags {
  display: flex;
  gap: 6px;
}

.res-feature-card__tags span {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--text-on-dark-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 14px;
}

/* --- Shared Link Style --- */
.res-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-body-text);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 300ms var(--ease-quart);
}

.res-link:hover {
  gap: 10px;
}

.res-feature-card .res-link {
  color: #e8eef6;
}

/* --- Resource Type Badges --- */
.res-type {
  display: inline-block;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
}

.res-type--insight {
  color: #1d4ed8;
  background: #dbeafe;
}

.res-type--case-study {
  color: #047857;
  background: #d1fae5;
}

.res-type--whitepaper {
  color: var(--primary);
  background: var(--primary-dim);
}

.res-type--technical {
  color: #7c3aed;
  background: #ede9fe;
}

.res-type--event {
  color: #b45309;
  background: #fef3c7;
}

/* --- Content Grid --- */
.res-grid-section {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
  background: var(--surface);
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.res-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--ink-100);
  transition: transform 400ms var(--ease-quart), box-shadow 400ms var(--ease-quart);
}

.res-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.res-card--wide {
  grid-column: span 2;
}

.res-card__inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.res-card h3 {
  font-size: var(--ma-header);
  color: var(--ink-900);
  font-weight: 500;
  line-height: 1.35;
  margin: 12px 0 8px;
}

.res-card p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.res-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
}

.res-card__bottom time {
  font-size: var(--ma-metadata);
  color: var(--text-tertiary);
  font-weight: 500;
}

/* --- Load More --- */
.res-load-more {
  text-align: center;
  padding-top: 40px;
}

/* --- Newsletter --- */
.res-newsletter {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--surface-alt);
}

.res-newsletter__card {
  position: relative;
  padding: 56px 48px;
  background: linear-gradient(145deg, #0a1628 0%, #0f2847 50%, #0c1e38 100%);
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
}

.res-newsletter__glow {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.res-newsletter__content {
  position: relative;
  z-index: 1;
}

.res-newsletter h2 {
  font-size: var(--ma-greeting-title);
  color: #e8eef6;
  margin-bottom: 12px;
  font-weight: 700;
}

.res-newsletter p {
  font-size: var(--ma-body-text);
  color: #a8b8cc;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.res-newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 14px;
}

.res-newsletter__form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #e8eef6;
  font-size: var(--ma-body-text);
  outline: none;
  transition: border-color 200ms;
}

.res-newsletter__form input::placeholder {
  color: #64748b;
}

.res-newsletter__form input:focus {
  border-color: var(--primary);
}

.res-newsletter__form .btn-primary {
  background: #fff;
  color: var(--ink-900);
  font-weight: 700;
  white-space: nowrap;
}

.res-newsletter__form .btn-primary:hover {
  background: #e2e8f0;
}

.res-newsletter__note {
  font-size: var(--ma-metadata);
  color: #64748b;
}

/* --- Resources Responsive --- */
@media (max-width: 1024px) {
  .res-grid {
    grid-template-columns: 1fr 1fr;
  }

  .res-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .res-grid {
    grid-template-columns: 1fr;
  }

  .res-card--wide {
    grid-column: span 1;
  }

  .res-feature-card {
    padding: 28px;
    border-radius: 18px;
  }

  .res-feature-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .res-newsletter__form {
    flex-direction: column;
  }

  .res-newsletter__card {
    padding: 40px 28px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .res-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .res-hero h1 {
    font-size: var(--ma-greeting-title);
  }
}



/* ── Resources V2 ── */
/* ============ RESOURCES PAGE V2 ============ */
.res-card__thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  width: calc(100% + 3rem);
}

.res-card--has-thumb .res-card__inner {
  padding-top: 0;
}

/* ============ COMING SOON V2 ============ */
.cs-page__features {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cs-page__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-on-dark-muted);
  font-size: var(--ma-body-text);
  font-weight: 500;
  transition: all 300ms var(--ease-quart);
}

.cs-page__feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(3, 70, 148, 0.4);
  transform: translateY(-2px);
}

.cs-page__feature i {
  color: var(--primary);
  font-size: var(--ma-header);
}


/* ── Resource card icon badges ── */
/* ============ RESOURCE CARD ICON BADGES ============ */
.res-card__icon-badge {
  width: 44px;
  height: 44px;
  background: var(--primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 300ms var(--ease-quart);
}

.res-card:hover .res-card__icon-badge {
  background: var(--primary);
  transform: scale(1.05);
}

.res-card__icon-badge i {
  font-size: var(--ma-header);
  color: var(--primary);
  transition: color 300ms;
}

.res-card:hover .res-card__icon-badge i {
  color: #fff;
}

.res-card__icon-badge--event {
  background: rgba(234, 88, 12, 0.08);
}

.res-card__icon-badge--event i {
  color: #ea580c;
}

.res-card:hover .res-card__icon-badge--event {
  background: #ea580c;
}

.res-card:hover .res-card__icon-badge--event i {
  color: #fff;
}

/* Resource Type Badge with Icon */
.res-type i {
  margin-right: 4px;
  font-size: var(--ma-metadata);
}

/* Featured Card with Image */
.res-feature-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: all 400ms var(--ease-quart);
}

.res-feature-card:hover {
  border-color: rgba(3, 70, 148, 0.3);
  box-shadow: 0 12px 40px rgba(3, 70, 148, 0.12);
  transform: translateY(-4px);
}

.res-feature-card__visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.res-feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-expo);
}

.res-feature-card:hover .res-feature-card__img {
  transform: scale(1.05);
}

.res-feature-card__icon-wrap {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 48px;
  height: 48px;
  background: rgba(3, 70, 148, 0.9);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.res-feature-card__icon-wrap i {
  font-size: var(--ma-pane-header);
  color: #fff;
}

.res-feature-card__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.res-feature-card__body h2 {
  font-size: var(--ma-page-title);
  margin-bottom: 0.75rem;
}

.res-feature-card__body p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Resource Bottom with Icon */
.res-card__bottom time i {
  margin-right: 4px;
  font-size: var(--ma-metadata);
}

.res-link i {
  margin-left: 4px;
  font-size: var(--ma-metadata);
  transition: transform 300ms;
}

.res-link:hover i {
  transform: translateX(3px);
}

/* Newsletter Icon */
.res-newsletter__icon {
  font-size: var(--ma-hero-title);
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 1.25rem;
}

.res-newsletter__note i {
  margin-right: 6px;
  font-size: var(--ma-metadata);
}

.res-newsletter__form button i {
  margin-right: 4px;
}

/* Resource Filter Icons */
.res-filter__tab i {
  margin-right: 4px;
  font-size: var(--ma-metadata);
}

/* Btn Secondary */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink-200);
  color: var(--text);
  background: #fff;
  transition: all 300ms var(--ease-quart);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(3, 70, 148, 0.1);
  transform: translateY(-2px);
}

.btn-secondary i {
  font-size: var(--ma-metadata);
}

@media (max-width: 768px) {
  .res-feature-card {
    grid-template-columns: 1fr;
  }

  .res-feature-card__visual {
    min-height: 200px;
  }

  .res-feature-card__body {
    padding: 1.5rem;
  }
}


/* ── resources.html consolidated ── */
/* --- resources.html --- */

.res-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(4rem, 5vw, 6rem);
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  color: #e8eef6;
}

.res-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.res-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(5, 12, 24, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.res-hero__content {
  position: relative;
  z-index: 2;
}

.res-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #fff;
}

.res-hero h1 span {
  color: white;
}

.res-hero p {
  font-size: var(--ma-body-text);
  color: rgba(232, 238, 246, 0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

.res-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}


.res-gateways {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: #f8fafc;
}

.res-gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.res-gateway {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.res-gateway::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 300ms ease;
}

.res-gateway:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.res-gateway:hover::after {
  transform: scaleX(1);
}

.res-gateway__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: var(--ma-pane-header);
}

.res-gateway__body h2,
.res-gateway__body h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 6px;
}

.res-gateway__body p {
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 12px;
}

.res-gateway__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--primary);
}

.res-gateway__cta i {
  font-size: var(--ma-metadata);
  transition: transform 200ms ease;
}

.res-gateway:hover .res-gateway__cta i {
  transform: translateX(3px);
}

.res-filter-strip {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
  position: sticky;
  top: 56px;
  z-index: 90;
}

.res-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.res-filter__pill {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 200ms ease;
}

.res-filter__pill:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.res-filter__pill.active {
  background: #071525;
  color: #fff;
  border-color: #071525;
  font-weight: 600;
}

.res-filter__divider {
  width: 1px;
  height: 28px;
  background: #e2e8f0;
  margin: 0 8px;
}

.res-filter__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid rgba(26, 111, 224, 0.2);
  background: rgba(26, 111, 224, 0.04);
  transition: all 200ms ease;
}

.res-filter__link:hover {
  background: rgba(26, 111, 224, 0.1);
  border-color: var(--primary);
}

.res-filter__link i {
  font-size: var(--ma-metadata);
}

.res-featured {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: #f8fafc;
}

.res-featured__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: box-shadow 300ms ease;
}

.res-featured__card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.res-featured__visual {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.res-featured__visual svg {
  width: 400px;
  height: 400px;
  opacity: 0.15;
}

.res-featured__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 6px;
}

.res-featured__body {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.res-featured__tag {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.res-featured__body h2 {
  font-size: var(--ma-page-title);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.res-featured__body p {
  font-size: var(--ma-body-text);
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

.res-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: var(--ma-metadata);
  color: #94a3b8;
}

.res-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.res-featured__cta:hover {
  text-decoration: underline;
}

.res-grid-section {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
}

.res-grid-section__header {
  margin-bottom: 2rem;
}

.res-grid-section__header h2 {
  font-size: var(--ma-section-title);
  font-weight: 800;
  color: #0f172a;
}

.res-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.res-article {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 300ms ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.res-article:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.res-article__visual {
  height: 200px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.res-article__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.res-article:hover .res-article__visual img {
  transform: scale(1.05);
}

.res-article__visual svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.res-article__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--primary);
}

.res-article__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.res-article__body h3 {
  font-size: var(--ma-header);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.res-article__body p {
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #64748b;
  flex: 1;
}

.res-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--ma-metadata);
  color: #94a3b8;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.res-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f8fafc;
}

.res-cta__card {
  background: linear-gradient(135deg, #060D1A 0%, #0f1d35 100%);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.res-cta__card h2 {
  font-size: var(--ma-page-title);
  font-weight: 800;
  margin-bottom: 1rem;
}

.res-cta__card p {
  font-size: var(--ma-body-text);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.res-cta__form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.res-cta__form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: var(--ma-body-text);
}

.res-cta__form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.res-cta__form button {
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: var(--ma-body-text);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms ease;
}

.res-cta__form button:hover {
  background: #1560C8;
}

@media (max-width: 768px) {
  .res-gateway-grid {
    grid-template-columns: 1fr;
  }

  .res-article-grid {
    grid-template-columns: 1fr;
  }

  .res-cta__form {
    flex-direction: column;
  }

  .res-filter {
    gap: 8px;
  }
}


/* ── resources/media.html consolidated ── */
/* --- resources/media.html --- */

.media-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(4rem, 5vw, 6rem);
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  color: #e8eef6;
}

.media-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.media-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(5, 12, 24, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.media-hero__content {
  position: relative;
  z-index: 2;
}

.media-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.media-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.media-hero p {
  font-size: var(--ma-body-text);
  color: rgba(232, 238, 246, 0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

.media-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.media-section:nth-child(odd) {
  background: #f8fafc;
}

.media-section:nth-child(even) {
  background: #fff;
}

.media-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.media-section__header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.media-section__header p {
  color: #64748b;
  font-size: var(--ma-body-text);
  max-width: 480px;
  margin: 0 auto;
}

.media-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.media-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.event-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.08);
  transform: translateY(-3px);
}

.event-card__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 1rem;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 8px;
  width: fit-content;
}

.event-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-card p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.event-card__location {
  font-size: var(--ma-metadata);
  color: #94a3b8;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 0.75rem;
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.event-card__badge--past {
  background: rgba(100, 116, 139, 0.08);
  color: #64748b;
  border-color: rgba(100, 116, 139, 0.18);
}

/* ── Upcoming Events Empty State ── */
.upcoming-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2.5rem, 4vw, 3.5rem) 2rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.upcoming-empty__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-pane-header);
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

.upcoming-empty__title {
  font-size: var(--ma-header);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.4rem;
}

.upcoming-empty__text {
  font-size: var(--ma-body-text);
  line-height: 1.65;
  color: #94a3b8;
  max-width: 38ch;
  margin-bottom: 0;
}

/* ── Event Showcase (horizontal split-card) ── */
.event-showcase {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.event-showcase__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.event-showcase__card:hover {
  box-shadow: 0 12px 32px rgba(3, 70, 148, 0.08);
  transform: translateY(-2px);
}

/* ── Media side (left) ── */
.event-showcase__media {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-showcase__hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.event-showcase__hero img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.event-showcase__hero:hover img {
  transform: scale(1.03);
}

.event-showcase__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.event-showcase__tag--domestic {
  background: rgba(16, 185, 129, 0.85);
  color: #fff;
}

.event-showcase__tag--international {
  background: rgba(59, 130, 246, 0.85);
  color: #fff;
}

.event-showcase__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.event-showcase__thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.event-showcase__thumbs img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.event-showcase__thumbs img.active {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px #3b82f6;
  opacity: 0.75;
}

.event-showcase__hero img {
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.event-showcase__hero img.swapping {
  opacity: 0;
}

.event-showcase__hero img.swapped-in {
  animation: fadeIn 0.35s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Body side (right) ── */
.event-showcase__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

.event-showcase__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.event-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(100, 116, 139, 0.08);
  color: #64748b;
  border: 1px solid rgba(100, 116, 139, 0.15);
}

.event-showcase__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #3b82f6;
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 6px;
}

.event-showcase__body h3 {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.event-showcase__body p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.7;
  flex: 1;
}

.event-showcase__location {
  font-size: var(--ma-metadata);
  color: #94a3b8;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .event-showcase__card {
    grid-template-columns: 1fr;
  }

  .event-showcase__hero img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .event-showcase__thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-showcase__thumbs img {
    height: 70px;
  }

  .event-showcase__hero img {
    height: 180px;
  }
}

.press-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.press-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  cursor: pointer;
}

.press-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.08);
}

.press-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--ma-header);
  color: #64748b;
}

.press-card__source {
  font-size: var(--ma-metadata);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.press-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.press-card p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.6;
}

.press-card__date {
  font-size: var(--ma-metadata);
  color: #94a3b8;
  margin-top: 0.5rem;
}

.video-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.video-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.08);
  transform: translateY(-3px);
}

.video-card__thumb {
  height: 180px;
  background: linear-gradient(135deg, #0d213f, #1a508f);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-card__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
}

.video-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--ma-pane-header);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.video-card:hover .video-card__play {
  background: rgba(59, 130, 246, 0.5);
  border-color: rgba(59, 130, 246, 0.6);
  transform: scale(1.05);
}

.video-card__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 1;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 8px;
  border-radius: 4px;
}

.video-card__body {
  padding: 1.25rem;
}

.video-card__body h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.video-card__body p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1024px) {

  .event-cards,
  .video-cards {
    grid-template-columns: 1fr 1fr;
  }

  .press-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .event-cards,
  .video-cards {
    grid-template-columns: 1fr;
  }

  .res-subnav__links {
    padding: 8px 0;
    gap: 2px;
  }

  .res-subnav__link {
    padding: 8px 14px;
    font-size: var(--ma-metadata);
  }
}


/* ── blog-insights.html consolidated ── */
/* --- resources/blog-insights.html --- */

.blog-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(4rem, 5vw, 6rem);
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  color: #e8eef6;
}

.blog-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.blog-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(5, 12, 24, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.blog-hero__content {
  position: relative;
  z-index: 2;
}

.blog-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.blog-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #fff;
}

.blog-hero p {
  font-size: var(--ma-body-text);
  color: rgba(232, 238, 246, 0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

.blog-grid {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: #f8fafc;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}

.blog-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 40px rgba(3, 70, 148, 0.1);
  transform: translateY(-4px);
}

.blog-card__accent {
  height: 6px;
  background: linear-gradient(90deg, #1a4eb5 0%, #3b82f6 100%);
}

.blog-card__accent--insight {
  background: linear-gradient(90deg, #854f0b 0%, #f59e0b 100%);
}

.blog-card__accent--technical {
  background: linear-gradient(90deg, #4b2ea2 0%, #8b5cf6 100%);
}

.blog-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__pill {
  display: inline-block;
  width: fit-content;
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.blog-card__pill--whitepaper {
  background: #eef3ff;
  color: #1a4eb5;
}

.blog-card__pill--insight {
  background: #fff8ec;
  color: #854f0b;
}

.blog-card__pill--technical {
  background: #f3f0ff;
  color: #4b2ea2;
}

.blog-card__body h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card__body p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.65;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.blog-card__date {
  font-size: var(--ma-metadata);
  color: #94a3b8;
}

.blog-card__read {
  font-size: var(--ma-metadata);
  color: #94a3b8;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: #3b82f6;
  margin-top: 0.75rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.blog-card__link:hover {
  gap: 0.6rem;
}

@media (max-width: 1024px) {
  .blog-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }

  .res-subnav__links {
    padding: 8px 0;
    gap: 2px;
  }

  .res-subnav__link {
    padding: 8px 14px;
    font-size: var(--ma-metadata);
  }
}


/* ── case-studies.html consolidated ── */
/* --- resources/case-studies.html --- */

.cst-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(4rem, 5vw, 6rem);
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  overflow: hidden;
  color: #e8eef6;
}

.cst-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.cst-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(5, 12, 24, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.cst-hero__content {
  position: relative;
  z-index: 2;
}

.cst-hero__eyebrow {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.cst-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #fff;
}

.cst-hero p {
  font-size: var(--ma-body-text);
  color: rgba(232, 238, 246, 0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

.cst-grid {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: #f8fafc;
}

.cst-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cst-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}

.cst-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.cst-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 40px rgba(3, 70, 148, 0.1);
  transform: translateY(-4px);
}

.cst-card__visual {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cst-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  z-index: 1;
}

.cst-card__visual i {
  font-size: var(--ma-hero-title);
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.cst-card__pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: #edfbf5;
  color: #0b6e4f;
}

.cst-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cst-card__body h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cst-card__body p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.65;
  flex: 1;
}

.cst-card__meta {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.cst-card__tag {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cst-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: #3b82f6;
  margin-top: 1rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.cst-card__link:hover {
  gap: 0.6rem;
}

@media (max-width: 1024px) {
  .cst-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .cst-cards {
    grid-template-columns: 1fr;
  }

  .res-subnav__links {
    padding: 8px 0;
    gap: 2px;
  }

  .res-subnav__link {
    padding: 8px 14px;
    font-size: var(--ma-metadata);
  }
}



/* ======== PAGE: solutions.css ======== */
/* SOLUTIONS PAGES */
/* ===== SOLUTIONS PAGE Ã¢â‚¬â€ REDESIGNED ===== */

/* --- Solutions Hero --- */
.sol-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  text-align: center;
}

.sol-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.sol-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(5, 12, 24, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.sol-hero .container {
  position: relative;
  z-index: 2;
}

.sol-hero__content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.sol-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.sol-hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.cs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.cs-hero__eyebrow i {
  color: var(--accent);
  font-size: var(--ma-metadata);
}

.sol-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.sol-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto 48px;
}

.sol-hero__segments {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.sol-hero__seg-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-on-dark-muted);
  transition: all 300ms var(--ease-quart);
  text-decoration: none;
  cursor: pointer;
}

.sol-hero__seg-link:hover {
  background: rgba(3, 70, 148, 0.12);
  border-color: rgba(3, 70, 148, 0.3);
  color: #e8eef6;
  transform: translateY(-2px);
}

.sol-hero__seg-num {
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: inherit;
  letter-spacing: 0.05em;
}

.sol-hero__seg-name {
  font-size: var(--ma-body-text);
  font-weight: 600;
}

/* --- Sticky Segment Nav --- */
.sol-seg-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 400ms var(--ease-quart), opacity 400ms var(--ease-quart);
}

.sol-seg-nav.stuck {
  transform: translateY(0);
  opacity: 1;
}

.sol-seg-nav__inner {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}

.sol-seg-nav__tab {
  padding: 10px 20px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  transition: all 200ms;
  text-decoration: none;
  cursor: pointer;
}

.sol-seg-nav__tab:hover {
  color: var(--ink-900);
  background: var(--ink-50);
}

.sol-seg-nav__tab.active {
  color: var(--primary);
  background: var(--primary-dim);
}

/* --- Segment Section --- */
.sol-segment {
  padding: clamp(5rem, 9vw, 7rem) 0;
  background: var(--surface);
}

.sol-segment--alt {
  background: var(--surface-alt);
}

.sol-segment__header {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.sol-segment__num {
  font-size: var(--ma-xl-numerics-limited);
  font-weight: 800;
  color: var(--ink-50);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  min-width: 80px;
}

.sol-segment__intro h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.sol-segment__intro p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 64ch;
}

/* --- Flagship Solution Card --- */
.sol-flagship {
  background: linear-gradient(145deg, #0a1628 0%, #0f2847 50%, #0c1e38 100%);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.sol-flagship::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.sol-flagship__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(3, 70, 148, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.sol-flagship__badge svg {
  width: 16px;
  height: 16px;
}

.sol-flagship__content {
  position: relative;
  z-index: 1;
}

.sol-flagship h3 {
  font-size: var(--ma-pane-header);
  color: #e8eef6;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.sol-flagship__lead {
  font-size: var(--ma-body-text);
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.sol-flagship p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 72ch;
}

.sol-flagship .sol-details {
  margin-top: 20px;
  border-color: rgba(255, 255, 255, 0.08);
}

.sol-flagship .sol-details summary {
  color: #e8eef6;
}

.sol-flagship .sol-details summary:hover {
  color: var(--primary);
}

.sol-flagship .sol-details[open] summary {
  border-color: rgba(255, 255, 255, 0.1);
}

.sol-flagship .sol-details li {
  color: var(--text-on-dark-muted);
}

.sol-flagship .sol-pills span {
  color: var(--text-on-dark-muted);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

/* --- Compact Solution Card --- */
.sol-compact {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--ink-100);
  transition: transform 400ms var(--ease-quart), box-shadow 400ms var(--ease-quart);
}

.sol-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.sol-compact--full {
  margin-bottom: 24px;
}

.sol-compact__tag {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.sol-compact h3 {
  font-size: var(--ma-header);
  color: var(--ink-900);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.3;
}

.sol-compact p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Mini Solution Card --- */
.sol-mini {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--ink-100);
  transition: transform 400ms var(--ease-quart), box-shadow 400ms var(--ease-quart);
}

.sol-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.07);
}

.sol-mini--tall {
  display: flex;
  flex-direction: column;
}

.sol-mini__tag {
  display: inline-block;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.sol-mini h3 {
  font-size: var(--ma-header);
  color: var(--ink-900);
  margin-bottom: 8px;
  font-weight: 500;
}

.sol-mini p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

/* --- Shared: Details, Pills, Grids --- */
.sol-details {
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  margin-top: 16px;
  overflow: hidden;
}

.sol-details summary {
  padding: 14px 18px;
  font-size: var(--ma-body-text);
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  transition: color 200ms;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sol-details summary::-webkit-details-marker {
  display: none;
}

.sol-details summary::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--ink-50);
  font-size: var(--ma-body-text);
  font-weight: 400;
  color: var(--text-secondary);
  transition: all 200ms;
}

.sol-details[open] summary::before {
  content: 'Ã¢Ë†â€™';
  background: var(--primary-dim);
  color: var(--primary);
}

.sol-details summary:hover {
  color: var(--primary);
}

.sol-details[open] summary {
  border-bottom: 1px solid var(--ink-100);
}

.sol-details ul {
  list-style: none;
  padding: 16px 18px;
  margin: 0;
}

.sol-details li {
  position: relative;
  padding-left: 18px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 8px;
}

.sol-details li:last-child {
  margin-bottom: 0;
}

.sol-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

.sol-flagship .sol-details li::before {
  background: var(--primary);
  opacity: 0.8;
}

.sol-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.sol-pills span {
  display: inline-block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-alt);
  padding: 4px 10px;
  border-radius: 16px;
  border: 1px solid var(--ink-100);
  white-space: nowrap;
}

.sol-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.sol-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

/* --- Solutions Responsive --- */
@media (max-width: 1024px) {
  .sol-segment__header {
    flex-direction: column;
    gap: 16px;
  }

  .sol-grid-2 {
    grid-template-columns: 1fr;
  }

  .sol-cards-grid--bento,
  .sol-cards-grid--split {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-cards-grid--bento .sol-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 960px) {
  .sol-hero__segments {
    flex-direction: column;
    align-items: center;
  }

  .sol-hero__seg-link {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .sol-grid-3 {
    grid-template-columns: 1fr;
  }

  .sol-seg-nav__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {

  .sol-cards-grid--bento,
  .sol-cards-grid--split,
  .sol-cards-grid--3,
  .sol-cards-grid {
    grid-template-columns: 1fr;
  }

  .sol-cards-grid--bento .sol-card:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .sol-cards-grid--split .sol-card:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .sol-cards-grid--split .sol-card:nth-child(2),
  .sol-cards-grid--split .sol-card:nth-child(3) {
    grid-column: auto;
  }

  .sol-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {

  .hero,
  #hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .sol-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .sol-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .sol-flagship {
    padding: 24px;
    border-radius: 18px;
  }

  .sol-compact {
    padding: 24px;
  }

  .mega-menu-wide {
    display: none;
  }
}



/* ── Editorial intro ── */
/* ===== EDITORIAL INTRO (shared by About, Products) ===== */
.abt-intro {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.abt-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.abt-intro__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: var(--primary-dim);
  padding: 8px 16px;
  border-radius: 10px;
}

.abt-intro__label i {
  font-size: var(--ma-metadata);
}

.abt-intro__headline {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.abt-intro__headline span {
  color: var(--primary);
}

.abt-intro__lead {
  font-size: var(--ma-pane-header);
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.25rem;
}

.abt-intro__accent {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--primary);
}

.abt-intro__body {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #475569;
}

.abt-intro__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0;
}

.abt-intro__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(10, 30, 60, 0.04);
  transition: all 0.3s;
}

.abt-intro__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.08);
  border-color: #cbd5e1;
}

.abt-intro__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-dim);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
}

.abt-intro__item-text h3,
.abt-intro__item-text h4 {
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 3px;
}

.abt-intro__item-text p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .abt-intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.prd-segment {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: #ffffff;
  position: relative;
}

.prd-segment--alt {
  background: #edf5fc;
}

.prd-segment--bg3 {
  background: #f4f5f7;
}

/* --- Section Header: Number + Title --- */
.prd-segment__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.prd-segment__num {
  font-size: var(--ma-header);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.prd-segment__intro h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.prd-segment__tagline {
  font-size: var(--ma-metadata);
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* --- Cohesive Hero: Image + Content Panel --- */
.prd-segment__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

.prd-segment--alt .prd-segment__hero {
  direction: rtl;
}

.prd-segment--alt .prd-segment__hero>* {
  direction: ltr;
}

.prd-segment__visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 30, 60, 0.12);
}

.prd-segment__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 30, 60, 0.12), transparent 55%);
  pointer-events: none;
}

.prd-segment__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.prd-segment__visual:hover img {
  transform: scale(1.04);
}

/* Right-side content panel */
.prd-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.07);
}

.prd-detail__overview h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.prd-detail__overview p {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #3e4c5e;
}

.prd-detail__features h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Full-width Offers Section */
.prd-detail__offers {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.07);
}

.prd-detail__offers h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
}

.prd-detail__offers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.prd-detail__offers li {
  position: relative;
  padding: 1rem 1.25rem 1rem 3.5rem;
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  transition: background 200ms;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.prd-detail__offers li:nth-last-child(-n+2) {
  border-bottom: none;
}

.prd-detail__offers li::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--primary-dim);
}

.prd-detail__offers li::after {
  content: '\2713';
  position: absolute;
  left: calc(0.75rem + 6px);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.prd-detail__offers li:hover {
  background: rgba(59, 130, 246, 0.04);
}

/* Feature Tags */
.prd-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.prd-feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #1e3a5f;
  background: #f1f5f9;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  letter-spacing: 0.01em;
  transition: all 250ms;
}

.prd-feature-tags span:hover {
  background: var(--primary-dim);
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--primary);
  transform: translateY(-2px);
  cursor: default;
}

/* --- Separator line between sections --- */
.prd-segment+.prd-segment::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04) 30%, rgba(0, 0, 0, 0.04) 70%, transparent);
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* --- Legacy grid fallbacks --- */
.prd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prd-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.prd-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 28px;
  transition: transform 400ms var(--ease-quart), box-shadow 400ms var(--ease-quart);
}

.prd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.prd-card--horizontal {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.prd-card--horizontal .prd-card__icon {
  flex-shrink: 0;
}

.prd-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dim);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 16px;
}

.prd-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.prd-card p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.prd-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.prd-card__specs span {
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .prd-segment__hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prd-segment--alt .prd-segment__hero {
    direction: ltr;
  }

  .prd-detail__offers ul {
    grid-template-columns: 1fr;
  }

  .prd-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .prd-grid,
  .prd-grid--2 {
    grid-template-columns: 1fr;
  }

  .prd-card--horizontal {
    flex-direction: column;
  }

  .prd-hero-panel {
    padding: 1.75rem;
    gap: 1.75rem;
  }

  .prd-detail__offers {
    padding: 1.75rem 2rem 1.75rem -16px;
  }
}

@media (max-width: 640px) {
  .prd-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .prd-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .prd-segment__header {
    flex-direction: column;
    gap: 12px;
  }

  .demo-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .demo-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .prd-detail__offers {
    padding: 1.5rem;
  }

  .prd-detail__offers li {
    padding-left: 3.25rem;
  }

  /* Left-align products page elements on mobile */
  .prd-hero,
  .prd-segment__header,
  .prd-segment__intro,
  .prd-detail,
  .prd-segment__visual,
  .prd-card,
  .sol-card--product {
    text-align: left !important;
  }

  .prd-hero h1,
  .prd-segment__intro h2,
  .prd-card h3,
  .sol-card--product h3 {
    text-align: left !important;
  }

  .prd-pills,
  .sol-card--product .sol-pills {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .prd-pills span,
  .sol-card--product .sol-pills span {
    display: inline-block;
    text-align: left !important;
  }
}



/* ── Solutions V2 ── */
/* ============ SOLUTIONS PAGE V2 ============ */

/* Segment Hero Ã¢â‚¬â€ Image + Text Side by Side */
.sol-segment__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.sol-segment__hero-text {
  position: relative;
}

.sol-segment__hero-text .sol-segment__num {
  font-size: var(--ma-metadata);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

.sol-segment__hero-text h2 {
  margin-bottom: 1rem;
  font-size: var(--ma-greeting-title);
}

.sol-segment__hero-text p {
  color: var(--text-secondary);
  font-size: var(--ma-body-text);
  margin-bottom: 1.5rem;
  max-width: 48ch;
}

.sol-segment__hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sol-segment__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 600ms var(--ease-expo);
}

.sol-segment__hero-img:hover img {
  transform: scale(1.03);
}

/* Segment Stats Row */
.sol-segment__stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sol-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  transition: all 300ms var(--ease-quart);
}

.sol-stat:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(3, 70, 148, 0.1);
  transform: translateY(-2px);
}

.sol-stat i {
  color: var(--primary);
  font-size: var(--ma-metadata);
}

.sol-stat strong {
  font-size: var(--ma-header);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.sol-stat span {
  font-size: var(--ma-metadata);
  color: var(--text-muted);
  font-weight: 500;
}

/* Solution Cards Grid */
.sol-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sol-cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Individual Solution Card */
.sol-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 400ms var(--ease-quart);
  display: flex;
  flex-direction: column;
}

.sol-card:hover {
  border-color: rgba(3, 70, 148, 0.3);
  box-shadow: 0 8px 32px rgba(3, 70, 148, 0.1);
  transform: translateY(-6px);
}

.sol-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 300ms var(--ease-quart);
}

.sol-card:hover .sol-card__icon {
  background: var(--primary);
}

.sol-card__icon i {
  font-size: var(--ma-pane-header);
  color: var(--primary);
  transition: color 300ms;
}

.sol-card:hover .sol-card__icon i {
  color: #fff;
}

.sol-card h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.sol-card p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.sol-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

.sol-card__pills span {
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sol-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--primary);
  transition: gap 300ms var(--ease-quart);
  margin-top: auto;
}

.sol-card__cta:hover {
  gap: 10px;
}

.sol-card__cta i {
  font-size: var(--ma-metadata);
  transition: transform 300ms;
}

.sol-card__cta:hover i {
  transform: translateX(3px);
}

/* ---- Bento Grid Variants ---- */
.sol-cards-grid--bento {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
}

.sol-cards-grid--bento .sol-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.sol-cards-grid--split {
  grid-template-columns: 2fr 1fr;
  grid-auto-flow: dense;
}

.sol-cards-grid--split .sol-card:nth-child(1) {
  grid-row: span 2;
}

.sol-cards-grid--split .sol-card:nth-child(2),
.sol-cards-grid--split .sol-card:nth-child(3) {
  grid-column: 2;
}

/* ---- Spotlight Hover Effect ---- */
.sol-card {
  position: relative;
  overflow: hidden;
}

.sol-card::before {
  content: '';
  position: absolute;
  top: var(--y, -999px);
  left: var(--x, -999px);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 0;
}

.sol-card:hover::before {
  opacity: 1;
}

.sol-card>* {
  position: relative;
  z-index: 1;
}

/* ---- Animated Gradient Border for Featured ---- */
.sol-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #f0f4fa 0%, #e8eef8 100%);
  border: none;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.sol-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: conic-gradient(from var(--angle, 0deg), rgba(3, 70, 148, 0.4), rgba(45, 212, 191, 0.4), rgba(3, 70, 148, 0.1), rgba(3, 70, 148, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: border-rotate 4s linear infinite;
}

@keyframes border-rotate {
  to {
    --angle: 360deg;
  }
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ---- Staggered Reveal ---- */
.sol-cards-grid .sol-card.reveal {
  transition-delay: calc(var(--i, 0) * 80ms);
}

.sol-cards-grid .sol-card:nth-child(1) {
  --i: 0;
}

.sol-cards-grid .sol-card:nth-child(2) {
  --i: 1;
}

.sol-cards-grid .sol-card:nth-child(3) {
  --i: 2;
}

.sol-cards-grid .sol-card:nth-child(4) {
  --i: 3;
}

.sol-cards-grid .sol-card:nth-child(5) {
  --i: 4;
}

.sol-cards-grid .sol-card:nth-child(6) {
  --i: 5;
}

.sol-cards-grid .sol-card:nth-child(7) {
  --i: 6;
}

.sol-cards-grid .sol-card:nth-child(8) {
  --i: 7;
}

.sol-cards-grid .sol-card:nth-child(9) {
  --i: 8;
}

.sol-card--featured .sol-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: var(--primary);
  background: rgba(3, 70, 148, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sol-card--featured .sol-card__badge i {
  font-size: var(--ma-metadata);
}

.sol-card--featured h3 {
  font-size: var(--ma-pane-header);
}

.sol-card--featured p {
  font-size: var(--ma-body-text);
  max-width: 64ch;
}

.sol-card__features {
  list-style: none;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
}

.sol-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.sol-card__features li i {
  color: #059669;
  font-size: var(--ma-metadata);
}

/* Product Card Variant */
.sol-card--product {
  text-align: center;
  align-items: center;
}

.sol-card--product .sol-card__icon {
  width: 56px;
  height: 56px;
}

.sol-card--product .sol-card__icon i {
  font-size: var(--ma-section-title);
}

.sol-card--product .sol-card__pills {
  justify-content: center;
}

/* Products CTA centered */
.sol-products-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Segment Alt Background */
.sol-segment--alt {
  background: var(--surface-alt);
}

/* Sol Segment Header (for segment 04) */
.sol-segment__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.sol-segment__header .sol-segment__num {
  font-size: var(--ma-header);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.sol-segment__intro h2 {
  margin-bottom: 0.75rem;
}

.sol-segment__intro p {
  color: var(--text-secondary);
  max-width: 56ch;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Solutions Side-Nav Dots Ã¢â€â‚¬Ã¢â€â‚¬ */
.side-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.15);
  cursor: pointer;
  transition: all 300ms var(--ease-quart);
  position: relative;
  border: 2px solid transparent;
}

.side-nav__dot.active {
  transform: scale(1.4);
  border-color: rgba(3, 70, 148, 0.25);
}

.side-nav__dot[data-seg="e-government"].active {
  background: #1A6FE0;
}

.side-nav__dot[data-seg="bfsi"].active {
  background: #0EA5A0;
}

.side-nav__dot[data-seg="enterprise"].active {
  background: #6C47E8;
}

.side-nav__label {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink-900);
  color: #fff;
  font-size: var(--ma-metadata);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  letter-spacing: 0.02em;
}

.side-nav__dot:hover .side-nav__label {
  opacity: 1;
}

.side-nav__label::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--ink-900);
}

@media (max-width: 1024px) {
  .side-nav {
    display: none;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Segment Accent Modifiers Ã¢â€â‚¬Ã¢â€â‚¬ */
.sol-segment--bg-blue {
  background: var(--surface-blue-light);
}

.sol-segment--bg-white {
  background: var(--surface);
}

/* Card left-border accents per segment */
.sol-segment--accent-blue .sol-card {
  border-left: 3px solid #1A6FE0;
}

.sol-segment--accent-teal .sol-card {
  border-left: 3px solid #0EA5A0;
}

.sol-segment--accent-purple .sol-card {
  border-left: 3px solid #6C47E8;
}

/* Stat icon colors per segment */
.sol-segment--accent-blue .sol-stat i {
  color: #1A6FE0;
}

.sol-segment--accent-teal .sol-stat i {
  color: #0EA5A0;
}

.sol-segment--accent-purple .sol-stat i {
  color: #6C47E8;
}

/* Stat hover per segment */
.sol-segment--accent-blue .sol-stat:hover {
  border-color: rgba(26, 111, 224, 0.3);
  box-shadow: 0 4px 12px rgba(26, 111, 224, 0.1);
}

.sol-segment--accent-teal .sol-stat:hover {
  border-color: rgba(14, 165, 160, 0.3);
  box-shadow: 0 4px 12px rgba(14, 165, 160, 0.1);
}

.sol-segment--accent-purple .sol-stat:hover {
  border-color: rgba(108, 71, 232, 0.3);
  box-shadow: 0 4px 12px rgba(108, 71, 232, 0.1);
}

/* Card icon & pill accent per segment */
.sol-segment--accent-blue .sol-card:hover .sol-card__icon {
  background: #1A6FE0;
}

.sol-segment--accent-teal .sol-card:hover .sol-card__icon {
  background: #0EA5A0;
}

.sol-segment--accent-purple .sol-card:hover .sol-card__icon {
  background: #6C47E8;
}

.sol-segment--accent-blue .sol-card__pills span {
  color: #1A6FE0;
  background: rgba(26, 111, 224, 0.08);
  border-color: rgba(26, 111, 224, 0.15);
}

.sol-segment--accent-teal .sol-card__pills span {
  color: #0EA5A0;
  background: rgba(14, 165, 160, 0.08);
  border-color: rgba(14, 165, 160, 0.15);
}

.sol-segment--accent-purple .sol-card__pills span {
  color: #6C47E8;
  background: rgba(108, 71, 232, 0.08);
  border-color: rgba(108, 71, 232, 0.15);
}

/* Hero eyebrow accent per segment */
.sol-segment--accent-blue .sol-segment__hero-text .sol-segment__num {
  color: #1A6FE0;
  background: rgba(26, 111, 224, 0.1);
}

.sol-segment--accent-teal .sol-segment__hero-text .sol-segment__num {
  color: #0EA5A0;
  background: rgba(14, 165, 160, 0.1);
}

.sol-segment--accent-purple .sol-segment__hero-text .sol-segment__num {
  color: #6C47E8;
  background: rgba(108, 71, 232, 0.1);
}

/* Spotlight hover per segment */
.sol-segment--accent-teal .sol-card::before {
  background: radial-gradient(circle, rgba(14, 165, 160, 0.12) 0%, transparent 60%);
}

.sol-segment--accent-purple .sol-card::before {
  background: radial-gradient(circle, rgba(108, 71, 232, 0.12) 0%, transparent 60%);
}

/* ============ RESOURCES PAGE V2 ============ */
.res-card__thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  width: calc(100% + 3rem);
}

.res-card--has-thumb .res-card__inner {
  padding-top: 0;
}


/* ── Solutions V2 responsive ── */
/* ============ RESPONSIVE Ã¢â‚¬â€ SOLUTIONS V2 ============ */
@media (max-width: 1024px) {
  .sol-segment__hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sol-segment__hero-img {
    max-height: 300px;
  }

  .sol-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {

  .sol-cards-grid,
  .sol-cards-grid--3 {
    grid-template-columns: 1fr;
  }

  .sol-segment__stats {
    flex-direction: column;
  }

  .sol-card__features {
    grid-template-columns: 1fr;
  }

  .cs-page__features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .sol-segment {
    padding: 3rem 0;
  }

  .sol-card {
    padding: 1.25rem;
  }

  .sol-card--featured {
    padding: 1.5rem;
  }

  /* Left-align solutions page elements on mobile */
  .sol-segment__header,
  .sol-segment__intro,
  .sol-flagship,
  .sol-card,
  .sol-card--featured,
  .sol-card--product {
    text-align: left !important;
  }

  .sol-segment__intro h2,
  .sol-flagship h3,
  .sol-card h3,
  .sol-card--featured h3,
  .sol-card--product h3 {
    text-align: left !important;
  }

  .sol-pills,
  .sol-card--featured .sol-pills,
  .sol-flagship .sol-pills {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .sol-pills span {
    display: inline-block;
    text-align: left !important;
  }
}


/* ── e-governance.html consolidated ── */
/* --- solutions/e-governance.html --- */

.sol-intro {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: #fff
}

.sol-intro__text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center
}

.sol-intro__lead {
  font-size: var(--ma-pane-header);
  line-height: 1.75;
  color: #334155
}

.sol-segment {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #ffffff;
  position: relative
}

.sol-segment--alt {
  background: #edf5fc
}

.sol-segment--bg3 {
  background: #f4f5f7
}

.sol-segment+.sol-segment::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%)
}

.sol-segment__header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 2.5rem
}

.sol-segment__num {
  font-size: var(--ma-header);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sol-segment__intro h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.02em;
  line-height: 1.2
}

.sol-segment__tagline {
  font-size: var(--ma-metadata);
  color: var(--primary);
  font-weight: 600;
  font-style: italic
}

.sol-segment__hero {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem
}

.sol-segment--alt .sol-segment__hero {
  direction: rtl
}

.sol-segment--alt .sol-segment__hero>* {
  direction: ltr
}

.sol-segment__visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 30, 60, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px
}

.sol-segment__visual i {
  font-size: var(--ma-xl-numerics-limited);
  opacity: .4
}

.sol-segment__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0
}

/* .sol-segment__visual--blue {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: #3b82f6
}

.sol-segment__visual--teal {
  background: linear-gradient(135deg, #ccfbf1, #f0fdfa);
  color: #14b8a6
}

.sol-segment__visual--sky {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  color: #0284c7
}

.sol-segment__visual--violet {
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
  color: #8b5cf6
}

.sol-segment__visual--amber {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  color: #f59e0b
}

.sol-segment__visual--slate {
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  color: #64748b
}

.sol-segment__visual--dark {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #94a3b8
} */

.sol-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(10, 30, 60, .07)
}

.sol-detail__overview h3,
.sol-detail__features h3,
.sol-detail__offers h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: .85rem
}

.sol-detail__overview p {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #3e4c5e
}

.sol-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem
}

.sol-feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 5px 10px;
  letter-spacing: .01em;
  transition: all .25s
}

.sol-feature-tags span:hover {
  background: var(--primary-dim);
  border-color: rgba(59, 130, 246, .3);
  color: var(--primary)
}

.sol-detail__offers {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(10, 30, 60, .07)
}

.sol-detail__offers h3 {
  padding-left: 0.75rem;
}

.sol-detail__offers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.sol-detail__offers li {
  position: relative;
  padding: 1rem 1.25rem 1rem 3.5rem;
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  transition: background .2s;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.sol-detail__offers li:nth-last-child(-n+2) {
  border-bottom: none
}

.sol-detail__offers li::before {
  content: '';
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--primary-dim)
}

.sol-detail__offers li::after {
  content: '\2713';
  position: absolute;
  left: calc(.75rem + 6px);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.sol-detail__offers li:hover {
  background: rgba(59, 130, 246, .04)
}

@media(max-width:1024px) {
  .sol-segment__hero {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .sol-segment--alt .sol-segment__hero {
    direction: ltr
  }

  .sol-detail__offers ul {
    grid-template-columns: 1fr
  }

  .sol-detail__offers li:nth-last-child(-n+2) {
    border-bottom: 1px solid #e2e8f0
  }

  .sol-detail__offers li:last-child {
    border-bottom: none
  }
}

@media(max-width:768px) {
  .sol-hero-panel {
    padding: 1.5rem;
    gap: 1.25rem
  }

  .sol-detail__offers {
    padding: 1.5rem 1.5rem 1.5rem -16px
  }

  .sol-detail__offers li {
    padding-left: 3rem
  }

  .sol-segment__header {
    flex-direction: column;
    gap: 8px
  }

  .sol-segment__visual {
    min-height: 180px
  }

  .sol-segment__visual i {
    font-size: var(--ma-hero-title)
  }
}


/* ── solutions.html consolidated ── */
/* --- solutions.html --- */

.sg-intro {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.sg-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.sg-intro__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: var(--primary-dim);
  padding: 8px 16px;
  border-radius: 10px;
}

.sg-intro__label i {
  font-size: var(--ma-metadata);
}

.sg-intro__headline {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.sg-intro__headline span {
  color: var(--primary);
}

.sg-intro__lead {
  font-size: var(--ma-pane-header);
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.25rem;
}

.sg-intro__body {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #475569;
}

.sg-intro__accent {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--primary);
}

.sg-intro__accent::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 40px;
  background: var(--primary);
  border-radius: 3px;
}

.sg-intro__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.sg-intro__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(10, 30, 60, 0.04);
  transition: all 0.3s;
}

.sg-intro__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.08);
  border-color: #cbd5e1;
}

.sg-intro__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-dim);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
}

.sg-intro__item-text h3,
.sg-intro__item-text h4 {
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 3px;
}

.sg-intro__item-text p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .sg-intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sg-intro__accent {
    padding-left: 1.5rem;
  }
}

.sg-segments {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: #f8fafc;
}

.sg-segments__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sg-segments__header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.sg-segments__header p {
  color: #64748b;
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
}

.sg-showcase {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 2rem 2.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.sg-showcase:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 28px rgba(3, 70, 148, 0.07);
  transform: translateX(4px);
}

.sg-showcase__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-pane-header);
  flex-shrink: 0;
}

.sg-showcase__content {
  flex: 1;
}

.sg-showcase__num {
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.sg-showcase__content h3 {
  font-size: var(--ma-header);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.sg-showcase__content p {
  color: #64748b;
  font-size: var(--ma-body-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.sg-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sg-showcase__tags span {
  font-size: var(--ma-metadata-limited);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
}

.sg-showcase__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.06);
  color: #3b82f6;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
  transition: all 0.3s;
}

.sg-showcase:hover .sg-showcase__arrow {
  background: #3b82f6;
  color: #fff;
}

@media (max-width: 768px) {
  .sg-showcase {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .sg-showcase__arrow {
    align-self: flex-end;
  }
}

.sg-capabilities {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: #fff;
}

.sg-capabilities__header {
  text-align: center;
  margin-bottom: 3rem;
}

.sg-capabilities__header h2 {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.sg-capabilities__header p {
  color: #64748b;
  font-size: var(--ma-body-text);
  max-width: 560px;
  margin: 0 auto;
}

.sg-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sg-cap {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: all 0.3s;
  text-align: center;
}

.sg-cap:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.08);
  transform: translateY(-2px);
}

.sg-cap__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-pane-header);
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
}

.sg-cap h3,
.sg-cap h4 {
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.sg-cap p {
  font-size: var(--ma-body-text);
  color: #64748b;
  line-height: 1.6;
}

.sg-stats {
  padding: clamp(3rem, 4vw, 4rem) 0;
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
}

.sg-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.sg-stat__number {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.sg-stat__label {
  font-size: var(--ma-metadata);
  color: rgba(232, 238, 246, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .sg-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .sg-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sg-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .sg-cap-grid {
    grid-template-columns: 1fr;
  }

  .sg-stats__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/* ── enterprise-solution.html consolidated ── */
/* --- solutions/enterprise-solution.html --- */

.sol-intro {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: #fff
}

.sol-intro__text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center
}

.sol-intro__lead {
  font-size: var(--ma-pane-header);
  line-height: 1.75;
  color: #334155
}

.sol-segment {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #ffffff;
  position: relative
}

.sol-segment--alt {
  background: #edf5fc
}

.sol-segment--bg3 {
  background: #f4f5f7
}

.sol-segment+.sol-segment::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%)
}

.sol-segment__header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 2.5rem
}

.sol-segment__num {
  font-size: var(--ma-header);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sol-segment__intro h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.02em;
  line-height: 1.2
}

.sol-segment__tagline {
  font-size: var(--ma-metadata);
  color: var(--primary);
  font-weight: 600;
  font-style: italic
}

.sol-segment__hero {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem
}

.sol-segment--alt .sol-segment__hero {
  direction: rtl
}

.sol-segment--alt .sol-segment__hero>* {
  direction: ltr
}

.sol-segment__visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 30, 60, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px
}

.sol-segment__visual i {
  font-size: var(--ma-xl-numerics-limited);
  opacity: .4
}

.sol-segment__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0
}

.sol-segment__visual--blue {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: #3b82f6
}

.sol-segment__visual--teal {
  background: linear-gradient(135deg, #ccfbf1, #f0fdfa);
  color: #14b8a6
}

.sol-segment__visual--sky {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  color: #0284c7
}

.sol-segment__visual--violet {
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
  color: #8b5cf6
}

.sol-segment__visual--amber {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  color: #f59e0b
}

.sol-segment__visual--slate {
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  color: #64748b
}

.sol-segment__visual--dark {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #94a3b8
}

.sol-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(10, 30, 60, .07)
}

.sol-detail__overview h3,
.sol-detail__features h3,
.sol-detail__offers h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: .85rem
}

.sol-detail__overview p {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #3e4c5e
}

.sol-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem
}

.sol-feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 5px 10px;
  letter-spacing: .01em;
  transition: all .25s
}

.sol-feature-tags span:hover {
  background: var(--primary-dim);
  border-color: rgba(59, 130, 246, .3);
  color: var(--primary)
}

.sol-detail__offers {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(10, 30, 60, .07)
}

.sol-detail__offers h3 {
  padding-left: 0.75rem;
}

.sol-detail__offers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.sol-detail__offers li {
  position: relative;
  padding: 1rem 1.25rem 1rem 3.5rem;
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  transition: background .2s;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.sol-detail__offers li:nth-last-child(-n+2) {
  border-bottom: none
}

.sol-detail__offers li::before {
  content: '';
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--primary-dim)
}

.sol-detail__offers li::after {
  content: '\2713';
  position: absolute;
  left: calc(.75rem + 6px);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.sol-detail__offers li:hover {
  background: rgba(59, 130, 246, .04)
}

@media(max-width:1024px) {
  .sol-segment__hero {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .sol-segment--alt .sol-segment__hero {
    direction: ltr
  }

  .sol-detail__offers ul {
    grid-template-columns: 1fr
  }

  .sol-detail__offers li:nth-last-child(-n+2) {
    border-bottom: 1px solid #e2e8f0
  }

  .sol-detail__offers li:last-child {
    border-bottom: none
  }
}

@media(max-width:768px) {
  .sol-hero-panel {
    padding: 1.5rem;
    gap: 1.25rem
  }

  .sol-detail__offers {
    padding: 1.5rem 1.5rem 1.5rem -16px
  }

  .sol-detail__offers li {
    padding-left: 3rem
  }

  .sol-segment__header {
    flex-direction: column;
    gap: 8px
  }

  .sol-segment__visual {
    min-height: 180px
  }

  .sol-segment__visual i {
    font-size: var(--ma-hero-title)
  }
}


/* ======== PAGE: technology.css ======== */
/* TECHNOLOGY PAGES */
/* =====================================================
   TECHNOLOGY PAGE — Theme Aligned Style System
   Voice: serious technical layout aligned with the modern identity theme.
   Reuses cta-section, page-breadcrumb, btn-primary, btn-ghost,
   container-wide, reveal.
   ===================================================== */

/* ------------------------------------------------------------------
   1. Section frames & clean backgrounds
   ------------------------------------------------------------------ */

.tech-sec {
  position: relative;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  isolation: isolate;
}
/* Hairline separator between consecutive sections */
.tech-sec + .tech-sec {
  border-top: 1px solid var(--ink-100);
}
/* Separator between the last content section and the closing CTA band */
.tech-sec + .cta-minimal {
  border-top: 1px solid var(--ink-100);
}
.tech-sec--white {
  background: #fff;
  --blueprint-ink: var(--text);
  --blueprint-ink-dim: var(--text-secondary);
  --blueprint-ink-faint: var(--text-tertiary);
  --blueprint-grid: transparent;
  --blueprint-rule: var(--ink-100);
  --blueprint-rule-strong: var(--ink-200);
  --blueprint-accent: var(--primary);
}
.tech-sec--alt {
  background: var(--surface-alt);
  --blueprint-ink: var(--text);
  --blueprint-ink-dim: var(--text-secondary);
  --blueprint-ink-faint: var(--text-tertiary);
  --blueprint-grid: transparent;
  --blueprint-rule: var(--ink-100);
  --blueprint-rule-strong: var(--ink-200);
  --blueprint-accent: #7c3aed; /* keep the purple accent for eng lane */
}
.tech-sec--dark {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  --blueprint-ink: var(--text-on-dark);
  --blueprint-ink-dim: var(--text-on-dark-muted);
  --blueprint-ink-faint: rgba(255, 255, 255, 0.15);
  --blueprint-grid: transparent;
  --blueprint-rule: rgba(255, 255, 255, 0.1);
  --blueprint-rule-strong: rgba(255, 255, 255, 0.2);
  --blueprint-accent: #5eead4; /* keep cyan accent for research */
}

/* Remove blueprint grid backgrounds */
.tech-sec::before {
  display: none !important;
}
.tech-sec > .container-wide { position: relative; z-index: 1; }

/* ------------------------------------------------------------------
   2. Plate label
   ------------------------------------------------------------------ */

.tech-plate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blueprint-accent);
  line-height: 1;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--blueprint-accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--blueprint-accent) 22%, transparent);
  border-radius: var(--radius-pill);
}
.tech-plate i {
  font-size: var(--ma-metadata);
}
.tech-plate__mark {
  display: none;
}
.tech-plate--ink { color: var(--blueprint-ink); }
.tech-plate--dim { color: var(--blueprint-ink-dim); }
/* On dark hero, plate uses a soft light-blue tint */
.tech-hero .tech-plate {
  color: #8cb4e6;
  background: rgba(140, 180, 230, 0.1);
  border-color: rgba(140, 180, 230, 0.22);
}

/* ------------------------------------------------------------------
   3. Corner brackets - Hidden
   ------------------------------------------------------------------ */

.tech-corners {
  position: relative;
}
.tech-corners::before,
.tech-corners::after,
.tech-corners > .tech-corners__b1,
.tech-corners > .tech-corners__b2 {
  display: none !important;
}

/* ------------------------------------------------------------------
   4. Spec row
   ------------------------------------------------------------------ */

.tech-spec-table {
  display: grid;
  gap: 8px 32px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--blueprint-ink);
}
.tech-spec-table--2col { grid-template-columns: 1fr 1fr; }

.tech-spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.4;
}
.tech-spec__key {
  color: var(--blueprint-ink-dim);
  font-weight: 500;
}
.tech-spec__leader {
  display: none; /* remove dotted leaders */
}
.tech-spec__val {
  font-weight: 600;
  color: var(--blueprint-ink);
}
.tech-spec__val--accent { color: var(--blueprint-accent); }

/* ------------------------------------------------------------------
   5. Title-block - Hidden
   ------------------------------------------------------------------ */

.tech-titleblock {
  display: none !important;
}

/* ------------------------------------------------------------------
   6. Section heading kit
   ------------------------------------------------------------------ */

.tech-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--blueprint-rule);
}
.tech-head__title-wrap { max-width: 760px; }
.tech-head__plate { margin-bottom: 14px; }
.tech-head__title {
  font-size: var(--ma-greeting-title);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--blueprint-ink);
  margin-bottom: 12px;
}
.tech-head__title span {
  color: var(--blueprint-accent);
}
.tech-sec--dark .tech-head__title span {
  background: linear-gradient(120deg, #60a5fa 0%, #2dd4bf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tech-head__lead {
  font-size: var(--ma-body-text);
  line-height: 1.7;
  color: var(--blueprint-ink-dim);
  max-width: 640px;
}
.tech-head__count {
  text-align: right;
  font-family: var(--font);
}
.tech-head__count-num {
  display: block;
  font-family: var(--font);
  font-size: clamp(3rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--blueprint-accent);
  letter-spacing: -0.03em;
}
.tech-head__count-lbl {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blueprint-ink-dim);
  font-weight: 600;
}

/* ------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------ */

.tech-hero {
  position: relative;
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  padding: clamp(7.5rem, 10vw, 11rem) 0 clamp(4.5rem, 6vw, 7rem);
  color: var(--text-on-dark);
  --blueprint-ink: var(--text-on-dark);
  --blueprint-ink-dim: var(--text-on-dark-muted);
  --blueprint-ink-faint: rgba(255, 255, 255, 0.12);
  --blueprint-rule: rgba(255, 255, 255, 0.1);
  --blueprint-rule-strong: rgba(255, 255, 255, 0.2);
  --blueprint-accent: var(--primary-light);
}
.tech-hero::before {
  display: none !important;
}
.tech-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.45;
}
.tech-hero__inner {
  position: relative;
  z-index: 2;
}
.tech-hero__plate { margin-bottom: 24px; }
.tech-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 880px;
  color: #fff;
}
.tech-hero__title .grad {
  background: linear-gradient(120deg, #60a5fa 0%, #2dd4bf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tech-hero__lead {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  max-width: 720px;
  margin-bottom: 36px;
}
.tech-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.tech-hero__ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.875rem 2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 400ms var(--ease-quart);
}
.tech-hero__ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Hero base: metrics cards */
.tech-hero__base {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  padding-top: 40px;
  border-top: 1px solid var(--blueprint-rule);
}
.tech-hero__callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-callout {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: all 300ms var(--ease-quart);
}
.tech-callout:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.tech-callout__hdr {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blueprint-accent);
  margin-bottom: 8px;
  font-weight: 700;
}
.tech-callout__num {
  display: block;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.tech-callout__lbl {
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-on-dark-muted);
  font-weight: 400;
}
.tech-hero__specs { align-self: end; }

/* ------------------------------------------------------------------
   8. Breadcrumb override
   ------------------------------------------------------------------ */

.tech-crumb {
  background: var(--surface);
  border-bottom: 1px solid var(--ink-100);
  padding: 14px 0;
}
.tech-crumb__inner {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  color: var(--text-tertiary);
  font-weight: 500;
}
.tech-crumb__inner a {
  color: var(--text-muted);
  transition: color 200ms ease;
}
.tech-crumb__inner a:hover { color: var(--primary); }
.tech-crumb__inner .tech-crumb__arrow {
  margin: 0 8px;
  color: var(--ink-200);
}

/* ------------------------------------------------------------------
   9. Deployed-at band
   ------------------------------------------------------------------ */

.tech-band {
  background: #fff;
  border-bottom: 1px solid var(--ink-100);
  padding: 24px 0;
}
.tech-band__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.tech-band__label {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.tech-band__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-family: var(--font);
  font-size: var(--ma-body-text);
  color: var(--text);
  font-weight: 600;
}
.tech-band__sep { color: var(--ink-200); }

/* ------------------------------------------------------------------
   10. Platform Stack Layers
   ------------------------------------------------------------------ */

.tech-stack {
  position: relative;
  display: grid;
  gap: 20px;
}
.tech-stack__plate {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  padding: 32px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: all 300ms var(--ease-quart);
}
.tech-stack__plate:hover {
  border-color: color-mix(in srgb, var(--blueprint-accent) 25%, transparent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: #fff;
}
.tech-stack__plate--core    { --blueprint-accent: var(--primary); }
.tech-stack__plate--eng     { --blueprint-accent: #7c3aed; }
.tech-stack__plate--research { --blueprint-accent: #0d9488; }

.tech-stack__edge {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--blueprint-accent);
  border-radius: 4px 0 0 4px;
}

.tech-stack__hdr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.tech-stack__layer {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blueprint-accent);
}
.tech-stack__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.tech-stack__meta {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.tech-stack__inventory {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-left: 1px solid var(--ink-100);
  padding-left: 32px;
  align-content: center;
}
.tech-stack__chip {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-secondary);
  padding: 6px 14px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-pill);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 200ms ease;
}
.tech-stack__chip::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blueprint-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.tech-stack__plate:hover .tech-stack__chip {
  border-color: var(--ink-200);
  color: var(--text);
  background: #fff;
}

.tech-stack__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 24px;
  flex-wrap: wrap;
}
.tech-stack__legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.tech-stack__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tech-stack__legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

/* ------------------------------------------------------------------
   11. Lane label (A / B / etc)
   ------------------------------------------------------------------ */

.tech-lane {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 56px 0 28px;
}
.tech-lane__num {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: 1.5px solid var(--blueprint-accent);
  border-radius: 6px;
  color: var(--blueprint-accent);
  text-transform: uppercase;
}
.tech-lane__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.tech-lane__line {
  height: 1px;
  background: var(--blueprint-rule);
}
.tech-lane__count {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ------------------------------------------------------------------
   12. Drawing-plate — featured capability with image
   ------------------------------------------------------------------ */

.tech-drawing {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  background: #fff;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 300ms var(--ease-quart);
}
.tech-drawing:hover {
  border-color: color-mix(in srgb, var(--blueprint-accent) 25%, transparent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tech-drawing__exhibit {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  filter: contrast(1.02);
  border-right: 1px solid var(--ink-100);
}
.tech-drawing__exhibit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 70, 148, 0.15) 0%, rgba(3, 70, 148, 0.02) 100%);
}
.tech-drawing__exhibit-tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  font-family: var(--font);
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.tech-drawing__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.tech-drawing__plate { margin-bottom: 16px; }
.tech-drawing__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.tech-drawing__sub {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.tech-drawing__specs {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  margin-bottom: 24px;
}
.tech-drawing__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: var(--ma-body-text);
  color: var(--primary);
  font-weight: 700;
}
.tech-drawing__cta i { transition: transform 200ms ease; }
.tech-drawing:hover .tech-drawing__cta i { transform: translateX(4px); }

/* ------------------------------------------------------------------
   13. Annotated callouts
   ------------------------------------------------------------------ */

.tech-asym {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
.tech-asym__side {
  display: grid;
  gap: 16px;
  align-content: start;
}
.tech-anno {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  background: #fff;
  text-decoration: none;
  color: inherit;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 250ms ease;
}
.tech-anno:hover {
  background: #fff;
  border-color: color-mix(in srgb, var(--blueprint-accent) 25%, transparent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tech-anno::before,
.tech-anno::after {
  display: none !important; /* remove schematic marks */
}
.tech-anno__id {
  font-family: var(--font);
  font-size: var(--ma-body-text);
  font-weight: 800;
  color: var(--blueprint-accent);
  padding: 0;
}
.tech-anno__body { min-width: 0; }
.tech-anno__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tech-anno__spec {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.tech-anno__tag {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blueprint-accent);
  padding: 4px 10px;
  border: 1px solid color-mix(in srgb, var(--blueprint-accent) 20%, transparent);
  border-radius: var(--radius-pill);
  background: var(--surface);
  align-self: center;
}

/* ------------------------------------------------------------------
   14. Signal-flow diagram
   ------------------------------------------------------------------ */

.tech-flow-block {
  margin: 48px 0;
  padding: 32px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.tech-sec--dark .tech-flow-block {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}
.tech-flow-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--blueprint-rule);
  margin-bottom: 24px;
}
.tech-flow-block__title {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
}
.tech-sec--dark .tech-flow-block__title { color: #fff; }
.tech-flow-block__title-sub {
  color: var(--text-secondary);
  font-weight: 400;
  margin-left: 8px;
}
.tech-sec--dark .tech-flow-block__title-sub { color: var(--text-on-dark-muted); }
.tech-flow-block__tag {
  font-family: var(--font);
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  color: var(--blueprint-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-flow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: stretch;
  gap: 16px;
}
.tech-flow__node {
  position: relative;
  padding: 20px 16px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  transition: all 250ms ease;
}
.tech-flow__node:hover {
  background: #fff;
  border-color: var(--ink-200);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.tech-sec--dark .tech-flow__node {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}
.tech-sec--dark .tech-flow__node:hover {
  background: rgba(255, 255, 255, 0.06);
}
.tech-flow__node + .tech-flow__node { border-left: 1px solid var(--ink-100); }
.tech-sec--dark .tech-flow__node + .tech-flow__node { border-left: 1px solid rgba(255, 255, 255, 0.05); }

/* Remove port icons */
.tech-flow__node::before,
.tech-flow__node::after {
  display: none !important;
}

.tech-flow__num {
  font-family: var(--font);
  font-size: var(--ma-metadata-limited);
  color: var(--blueprint-accent);
  font-weight: 700;
  text-transform: uppercase;
}
.tech-flow__lbl {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.tech-sec--dark .tech-flow__lbl { color: #fff; }
.tech-flow__sub {
  font-family: var(--font);
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-secondary);
}
.tech-sec--dark .tech-flow__sub { color: var(--text-on-dark-muted); }

.tech-flow-block__foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--ink-100);
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}
.tech-sec--dark .tech-flow-block__foot { border-top-color: rgba(255, 255, 255, 0.08); color: var(--text-on-dark-muted); }
.tech-flow-block__foot::before {
  content: "";
}

.tech-flow-block--loop .tech-flow::after {
  content: "feedback loop";
  position: absolute;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blueprint-accent);
  padding: 4px 12px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.tech-sec--dark .tech-flow-block--loop .tech-flow::after {
  background: var(--ink-900);
  border-color: rgba(255, 255, 255, 0.08);
}
.tech-flow-block--loop {
  padding-bottom: 64px;
}

/* ------------------------------------------------------------------
   15. Domain Ledger
   ------------------------------------------------------------------ */

.tech-ledger {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  font-family: var(--font);
  margin-top: 16px;
}
.tech-sec--dark .tech-ledger {
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.tech-ledger thead th {
  font-family: var(--font);
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  color: var(--text-secondary);
  padding: 16px;
  border-bottom: 1px solid var(--ink-100);
}
.tech-sec--dark .tech-ledger thead th {
  color: var(--text-on-dark-muted);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.tech-ledger tbody tr {
  border-bottom: 1px solid var(--ink-50);
  transition: all 200ms ease;
}
.tech-sec--dark .tech-ledger tbody tr { border-bottom-color: rgba(255, 255, 255, 0.04); }
.tech-ledger tbody tr:last-child { border-bottom: 0; }
.tech-ledger tbody tr:hover {
  background: var(--surface-blue-pale);
}
.tech-sec--dark .tech-ledger tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.tech-ledger td {
  padding: 16px;
  vertical-align: middle;
}
.tech-ledger__id {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  width: 80px;
}
.tech-sec--dark .tech-ledger__id { color: var(--text-on-dark-muted); }
.tech-ledger__domain {
  position: relative;
  min-width: 240px;
}
.tech-ledger__domain::before {
  display: none !important;
}
.tech-ledger__domain a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.tech-ledger__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.tech-sec--dark .tech-ledger__name { color: #fff; }
.tech-ledger__blurb {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.tech-sec--dark .tech-ledger__blurb { color: var(--text-on-dark-muted); }
.tech-ledger__class {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  color: var(--text-secondary);
  font-weight: 500;
  width: 180px;
}
.tech-sec--dark .tech-ledger__class { color: var(--text-on-dark-muted); }
.tech-ledger__status {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  width: 100px;
}
.tech-ledger__status--new { color: #16a34a; }
.tech-ledger__status--core { color: var(--text-secondary); }
.tech-sec--dark .tech-ledger__status--core { color: var(--text-on-dark-muted); }
.tech-ledger__arrow {
  width: 32px;
  text-align: right;
  color: var(--ink-200);
  font-size: var(--ma-metadata);
  transition: all 200ms ease;
}
.tech-ledger tbody tr:hover .tech-ledger__arrow {
  color: var(--blueprint-accent);
  transform: translateX(4px);
}

/* 16. Lane A composition */
.tech-laneA {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: start;
}

/* 17. Double Featured Capabilities Grid */
.tech-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.tech-feature {
  position: relative;
  padding: 32px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: all 300ms var(--ease-quart);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.tech-sec--dark .tech-feature {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}
.tech-feature:hover {
  border-color: color-mix(in srgb, var(--blueprint-accent) 25%, transparent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tech-feature__plate { margin-bottom: 14px; }
.tech-feature__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.tech-sec--dark .tech-feature__title { color: #fff; }
.tech-feature__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.tech-sec--dark .tech-feature__desc { color: var(--text-on-dark-muted); }
.tech-feature__specs {
  display: grid;
  gap: 6px;
  padding: 14px 0 0;
  border-top: 1px solid var(--ink-100);
  margin-top: auto;
}
.tech-sec--dark .tech-feature__specs { border-top-color: rgba(255, 255, 255, 0.08); }
.tech-feature__cta {
  margin-top: 16px;
  font-family: var(--font);
  font-size: var(--ma-metadata);
  color: var(--blueprint-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* 18. Engineering split */
.tech-eng-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* 19. Why Mantra & Stats */
.tech-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  margin: 0 0 48px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tech-rail__cell {
  padding: 32px;
  border-left: 1px solid var(--ink-100);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tech-rail__cell:first-child { border-left: 0; }
.tech-rail__k {
  font-family: var(--font);
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.tech-rail__v {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--blueprint-accent);
  letter-spacing: -0.02em;
}
.tech-rail__note {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.tech-rail__note::before { content: ""; }

.tech-prose {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-bottom: 48px;
}
.tech-prose__item {
  padding-left: 20px;
  border-left: 3px solid var(--blueprint-accent);
}
.tech-prose__plate {
  font-family: var(--font);
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blueprint-accent);
  margin-bottom: 6px;
}
.tech-prose__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.tech-prose__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.tech-exhibit {
  position: relative;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tech-exhibit__img {
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
  filter: contrast(1.02);
  position: relative;
}
.tech-exhibit__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 70, 148, 0.2) 0%, rgba(3, 70, 148, 0.02) 100%);
}
.tech-exhibit__plate {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  font-family: var(--font);
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 22, 40, 0.85);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.tech-exhibit__tb {
  display: none !important;
}
.tech-exhibit__caption {
  padding: 24px;
  border-top: 1px solid var(--ink-100);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.tech-exhibit__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.tech-exhibit__desc {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
}

/* 20. Certifications Plate */
.tech-certs {
  background: #fff;
  padding: clamp(3rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  position: relative;
}
.tech-certs__plate {
  margin-bottom: 24px;
}
.tech-certs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-100);
  margin-top: 16px;
}
.tech-certs__cert {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  padding: 20px 16px;
  border-bottom: 1px solid var(--ink-100);
  border-right: 1px solid var(--ink-100);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tech-certs__cert:nth-child(4n) { border-right: 0; }
.tech-certs__cert::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #16a34a;
  font-size: 14px;
}

/* 21. CTA overlay marks */
.tech-cta-plate {
  display: block;
  margin-bottom: 16px;
}

/* ------------------------------------------------------------------
   22. Responsive
   ------------------------------------------------------------------ */

@media (max-width: 1100px) {
  .tech-hero__base { grid-template-columns: 1fr; gap: 32px; }
  .tech-hero__callouts { grid-template-columns: repeat(3, 1fr); }
  .tech-laneA { grid-template-columns: 1fr; }
  .tech-asym { grid-template-columns: 1fr; }
  .tech-stack__plate { grid-template-columns: 1fr; gap: 20px; }
  .tech-stack__inventory { border-left: 0; border-top: 1px solid var(--ink-100); padding-left: 0; padding-top: 20px; }
  .tech-features { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .tech-anno { grid-template-columns: 36px 1fr; }
  .tech-anno__tag { display: none; }
  .tech-drawing { grid-template-columns: 1fr; }
  .tech-drawing__exhibit { border-right: 0; border-bottom: 1px solid var(--ink-100); min-height: 220px; }
  .tech-head { grid-template-columns: 1fr; align-items: start; }
  .tech-head__count { text-align: left; }
  .tech-prose { grid-template-columns: 1fr; gap: 24px; }
  .tech-rail { grid-template-columns: 1fr; }
  .tech-rail__cell { border-left: 0; border-top: 1px solid var(--ink-100); }
  .tech-rail__cell:first-child { border-top: 0; }

  .tech-flow {
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tech-flow__node + .tech-flow__node { border-left: 1px solid var(--ink-100); border-top: 0; }
  .tech-flow-block--loop .tech-flow::after { position: static; transform: none; display: inline-block; margin-top: 24px; }

  .tech-hero__callouts { grid-template-columns: 1fr; }
  .tech-band__inner { grid-template-columns: 1fr; gap: 16px; }
  .tech-spec-table--2col { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .tech-sec { padding: 3.5rem 0; }
  .tech-hero { padding: 5rem 0 3rem; }
  .tech-hero__title { font-size: 2rem; }
  .tech-hero__cta { margin-bottom: 32px; }
  .tech-flow-block { padding: 20px; margin: 32px 0; }
  .tech-lane { grid-template-columns: auto 1fr; }
  .tech-lane__line { display: none; }
  .tech-lane__count { grid-column: 1 / -1; padding-left: 0; }
  .tech-stack__plate { padding: 24px 20px; }
  .tech-drawing__body { padding: 24px 20px; }
  .tech-feature { padding: 20px; min-height: 0; }

  .tech-ledger__class { display: none; }
  .tech-ledger thead th.tech-ledger__class { display: none; }
  .tech-ledger__id { width: 56px; }
  .tech-ledger td { padding: 14px 10px; }
  .tech-ledger__domain { min-width: 0; padding-left: 16px !important; }

  .tech-certs__grid { grid-template-columns: repeat(2, 1fr); }
  .tech-certs__cert:nth-child(4n) { border-right: 1px solid var(--ink-100); }
  .tech-certs__cert:nth-child(2n) { border-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tech-ledger__domain::before,
  .tech-ledger tbody tr:hover .tech-ledger__arrow,
  .tech-drawing__cta i { transition: none !important; transform: none !important; }
}

/* ------------------------------------------------------------------
   23. Print
   ------------------------------------------------------------------ */

@media print {
  .tech-hero__canvas { display: none !important; }
  .tech-sec::before,
  .tech-hero::before { display: none !important; }
  .tech-hero,
  .tech-sec--dark {
    background: #fff !important;
    color: #000 !important;
    --blueprint-ink: #000;
    --blueprint-ink-dim: #444;
    --blueprint-ink-faint: #888;
    --blueprint-rule: #bbb;
    --blueprint-rule-strong: #666;
    --blueprint-accent: #000;
  }
  .tech-hero__title, .tech-head__title, .tech-stack__name,
  .tech-drawing__title, .tech-feature__title { color: #000 !important; }
  .tech-drawing__exhibit, .tech-exhibit__img { filter: grayscale(1) contrast(1.2); }
}

/* ------------------------------------------------------------------
   24. Sticky Sidebar Scrollspy, Grid & Card Extensions (Clean & Optimized)
   ------------------------------------------------------------------ */

.tech-sidebar {
  position: fixed;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: none;
}

@media (min-width: 1200px) {
  .tech-sidebar {
    display: block;
  }
}

.tech-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tech-sidebar__list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.tech-sidebar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-200);
  transition: all 250ms var(--ease-quart);
}

.tech-sidebar__lbl {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 250ms var(--ease-quart);
  white-space: nowrap;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
  color: var(--text-secondary);
}

.tech-sidebar__list li a:hover .tech-sidebar__lbl {
  opacity: 1;
  transform: translateX(0);
}

.tech-sidebar__list li a:hover .tech-sidebar__dot {
  background: var(--primary);
  transform: scale(1.35);
}

/* Active State */
.tech-sidebar__list li.active a {
  color: var(--primary);
  font-weight: 600;
}

.tech-sidebar__list li.active .tech-sidebar__dot {
  background: var(--primary);
  transform: scale(1.5);
  box-shadow: 0 0 8px var(--primary-glow);
}

.tech-sidebar__list li.active .tech-sidebar__lbl {
  opacity: 1;
  transform: translateX(0);
  color: var(--text);
  background: #fff;
  border-color: var(--primary-glow);
}

/* Technology Grid & Modern Cards */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.tech-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 250ms var(--ease-quart);
  text-decoration: none;
  color: inherit;
}

.tech-card:hover {
  border-color: color-mix(in srgb, var(--blueprint-accent, var(--primary)) 30%, transparent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tech-card__icon {
  font-size: 18px;
  color: var(--blueprint-accent, var(--primary));
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-blue-light);
  border-radius: 50%;
  transition: all 250ms ease;
}

.tech-card:hover .tech-card__icon {
  transform: scale(1.1);
  background: var(--blueprint-accent, var(--primary));
  color: #fff;
}

.tech-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tech-card__badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  width: fit-content;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  margin-bottom: 4px;
  display: inline-block;
  line-height: 1.4;
}

.tech-card__badge--core {
  background: var(--ink-100);
  color: var(--text-secondary);
}

.tech-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.3;
}

.tech-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Dark mode overrides for grid/cards in research section */
.tech-sec--dark .tech-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

.tech-sec--dark .tech-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(94, 234, 212, 0.3);
}

.tech-sec--dark .tech-card__icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--blueprint-accent);
}

.tech-sec--dark .tech-card:hover .tech-card__icon {
  background: var(--blueprint-accent);
  color: var(--surface-dark);
}

.tech-sec--dark .tech-card__title {
  color: #fff;
}

.tech-sec--dark .tech-card__desc {
  color: var(--text-on-dark-muted);
}

.tech-sec--dark .tech-card__badge--core {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark-muted);
}

.tech-feature-visual {
  transition: transform 300ms var(--ease-quart);
}

.tech-feature:hover .tech-feature-visual {
  transform: scale(1.02);
}

/* ------------------------------------------------------------------
   25. Brand-aligned Tech kit (matches About / Products / Index voice)
   ------------------------------------------------------------------ */

/* Hero badge (pill eyebrow, matches .sol-hero__eyebrow voice) */
.tech-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8cb4e6;
  padding: 8px 18px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.22);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

/* Section heading eyebrow (matches .abt-intro__label) */
.tech-head__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 8px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  width: fit-content;
}

/* Single-column heading flow (overrides earlier 2-col rule) */
.tech-head {
  display: block;
  margin-bottom: 48px;
  padding-bottom: 0;
  border-bottom: 0;
}
.tech-head__title { margin-bottom: 14px; }

/* Simple grid */
.tech-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.tech-grid-simple + .tech-grid-simple { margin-top: 20px; }

/* ---- Layer cards (3 platform layers, icon + content + arrow) ---- */
.tech-layer-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 280ms var(--ease-quart);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.tech-layer-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
}
.tech-grid-simple > .tech-layer-card:nth-child(2)::before { background: #7c3aed; }
.tech-grid-simple > .tech-layer-card:nth-child(3)::before { background: #0d9488; }
.tech-layer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-200);
}
.tech-layer-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--primary-dim);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.tech-grid-simple > .tech-layer-card:nth-child(2) .tech-layer-card__icon {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}
.tech-grid-simple > .tech-layer-card:nth-child(3) .tech-layer-card__icon {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}
.tech-layer-card__content { min-width: 0; }
.tech-layer-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.tech-layer-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.tech-layer-card__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 13px;
  transition: all 240ms var(--ease-quart);
  flex-shrink: 0;
}
.tech-layer-card:hover .tech-layer-card__arrow {
  background: var(--primary);
  color: #fff;
  transform: translateX(4px);
}
.tech-grid-simple > .tech-layer-card:nth-child(2):hover .tech-layer-card__arrow { background: #7c3aed; }
.tech-grid-simple > .tech-layer-card:nth-child(3):hover .tech-layer-card__arrow { background: #0d9488; }

/* ---- Simple linked card (domain grid items) ---- */
.tech-card-simple {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 240ms var(--ease-quart);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.tech-card-simple:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--primary) 28%, transparent);
}
.tech-card-simple__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-dim);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: all 240ms ease;
}
.tech-card-simple:hover .tech-card-simple__icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
.tech-card-simple h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.tech-card-simple p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ---- Featured grid (2-up image + text cards) ---- */
.tech-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 24px 0 32px;
}
.tech-featured-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 280ms var(--ease-quart);
  text-decoration: none;
  color: inherit;
}
.tech-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--primary) 28%, transparent);
}
.tech-featured-card__image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 300ms var(--ease-quart);
}
.tech-featured-card:hover .tech-featured-card__image {
  transform: scale(1.02);
}
.tech-featured-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.4) 100%);
}
.tech-featured-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tech-featured-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
}
.tech-featured-card__content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}
.tech-featured-card__content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}
.tech-featured-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.tech-featured-card__specs span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  background: var(--surface);
  border: 1px solid var(--ink-100);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.tech-featured-card__link {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tech-featured-card__link i { transition: transform 200ms ease; }
.tech-featured-card:hover .tech-featured-card__link i { transform: translateX(4px); }

/* ---- Simple certifications row ---- */
.tech-certs-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.tech-certs-simple span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 200ms ease;
}
.tech-certs-simple span:hover {
  border-color: color-mix(in srgb, var(--primary) 28%, transparent);
  transform: translateY(-2px);
}
.tech-certs-simple span::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #16a34a;
  font-size: 14px;
}

@media (max-width: 900px) {
  .tech-featured-grid { grid-template-columns: 1fr; }
  .tech-layer-card { grid-template-columns: auto 1fr; }
  .tech-layer-card__arrow { display: none; }
}



/* ── Technology detail domain page system ── */

/* =====================================================
   TECHNOLOGY DETAIL — domain page system
   Shares DNA with /technology (tech-hero, tech-bento,
   tech-pipeline-block, cta-section). Driven by two
   custom properties: --d-accent + --d-soft, set inline
   on .td-shell from the model accent.
   ===================================================== */

.td-shell {
  --d-accent: var(--primary);
  --d-soft: var(--primary-dim);
  --d-on-dark: color-mix(in srgb, var(--d-accent) 60%, white);
  --d-glow-strong: color-mix(in srgb, var(--d-accent) 30%, transparent);
  --d-glow-soft: color-mix(in srgb, var(--d-accent) 12%, transparent);
  --rule: rgba(15, 23, 42, 0.08);
  --rule-strong: rgba(15, 23, 42, 0.16);
}

/* ── HERO ────────────────────────────────────────────── */
.td-hero {
  position: relative;
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  padding: clamp(7rem, 9vw, 10rem) 0 clamp(3rem, 4vw, 4.5rem);
  isolation: isolate;
}
.td-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(140, 180, 230, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.td-hero__bgimg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(0.4) contrast(1.05);
  z-index: 0;
}
.td-hero__bgimg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,12,24,0.4) 0%, rgba(5,12,24,0.85) 100%);
}
.td-hero__glow {
  position: absolute;
  width: 720px;
  height: 540px;
  background: radial-gradient(ellipse, var(--d-glow-strong) 0%, transparent 65%);
  pointer-events: none;
  top: -120px;
  right: -180px;
  z-index: 0;
}
.td-hero__glow--alt {
  background: radial-gradient(ellipse, var(--d-glow-soft) 0%, transparent 65%);
  top: auto;
  bottom: -160px;
  left: -200px;
  right: auto;
  width: 600px;
  height: 480px;
}

.td-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.td-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--d-on-dark);
  margin-bottom: 20px;
  padding: 7px 16px;
  background: color-mix(in srgb, var(--d-accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--d-accent) 30%, transparent);
  border-radius: 40px;
  width: fit-content;
}
.td-hero__eyebrow .td-hero__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--d-on-dark);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--d-on-dark) 70%, transparent);
  animation: tdPulse 2.2s ease-out infinite;
}
@keyframes tdPulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--d-on-dark) 70%, transparent); }
  70% { box-shadow: 0 0 0 10px color-mix(in srgb, var(--d-on-dark) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--d-on-dark) 0%, transparent); }
}

.td-hero__flag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--ma-metadata-limited);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: #fff;
  color: var(--ink-900);
  margin-left: 8px;
  vertical-align: middle;
}
.td-hero__flag.is-flagship {
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #fff;
}
.td-hero__flag.is-new {
  background: rgba(94, 234, 212, 0.95);
  color: #064e3b;
}

.td-hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  text-wrap: balance;
  max-width: 22ch;
}

.td-hero__lead {
  font-size: clamp(1rem, 1.2vw, 1.075rem);
  color: var(--text-on-dark-muted);
  line-height: 1.75;
  max-width: 56ch;
  margin-bottom: 36px;
}

.td-hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.td-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.95rem 1.85rem;
  background: #fff;
  color: var(--ink-900);
  border-radius: var(--radius-pill);
  font-size: var(--ma-body-text);
  font-weight: 700;
  transition: all 250ms var(--ease-quart);
  white-space: nowrap;
}
.td-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -10px rgba(0,0,0,0.4);
}
.td-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.95rem 1.85rem;
  font-size: var(--ma-body-text);
  font-weight: 600;
  border-radius: var(--radius-pill);
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 250ms var(--ease-quart);
  white-space: nowrap;
}
.td-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* ── HERO VISUAL — orb + floating chips ──────────────── */
.td-hero__visual {
  position: relative;
  height: 460px;
}
.td-hero__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--d-accent) 36%, transparent) 0%, transparent 60%),
    linear-gradient(160deg, rgba(15, 31, 53, 0.92) 0%, rgba(10, 22, 40, 0.92) 100%);
  border: 1px solid color-mix(in srgb, var(--d-accent) 28%, transparent);
  box-shadow:
    0 32px 96px -24px color-mix(in srgb, var(--d-accent) 50%, transparent),
    inset 0 0 60px color-mix(in srgb, var(--d-accent) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.td-hero__orb::before,
.td-hero__orb::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--d-accent) 14%, transparent);
  pointer-events: none;
}
.td-hero__orb::after { inset: -60px; border-color: color-mix(in srgb, var(--d-accent) 8%, transparent); }
.td-hero__orb-icon {
  font-size: 84px;
  color: var(--d-on-dark);
  filter: drop-shadow(0 8px 24px color-mix(in srgb, var(--d-accent) 50%, transparent));
}

.td-hero__chip {
  position: absolute;
  background: rgba(15, 31, 53, 0.78);
  border: 1px solid color-mix(in srgb, var(--d-accent) 24%, transparent);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.5);
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
  z-index: 2;
  animation: tdFloat 6s ease-in-out infinite;
}
.td-hero__chip::before {
  content: '';
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 3px;
  background: linear-gradient(180deg, var(--d-on-dark), transparent);
  border-radius: 2px;
}
.td-hero__chip:nth-child(1) { top: 30px; left: 0; animation-delay: 0s; }
.td-hero__chip:nth-child(2) { top: 90px; right: 20px; animation-delay: 1.5s; }
.td-hero__chip:nth-child(3) { bottom: 110px; left: 30px; animation-delay: 3s; }
.td-hero__chip:nth-child(4) { bottom: 30px; right: 0; animation-delay: 4.5s; }

@keyframes tdFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── HERO STAT STRIP (4-up) ──────────────────────────── */
.td-hero__stats {
  position: relative;
  z-index: 2;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 26px;
}
.td-hero__stat { padding: 0 26px; border-left: 1px solid rgba(255, 255, 255, 0.07); }
.td-hero__stat:first-child { border-left: none; padding-left: 0; }
.td-hero__stat-v {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: 'tnum';
}
.td-hero__stat-l {
  font-size: var(--ma-metadata-limited);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* ── BREADCRUMB / STICKY SUBNAV ─────────────────────── */
.td-subnav {
  position: sticky;
  top: 56px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.td-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.td-subnav__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ma-metadata);
  color: var(--text-tertiary);
  flex-wrap: wrap;
}
.td-subnav__crumb a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 9px;
  border-radius: 6px;
  transition: all 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.td-subnav__crumb a:hover {
  color: var(--d-accent);
  background: var(--d-soft);
}
.td-subnav__crumb i { font-size: 9px; color: #cbd5e1; }
.td-subnav__crumb .current {
  color: var(--d-accent);
  font-weight: 600;
  background: var(--d-soft);
  padding: 5px 10px;
  border-radius: 6px;
}
.td-subnav__right { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.td-subnav__anchor {
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.2s;
}
.td-subnav__anchor:hover {
  background: var(--ink-50);
  color: var(--ink-900);
}
.td-subnav__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: var(--d-accent);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--d-soft);
  transition: all 0.2s;
  margin-left: 6px;
}
.td-subnav__back:hover { transform: translateX(-2px); }

/* ── SECTION FRAMEWORK ──────────────────────────────── */
.td-section {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
  overflow: hidden;
  scroll-margin-top: 110px;
}
.td-section--white { background: #fff; }
.td-section--alt { background: var(--surface); }
.td-section--dark {
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 50%, #0a1a30 100%);
}
.td-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(140, 180, 230, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.td-section > .container { position: relative; z-index: 1; }

.td-section__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
}
.td-section__title-wrap { max-width: 760px; }
.td-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-accent);
  margin-bottom: 14px;
}
.td-section--dark .td-section__eyebrow { color: var(--d-on-dark); }
.td-section__eyebrow-bar {
  width: 30px;
  height: 2px;
  background: var(--d-accent);
  border-radius: 2px;
}
.td-section--dark .td-section__eyebrow-bar { background: var(--d-on-dark); }
.td-section__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink-900);
  text-wrap: balance;
  max-width: 22ch;
}
.td-section--dark .td-section__title { color: #f1f5f9; }
.td-section__lead {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 62ch;
  margin-top: 14px;
}
.td-section--dark .td-section__lead { color: var(--text-on-dark-muted); }
.td-section__meta { text-align: right; }
.td-section__count {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--d-accent);
  font-feature-settings: 'tnum';
}
.td-section--dark .td-section__count { color: var(--d-on-dark); }
.td-section__count-l {
  font-size: var(--ma-metadata-limited);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 6px;
}
.td-section--dark .td-section__count-l { color: #64748b; }

/* ── MISSION ─────────────────────────────────────────── */
.td-mission {
  background: #fff;
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  border-bottom: 1px solid var(--rule);
}
.td-mission__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.td-mission__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.td-mission__label-l {
  font-size: var(--ma-metadata-limited);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-tertiary);
}
.td-mission__label-bar {
  width: 32px;
  height: 2px;
  background: var(--d-accent);
  border-radius: 2px;
}
.td-quote {
  position: relative;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  max-width: 32ch;
  text-wrap: pretty;
  padding-left: 32px;
}
.td-quote::before {
  content: '\201C';
  position: absolute;
  left: -6px;
  top: -22px;
  font-size: 5rem;
  line-height: 1;
  color: var(--d-accent);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

/* ── CAPABILITIES (numbered bento) ──────────────────── */
.td-caps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}
.td-cap {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  padding: 28px 26px;
  transition: all 0.3s var(--ease-quart);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.td-cap--feature { grid-column: span 2; }
.td-cap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--d-accent), transparent 80%);
  opacity: 0;
  transition: opacity 0.3s;
}
.td-cap:hover {
  border-color: color-mix(in srgb, var(--d-accent) 35%, transparent);
  box-shadow: 0 18px 38px -16px color-mix(in srgb, var(--d-accent) 25%, transparent);
  transform: translateY(-2px);
}
.td-cap:hover::after { opacity: 1; }
.td-cap__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.td-cap__num {
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-tertiary);
  font-feature-settings: 'tnum';
}
.td-cap__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--d-soft);
  color: var(--d-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-header);
}
.td-cap h3 {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  line-height: 1.25;
  margin-bottom: 10px;
}
.td-cap p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.65;
  flex-grow: 1;
}

/* ── FRAMEWORK FLOW ────────────────────────────────── */
.td-framework {
  margin-top: 56px;
  position: relative;
  background: linear-gradient(135deg, #fff 0%, var(--d-soft) 100%);
  border: 1px solid color-mix(in srgb, var(--d-accent) 18%, transparent);
  border-radius: 22px;
  padding: 36px;
  overflow: hidden;
  scroll-margin-top: 110px;
}
.td-framework::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--d-accent) 14%, transparent) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}
.td-framework__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.td-framework__t {
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--d-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.td-framework__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--d-accent);
  color: #fff;
}
.td-framework__flow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
}
.td-fw-node {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--d-accent) 18%, transparent);
  border-radius: 14px;
  padding: 12px 18px 12px 12px;
  gap: 12px;
  box-shadow: 0 6px 18px -8px color-mix(in srgb, var(--d-accent) 18%, transparent);
  flex-shrink: 0;
  min-width: 150px;
  transition: all 0.25s var(--ease-quart);
}
.td-fw-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--d-accent) 35%, transparent);
}
.td-fw-node__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--d-soft);
  border: 1px solid color-mix(in srgb, var(--d-accent) 22%, transparent);
  color: var(--d-accent);
  font-weight: 800;
  font-size: var(--ma-metadata);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-feature-settings: 'tnum';
}
.td-fw-node__l {
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--ink-700);
  line-height: 1.25;
}
.td-fw-conn {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--d-accent) 60%, transparent), color-mix(in srgb, var(--d-accent) 15%, transparent));
  flex-shrink: 0;
  position: relative;
}
.td-fw-conn::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 6px solid color-mix(in srgb, var(--d-accent) 60%, transparent);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ── AGENT ARCHITECTURE ─────────────────────────────── */
.td-agent {
  margin-top: 32px;
  position: relative;
  background: linear-gradient(160deg, #10203c 0%, #0a1626 100%);
  border-radius: 22px;
  padding: 44px;
  overflow: hidden;
}
.td-agent::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.td-agent::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--d-accent) 30%, transparent) 0%, transparent 65%);
  pointer-events: none;
}
.td-agent__t {
  position: relative;
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-on-dark);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.td-agent__diagram {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
  z-index: 1;
}
.td-agent__sup {
  background: color-mix(in srgb, var(--d-accent) 24%, transparent);
  border: 1px solid color-mix(in srgb, var(--d-accent) 50%, transparent);
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 24px 60px -16px color-mix(in srgb, var(--d-accent) 60%, transparent);
}
.td-agent__bridge {
  position: relative;
  width: 70%;
  max-width: 600px;
  height: 36px;
  margin: 0 auto;
}
.td-agent__bridge::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 14px;
  width: 2px;
  background: rgba(255,255,255,0.2);
  transform: translateX(-50%);
}
.td-agent__bridge::after {
  content: '';
  position: absolute;
  left: 16.66%;
  right: 16.66%;
  bottom: 14px;
  height: 2px;
  background: rgba(255,255,255,0.2);
}
.td-agent__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 720px;
}
.td-agent__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.td-agent__col::before {
  content: '';
  width: 2px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}
.td-agent__agent {
  width: 100%;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 12px;
  color: #f8fafc;
  font-weight: 600;
  font-size: var(--ma-body-text);
}
.td-agent__tool {
  width: 100%;
  text-align: center;
  background: color-mix(in srgb, var(--d-accent) 15%, transparent);
  border: 1px dashed color-mix(in srgb, var(--d-accent) 50%, white);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--d-on-dark);
  font-size: var(--ma-metadata);
  font-weight: 500;
}

/* ── AGENTOPS chip rail ─────────────────────────────── */
.td-agentops {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 26px 30px;
  margin-top: 24px;
}
.td-agentops__t {
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.td-agentops__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.td-agentops__chips span {
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: var(--ink-700);
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 6px 13px;
  border-radius: 9px;
}

/* ── TECH SET (full chip grid) ──────────────────────── */
.td-techset {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.td-techset__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.td-techset__t {
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.td-techset__count {
  font-size: var(--ma-metadata);
  color: var(--text-tertiary);
}
.td-techset__count strong {
  color: var(--d-accent);
  font-weight: 800;
}
.td-techset__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.td-techset__chips span {
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: var(--ink-700);
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: default;
}
.td-techset__chips span:hover {
  background: var(--d-soft);
  border-color: color-mix(in srgb, var(--d-accent) 40%, transparent);
  color: var(--d-accent);
  transform: translateY(-1px);
}

/* ── OUTCOMES (dark KPI band) ──────────────────────── */
.td-outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.td-outcome {
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: background 0.3s var(--ease-quart);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.td-outcome:hover { background: rgba(255,255,255,0.025); }
.td-outcome__idx {
  font-size: var(--ma-metadata-limited);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  margin-bottom: 14px;
}
.td-outcome__v {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: #f8fafc;
  font-feature-settings: 'tnum';
  margin-bottom: 14px;
  background: linear-gradient(135deg, #f8fafc 0%, var(--d-on-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.td-outcome__l {
  font-size: var(--ma-body-text);
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 22ch;
}

/* ── APPLICATIONS ──────────────────────────────────── */
.td-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.td-app {
  display: flex;
  gap: 16px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  align-items: flex-start;
  transition: all 0.3s var(--ease-quart);
}
.td-app:hover {
  border-color: color-mix(in srgb, var(--d-accent) 35%, transparent);
  background: linear-gradient(135deg, #fff 0%, var(--d-soft) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px color-mix(in srgb, var(--d-accent) 22%, transparent);
}
.td-app__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--d-soft);
  color: var(--d-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
}
.td-app__body h4 {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin-bottom: 6px;
  line-height: 1.3;
}
.td-app__body p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── STANDARDS + RELATED SPLIT ────────────────────── */
.td-split {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 64px;
}
.td-split__col h3 {
  font-size: var(--ma-page-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 18px;
  line-height: 1.2;
}
.td-standards__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.td-standards__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.td-standards__name {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}
.td-standards__row i {
  color: #16a34a;
  font-size: var(--ma-body-text);
  flex-shrink: 0;
}

.td-related__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.td-related__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  padding: 22px 4px 22px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: all 0.3s var(--ease-quart);
}
.td-related__item:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, var(--d-soft), transparent 80%);
}
.td-related__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.td-related__body strong {
  display: block;
  font-size: var(--ma-pane-header);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin-bottom: 3px;
}
.td-related__body span {
  font-size: var(--ma-metadata);
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.td-related__arrow {
  color: var(--text-tertiary);
  font-size: var(--ma-header);
  transition: color 0.2s, transform 0.2s;
}
.td-related__item:hover .td-related__arrow {
  color: var(--d-accent);
  transform: translateX(4px);
}

/* ── CTA ──────────────────────────────────────────── */
.td-cta {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 50%, #0a1626 100%);
  color: #fff;
  overflow: hidden;
}
.td-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.td-cta::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--d-accent) 28%, transparent) 0%, transparent 65%);
  pointer-events: none;
}
.td-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  z-index: 1;
}
.td-cta__eyebrow {
  font-size: var(--ma-metadata-limited);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--d-on-dark);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.td-cta__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--d-on-dark);
}
.td-cta h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f8fafc;
  margin-bottom: 16px;
  max-width: 18ch;
  text-wrap: balance;
}
.td-cta p {
  font-size: var(--ma-body-text);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 48ch;
}
.td-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.td-cta__actions .td-btn-primary,
.td-cta__actions .td-btn-ghost {
  width: 100%;
  justify-content: space-between;
  min-width: 260px;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .td-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .td-hero__visual { height: 360px; }
  .td-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .td-hero__stat:nth-child(3) { border-left: none; padding-left: 0; }
  .td-hero__stat { padding-top: 18px; padding-bottom: 18px; }
  .td-section__head { grid-template-columns: 1fr; gap: 16px; }
  .td-section__meta { text-align: left; }
  .td-mission__inner { grid-template-columns: 1fr; gap: 22px; }
  .td-caps { grid-template-columns: repeat(2, 1fr); }
  .td-cap--feature { grid-column: span 2; }
  .td-apps { grid-template-columns: repeat(2, 1fr); }
  .td-outcomes { grid-template-columns: repeat(2, 1fr); }
  .td-split { grid-template-columns: 1fr; gap: 48px; }
  .td-cta__inner { grid-template-columns: 1fr; gap: 28px; }
  .td-subnav__right { display: none; }
}
@media (max-width: 720px) {
  .td-hero { padding: 6rem 0 3rem; }
  .td-hero__visual { height: 280px; }
  .td-hero__orb { width: 220px; height: 220px; }
  .td-hero__orb-icon { font-size: 64px; }
  .td-hero__chip { display: none; }
  .td-hero__stats { grid-template-columns: 1fr; padding-top: 20px; }
  .td-hero__stat { border-left: none !important; padding-left: 0 !important; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
  .td-hero__stat:first-child { border-top: none; padding-top: 0; }
  .td-caps { grid-template-columns: 1fr; }
  .td-cap--feature { grid-column: span 1; }
  .td-apps { grid-template-columns: 1fr; }
  .td-outcomes { grid-template-columns: 1fr; }
  .td-outcome { padding: 30px 24px; min-height: 0; }
  .td-fw-conn { display: none; }
  .td-fw-node { min-width: 100%; flex-basis: 100%; }
  .td-agent { padding: 28px; }
  .td-agent__row { grid-template-columns: 1fr; gap: 16px; }
  .td-agent__bridge::after { display: none; }
  .td-techset__head { flex-direction: column; align-items: flex-start; }
}

/* ------------------------------------------------------------------
   Technology Page - Professional Corporate Styles
   ------------------------------------------------------------------ */

/* Hero Badge */
.tech-hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 24px;
}

/* Section Meta Label */
.tech-head__meta {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Featured Grid */
.tech-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

/* Featured Card */
.tech-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 300ms var(--ease-quart);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--ink-100);
}
.tech-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tech-featured-card__image {
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tech-featured-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-featured-card__tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary-muted);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

.tech-featured-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}

.tech-featured-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.tech-featured-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tech-featured-card__specs span {
  padding: 6px 12px;
  background: var(--surface-alt);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.tech-featured-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 8px;
  transition: gap 200ms ease;
}
.tech-featured-card__link:hover {
  gap: 12px;
}

/* Layer Cards */
.tech-layer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  transition: all 300ms var(--ease-quart);
  text-decoration: none;
  color: inherit;
}
.tech-layer-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tech-layer-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-muted);
  color: var(--primary);
  border-radius: var(--radius-md);
  font-size: 24px;
  flex-shrink: 0;
}

.tech-layer-card__content {
  flex: 1;
}

.tech-layer-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px 0;
}

.tech-layer-card p {
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.tech-layer-card__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 200ms ease;
}
.tech-layer-card:hover .tech-layer-card__arrow {
  background: var(--primary);
  color: #fff;
}

/* Simple Card Grid */
.tech-grid-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Detailed Card */
.tech-card-detailed {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 300ms var(--ease-quart);
  text-decoration: none;
  color: inherit;
}
.tech-card-detailed:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.tech-card-detailed:not(a) {
  cursor: default;
}
.tech-card-detailed:not(a):hover {
  transform: none;
}

.tech-card-detailed__image {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tech-card-detailed__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tech-card-detailed h3 {
  font-size: var(--ma-header);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.tech-card-detailed p {
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ---- Capability cards (The Science of Identity / Core layer) ---- */
.tech-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.tech-cap-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 320ms var(--ease-quart), box-shadow 320ms var(--ease-quart), border-color 320ms var(--ease-quart);
}

.tech-cap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--primary) 38%, transparent);
}

.tech-cap-card__media {
  position: relative;
  height: 172px;
  overflow: hidden;
}

.tech-cap-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms var(--ease-quart);
}

.tech-cap-card:hover .tech-cap-card__img {
  transform: scale(1.07);
}

/* Navy brand duotone overlay — unifies the photography under the theme */
.tech-cap-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(157deg, rgba(3, 70, 148, 0.55) 0%, rgba(3, 70, 148, 0.12) 42%, rgba(10, 22, 40, 0.78) 100%);
  transition: opacity 320ms var(--ease-quart);
}

.tech-cap-card:hover .tech-cap-card__media::after {
  opacity: 0.82;
}

.tech-cap-card__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tech-cap-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 22px 20px;
}

.tech-cap-card__title {
  font-size: var(--ma-header);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}

.tech-cap-card__desc {
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}

.tech-cap-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.tech-cap-card__cta i {
  transition: transform 280ms var(--ease-quart);
}

.tech-cap-card:hover .tech-cap-card__cta i {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .tech-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .tech-cap-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Technology category pages (core/engineering/research) ── */
/* ================================================================
   Technology Category pages (core / engineering / research)
   Reuses .tech-cap-card, themed per group via --cat-accent / --cat-soft
   ================================================================ */

/* Hero meta metrics */
.tech-cat-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 28px;
}
.tech-cat-hero__metric {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
}
.tech-cat-hero__metric strong {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-right: 6px;
}

/* Lane sub-heading eyebrow */
.tech-cat-lane-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--ma-metadata);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cat-accent, var(--primary));
  margin-bottom: 6px;
}
.tech-cat-lane-eyebrow__bar {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--cat-accent, var(--primary));
}

/* Category grid: wider min so longer domain names breathe; auto-fit rows */
.tech-cap-grid--cat {
  grid-template-columns: repeat(auto-fill, minmax(264px, 1fr));
}

/* Per-group accent: border + icon tint + cta colour follow the lane colour */
.tech-cap-card--cat:hover {
  border-color: color-mix(in srgb, var(--cat-accent, var(--primary)) 42%, transparent);
}
.tech-cap-card--cat .tech-cap-card__cta {
  color: var(--cat-accent, var(--primary));
}

/* Duotone overlay tinted to the group accent */
.tech-cap-card--cat .tech-cap-card__media::after {
  background: linear-gradient(157deg,
      color-mix(in srgb, var(--cat-accent, var(--primary)) 55%, transparent) 0%,
      color-mix(in srgb, var(--cat-accent, var(--primary)) 12%, transparent) 42%,
      rgba(10, 22, 40, 0.78) 100%);
}

/* Plain (image-less) media tile — gradient wash + large centered icon */
.tech-cap-card__media--plain {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 120% at 80% 0%, var(--cat-soft, var(--primary-dim)) 0%, #fff 70%);
}
.tech-cap-card__media--plain::after {
  display: none;
}
.tech-cap-card__bigicon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--cat-accent, var(--primary));
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--cat-accent, var(--primary)) 18%, transparent);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms var(--ease-quart);
}
.tech-cap-card--cat:hover .tech-cap-card__bigicon {
  transform: translateY(-3px) scale(1.04);
}

/* Flag badge (New / Flagship) */
.tech-cap-card__flag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: #fff;
}
.tech-cap-card__flag.is-new {
  background: var(--cat-accent, var(--primary));
}
.tech-cap-card__flag.is-flagship {
  background: #0f172a;
}

/* ---- Why-us pillars (25 Years — no inner page, no CTA, icon-led) ---- */
.tech-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tech-pillar {
  padding: 32px 28px;
  border-left: 1px solid var(--ink-100);
}
.tech-pillar:first-child {
  border-left: 0;
}
.tech-pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  background: var(--primary-dim);
  margin-bottom: 18px;
}
.tech-pillar__title {
  font-size: var(--ma-header);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 8px;
}
.tech-pillar__desc {
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
@media (max-width: 900px) {
  .tech-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .tech-pillar {
    border-top: 1px solid var(--ink-100);
  }
  .tech-pillar:nth-child(odd) {
    border-left: 0;
  }
  .tech-pillar:nth-child(-n+2) {
    border-top: 0;
  }
}
@media (max-width: 560px) {
  .tech-pillars {
    grid-template-columns: 1fr;
  }
  .tech-pillar {
    border-left: 0;
    border-top: 1px solid var(--ink-100);
  }
  .tech-pillar:first-child {
    border-top: 0;
  }
}

/* Section header row: title/subtitle on the left, "View All ..." action on the right */
.tech-head--row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.tech-head--row .tech-head__text {
  min-width: 0;
}

/* Refined "View All ..." link-button beside the section title */
.tech-head__action {
  flex-shrink: 0;
  gap: 0.6rem;
  border-color: var(--ink-200);
  color: var(--primary);
  font-weight: 600;
}

.tech-head__action i {
  transition: transform 300ms var(--ease-quart);
}

.tech-head__action:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim, rgba(3, 70, 148, 0.06));
}

.tech-head__action:hover i {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .tech-head--row {
    flex-direction: column;
    align-items: stretch;
  }
  .tech-head__action {
    width: 100%;
    justify-content: center;
  }
}

/* Minimal Enterprise CTA */
.cta-minimal {
  background: #f8fafc;
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

.cta-minimal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(3, 70, 148, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-minimal__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-minimal h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0c1525;
  margin: 0 0 16px 0;
}

.cta-minimal p {
  font-size: var(--ma-body-text);
  line-height: 1.7;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

.cta-minimal__btn {
  background: linear-gradient(135deg, #0057B8 0%, #0A4EA3 100%);
  border-radius: 999px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 87, 184, 0.3);
  transition: all 300ms var(--ease-quart);
}

.cta-minimal__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 87, 184, 0.4);
}

/* ── cta-card: premium dark glassmorphism card ── */
.cta-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 6vw, 5rem);
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(3, 70, 148, 0.15) inset,
    0 32px 64px rgba(0,0,0,0.25);
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(3, 70, 148, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0c1525;
  margin: 0 0 1rem;
}

.cta-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* ── cta-actions: button row ── */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-actions .btn-ghost {
  color: #334155;
  border-color: #cbd5e1;
  background: transparent;
}

.cta-actions .btn-ghost:hover {
  color: #0c1525;
  border-color: #94a3b8;
  background: rgba(0, 0, 0, 0.03);
}

/* Simple Card */
.tech-card-simple {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  transition: all 300ms var(--ease-quart);
  text-decoration: none;
  color: inherit;
}
.tech-card-simple:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tech-card-simple:not(a) {
  cursor: default;
}
.tech-card-simple:not(a):hover {
  transform: none;
}

.tech-card-simple__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-muted);
  color: var(--primary);
  border-radius: var(--radius-md);
  font-size: 20px;
}

.tech-card-simple h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.tech-card-simple p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Certifications Simple */
.tech-certs-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}
.tech-certs-simple span {
  padding: 12px 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Responsive (tech grid only — CTA uses shared .cta-section/.cta-card pattern) */
@media (max-width: 1024px) {
  .tech-grid-simple {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-grid-simple {
    grid-template-columns: 1fr;
  }
  .tech-layer-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .tech-layer-card__arrow {
    display: none;
  }
}

/* ================================================================
   Creative Layout Enhancements for Technology Category Pages
   ================================================================ */

/* Asymmetric / Responsive Grid */
.tech-cap-grid--cat {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  display: grid;
  gap: 28px;
}

/* Flagship Cards Layout (Spans 2 columns on desktop) */
@media (min-width: 901px) {
  .tech-cap-card--flagship {
    grid-column: span 2;
    display: grid !important;
    grid-template-columns: 44% 56%;
    align-items: stretch;
  }
  .tech-cap-card--flagship .tech-cap-card__media {
    height: 100% !important;
    min-height: 280px;
  }
  .tech-cap-card--flagship .tech-cap-card__body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Blueprint / Schematic Background for Plain Cards */
.tech-cap-card__media--plain {
  position: relative;
  overflow: hidden;
}
.tech-card-schematic-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(color-mix(in srgb, var(--cat-accent, var(--primary)) 8%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--cat-accent, var(--primary)) 8%, transparent) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

/* Ensure big icon sits above blueprint grid */
.tech-cap-card__bigicon {
  z-index: 2;
}

/* Curated Tech Chips Display */
.tech-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.tech-card-chip {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  background: var(--cat-soft, var(--primary-muted));
  color: color-mix(in srgb, var(--cat-accent, var(--primary)) 85%, #0d1e36);
  border: 1px solid color-mix(in srgb, var(--cat-accent, var(--primary)) 12%, transparent);
  transition: all 300ms var(--ease-quart);
  white-space: nowrap;
}
.tech-card-chip--more {
  font-style: italic;
  font-weight: 600;
  opacity: 0.85;
}
.tech-cap-card:hover .tech-card-chip {
  background: #fff;
  border-color: color-mix(in srgb, var(--cat-accent, var(--primary)) 30%, transparent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* Flagship Outcomes Panel styling */
.tech-card-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
  margin-top: 4px;
  margin-bottom: 14px;
  border-top: 1px dashed color-mix(in srgb, var(--cat-accent, var(--primary)) 20%, transparent);
}
.tech-card-outcome-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tech-card-outcome-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--cat-accent, var(--primary));
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.tech-card-outcome-lbl {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Smooth Premium Glow & Action Elements on Cards */
.tech-cap-card--cat:hover {
  transform: translateY(-5px);
  border-color: var(--cat-accent, var(--primary)) !important;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--cat-accent, var(--primary)) 12%, transparent), var(--shadow-sm);
}

.tech-cap-card--cat .tech-cap-card__cta {
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 280ms var(--ease-quart);
}
.tech-cap-card--cat:hover .tech-cap-card__cta {
  gap: 10px;
}


/* ── Technology inner detail redesigned ── */
/* ================================================================
   Technology Inner Detail Pages — Redesigned Layout
   Professional, sol-hero-consistent design for /technology/{slug}
   ================================================================ */

/* ── Hero stat cards (inline in hero) ───────────────── */
.td-inner-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  min-width: 140px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 300ms var(--ease-quart);
}
.td-inner-hero__stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.td-inner-hero__stat-v {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.03em;
  line-height: 1;
  font-feature-settings: 'tnum';
}
.td-inner-hero__stat-l {
  font-size: var(--ma-metadata-limited);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ── Capability bento grid (numbered) ──────────────── */
.td-inner-caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.td-inner-cap {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all 0.35s var(--ease-quart);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.td-inner-cap--feature {
  grid-column: span 2;
}
.td-inner-cap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--d-accent), transparent 80%);
  opacity: 0;
  transition: opacity 0.3s;
}
.td-inner-cap:hover {
  border-color: color-mix(in srgb, var(--d-accent) 35%, transparent);
  box-shadow: 0 20px 44px -18px color-mix(in srgb, var(--d-accent) 22%, transparent);
  transform: translateY(-3px);
}
.td-inner-cap:hover::after { opacity: 1; }

.td-inner-cap__num {
  font-size: var(--ma-metadata-limited);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  opacity: 0.6;
}
.td-inner-cap__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.td-inner-cap h3 {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  line-height: 1.25;
  margin-bottom: 10px;
}
.td-inner-cap p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.65;
  flex-grow: 1;
}

/* ── Framework pipeline ────────────────────────────── */
.td-inner-framework {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(10, 22, 40, 0.02), 0 4px 20px rgba(0, 0, 0, 0.02);
}
.td-inner-framework::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.65;
  pointer-events: none;
}
.td-inner-framework__pipeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap; /* Prevent step wrapping, scrolling instead */
  overflow-x: auto;
  gap: 0;
  z-index: 1;
  padding: 12px 6px 20px 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--d-accent) var(--ink-50);
}
/* Style the horizontal scrollbar for a professional developer board look */
.td-inner-framework__pipeline::-webkit-scrollbar {
  height: 6px;
}
.td-inner-framework__pipeline::-webkit-scrollbar-track {
  background: var(--ink-50);
  border-radius: 10px;
}
.td-inner-framework__pipeline::-webkit-scrollbar-thumb {
  background: var(--d-accent);
  border-radius: 10px;
  border: 1px solid var(--ink-50);
}
.td-inner-framework__pipeline::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--d-accent) 85%, #000);
}

.td-inner-fw-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: 14px 22px;
  box-shadow: 0 6px 24px -10px rgba(0, 0, 0, 0.07);
  min-width: 170px;
  transition: all 0.25s var(--ease-quart);
  flex-shrink: 0;
  border-bottom: 2px solid var(--ink-100);
}
.td-inner-fw-step:hover {
  transform: translateY(-2px);
  border-color: var(--d-accent);
  border-bottom-color: var(--d-accent);
  box-shadow: 0 12px 30px -10px color-mix(in srgb, var(--d-accent) 20%, transparent);
}
.td-inner-fw-step__num {
  width: 32px;
  height: 32px;
  border-radius: 8px; /* Compact square badge */
  background: var(--d-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace; /* Dev font */
  font-weight: 700;
  font-size: 13px;
  color: var(--d-accent);
  border: 1px solid color-mix(in srgb, var(--d-accent) 20%, transparent);
  flex-shrink: 0;
  font-feature-settings: 'tnum';
}
.td-inner-fw-step__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.td-inner-fw-conn {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--d-accent) 0%, color-mix(in srgb, var(--d-accent) 25%, transparent) 100%);
  flex-shrink: 0;
  position: relative;
  opacity: 0.75;
  margin: 0 4px;
}
.td-inner-fw-conn::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -3px;
  width: 0; height: 0;
  border-left: 6px solid color-mix(in srgb, var(--d-accent) 60%, transparent);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ── Technology chip cloud ─────────────────────────── */
.td-inner-techcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.td-inner-techcloud__chip {
  font-family: 'IBM Plex Mono', monospace; /* Dev styling tag cloud */
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-700);
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  padding: 8px 16px;
  border-radius: 8px; /* precise technical radius */
  transition: all 0.2s var(--ease-quart);
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.td-inner-techcloud__chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--chip-accent, var(--d-accent));
  opacity: 0.45;
  transition: all 0.2s ease;
}
.td-inner-techcloud__chip:hover {
  background: #fff;
  border-color: var(--chip-accent, var(--d-accent));
  color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--chip-accent, var(--d-accent)) 30%, transparent);
}
.td-inner-techcloud__chip:hover::before {
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 6px var(--chip-accent, var(--d-accent));
}

/* ── Application cards ─────────────────────────────── */
.td-inner-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.td-inner-app {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  align-items: center;
  transition: all 0.3s var(--ease-quart);
}
.td-inner-app:hover {
  border-color: color-mix(in srgb, var(--d-accent) 35%, transparent);
  background: linear-gradient(135deg, #fff 0%, var(--d-soft) 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -16px color-mix(in srgb, var(--d-accent) 20%, transparent);
}
.td-inner-app__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.td-inner-app__body {
  flex: 1;
  min-width: 0;
}
.td-inner-app__body h4 {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin-bottom: 6px;
  line-height: 1.3;
}
.td-inner-app__body p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
}
.td-inner-app__arrow {
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s;
  flex-shrink: 0;
}
.td-inner-app:hover .td-inner-app__arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ── Standards & Related split ─────────────────────── */
.td-inner-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* Adjusted column balance */
  gap: 48px;
}
.td-inner-split__col h3 {
  font-size: var(--ma-page-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 22px;
  line-height: 1.2;
}
.td-inner-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--ma-metadata-limited);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.td-inner-split__bar {
  width: 28px;
  height: 2px;
  border-radius: 2px;
}

.td-inner-standards {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Using spacing and row cards instead of border separators */
}
.td-inner-standards__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  gap: 16px;
  transition: all 0.25s var(--ease-quart);
}
.td-inner-standards__row:hover {
  background: #fff;
  border-color: var(--d-accent);
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.06);
  transform: translateX(4px);
}
.td-inner-standards__row i {
  color: #10b981 !important; /* Forces compliance green */
  background: rgba(16, 185, 129, 0.1);
  padding: 6px;
  border-radius: 50%;
  font-size: 11px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.15);
}
.td-inner-standards__name {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.td-inner-related {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Using list spacing instead of raw separators */
}
.td-inner-related__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  padding: 14px 20px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  border-left: 4px solid var(--d-accent); /* Color-coded domain accent stripe */
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: all 0.25s var(--ease-quart);
}
.td-inner-related__item:hover {
  background: #fff;
  border-color: var(--d-accent);
  box-shadow: 0 8px 24px -10px color-mix(in srgb, var(--d-accent) 25%, transparent);
  transform: translateX(4px);
}
.td-inner-related__dot {
  display: none; /* Replaced by the clean left accent stripe */
}
.td-inner-related__body strong {
  display: block;
  font-size: var(--ma-pane-header);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin-bottom: 3px;
}
.td-inner-related__body span {
  font-size: var(--ma-metadata);
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.td-inner-related__arrow {
  color: var(--text-tertiary);
  font-size: 13px;
  transition: all 0.2s;
}
.td-inner-related__item:hover .td-inner-related__arrow {
  color: var(--d-accent);
  transform: translateX(4px);
}

/* ── TD Inner — hero background image overlay ──────── */
.td-shell .sol-hero .td-hero__bgimg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: grayscale(0.4) contrast(1.05);
  z-index: 0;
}
.td-shell .sol-hero .td-hero__bgimg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,12,24,0.4) 0%, rgba(5,12,24,0.85) 100%);
}

/* ── TD Inner — Responsive ─────────────────────────── */
@media (max-width: 1100px) {
  .td-inner-caps {
    grid-template-columns: repeat(2, 1fr);
  }
  .td-inner-cap--feature {
    grid-column: span 2;
  }
  .td-inner-apps {
    grid-template-columns: repeat(2, 1fr);
  }
  .td-inner-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .td-inner-caps {
    grid-template-columns: 1fr;
  }
  .td-inner-cap--feature {
    grid-column: span 1;
  }
  .td-inner-apps {
    grid-template-columns: 1fr;
  }
  .td-inner-hero__stat {
    min-width: 100px;
    padding: 12px 16px;
  }
  .td-inner-framework {
    padding: 24px;
  }
  .td-inner-fw-conn {
    display: none;
  }
  .td-inner-fw-step {
    min-width: 100%;
    flex-basis: 100%;
  }
}

/* ── Revamped Blueprint Layout Elements ─────────────────────── */

/* Revamped Framework pipeline Split Layout */
.td-inner-framework__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.td-inner-fw-vertical-pipeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
/* Vertical track line runs behind pipeline cards */
.td-inner-fw-vertical-pipeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--d-accent) 0%, rgba(3, 70, 148, 0.05) 100%);
  opacity: 0.4;
}
.td-inner-fw-vertical-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: 14px 20px;
  position: relative;
  z-index: 1;
  transition: all 0.25s var(--ease-quart);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border-bottom: 2px solid var(--ink-100);
}
.td-inner-fw-vertical-step:hover {
  border-color: var(--d-accent);
  border-bottom-color: var(--d-accent);
  transform: translateX(6px);
  box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--d-accent) 25%, transparent);
}
.td-inner-fw-vertical-step__num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--d-soft);
  color: var(--d-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid color-mix(in srgb, var(--d-accent) 20%, transparent);
  flex-shrink: 0;
}
.td-inner-fw-vertical-step__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
}
.td-inner-fw-vertical-step__trace {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  background: var(--ink-50);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid var(--ink-100);
  font-weight: 500;
}

.td-inner-framework__graphic {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  border: 1px solid var(--ink-100);
  box-shadow: 0 12px 36px -16px rgba(10, 22, 40, 0.15);
}
.td-inner-framework__graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.td-inner-framework__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--d-accent) 15%, transparent) 0%, rgba(10, 22, 40, 0.8) 100%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.td-inner-graphic-terminal {
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #34d399; /* Emerald green terminal text */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
.td-inner-graphic-terminal__line {
  line-height: 1.6;
  margin-bottom: 2px;
}
.td-inner-graphic-terminal__line span.status {
  color: #10b981;
  font-weight: 600;
}

/* Revamped Tech Stack Split Layout */
.td-inner-techcloud__split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: stretch;
}
.td-inner-terminal {
  background: var(--ink-900);
  border: 1px solid var(--ink-600);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px -12px rgba(10, 22, 40, 0.25);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.td-inner-terminal__header {
  background: var(--ink-800);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink-700);
}
.td-inner-terminal__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.td-inner-terminal__title {
  color: var(--ink-200);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  margin-left: 6px;
  flex-grow: 1;
}
.td-inner-terminal__body {
  padding: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--ink-100);
  line-height: 1.8;
  flex-grow: 1;
  background: linear-gradient(180deg, #0a1628 0%, #050b14 100%);
}
.td-inner-terminal__code-keyword { color: #f472b6; }
.td-inner-terminal__code-string { color: #34d399; }
.td-inner-terminal__code-number { color: #60a5fa; }

/* Revamped Responsive overrides */
@media (max-width: 992px) {
  .td-inner-framework__split,
  .td-inner-techcloud__split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .td-inner-framework__graphic {
    min-height: 280px;
  }
}

/* ── Enhanced Interactive Tech Stack & Standards & Compliance UI ── */

/* Tech Stack Column Layout Adjustments */
.td-inner-techcloud {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
.td-inner-techcloud__chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Search / Filter Container above chip cloud */
.techcloud-filter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 8px;
  padding: 10px 14px;
  transition: all 0.25s var(--ease-quart);
  width: 100%;
}
.tech-sec--dark .techcloud-filter-container {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.techcloud-filter-container:focus-within {
  border-color: var(--d-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--d-accent) 15%, transparent);
  background: #fff;
}
.tech-sec--dark .techcloud-filter-container:focus-within {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--d-accent);
}
.techcloud-filter-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
}
.techcloud-filter-search-box i {
  color: var(--text-tertiary);
  font-size: 13px;
}
.tech-sec--dark .techcloud-filter-search-box i {
  color: var(--text-on-dark-muted);
}
.techcloud-filter-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font);
  font-size: 13px;
  color: var(--ink-900);
  width: 100%;
}
.tech-sec--dark .techcloud-filter-input {
  color: #fff;
}
.techcloud-filter-input::placeholder {
  color: var(--text-muted);
}
.tech-sec--dark .techcloud-filter-input::placeholder {
  color: var(--text-on-dark-muted);
}
.tech-stack-filter-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-tertiary);
  background: var(--ink-100);
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}
.tech-sec--dark .tech-stack-filter-count {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark-muted);
}

/* Elegant Pill-Style Tag Chips */
.td-inner-techcloud__chip {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid transparent;
  padding: 6px 12px;
  border-radius: 30px; /* clean pill shape */
  transition: opacity 0.25s var(--ease-quart), transform 0.25s var(--ease-quart), background-color 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tech-sec--dark .td-inner-techcloud__chip {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-on-dark-muted);
}
.td-inner-techcloud__chip::before {
  display: none; /* remove dot for a cleaner brand aesthetic */
}
.td-inner-techcloud__chip:hover {
  background: var(--d-soft);
  border-color: color-mix(in srgb, var(--d-accent) 25%, transparent);
  color: var(--d-accent);
  transform: translateY(-1px);
}
.tech-sec--dark .td-inner-techcloud__chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}
.td-inner-techcloud__chip.hidden-chip {
  opacity: 0.1;
  transform: scale(0.85);
  pointer-events: none;
}

/* Terminal Tab System */
.td-inner-terminal__tabs {
  display: flex;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.td-inner-terminal__tab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-200);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.td-inner-terminal__tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.td-inner-terminal__tab.active {
  background: var(--d-accent);
  color: #fff;
  border-color: var(--d-accent);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--d-accent) 35%, transparent);
  font-weight: 600;
}

.td-inner-terminal__body-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.td-inner-terminal__tab-content {
  display: none;
  flex-grow: 1;
  padding: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--ink-100);
  line-height: 1.8;
  background: linear-gradient(180deg, #0a1628 0%, #050b14 100%);
  position: relative;
}
.td-inner-terminal__tab-content.active {
  display: flex;
  flex-direction: column;
}
#tab-content-manifest {
  padding-top: 48px;
}

/* Copy button inside Manifest */
.td-inner-terminal__copy-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ink-200);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  white-space: nowrap;
}
.td-inner-terminal__copy-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.td-inner-terminal__copy-btn i {
  font-size: 12px;
}

/* Telemetry View Content */
.td-inner-terminal__telemetry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-content: start;
}
.td-inner-terminal__metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}
.td-inner-terminal__metric-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--d-accent);
  opacity: 0.7;
}
.td-inner-terminal__metric-label {
  font-size: 9px;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.td-inner-terminal__metric-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.td-inner-terminal__metric-value span.pulse-indicator {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}
.td-inner-terminal__metric-bar-bg {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.td-inner-terminal__metric-bar-fill {
  height: 100%;
  background: var(--d-accent);
  border-radius: 2px;
  width: 0%;
  transition: width 1s var(--ease-quart);
}

/* System Logs View Content */
.td-inner-terminal__console-logs {
  font-size: 11px;
  height: 100%;
  min-height: 200px;
  max-height: 218px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.td-inner-terminal__console-logs::-webkit-scrollbar {
  width: 4px;
}
.td-inner-terminal__console-logs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.td-inner-terminal__log-line {
  margin-bottom: 4px;
  white-space: pre-wrap;
  color: #34d399;
}
.td-inner-terminal__log-line.system {
  color: var(--text-on-dark-muted);
}
.td-inner-terminal__log-line.accent {
  color: #60a5fa;
}
.console-cursor {
  display: inline-block;
  width: 6px;
  height: 11px;
  background: #34d399;
  margin-left: 2px;
  animation: blink-cursor 1s step-end infinite;
  vertical-align: middle;
}
@keyframes blink-cursor {
  from, to { background-color: transparent }
  50% { background-color: #34d399 }
}

/* ── Upgraded Ruled List Layout for Standards & Compliance ── */
.td-inner-standards {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink-100);
}
.tech-sec--dark .td-inner-standards {
  border-top-color: rgba(255, 255, 255, 0.08);
}
.td-inner-standards__row.cert-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-100);
  border-radius: 0;
  padding: 14px 0;
  box-shadow: none;
  transition: all 0.25s var(--ease-quart);
  gap: 12px;
}
.tech-sec--dark .td-inner-standards__row.cert-card {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.td-inner-standards__row.cert-card:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
}
.td-inner-standards__card-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-grow: 1;
}
.td-inner-standards__card-icon {
  font-size: 13px;
  color: var(--d-accent);
  background: var(--d-soft);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--d-accent) 15%, transparent);
}
.td-inner-standards__row.cert-card:hover .td-inner-standards__card-icon {
  background: var(--d-accent);
  color: #fff;
}
.td-inner-standards__card-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex-grow: 1;
}
.td-inner-standards__badge {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tech-sec--dark .td-inner-standards__badge {
  color: var(--text-on-dark-muted);
}
.td-inner-standards__row.cert-card .td-inner-standards__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.3;
}
.tech-sec--dark .td-inner-standards__row.cert-card .td-inner-standards__name {
  color: #fff;
}

/* Compliance Status Badge on Right - Minimalist Label */
.td-inner-standards__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #10b981;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}
.td-inner-standards__status-badge i {
  font-size: 11px;
  color: #10b981 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ── Upgraded Ruled List Layout for Related Domains ── */
.td-inner-related {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink-100);
}
.tech-sec--dark .td-inner-related {
  border-top-color: rgba(255, 255, 255, 0.08);
}
.td-inner-related__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-100);
  border-radius: 0;
  padding: 14px 0;
  transition: all 0.25s var(--ease-quart);
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.tech-sec--dark .td-inner-related__item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.td-inner-related__item:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
}
.td-inner-related__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.td-inner-related__body span {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tech-sec--dark .td-inner-related__body span {
  color: var(--text-on-dark-muted);
}
.td-inner-related__body strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  transition: color 0.2s;
}
.tech-sec--dark .td-inner-related__body strong {
  color: #fff;
}
.td-inner-related__item:hover .td-inner-related__body strong {
  color: var(--d-accent);
}
.td-inner-related__arrow {
  color: var(--text-tertiary);
  font-size: 11px;
  transition: all 0.25s var(--ease-quart);
}
.tech-sec--dark .td-inner-related__arrow {
  color: var(--text-on-dark-muted);
}
.td-inner-related__item:hover .td-inner-related__arrow {
  color: var(--d-accent);
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .td-inner-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   TECHNOLOGY CATEGORY INNER PAGES — Segment Interior Layout
   Covers: TechnologyCore, TechnologyEngineering, TechnologyResearch
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Tech Cat Hero Modifier ── */
.tech-cat-hero .sol-hero__seg-link:hover {
  background: color-mix(in srgb, var(--cat-accent) 12%, transparent);
  border-color: color-mix(in srgb, var(--cat-accent) 30%, transparent);
}

/* ── Sol Segment Bg3 (third background variant) ── */
.sol-segment--bg3 {
  background: linear-gradient(135deg, #f0f4fa 0%, #f7f9fb 50%, #eef2f7 100%);
}

/* ── Segment Hero — Split Image + Panel ── */
/* ── Hero Section — matches prd-segment__hero layout ── */
.sol-segment__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

/* Alternating image position */
.sol-segment--alt .sol-segment__hero {
  direction: rtl;
}
.sol-segment--alt .sol-segment__hero > * {
  direction: ltr;
}

/* Image card */
.sol-segment__visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 30, 60, 0.12);
  min-height: 360px;
}

.sol-segment__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 30, 60, 0.12), transparent 55%);
  pointer-events: none;
}

.sol-segment__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-segment__hero:hover .sol-segment__visual img {
  transform: scale(1.04);
}

/* Right-side content panel — matches prd-hero-panel */
.sol-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.07);
}

/* ── Overview ── */
.sol-detail__overview h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.sol-detail__overview p {
  font-size: var(--ma-body-text);
  line-height: 1.8;
  color: #3e4c5e;
}

/* ── Key Features heading ── */
.sol-detail__features h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ── Feature Pills — matches prd-feature-tags ── */
.sol-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sol-feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface-alt);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink-100);
  transition: all 250ms var(--ease-quart);
  cursor: default;
  white-space: nowrap;
}

.sol-feature-tags span:hover {
  background: color-mix(in srgb, var(--primary) 8%, white);
  border-color: color-mix(in srgb, var(--primary) 25%, transparent);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--primary) 12%, transparent);
}

/* ── Detail: Offers / Capabilities ── */
/* ── What Mantra Offers — matches prd-detail__offers product card style ── */
.sol-detail__offers {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.07);
  position: relative;
}

.sol-detail__offers h3 {
  font-size: var(--ma-body-text);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
  letter-spacing: 0.04em;
}

.sol-detail__offers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.sol-detail__offers li {
  position: relative;
  padding: 1rem 1.25rem 1rem 3.5rem;
  font-size: var(--ma-body-text);
  line-height: 1.6;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  transition: background 200ms;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.sol-detail__offers li:nth-last-child(-n+2) {
  border-bottom: none;
}

/* Blue rounded square badge */
.sol-detail__offers li::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--primary-dim);
  opacity: 1;
  transition: opacity 250ms;
}

/* Checkmark icon */
.sol-detail__offers li::after {
  content: '\2713';
  position: absolute;
  left: calc(0.75rem + 6px);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--ma-metadata);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.sol-detail__offers li:hover {
  background: rgba(59, 130, 246, 0.04);
}

.sol-detail__offers .btn {
  margin-top: 1.5rem;
}

/* ── Decorative Orb on Segments ── */
.sol-segment {
  position: relative;
  overflow: hidden;
}

.sol-segment::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--cat-accent, var(--primary)) 5%, transparent) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.sol-segment > .container {
  position: relative;
  z-index: 1;
}

/* ── CTA Minimal Override for Tech Cat pages — accent shift only ── */
.tech-cat-hero ~ .cta-minimal {
  background: linear-gradient(170deg, #050c18 0%, #071122 40%, #0c1e38 100%);
}

.tech-cat-hero ~ .cta-minimal::before {
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(3, 70, 148, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
}

/* ── Segment Number — uses badge style from sol-segment__header ── */
/* (no override needed — line 6726 provides the correct blue badge) */

/* ── Staggered reveal animations ── */
@keyframes segReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sol-segment .reveal {
  opacity: 0;
}

.sol-segment .reveal.visible {
  animation: segReveal 700ms var(--ease-quart) forwards;
}

.sol-segment .reveal:nth-child(2) {
  animation-delay: 120ms;
}

.sol-segment .reveal:nth-child(3) {
  animation-delay: 240ms;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TECHNOLOGY CATEGORY INNER PAGES — Responsive
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .sol-segment__hero {
    grid-template-columns: 1fr;
  }

  .sol-segment--alt .sol-segment__hero {
    direction: ltr;
  }

  .sol-segment__visual {
    min-height: 260px;
    max-height: 320px;
  }

  .sol-detail__offers ul {
    grid-template-columns: 1fr 1fr;
  }

  .sol-detail__offers li:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .sol-segment__visual {
    min-height: 200px;
    max-height: 260px;
  }

  .sol-hero-panel {
    padding: 1.25rem;
    gap: 20px;
  }

  .sol-detail__offers ul {
    grid-template-columns: 1fr;
  }

  .sol-detail__offers li:nth-last-child(-n+2) {
    border-bottom: 1px solid #e2e8f0;
  }

  .sol-detail__offers li:last-child {
    border-bottom: none;
  }

  .sol-detail__offers li {
    padding: 0.875rem 1rem 0.875rem 3rem;
  }

  .sol-segment__hero {
    border-radius: 14px;
  }

  .sol-segment::after {
    display: none;
  }
}

@media (max-width: 640px) {
  /* Header: stack number badge above title */
  .sol-segment__header {
    flex-direction: column;
    gap: 12px;
  }

  /* Shrink number badge on mobile */
  .sol-segment__header .sol-segment__num {
    width: 40px;
    height: 40px;
    font-size: var(--ma-body-text);
    border-radius: 10px;
  }

  /* Tighten segment padding */
  .sol-segment {
    padding: 3rem 0;
  }

  .sol-feature-tags {
    gap: 6px;
  }

  .sol-feature-tags span {
    font-size: 10px;
    padding: 4px 10px;
  }

  .sol-hero-panel {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  /* Offers: tighter padding on mobile */
  .sol-detail__offers {
    padding: 1.5rem;
  }

  .sol-detail__offers li {
    padding-left: 3rem;
    min-height: 40px;
  }

  /* Left-align on mobile */
  .sol-segment__header,
  .sol-segment__intro,
  .sol-segment__visual {
    text-align: left !important;
  }

  .sol-segment__intro h2,
  .sol-segment__tagline {
    text-align: left !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   TECHNOLOGY DETAIL INNER PAGE REVAMP — td-revamp__* classes
   Used by: TechnologyDetail.cshtml (the /technology/{slug} pages)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. Immersive Split Showcase (Image + Capabilities side by side) ───── */
.td-revamp__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ink-100);
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.06), 0 1px 4px rgba(10, 22, 40, 0.04);
  position: relative;
}

.td-revamp__showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--d-accent), color-mix(in srgb, var(--d-accent) 30%, transparent));
  z-index: 3;
}

/* ── Showcase Visual (Left image panel) ── */
.td-revamp__showcase-visual {
  position: relative;
  min-height: 480px;
  height: 100%;
  overflow: hidden;
}

.td-revamp__showcase-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 800ms var(--ease-quart);
}

.td-revamp__showcase:hover .td-revamp__showcase-visual img {
  transform: scale(1.04);
}

.td-revamp__showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.7) 70%, rgba(10, 22, 40, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: clamp(1rem, 3vw, 2rem);
  z-index: 1;
}

.td-revamp__showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.td-revamp__stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 300ms var(--ease-quart);
}

.td-revamp__stat:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.td-revamp__stat-v {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.03em;
  line-height: 1;
  font-feature-settings: 'tnum';
}

.td-revamp__stat-l {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 4px;
}

/* ── Showcase Content (Right capabilities panel) ── */
.td-revamp__showcase-content {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.td-revamp__cap-card {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink-100);
  transition: all 300ms var(--ease-quart);
  position: relative;
}

.td-revamp__cap-card:last-child {
  border-bottom: none;
}

.td-revamp__cap-card:hover {
  padding-left: 12px;
}

.td-revamp__cap-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  border-radius: 3px;
  background: var(--d-accent);
  transition: height 300ms var(--ease-quart);
}

.td-revamp__cap-card:hover::before {
  height: 60%;
}

.td-revamp__cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 300ms var(--ease-quart);
}

.td-revamp__cap-card:hover .td-revamp__cap-icon {
  transform: scale(1.08);
}

.td-revamp__cap-body h3 {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  line-height: 1.25;
  margin-bottom: 6px;
}

.td-revamp__cap-body p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── 2. Pipeline (Flowing Steps) ───────────────────────────────────────── */
.td-revamp__pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

.td-revamp__pipe-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 18px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  transition: all 350ms var(--ease-quart);
  position: relative;
  border-bottom: 3px solid var(--ink-100);
}

.td-revamp__pipe-step:hover {
  border-color: var(--d-accent);
  border-bottom-color: var(--d-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -10px color-mix(in srgb, var(--d-accent) 20%, transparent);
}

.td-revamp__pipe-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  background: var(--d-soft);
  font-feature-settings: 'tnum';
}

.td-revamp__pipe-body {
  flex: 1;
  min-width: 0;
}

.td-revamp__pipe-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  display: block;
  line-height: 1.3;
}

.td-revamp__pipe-status {
  font-size: 11px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.td-revamp__pipe-conn {
  display: none; /* connections are implied by flex flow */
}

/* ── 3. Agent Architecture ─────────────────────────────────────────────── */
.td-revamp__agents {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.td-revamp__agent-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  align-items: flex-start;
  transition: all 300ms var(--ease-quart);
}

.td-revamp__agent-card:hover {
  border-color: color-mix(in srgb, var(--d-accent) 30%, transparent);
  background: linear-gradient(135deg, #fff 0%, var(--d-soft) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px color-mix(in srgb, var(--d-accent) 18%, transparent);
}

.td-revamp__agent-card--supervisor {
  grid-column: 1 / -1;
  border-left: 4px solid var(--d-accent);
  background: linear-gradient(135deg, var(--d-soft) 0%, #fff 100%);
}

.td-revamp__agent-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.td-revamp__agent-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--d-accent);
  background: var(--d-soft);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.td-revamp__agent-body h4 {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.td-revamp__agent-body p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 4. Application Cards (Dark Mode) ──────────────────────────────────── */
.td-revamp__apps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.td-revamp__app-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 350ms var(--ease-quart);
  position: relative;
  overflow: hidden;
}

.td-revamp__app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--d-accent), transparent);
  opacity: 0;
  transition: opacity 300ms;
}

.td-revamp__app-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.3);
}

.td-revamp__app-card:hover::before {
  opacity: 1;
}

.td-revamp__app-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--d-accent) 15%, transparent);
  color: var(--d-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}

.td-revamp__app-card h4 {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  color: #e8eef6;
  margin-bottom: 8px;
  line-height: 1.3;
}

.td-revamp__app-card p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.65;
}

/* ── 5. Tech Stack (Cleaner layout) ────────────────────────────────────── */
.td-revamp__techstack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TD REVAMP — Responsive
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .td-revamp__showcase {
    grid-template-columns: 1fr;
  }
  .td-revamp__showcase-visual {
    min-height: 300px;
    max-height: 360px;
  }
  .td-revamp__agents {
    grid-template-columns: 1fr;
  }
  .td-revamp__agent-card--supervisor {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .td-revamp__showcase-visual {
    min-height: 220px;
    max-height: 280px;
  }
  .td-revamp__showcase-content {
    padding: 1.25rem;
  }
  .td-revamp__showcase-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .td-revamp__stat {
    padding: 10px 14px;
  }
  .td-revamp__pipe-step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .td-revamp__apps {
    grid-template-columns: 1fr;
  }
  .td-revamp__showcase {
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .td-revamp__cap-card {
    flex-direction: column;
    gap: 12px;
  }
  .td-revamp__showcase-stats {
    grid-template-columns: 1fr;
  }
}

/* ── tech-sec background variants ── */
.tech-sec--white { background: #fff; }
.tech-sec--alt { background: var(--surface, #f8f9fb); }


/* ═══════════════════════════════════════════════════════════════════════════
   TD V2 — DRASTIC VISUAL UPLIFT SECTIONS
   Pipeline · Agents · Applications · Tech Stack · Standards
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────
   2. PIPELINE SECTION — Dark Immersive with Timeline + Terminal
   ───────────────────────────────────────────────────────────────────────── */
.td-v2__pipeline-sec {
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.td-v2__pipeline-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.td-v2__pipeline-sec > .container { position: relative; z-index: 1; }

.td-v2__pipeline-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* ── Vertical Timeline Track ── */
.td-v2__pipeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 28px;
}

.td-v2__pipeline-track::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--d-accent) 0%, rgba(255,255,255,0.08) 100%);
}

.td-v2__pipe-node {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  position: relative;
  z-index: 1;
}

.td-v2__pipe-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid;
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  color: var(--d-accent);
  flex-shrink: 0;
  margin-left: -28px;
  transition: all 300ms var(--ease-quart);
}

.td-v2__pipe-node:hover .td-v2__pipe-dot {
  background: var(--d-accent);
  color: #fff;
  box-shadow: 0 0 20px color-mix(in srgb, var(--d-accent) 40%, transparent);
}

.td-v2__pipe-node--active .td-v2__pipe-dot {
  background: var(--d-accent);
  color: #fff;
  box-shadow: 0 0 16px color-mix(in srgb, var(--d-accent) 30%, transparent);
}

.td-v2__pipe-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px 22px;
  flex: 1;
  transition: all 300ms var(--ease-quart);
}

.td-v2__pipe-node:hover .td-v2__pipe-info {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

.td-v2__pipe-name {
  font-size: 15px;
  font-weight: 600;
  color: #e8eef6;
  line-height: 1.3;
}

.td-v2__pipe-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Terminal Panel ── */
.td-v2__pipeline-terminal,
.td-v2__stack-manifest {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,0.5);
}

.td-v2__terminal-chrome {
  background: #161b22;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.td-v2__t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.td-v2__t-dot--red    { background: #ef4444; }
.td-v2__t-dot--yellow { background: #f59e0b; }
.td-v2__t-dot--green  { background: #10b981; }

.td-v2__pipe-meta i   { color: #10b981; }

.td-revamp__cap-icon  { background: var(--d-soft); color: var(--d-accent); }
.td-v2__pipe-dot      { border-color: var(--d-accent); }

.td-v2__t-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
}

.td-v2__terminal-body {
  padding: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  flex: 1;
}

.td-v2__t-line {
  margin-bottom: 2px;
}

.td-v2__t-line--accent {
  color: var(--d-accent);
}

.td-v2__t-sys { color: #58a6ff; font-weight: 600; }
.td-v2__t-step { color: #d2a8ff; font-weight: 600; }
.td-v2__t-ok { color: #3fb950; font-weight: 600; }
.td-v2__t-prompt { color: var(--d-accent); font-weight: 700; }
.td-v2__t-kw { color: #f472b6; font-weight: 600; }
.td-v2__t-str { color: #3fb950; }
.td-v2__t-num { color: #79c0ff; }

.td-v2__t-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #3fb950;
  vertical-align: middle;
  animation: td-v2-blink 1s step-end infinite;
}

@keyframes td-v2-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────────────────
   3. AGENT ARCHITECTURE — Hub & Spoke with Pulse
   ───────────────────────────────────────────────────────────────────────── */
.td-v2__agent-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Supervisor Hero Card */
.td-v2__agent-super {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--d-soft) 0%, #fff 60%);
  border: 2px solid color-mix(in srgb, var(--d-accent) 20%, transparent);
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--d-accent) 8%, transparent);
  z-index: 2;
}

.td-v2__agent-super::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--d-accent), color-mix(in srgb, var(--d-accent) 30%, transparent));
}

.td-v2__agent-super-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--d-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--d-accent) 30%, transparent);
}

.td-v2__agent-super-body {
  flex: 1;
}

.td-v2__agent-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--d-accent);
  background: var(--d-soft);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.td-v2__agent-super-body h4 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.td-v2__agent-super-body p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
}

.td-v2__agent-pulse {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--d-accent) 15%, transparent) 0%, transparent 70%);
  animation: td-v2-pulse 2.5s ease-in-out infinite;
}

@keyframes td-v2-pulse {
  0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateY(-50%) scale(1.15); }
}

/* Connector Lines */
.td-v2__agent-connectors {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 700px;
  padding: 0 60px;
}

.td-v2__agent-spoke {
  flex: 1;
  height: 32px;
  position: relative;
}

.td-v2__agent-spoke::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--d-accent), color-mix(in srgb, var(--d-accent) 20%, transparent));
}

/* Agent Node Cards */
.td-v2__agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 700px;
}

.td-v2__agent-node {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 300ms var(--ease-quart);
  position: relative;
  overflow: hidden;
}

.td-v2__agent-node::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--d-accent);
  opacity: 0;
  transition: opacity 300ms;
}

.td-v2__agent-node:hover {
  border-color: color-mix(in srgb, var(--d-accent) 30%, transparent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--d-accent) 12%, transparent);
}

.td-v2__agent-node:hover::before { opacity: 1; }

.td-v2__agent-node-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--d-soft);
  color: var(--d-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 14px;
}

.td-v2__agent-node h4 {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.td-v2__agent-tool {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--d-accent);
  background: var(--d-soft);
  padding: 5px 12px;
  border-radius: 8px;
}

.td-v2__agent-tool i {
  font-size: 10px;
}

/* ─────────────────────────────────────────────────────────────────────────
   4. APPLICATIONS — Dark with Glow Cards
   ───────────────────────────────────────────────────────────────────────── */
.td-v2__apps-sec {
  background: linear-gradient(170deg, #050c18 0%, #0a1628 40%, #0c1e38 100%);
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.td-v2__apps-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 80%, color-mix(in srgb, var(--d-accent) 8%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.td-v2__apps-sec > .container { position: relative; z-index: 1; }

.td-v2__apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.td-v2__app-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 400ms var(--ease-quart);
}

.td-v2__app-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--d-accent) 12%, transparent) 0%, transparent 70%);
  transition: all 400ms var(--ease-quart);
  pointer-events: none;
}

.td-v2__app-card:hover .td-v2__app-glow {
  width: 180px;
  height: 180px;
  opacity: 1.5;
}

.td-v2__app-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.4);
}

.td-v2__app-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--d-accent) 15%, transparent);
  color: var(--d-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.td-v2__app-card h4 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: #e8eef6;
  margin-bottom: 10px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.td-v2__app-card p {
  font-size: var(--ma-body-text);
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.td-v2__app-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3fb950;
  background: rgba(63, 185, 80, 0.08);
  border: 1px solid rgba(63, 185, 80, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────────────
   5. TECH STACK — Dark Terminal Split
   ───────────────────────────────────────────────────────────────────────── */
.td-v2__stack-sec {
  background: linear-gradient(170deg, #0a1628 0%, #050c18 50%, #0c1e38 100%);
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.td-v2__stack-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.td-v2__stack-sec > .container { position: relative; z-index: 1; }

.td-v2__stack-split {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 32px;
  align-items: stretch;
}

.td-v2__stack-cloud {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.td-v2__chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.td-v2__chip {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 250ms var(--ease-quart);
  cursor: default;
}

.td-v2__chip:hover {
  background: color-mix(in srgb, var(--d-accent) 15%, transparent);
  border-color: color-mix(in srgb, var(--d-accent) 30%, transparent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--d-accent) 15%, transparent);
}

/* ─────────────────────────────────────────────────────────────────────────
   6. STANDARDS & RELATED — Clean Card Layout
   ───────────────────────────────────────────────────────────────────────── */
.td-v2__standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.td-v2__std-col {
  display: flex;
  flex-direction: column;
}

.td-v2__std-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink-100);
}

.td-v2__std-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.td-v2__std-header h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
  margin-bottom: 2px;
}

.td-v2__std-header p {
  font-size: var(--ma-body-text);
  color: var(--text-tertiary);
}

/* Standards List */
.td-v2__std-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.td-v2__std-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  transition: all 250ms var(--ease-quart);
}

.td-v2__std-item:hover {
  background: #fff;
  border-color: #10b981;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
}

.td-v2__std-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.td-v2__std-item span {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

/* Related List */
.td-v2__related-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.td-v2__related-card {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 18px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 250ms var(--ease-quart);
  overflow: hidden;
  position: relative;
}

.td-v2__related-accent {
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--rel-accent, var(--d-accent));
  border-radius: 4px 0 0 4px;
}

.td-v2__related-card:hover {
  background: #fff;
  border-color: var(--rel-accent, var(--d-accent));
  transform: translateX(4px);
  box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--rel-accent, var(--d-accent)) 20%, transparent);
}

.td-v2__related-body {
  flex: 1;
  padding-left: 14px;
}

.td-v2__related-group {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.td-v2__related-body strong {
  font-size: var(--ma-pane-header);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.3;
}

.td-v2__related-arrow {
  color: var(--text-tertiary);
  font-size: 13px;
  transition: all 250ms;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 12px;
}

.td-v2__related-card:hover .td-v2__related-arrow {
  color: var(--rel-accent, var(--d-accent));
  transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────────────────
   TD V2 — Responsive
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .td-v2__pipeline-split,
  .td-v2__stack-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .td-v2__standards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .td-v2__agent-super {
    max-width: 100%;
  }
  .td-v2__agent-grid {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .td-v2__agent-super {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .td-v2__agent-connectors {
    padding: 0 20px;
  }
  .td-v2__agent-grid {
    grid-template-columns: 1fr;
  }
  .td-v2__apps-grid {
    grid-template-columns: 1fr;
  }
  .td-v2__pipeline-track {
    padding-left: 24px;
  }
  .td-v2__pipe-dot {
    width: 30px;
    height: 30px;
    font-size: 12px;
    margin-left: -24px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   TD V2 — LIGHT MODE OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Pipeline Light Mode ── */
.td-v2__pipe-dot--light {
  background: #fff;
  color: var(--d-accent);
}

.td-v2__pipe-node--light:hover .td-v2__pipe-dot--light {
  background: var(--d-accent);
  color: #fff;
}

.td-v2__pipe-node--active .td-v2__pipe-dot--light {
  background: var(--d-accent);
  color: #fff;
}

.td-v2__pipe-info--light {
  background: #fff;
  border-color: var(--ink-100);
}

.td-v2__pipe-node--light:hover .td-v2__pipe-info--light {
  background: #fff;
  border-color: color-mix(in srgb, var(--d-accent) 30%, transparent);
  box-shadow: 0 8px 24px -10px color-mix(in srgb, var(--d-accent) 15%, transparent);
}

.td-v2__pipe-name--light {
  color: var(--ink-900);
}

.td-v2__pipeline-track--light::before {
  background: linear-gradient(180deg, var(--d-accent) 0%, var(--ink-100) 100%);
}

/* ── Application Cards Light Mode ── */
.td-v2__app-card--light {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 20px;
}

.td-v2__app-card--light:hover {
  background: #fff;
  border-color: color-mix(in srgb, var(--d-accent) 30%, transparent);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px -12px color-mix(in srgb, var(--d-accent) 15%, transparent);
}

.td-v2__app-card--light h4 {
  color: var(--ink-900);
}

.td-v2__app-card--light p {
  color: var(--text-secondary);
}

/* Minimal Enterprise CTA */
.cta-minimal {
  background: #f8fafc;
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

.cta-minimal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(3, 70, 148, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-minimal__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-minimal h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0c1525;
  margin: 0 0 16px 0;
}

.cta-minimal p {
  font-size: var(--ma-body-text);
  line-height: 1.7;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

.cta-minimal__btn {
  background: linear-gradient(135deg, #0057B8 0%, #0A4EA3 100%);
  border-radius: 999px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 87, 184, 0.3);
  transition: all 300ms var(--ease-quart);
}

.cta-minimal__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 87, 184, 0.4);
}

/* ── cta-card: clean centered card ── */
.cta-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 6vw, 5rem);
  text-align: center;
}

.cta-card::before {
  display: none;
}

.cta-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0c1525;
  margin: 0 0 1rem;
}

.cta-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* ── cta-actions: button row ── */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-actions .btn-ghost {
  color: #334155;
  border-color: #cbd5e1;
  background: transparent;
}

.cta-actions .btn-ghost:hover {
  color: #0c1525;
  border-color: #94a3b8;
}

/* ── Chip Light Mode ── */
.td-v2__chip--light {
  color: var(--text-secondary);
  background: rgba(15, 23, 42, 0.04);
  border-color: transparent;
}

.td-v2__chip--light:hover {
  background: var(--d-soft);
  border-color: color-mix(in srgb, var(--d-accent) 25%, transparent);
  color: var(--d-accent);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--d-accent) 10%, transparent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TD V2 — HORIZONTAL STANDARDS & RELATED (Separate Sections)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Standards — Beautiful flowing badge pills */
.td-v2__std-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.td-v2__std-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 100px;
  transition: all 300ms var(--ease-quart);
  white-space: nowrap;
}

.td-v2__std-badge i {
  color: #10b981;
  font-size: 13px;
}

.td-v2__std-badge:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(16, 185, 129, 0.2);
}


/* Related — Full-width cards in 3-column grid */
.td-v2__related-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.td-v2__related-hcard {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 300ms var(--ease-quart);
  position: relative;
  overflow: hidden;
}

.td-v2__related-hcard-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--rel-accent, var(--d-accent));
  border-radius: 4px 0 0 4px;
  transition: width 300ms var(--ease-quart);
}

.td-v2__related-hcard:hover .td-v2__related-hcard-accent {
  width: 6px;
}

.td-v2__related-hcard:hover {
  border-color: var(--rel-accent, var(--d-accent));
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px color-mix(in srgb, var(--rel-accent, var(--d-accent)) 18%, transparent);
}

.td-v2__related-hcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--rel-soft, var(--d-soft));
  color: var(--rel-accent, var(--d-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.td-v2__related-hcard-body {
  flex: 1;
  min-width: 0;
}

.td-v2__related-hcard-body span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rel-accent, var(--text-tertiary));
  margin-bottom: 4px;
}

.td-v2__related-hcard-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.35;
}

.td-v2__related-hcard-arrow {
  color: var(--text-tertiary);
  font-size: 14px;
  transition: all 250ms;
  flex-shrink: 0;
}

.td-v2__related-hcard:hover .td-v2__related-hcard-arrow {
  color: var(--rel-accent, var(--d-accent));
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .td-v2__related-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .td-v2__std-horizontal {
    grid-template-columns: 1fr;
  }
  .td-v2__related-horizontal {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════
   Technology Index Hub Page
   ══════════════════════════════════════════════════════ */

.tech-hub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.tech-hub-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
  transition: all 250ms ease;
}

.tech-hub-nav__link:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-1px);
}

.tech-stats {
  background: var(--primary);
  padding: 3rem 0;
}

.tech-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.tech-stat__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.tech-stat__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.tech-pillars {
  padding: 5rem 0;
  background: var(--surface);
}

.tech-pillars__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.tech-pillars__header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.tech-pillars__header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.tech-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.tech-pillar-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 400ms cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.tech-pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--pillar-color, var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease;
}

.tech-pillar-card:hover::before {
  transform: scaleX(1);
}

.tech-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10,22,40,0.1);
  border-color: var(--pillar-color, var(--primary));
}

.tech-pillar-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  background: var(--pillar-bg, rgba(3,70,148,0.07));
  color: var(--pillar-color, var(--primary));
  flex-shrink: 0;
}

.tech-pillar-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pillar-color, var(--primary));
  margin-bottom: 0.4rem;
}

.tech-pillar-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem 0;
}

.tech-pillar-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.tech-pillar-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tech-pillar-card__tags span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  background: var(--surface-blue-pale);
  color: var(--text-secondary);
  border: 1px solid var(--ink-50);
}

.tech-pillar-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pillar-color, var(--primary));
  margin-top: auto;
  transition: gap 200ms ease;
}

.tech-pillar-card:hover .tech-pillar-card__cta {
  gap: 0.65rem;
}

@media (max-width: 768px) {
  .tech-pillars__grid { grid-template-columns: 1fr; }
  .tech-stats__grid { grid-template-columns: repeat(2,1fr); }
}

/* ======== RECOVERED: Technology Index + shared missing ======== */
/* ═══════════════════════════════════════════════════════════
   TECHNOLOGY INDEX PAGE — Pillar Cards, Stack, Domain Explorer
   ═══════════════════════════════════════════════════════════ */

/* ── Sol-hero content (shared hero inner) ── */
.sol-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.sol-hero__content h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}
.sol-hero__content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* ── Eyebrow ── */
.ti-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ma-accent, #3b82f6);
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.ti-eyebrow i { font-size: 0.75rem; }


/* ═══════════════════════════════════════════════════════════
   TECHNOLOGY PILLARS (image cards)
   ═══════════════════════════════════════════════════════════ */
.ti-pillars-section {
  padding: 5rem 0;
  background: var(--ma-bg-primary, #fff);
}
.ti-pillars-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.ti-pillars-section__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ma-heading, #0d1b2a);
  margin-bottom: 0.75rem;
}
.ti-pillars-section__header p {
  font-size: 1.05rem;
  color: var(--ma-body, #4a5568);
  line-height: 1.7;
}

/* Pillars grid */
.ti-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Individual pillar card */
.ti-pillar {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.ti-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Image wrapper */
.ti-pillar__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.ti-pillar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ti-pillar:hover .ti-pillar__img {
  transform: scale(1.05);
}
.ti-pillar__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5));
}

/* Badge (icon circle) */
.ti-pillar__badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pc, #3b82f6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Pillar number */
.ti-pillar__num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* Body */
.ti-pillar__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ti-pillar__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ma-heading, #0d1b2a);
  margin-bottom: 0.5rem;
}
.ti-pillar__body p {
  font-size: 0.92rem;
  color: var(--ma-body, #4a5568);
  line-height: 1.6;
  flex: 1;
}

/* Tags */
.ti-pillar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.ti-pillar__tags span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--pb, rgba(59,130,246,0.08));
  color: var(--pc, #3b82f6);
  white-space: nowrap;
}

/* CTA */
.ti-pillar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pc, #3b82f6);
  margin-top: 1rem;
  transition: gap 0.3s;
}
.ti-pillar:hover .ti-pillar__cta { gap: 0.7rem; }


/* ═══════════════════════════════════════════════════════════
   STACK ARCHITECTURE
   ═══════════════════════════════════════════════════════════ */
.ti-stack-section {
  padding: 5rem 0;
  background: var(--ma-bg-secondary, #f8fafc);
}
.ti-stack__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.ti-stack__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ma-heading, #0d1b2a);
  margin-bottom: 0.75rem;
}
.ti-stack__header p {
  font-size: 1.05rem;
  color: var(--ma-body, #4a5568);
  line-height: 1.7;
}

/* Stack layers */
.ti-stack-layers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.ti-stack-layer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ti-stack-layer:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.ti-stack-layer__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
  font-weight: 600;
  color: var(--lc, #3b82f6);
}
.ti-stack-layer__info i {
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: currentColor;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.ti-stack-layer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ti-stack-layer__chips span {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  color: var(--ma-body, #4a5568);
}

/* Stack metrics bar */
.ti-stack-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.ti-sm-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}
.ti-sm-item i {
  font-size: 1.1rem;
  color: var(--ma-accent, #3b82f6);
  margin-top: 0.2rem;
}
.ti-sm-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ma-heading, #0d1b2a);
}
.ti-sm-item span {
  font-size: 0.82rem;
  color: var(--ma-body, #4a5568);
}


/* ═══════════════════════════════════════════════════════════
   DOMAIN EXPLORER (tabbed card grid)
   ═══════════════════════════════════════════════════════════ */
.ti-explorer-section {
  padding: 5rem 0;
  background: var(--ma-bg-primary, #fff);
}
.ti-explorer__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}
.ti-explorer__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ma-heading, #0d1b2a);
  margin-bottom: 0.75rem;
}
.ti-explorer__header p {
  font-size: 1.05rem;
  color: var(--ma-body, #4a5568);
  line-height: 1.7;
}

/* Filter tabs */
.ti-exp-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.ti-exp-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ma-body, #4a5568);
  cursor: pointer;
  transition: all 0.2s ease;
}
.ti-exp-tab:hover {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.3);
  color: #3b82f6;
}
.ti-exp-tab.active {
  background: var(--ma-accent, #3b82f6);
  color: #fff;
  border-color: transparent;
}

/* Domain card grid */
.ti-exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

/* Individual domain card */
.ti-exp-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ti-exp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: var(--dc, #3b82f6);
}

/* Card top (num + icon) */
.ti-exp-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.ti-exp-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(0,0,0,0.25);
  letter-spacing: 0.04em;
}
.ti-exp-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--db, rgba(59,130,246,0.1));
  color: var(--dc, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.ti-exp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ma-heading, #0d1b2a);
  margin-bottom: 0.5rem;
}
.ti-exp-card p {
  font-size: 0.88rem;
  color: var(--ma-body, #4a5568);
  line-height: 1.6;
  flex: 1;
}

/* Card tags */
.ti-exp-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.ti-exp-card__tags span {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--db, rgba(59,130,246,0.08));
  color: var(--dc, #3b82f6);
}

/* Card CTA */
.ti-exp-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dc, #3b82f6);
  margin-top: 1rem;
  transition: gap 0.3s;
}
.ti-exp-card:hover .ti-exp-card__cta { gap: 0.7rem; }


/* ═══════════════════════════════════════════════════════════
   SHARED MISSING CLASSES
   ═══════════════════════════════════════════════════════════ */

/* About intro left column */
.abt-intro__left {
  flex: 1;
  min-width: 0;
}
.abt-intro__main {
  flex: 1;
  min-width: 0;
}

/* Solutions intro main */
.sg-intro__main {
  flex: 1;
  min-width: 0;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .ti-pillars-grid { grid-template-columns: 1fr; }
  .ti-stack-metrics { grid-template-columns: repeat(2, 1fr); }
  .ti-stack-layer {
    flex-direction: column;
    align-items: flex-start;
  }
  .ti-stack-layer__info { min-width: auto; }
}
@media (max-width: 600px) {
  .ti-stack-metrics { grid-template-columns: 1fr; }
  .ti-exp-grid { grid-template-columns: 1fr; }
  .ti-exp-tabs { gap: 0.35rem; }
  .ti-exp-tab { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
}

/* ======== RECOVERED: Missing shared classes ======== */

/* Skip to main (accessibility) */
.skip-to-main {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--ma-accent, #3b82f6);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-to-main:focus {
  top: 0;
}

/* Legal hero content */
.legal-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* Technology detail light variants */
.td-v2__apps-grid--light {
  background: var(--ma-bg-secondary, #f8fafc);
}
.td-v2__pipeline-split--light {
  background: var(--ma-bg-primary, #fff);
}
.td-v2__stack-split--light {
  background: var(--ma-bg-secondary, #f8fafc);
}

/* Mega menu compact variant */
.mega-menu-compact {
  padding: 1.5rem;
}
.mm-simple-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mm-item-simple {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ma-heading, #0d1b2a);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}
.mm-item-simple:hover {
  background: rgba(59,130,246,0.06);
}
.mm-item-simple__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: rgba(59,130,246,0.08);
  color: var(--ma-accent, #3b82f6);
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL CTA OVERRIDE — Light / White Theme
   Overrides the dark glassmorphism CTA definitions to provide a
   clean, white-background CTA section across all pages.
   ═══════════════════════════════════════════════════════════════ */

.cta-minimal {
  background: #ffffff !important;
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.cta-minimal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(3, 70, 148, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 70%) !important;
  pointer-events: none;
}

.cta-minimal h2 {
  color: #0c1525 !important;
  font-style: normal !important;
}

.cta-minimal p {
  color: #64748b !important;
}

.cta-minimal .cta-minimal__btn {
  background: linear-gradient(135deg, #0057B8 0%, #0A4EA3 100%) !important;
  color: #fff !important;
  border-radius: 999px !important;
}

.cta-card {
  position: relative;
  z-index: 1;
  max-width: none !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem) !important;
  text-align: center;
  box-shadow: none !important;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.04) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  pointer-events: none;
  z-index: 0;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(3, 70, 148, 0.04) 0%, transparent 70%) !important;
  pointer-events: none;
  z-index: 0;
}

.cta-card h2 {
  font-size: var(--ma-greeting-title) !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  color: #0c1525 !important;
  margin: 0 0 16px 0 !important;
}

.cta-card p {
  font-size: var(--ma-body-text) !important;
  line-height: 1.65 !important;
  color: #64748b !important;
  max-width: 48ch !important;
  margin: 0 auto 28px !important;
}

.cta-actions {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px !important;
  flex-wrap: wrap;
}

.cta-actions .btn-primary,
.cta-actions .btn {
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 36px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(3, 70, 148, 0.25) !important;
  transition: all 300ms ease !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.cta-actions .btn-primary {
  background: linear-gradient(135deg, #0057B8 0%, #0A4EA3 100%) !important;
  color: #fff !important;
}

.cta-actions .btn-primary:hover {
  background: linear-gradient(135deg, #0A4EA3 0%, #0057B8 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(3, 70, 148, 0.35) !important;
}

.cta-actions .btn-ghost {
  color: #334155 !important;
  border: 1.5px solid #cbd5e1 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cta-actions .btn-ghost:hover {
  color: #0c1525 !important;
  border-color: #94a3b8 !important;
  background: #f8fafc !important;
  transform: translateY(-1px) !important;
}


/* ── Career inner page: compact hero (no vh lock) ── */
.sol-hero--compact {
  min-height: 0 !important;
  padding: clamp(6rem, 7vw, 8rem) 0 clamp(3rem, 4vw, 4.5rem) !important;
}

/* ── Career inner page: remove empty gap after jd-main card ── */
.jd-container .jd-main .jd-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* ── Career JD pages: tighten action row gap & overall card padding ── */
.jd-actions-row {
  margin-top: 1.75rem !important;
  padding-top: 1.5rem !important;
}

.jd-main {
  padding-bottom: 2rem !important;
}

.ct-main .container-wide {
  padding-top: 0;
}


/* ══════════════════════════════════════════════════════════



/* ═══════════════════════════════════════════════════════════════


/* ═══════════════════════════════════════════════════════════
   FINAL OVERRIDES — navbar CTA + mega menu active states
   ═══════════════════════════════════════════════════════════ */

/* Navbar CTA pair — hidden on mobile via @media (max-width:900px) below */
.nav-cta { display: flex; align-items: center; gap: 8px; }
@media (max-width: 900px) {
  .nav-cta { display: none !important; }
}

.btn-ghost--nav {
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 1.2rem;
  font-family: var(--font);
  font-size: var(--ma-body-text);
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.95);
  background: transparent;
  transition: all 220ms ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost--nav:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.navbar.scrolled .btn-ghost--nav {
  border-color: var(--ink-200);
  color: var(--text-secondary);
}
.navbar.scrolled .btn-ghost--nav:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}

/* Active tab state — must come after source rules */
.mm-sol-tab.active {
  background: var(--surface-blue-pale);
}
.mm-sol-tab.active strong {
  color: var(--primary);
}
.mm-sol-tab.active .mm-sol-tab__icon {
  background: var(--primary-dim);
  color: var(--primary);
}
.mm-sol-tab:hover .mm-sol-tab__icon {
  background: var(--primary-dim);
  color: var(--primary);
}

/* Override mm-sol-dynamic column for the appended block too */
.mm-sol-dynamic {
  grid-template-columns: 260px 1fr;
}

/* Career inner pages */
.sol-hero--compact {
  min-height: 0 !important;
  padding: clamp(6rem, 7vw, 8rem) 0 clamp(3rem, 4vw, 4.5rem) !important;
}
.jd-actions-row { margin-top: 1.75rem !important; padding-top: 1.5rem !important; }
.jd-main { padding-bottom: 2rem !important; }

/* ── Mega menu tab — text + arrow alignment fix ── */
.mm-sol-tab > div:not(.mm-sol-tab__icon) {
  flex: 1;
  min-width: 0;
}
.mm-sol-tab .mm-sol-arrow {
  flex-shrink: 0;
  margin-left: 4px;
  color: var(--ink-200);
  font-size: 9px;
  align-self: center;
}
.mm-sol-tab:hover .mm-sol-arrow,
.mm-sol-tab.active .mm-sol-arrow {
  color: var(--primary);
}

/* Mega menu — widen overall so right panel has room */
.mega-menu-wide:has(.mm-sol-dynamic) {
  width: 1000px !important;
}


/* ================================================================
   GLOBAL RESPONSIVE FIXES — Comprehensive Mobile / Tablet Pass
   Breakpoints: 1200 → 1024 → 900 → 768 → 640 → 480 → 375
   ================================================================ */

/* ── 0. Universal box-sizing & overflow guard ── */
*, *::before, *::after { box-sizing: border-box; }
body { overflow-x: hidden; }

/* ── 1. Typography fluid scaling on small screens ── */
@media (max-width: 640px) {
  h1 { font-size: clamp(1.6rem, 6vw, var(--ma-hero-title)); }
  h2 { font-size: clamp(1.35rem, 5vw, var(--ma-greeting-title)); }
  h3 { font-size: clamp(1rem, 4vw, var(--ma-header)); }
  p  { max-width: 100%; }
}

/* ── 2. Container padding on small phones ── */
@media (max-width: 480px) {
  .container,
  .container-wide { padding-left: 1rem; padding-right: 1rem; }
}

/* ── 3. Navbar – prevent logo/cta overlap at mid-range ── */
@media (max-width: 1100px) and (min-width: 901px) {
  .nav-links { gap: 1.25rem; }
  .nav-cta { flex: 0 0 auto; gap: 0.5rem; }
  .nav-cta .btn-ghost--nav { display: none; }
}

/* ── 4. Mega-menu: never overflow viewport ── */
@media (max-width: 1380px) {
  .mega-menu-wide { width: min(1200px, 96vw); }
}

/* ── 5. Hero sections – shared padding & font reduction ── */
@media (max-width: 768px) {
  .sol-hero,
  .abt-hero,
  .ct-hero,
  .res-hero,
  .media-hero,
  .demo-hero,
  .tech-hero,
  .prd-hero { padding-top: clamp(5rem,12vw,8rem) !important; padding-bottom: clamp(2.5rem,6vw,4rem) !important; }
}

@media (max-width: 640px) {
  .sol-hero h1, .abt-hero h1, .ct-hero h1,
  .res-hero h1, .media-hero h1, .demo-hero h1,
  .tech-hero__title, .prd-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
}

/* ── 6. Technology hero two-column base ── */
@media (max-width: 900px) {
  .tech-hero__base { grid-template-columns: 1fr; gap: 24px; }
  .tech-hero__callouts { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tech-hero__specs { display: none; }
}
@media (max-width: 640px) {
  .tech-hero__callouts { grid-template-columns: 1fr; }
}

/* ── 7. Technology stack plates ── */
@media (max-width: 900px) {
  .tech-stack__plate { grid-template-columns: 1fr; gap: 20px; }
  .tech-stack__inventory { border-left: none; padding-left: 0; border-top: 1px solid var(--ink-100); padding-top: 16px; }
}

/* ── 8. Technology drawing plate ── */
@media (max-width: 900px) {
  .tech-drawing { grid-template-columns: 1fr; }
  .tech-drawing__exhibit { min-height: 220px; border-right: none; border-bottom: 1px solid var(--ink-100); }
  .tech-drawing__body { padding: 28px 24px; }
}

/* ── 9. Technology asymmetric layout ── */
@media (max-width: 900px) {
  .tech-asym { grid-template-columns: 1fr; }
}

/* ── 10. Technology features 2-col grid ── */
@media (max-width: 768px) {
  .tech-features { grid-template-columns: 1fr; }
  .tech-rail { grid-template-columns: 1fr; }
  .tech-rail__cell { border-left: none; border-top: 1px solid var(--ink-100); }
  .tech-rail__cell:first-child { border-top: none; }
  .tech-prose { grid-template-columns: 1fr; gap: 24px; }
}

/* ── 11. Technology flow blocks ── */
@media (max-width: 768px) {
  .tech-flow { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: 1fr; }
  .tech-flow__node { border-left: none !important; border-top: 1px solid var(--ink-100); }
  .tech-flow__node:first-child { border-top: none; }
}

/* ── 12. Technology index AI pipeline ── */
@media (max-width: 900px) {
  .ti-aip__track { grid-template-columns: 1fr; gap: 12px; }
  .ti-aip__connector { display: none; }
  .ti-aip__metrics { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .ti-aip__metrics { grid-template-columns: 1fr 1fr; }
  .ti-mlops__track { grid-template-columns: repeat(2,1fr); }
  .ti-mlops__step::after { display: none; }
}
@media (max-width: 480px) {
  .ti-mlops__track { grid-template-columns: 1fr; }
  .ti-aip__metrics { grid-template-columns: 1fr 1fr; }
}

/* ── 13. Technology index capmap & why grids ── */
@media (max-width: 640px) {
  .ti-capmap-grid { grid-template-columns: 1fr; }
  .ti-why-grid { grid-template-columns: 1fr; }
  .ti-domain-grid { grid-template-columns: 1fr; }
}

/* ── 14. Metrics grid – home & about ── */
@media (max-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(3,1fr); }
  .abt-metrics__row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .metrics-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .metric-number { font-size: clamp(2rem,8vw,var(--ma-xl-numerics-limited)); }
  .abt-metrics__row { grid-template-columns: repeat(2,1fr); }
  .abt-metric:not(:last-child)::after { display: none; }
  .abt-metric__value { font-size: clamp(2rem,8vw,var(--ma-xl-numerics-limited)); }
}
@media (max-width: 375px) {
  .metrics-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 15. About page – narrative & diff layouts ── */
@media (max-width: 1024px) {
  .abt-narrative__layout { grid-template-columns: 1fr; gap: 2rem; }
  .abt-narrative__lead { position: static; }
  .abt-diff__layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .abt-diff__grid { grid-template-columns: 1fr; }
  .abt-philosophy__cards { grid-template-columns: 1fr; gap: 16px; }
  .abt-vision { grid-template-columns: 1fr; min-height: auto; }
  .abt-vision__cap-grid { grid-template-columns: 1fr 1fr; }
  .abt-values__grid { grid-template-columns: 1fr 1fr; }
  .abt-stats__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .abt-vision__cap-grid { grid-template-columns: 1fr; }
  .abt-values__grid { grid-template-columns: 1fr; }
  .abt-stats__grid { grid-template-columns: 1fr; }
}

/* ── 16. Solutions segment hero two-col ── */
@media (max-width: 900px) {
  .sol-segment__hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .sol-segment__hero-img { min-height: 220px; }
}
@media (max-width: 640px) {
  .sol-segment__stats { flex-direction: column; gap: 0.75rem; }
  .sol-grid-2 { grid-template-columns: 1fr; }
  .sol-grid-3 { grid-template-columns: 1fr; }
}

/* ── 17. Solutions cards grids ── */
@media (max-width: 900px) {
  .sol-cards-grid,
  .sol-cards-grid--3 { grid-template-columns: 1fr 1fr; }
  .sol-cards-grid--bento { grid-template-columns: 1fr 1fr; }
  .sol-cards-grid--bento .sol-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .sol-cards-grid--split { grid-template-columns: 1fr; }
  .sol-cards-grid--split .sol-card:nth-child(1) { grid-row: span 1; }
  .sol-cards-grid--split .sol-card:nth-child(2),
  .sol-cards-grid--split .sol-card:nth-child(3) { grid-column: auto; }
}
@media (max-width: 640px) {
  .sol-cards-grid,
  .sol-cards-grid--3,
  .sol-cards-grid--bento { grid-template-columns: 1fr; }
  .sol-cards-grid--bento .sol-card:nth-child(1) { grid-column: span 1; }
  .sol-card--featured { padding: 1.5rem; }
}

/* ── 18. Products segment hero ── */
@media (max-width: 900px) {
  .prd-segment__hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .prd-segment--alt .prd-segment__hero { direction: ltr; }
}
@media (max-width: 640px) {
  .prd-detail__offers ul { grid-template-columns: 1fr; }
  .prd-hero-panel { padding: 1.25rem; gap: 1.5rem; }
  .prd-feature-tags span { font-size: 11px; padding: 6px 10px; }
}

/* ── 19. Products grid ── */
@media (max-width: 900px) {
  .prd-grid { grid-template-columns: 1fr 1fr; }
  .prd-grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .prd-grid { grid-template-columns: 1fr; }
  .prd-card--horizontal { flex-direction: column; }
}

/* ── 20. Resources grid & featured card ── */
@media (max-width: 900px) {
  .res-gateway-grid { grid-template-columns: 1fr 1fr; }
  .res-article-grid { grid-template-columns: 1fr 1fr; }
  .res-featured__card { grid-template-columns: 1fr; }
  .res-featured__visual { min-height: 200px; }
}
@media (max-width: 640px) {
  .res-gateway-grid { grid-template-columns: 1fr; }
  .res-article-grid { grid-template-columns: 1fr; }
  .res-cta__form { flex-direction: column; }
  .res-filter { flex-wrap: wrap; gap: 6px; }
  .res-filter__divider { display: none; }
}

/* ── 21. Media page event cards & showcase ── */
@media (max-width: 900px) {
  .event-cards { grid-template-columns: 1fr 1fr; }
  .event-showcase__card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .event-cards { grid-template-columns: 1fr; }
  .event-showcase__thumbs { grid-template-columns: repeat(2,1fr); }
}

/* ── 22. Contact intents & quick bar ── */
@media (max-width: 900px) {
  .ct-intents__grid { grid-template-columns: 1fr 1fr; }
  .ct-quick__bar { flex-wrap: wrap; gap: 16px; padding: 20px; }
  .ct-quick__divider { width: 100%; height: 1px; }
  .ct-quick__item { flex: 0 0 calc(50% - 8px); justify-content: flex-start; padding: 8px 0; }
}
@media (max-width: 640px) {
  .ct-intents__grid { grid-template-columns: 1fr; }
  .ct-quick__item { flex: 0 0 100%; }
  .ct-form__row { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 20px; }
  .ct-sidebar-intents { grid-template-columns: 1fr; }
}

/* ── 23. Careers form pages ── */
@media (max-width: 768px) {
  .careers-form-grid,
  .zc-form-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── 24. Legal page hero ── */
@media (max-width: 640px) {
  .legal-hero { padding: 120px 0 40px; }
  .legal-hero h1 { font-size: clamp(1.6rem, 7vw, 2.5rem); }
}

/* ── 25. Footer – tablet breakpoint (768–1024) ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-inner { grid-template-columns: 1fr 1.8fr; gap: 2rem; }
  .footer-links { grid-template-columns: 1fr 1.6fr; gap: 1.5rem; }
  .footer-nav-columns { grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
}

/* ── 26. Buttons – full-width on very small screens ── */
@media (max-width: 375px) {
  .btn { white-space: normal; text-align: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── 27. Skip-to-main (accessibility) ── */
.skip-to-main {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  z-index: 10000;
  transition: top 200ms;
}
.skip-to-main:focus { top: 0; }

/* ── 28. Breadcrumb bar on small screens ── */
@media (max-width: 640px) {
  .page-breadcrumb { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .page-breadcrumb__inner { white-space: nowrap; }
}

/* ── 29. Prevent horizontal scroll from fixed-width elements ── */
@media (max-width: 768px) {
  .ti-aip__track,
  .ti-mlops__track { overflow: hidden; }
  .tech-ledger { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tech-band__list { flex-wrap: wrap; }
}

/* ── 30. CTA form stack on mobile ── */
@media (max-width: 640px) {
  .cta-form { flex-direction: column; }
  .cta-form input,
  .cta-form button { width: 100%; }
}

/* ── 31. Image overflow guards ── */
img, video, iframe, svg {
  max-width: 100%;
}

/* ── 32. Nav CTA button: smaller padding on 900-1100 ── */
@media (max-width: 1100px) and (min-width: 901px) {
  .nav-cta .btn { padding: 0.55rem 1rem; font-size: 13px; }
}

/* ── 33. Hero metric bar - ensure wraps cleanly on mobile ── */
@media (max-width: 640px) {
  .hero-metrics { justify-content: center; }
  .hero-metric { flex: 0 0 calc(50% - 12px); min-width: 0; text-align: center; }
}
@media (max-width: 375px) {
  .hero-metric { flex: 0 0 100%; }
}

/* ── 34. Value section grid ── */
@media (max-width: 900px) {
  .value-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (max-width: 640px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ── 35. Intro section (company intro) ── */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .intro-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 375px) {
  .intro-stats { grid-template-columns: 1fr; }
}

/* ── 36. Case studies grid ── */
@media (max-width: 900px) {
  .cases-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 640px) {
  .cases-grid { grid-template-columns: 1fr; }
}

/* ── 37. Products cards (home section) ── */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ── 38. Why Mantra bento grid ── */
@media (max-width: 900px) {
  .why-bento { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .why-bento { grid-template-columns: 1fr; }
}

/* ── 39. Form grid (home/demo) ── */
@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-info__checks-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .form-info__checks-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-info__trust { flex-wrap: wrap; gap: 0.75rem; padding: 1rem; }
  .form-info__trust-divider { display: none; }
}

/* ── 40. Demo layout ── */
@media (max-width: 900px) {
  .demo-layout { grid-template-columns: 1fr; gap: 2rem; }
  .demo-form { padding: 1.5rem; }
}

/* ── 41. Lifecycle timeline – collapse to single column ── */
@media (max-width: 640px) {
  .lifecycle-timeline { padding: 0; }
  .timeline-row { grid-template-columns: 44px 1fr; gap: 1rem; }
  .timeline-ring { width: 44px; height: 44px; }
  .card-content { padding: 1.25rem; }
}

/* ── 42. Sol hero segment links – full-width on mobile ── */
@media (max-width: 640px) {
  .sol-hero__seg-link { width: 100%; max-width: 100%; justify-content: flex-start; }
  .sol-hero__segments { flex-direction: column; gap: 8px; align-items: stretch; }
}

/* ── 43. Sticky segment nav – horizontal scroll on mobile ── */
@media (max-width: 640px) {
  .sol-seg-nav__inner { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .sol-seg-nav__inner::-webkit-scrollbar { display: none; }
  .sol-seg-nav__tab { white-space: nowrap; }
}

/* ── 44. Sectors tabs horizontal scroll on small phones ── */
@media (max-width: 375px) {
  .sectors-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .sector-tab { white-space: nowrap; flex-shrink: 0; }
}

/* ── 45. Technology index stats bar ── */
@media (max-width: 640px) {
  .ti-stats-grid { grid-template-columns: 1fr 1fr; }
  .ti-stat-item:nth-child(even) { border-right: none; }
  .ti-stat-item:nth-child(3) { border-top: 1px solid var(--ink-100); }
  .ti-stat-item:nth-child(4) { border-top: 1px solid var(--ink-100); }
}

/* ── 46. Technology laneA grid ── */
@media (max-width: 900px) {
  .tech-laneA { grid-template-columns: 1fr; gap: 24px; }
}

/* ── 47. Technology ledger table – allow horizontal scroll ── */
@media (max-width: 768px) {
  .tech-ledger-wrap,
  .tech-ledger { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tech-ledger td, .tech-ledger th { white-space: nowrap; }
}

/* ── 48. AI/MLOps pipeline blocks on mobile ── */
@media (max-width: 640px) {
  .ti-ai-pipeline,
  .ti-mlops-pipeline,
  .ti-innov-pipeline { padding: 2rem 1.25rem; border-radius: 14px; }
  .ti-aip__header,
  .ti-mlops__header { margin-bottom: 2rem; }
  .ti-aip__title,
  .ti-mlops__title { font-size: 1.2rem; }
}

/* ── 49. Global overflow containment ── */
@media (max-width: 900px) {
  .lifecycle-section,
  .why-section,
  .solutions-section,
  .sectors-section,
  .metrics-section { overflow-x: hidden; }
}

/* ── 50. Ensure nav-cta-mobile shows on mobile ── */
.nav-cta-mobile { display: none; }
@media (max-width: 900px) {
  .nav-cta-mobile { display: flex; padding: 12px 24px 4px; }
  .nav-cta-mobile .btn { width: 100%; justify-content: center; font-size: var(--ma-body-text); }
}
/* END GLOBAL RESPONSIVE FIXES */


/* ================================================================
   HERO TYPEWRITER FIX — mobile overflow
   ================================================================ */

/* On mobile the 12ch min-width causes overflow; drop it and put
   the tw-wrap on its own line so the animated word is always
   fully contained in the viewport. */
@media (max-width: 768px) {
  .tw-wrap {
    display: flex;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
  }

  .tw-word {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
  }

  /* Make the headline not force a <br> on the last word before the typewriter */
  .headline {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  /* Keep "every" and the typewriter word together on their own line */
  .headline br:last-of-type {
    display: none;
  }
}

@media (max-width: 480px) {
  .tw-word {
    font-size: 0.9em;
  }

  .headline {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
  }

  /* Ensure tw-wrap doesn't go wider than screen */
  .tw-wrap {
    max-width: calc(100vw - 3rem);
  }
}

/* ── Typewriter min-width override – prevents overflow on all small screens ── */
@media (max-width: 900px) {
  .tw-word {
    min-width: 0 !important;
    max-width: calc(100vw - 4rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tw-wrap {
    max-width: calc(100vw - 4rem);
    overflow: hidden;
  }
  /* Ensure the h1 itself doesn't overflow */
  .headline {
    overflow: visible;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }
}

/* ── 51. Hero text centering on mobile (critical fix) ── */
@media (max-width: 768px) {
  .sol-hero,
  .sol-hero__content {
    text-align: center !important;
  }
  .sol-hero__content {
    margin: 0 auto !important;
  }
  .sol-hero__content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .sol-hero h1 {
    text-align: center !important;
  }
  .sol-hero p {
    text-align: center !important;
  }
}

/* ── 52. Mobile drawer – fully hide when closed ── */
@media (max-width: 1024px) {
  .nav-links:not(.open) {
    visibility: hidden;
    box-shadow: none;
  }
  .nav-links {
    right: 0 !important;
    left: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
  }
}

/* ── 53. Navbar mobile – logo left, hamburger right ── */
@media (max-width: 768px) {
  .navbar-inner {
    padding: 0 1rem;
    justify-content: space-between !important;
    width: 100%;
  }
  .navbar-logo {
    margin-right: auto;
  }
  .mobile-menu-toggle {
    margin-left: auto;
  }
}

/* ── 55. Career detail page – stack action buttons on mobile ── */
@media (max-width: 640px) {
  .jd-actions-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }
  .jd-actions-row .btn {
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 20px !important;
    font-size: 0.9rem;
  }
}

/* ── 54. Section h2 uniform size & hero h1 always largest on mobile ── */
@media (max-width: 768px) {
  /* All section headings: uniform size, smaller than hero */
  h2 {
    font-size: clamp(1.35rem, 5vw, 1.65rem) !important;
  }

  /* Hero h1 always largest */
  .sol-hero h1,
  .abt-hero h1,
  .ct-hero h1,
  .res-hero h1,
  .media-hero h1,
  .demo-hero h1,
  .prd-hero h1,
  .tech-hero__title,
  .blog-hero h1,
  .cst-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
  }
}

/* ── 56. Mobile drawer – fix chevron cutoff & hide Book Demo in submenus ── */
@media (max-width: 1024px) {
  /* Ensure nav items stay within bounds with room for chevron */
  .nav-links>.nav-link,
  .nav-links>.nav-link-has-menu>.nav-link {
    padding: 16px 24px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  .nav-links .nav-link .nav-link-arrow {
    flex-shrink: 0 !important;
    min-width: 32px;
    width: 32px;
    height: 32px;
  }

  /* Hide Book Demo button inside mega-menu footers (sticky one is always visible) */
  .mega-menu-footer .btn-primary,
  .mega-menu-footer .mm-footer-cta {
    display: none !important;
  }

  /* Keep View All link visible */
  .mega-menu-footer {
    padding: 8px 16px !important;
  }
}

/* ── 57. Hero headline – prevent ugly word breaks on mobile ── */
@media (max-width: 768px) {
  .headline,
  .sol-hero h1,
  .abt-hero h1,
  .ct-hero h1,
  .res-hero h1,
  .prd-hero h1,
  .demo-hero h1,
  .media-hero h1,
  .blog-hero h1,
  .cst-hero h1 {
    hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  /* Hide desktop <br> inside hero h1 on mobile to let text reflow naturally */
  .headline br {
    display: none;
  }
}
