/* ============================================================
   MICROSPHERE SYSTEMS — Enterprise Design System v2.0
   Production CSS — No frameworks, no CDN dependencies
   Enhanced with glassmorphism, Sora typography, depth system
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   1. CSS RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

input, button, textarea, select {
  font: inherit;
}

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

ul, ol {
  list-style: none;
}

/* ============================================================
   2. CSS VARIABLES
   ============================================================ */
:root {
  /* Brand colors */
  --saffron: #FF9933;
  --saffron-dim: #E6851A;
  --saffron-light: #FFB366;

  /* Dark palette */
  --dark-bg: #0a0a0a;
  --dark-card: #111111;
  --dark-border: #1e1e1e;
  --dark-deeper: #050505;

  /* Text */
  --text-primary: #ffffff;
  --text-muted: #888888;
  --text-body: #aaaaaa;
  --text-dim: #666666;
  --text-faint: #555555;

  /* Product colors */
  --vault-blue: #1e2d5a;
  --vault-gold: #E5A630;
  --services-teal: #0ea5e9;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Font sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-lg: 1.1rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 99px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ============================================================
   3. BASE TYPOGRAPHY
   ============================================================ */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--dark-bg);
  background-image: radial-gradient(circle at 50% 0%, rgba(255, 153, 51, 0.03) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 153, 51, 0.15);
  box-shadow: 0 1px 30px rgba(255, 153, 51, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--saffron);
}

.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--saffron);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Hamburger open state */
.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   5. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-inner {
  padding: 0 24px;
}

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

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

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

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ============================================================
   6. SECTION IDENTITY
   ============================================================ */
.section-badge {
  display: inline-block;
  border: 1px solid rgba(255, 153, 51, 0.3);
  color: var(--saffron);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-body);
  font-size: var(--text-lg);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* Center section-sub when inside text-center */
.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  color: var(--text-muted);
}

/* ============================================================
   7. SECTION BACKGROUNDS & TEXTURES
   ============================================================ */
.section-alt {
  background: #0d0d0d;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.1), transparent);
  border: none;
  margin: 0;
}

.section-glow {
  position: relative;
}

.section-glow::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(255, 153, 51, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-glow > .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   8. TYPOGRAPHY HELPERS
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, #FF9933, #FFB366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vault-gold-text {
  color: var(--vault-gold);
}

.text-muted {
  color: var(--text-muted);
}

.text-saffron {
  color: var(--saffron);
}

/* ============================================================
   9. CARDS — GLASSMORPHIC DEPTH SYSTEM
   ============================================================ */
.card {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 51, 0.05);
}

/* Card with gold hover (VAULT) */
.card-gold:hover {
  border-color: rgba(229, 166, 48, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 166, 48, 0.1);
}

/* Card content helpers */
.card h3 {
  color: white;
  margin-bottom: 12px;
}

.card h4 {
  color: white;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Module card */
.module-card {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 51, 0.05);
}

.module-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.module-tagline {
  font-size: 0.8rem;
  color: var(--text-body);
  margin: 8px 0;
  line-height: 1.5;
}

.module-badge {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  background: rgba(255, 153, 51, 0.1);
  color: var(--saffron);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  margin-top: 8px;
}

/* Blog card */
.blog-card {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 51, 0.05);
}

/* ============================================================
   10. BUTTONS / CTAs
   ============================================================ */
.cta-email {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--saffron);
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: color var(--transition-fast), transform 0.3s ease, text-shadow 0.3s ease;
}

.cta-email:hover {
  text-decoration: underline;
  transform: scale(1.02);
  text-shadow: 0 0 20px rgba(255, 153, 51, 0.3);
}

.ghost-chip {
  display: inline-block;
  border: 1px solid rgba(255, 153, 51, 0.4);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ghost-chip:hover {
  background: rgba(255, 153, 51, 0.1);
  border-color: var(--saffron);
  box-shadow: 0 0 20px rgba(255, 153, 51, 0.15);
  transform: translateY(-1px);
  color: var(--saffron);
}

/* ============================================================
   11. HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
}

/* Animated gradient background */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 153, 51, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255, 153, 51, 0.06) 0%, transparent 50%);
  animation: hero-gradient 15s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes hero-gradient {
  0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.6; transform: scale(1); }
}

/* Dot grid pattern overlay */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

#hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

/* Floating glow orb */
.hero-content::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-orb 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-30px, 20px); }
  50% { transform: translate(20px, -30px); }
  75% { transform: translate(-20px, -10px); }
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  color: var(--text-body);
  font-size: var(--text-lg);
  max-width: 560px;
  line-height: 1.7;
}

.hero-chips {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ============================================================
   12. STATS SECTION
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 51, 0.05);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ============================================================
   13. MAITEAM MODULES GRID
   ============================================================ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px 0;
}

/* ============================================================
   14. SDLC PHASE STRIP
   ============================================================ */
.sdlc-strip {
  display: flex;
  gap: 0;
  margin: 40px 0;
  overflow-x: auto;
  position: relative;
}

.sdlc-strip::-webkit-scrollbar {
  height: 4px;
}

.sdlc-strip::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

.sdlc-strip::-webkit-scrollbar-thumb {
  background: var(--dark-border);
  border-radius: 4px;
}

.sdlc-phase {
  flex: 1;
  min-width: 140px;
  padding: 28px 16px 20px;
  border: 1px solid var(--dark-border);
  position: relative;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sdlc-phase::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--dark-border);
  border-radius: 50%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sdlc-phase:hover::after {
  background: var(--saffron);
  box-shadow: 0 0 10px rgba(255, 153, 51, 0.4);
}

.sdlc-phase:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.sdlc-phase:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.sdlc-phase:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--dark-border);
}

.sdlc-phase:hover {
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sdlc-phase-name {
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 4px;
}

.sdlc-phase-lead {
  font-size: 0.8rem;
  color: var(--text-body);
}

.sdlc-phase-cmd {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.maiteam-cta-bar {
  background: rgba(255, 153, 51, 0.08);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
}

/* ============================================================
   15. VAULT ZONE
   ============================================================ */
.vault-zone {
  background: #0d1120;
}

.vault-stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  position: relative;
}

/* Vertical connecting line */
.vault-stepper::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(229, 166, 48, 0.3), rgba(229, 166, 48, 0.1));
}

.vault-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vault-step:last-child {
  border-bottom: none;
}

.vault-step-letter {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--vault-gold);
  opacity: 0.8;
  line-height: 1;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(229, 166, 48, 0.08);
  box-shadow: 0 0 15px rgba(229, 166, 48, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.vault-step:hover .vault-step-letter {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(229, 166, 48, 0.25);
}

.vault-step-title {
  font-weight: 700;
  color: var(--vault-gold);
  margin-bottom: 6px;
  font-size: var(--text-base);
}

.vault-step-desc {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.vault-outcome {
  background: rgba(229, 166, 48, 0.1);
  border: 1px solid rgba(229, 166, 48, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin: 32px 0;
}


/* Vault section badge (gold variant) */
.vault-zone .section-badge,
.section-badge-gold {
  border-color: rgba(229, 166, 48, 0.3);
  color: #E5A630;
}

/* Vault hero badge (slightly brighter border) */
.page-hero.vault-zone .section-badge {
  border-color: rgba(229, 166, 48, 0.5);
}

/* Vault ghost chips */
.ghost-chip-gold {
  border-color: rgba(229, 166, 48, 0.4);
  color: var(--vault-gold);
}

.ghost-chip-gold:hover {
  border-color: var(--vault-gold);
  color: var(--vault-gold);
}

/* Vault outcome inside stepper (tighter top margin) */
.vault-step .vault-outcome {
  margin-top: 16px;
  margin-bottom: 0;
}

/* Vault case study stats box */
.vault-stats-box {
  margin-top: 48px;
  text-align: center;
}

.vault-stats-headline {
  color: var(--vault-gold);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}


/* Vault FAQ container */
.vault-faq-container {
  max-width: 840px;
  margin: 0 auto;
}

/* Vault CTA section helpers */
.vault-cta-email {
  color: var(--vault-gold);
}

.vault-cta-email:hover {
  color: var(--vault-gold);
}

.vault-cta-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* Vault grid spacing helpers */
.vault-grid-spaced {
  margin-top: 48px;
}

/* Vault hero chips centered */
.vault-zone .hero-chips {
  justify-content: center;
}

/* ============================================================
   16. SERVICES SECTION
   ============================================================ */
.toolchain-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.toolchain-badge {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--services-teal);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition-fast);
}

.toolchain-badge:hover {
  background: rgba(14, 165, 233, 0.15);
}

/* ============================================================
   17. BLOG SECTION
   ============================================================ */
.blog-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron);
}

.blog-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.blog-read {
  color: var(--saffron);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.blog-read:hover {
  text-decoration: underline;
}

.view-all {
  display: inline-block;
  margin-top: 32px;
  color: var(--saffron);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.view-all:hover {
  text-decoration: underline;
}

/* ============================================================
   18. CONTACT SECTION
   ============================================================ */
#contact {
  padding: 120px 0;
}

.made-in-india {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ============================================================
   19. FOOTER
   ============================================================ */
footer {
  background: var(--dark-deeper);
  border-top: none;
  padding: 48px 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.2), transparent);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--text-dim);
  margin-top: 6px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  margin-top: 32px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* Doormat Footer — 4-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--saffron);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.footer-trust-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
}

/* ============================================================
   20. ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger classes */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }
.stagger-9 { transition-delay: 0.9s; }
.stagger-10 { transition-delay: 1.0s; }

/* ============================================================
   20B. UTILITY CLASSES (referenced by HTML)
   ============================================================ */
.card-top-saffron {
  border-top: 3px solid var(--saffron);
}

.card-top-gold {
  border-top: 3px solid var(--vault-gold);
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================================
   21. BLOG POST PAGES (blog/*.html)
   ============================================================ */
.blog-post-header {
  padding: 120px 0 60px;
}

.blog-post-body {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-body);
  padding-bottom: 80px;
}

.blog-post-body h2 {
  color: white;
  margin: 40px 0 16px;
  font-size: 1.4rem;
}

.blog-post-body h3 {
  color: white;
  margin: 32px 0 12px;
  font-size: 1.2rem;
}

.blog-post-body p {
  margin-bottom: 20px;
}

.blog-post-body strong {
  color: white;
}

.blog-post-body ul,
.blog-post-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.blog-post-body li {
  margin-bottom: 8px;
  list-style: disc;
  color: var(--text-body);
}

.blog-post-body ol li {
  list-style: decimal;
}

.blog-post-body blockquote {
  border-left: 3px solid var(--saffron);
  padding-left: 20px;
  margin: 24px 0;
  color: var(--text-muted);
  font-style: italic;
}

.blog-post-body code {
  font-family: 'Courier New', monospace;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  color: var(--saffron);
}

.blog-post-body pre {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 24px;
}

.blog-post-body pre code {
  background: none;
  padding: 0;
  color: var(--text-body);
}

.back-link {
  color: var(--saffron);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.back-link:hover {
  text-decoration: underline;
}

/* ============================================================
   22. PAGE HERO (shared across sub-pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--dark-bg);
}

.page-hero .section-badge {
  margin-bottom: 16px;
}

.page-hero .section-title {
  margin-bottom: 16px;
}

.page-hero .section-sub {
  margin-bottom: 0;
}

/* ============================================================
   23. SERVICE DETAIL (services.html)
   ============================================================ */
.service-detail {
  padding: 64px 0;
  border-bottom: 1px solid var(--dark-border);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.service-number {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.service-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-tagline {
  color: var(--saffron);
  font-size: var(--text-base);
  font-weight: 500;
  margin-bottom: 20px;
}

.service-desc {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-feature::before {
  content: '\2713';
  color: var(--saffron);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-sidebar {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-sidebar:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 51, 0.05);
}

.sidebar-block {
  margin-bottom: 20px;
}

.sidebar-block:last-child {
  margin-bottom: 0;
}

.sidebar-block-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sidebar-block-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  background: rgba(255, 153, 51, 0.1);
  color: var(--saffron);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================================
   24. PROCESS STEPS (services.html) — Timeline connector
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.1), rgba(255, 153, 51, 0.2), rgba(255, 153, 51, 0.1));
  z-index: 0;
}

.process-step {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 51, 0.05);
}

.process-step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--saffron);
  margin-bottom: 12px;
}

.process-step h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.6;
}

/* ============================================================
   25. CSS-ONLY ACCORDION (contact.html FAQ)
   ============================================================ */
details {
  border-bottom: 1px solid var(--dark-border);
}

details summary {
  padding: 20px 0;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-base);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--saffron);
  font-weight: 300;
  transition: transform var(--transition-fast);
}

details[open] summary::after {
  content: '\2212';
}

details .faq-answer {
  padding: 0 0 20px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   26. ABOUT PAGE
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.value-card {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 51, 0.05);
}

.value-card h4 {
  color: var(--saffron);
  margin-bottom: 8px;
  font-size: var(--text-base);
  font-weight: 700;
}

.value-card p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Roadmap */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.roadmap-column {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.roadmap-column h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 20px;
}

.roadmap-column h4.text-saffron { color: var(--saffron); }
.roadmap-column h4.vault-gold-text { color: var(--vault-gold); }
.roadmap-column h4.text-teal { color: var(--services-teal); }

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

.roadmap-item strong {
  color: var(--text-primary);
}

/* ============================================================
   27. CONTACT PAGE
   ============================================================ */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.contact-card {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 51, 0.05);
}

.contact-card h4 {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: var(--text-base);
  font-weight: 700;
}

.contact-card p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-card a {
  color: var(--saffron);
  font-weight: 600;
}

/* ============================================================
   28. BLOG LISTING PAGE
   ============================================================ */
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

/* ============================================================
   29. ENTERPRISE TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.trust-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 153, 51, 0.08);
  border-color: rgba(255, 153, 51, 0.4);
  box-shadow: 0 0 15px rgba(255, 153, 51, 0.1);
}

/* ============================================================
   30. RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .stats-grid {
    gap: 16px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .service-detail-inner {
    grid-template-columns: 1fr;
  }

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

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

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

/* ============================================================
   31. RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  /* Navbar mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: 105;
  }

  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.4rem;
    font-weight: 600;
  }

  /* Grids */
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

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

  /* SDLC strip */
  .sdlc-strip {
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .sdlc-phase {
    min-width: 160px;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-sub {
    font-size: var(--text-base);
  }

  .hero-chips {
    flex-direction: column;
    gap: 12px;
  }

  /* Disable floating orb on mobile */
  .hero-content::before {
    display: none;
  }

  /* Vault */
  .vault-step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .vault-step-letter {
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  /* CTA bar */
  .maiteam-cta-bar {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
    gap: 16px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

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

  /* Contact */
  .made-in-india {
    justify-content: center;
  }

  /* Stats */
  .stat-number {
    font-size: 2.5rem;
  }

  /* Page hero */
  .page-hero {
    padding: 120px 0 60px;
  }

  /* Services */
  .service-detail-inner {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Contact methods */
  .contact-methods {
    grid-template-columns: 1fr;
  }

  /* Blog listing */
  .blog-listing-grid {
    grid-template-columns: 1fr;
  }

  /* Reduce stagger delays on mobile */
  .stagger-1,
  .stagger-2,
  .stagger-3,
  .stagger-4,
  .stagger-5,
  .stagger-6,
  .stagger-7,
  .stagger-8,
  .stagger-9,
  .stagger-10 {
    transition-delay: 0s;
  }
}

/* ============================================================
   32. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .card,
  .module-card,
  .blog-card {
    padding: 20px;
  }

  .stat-card {
    padding: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .toolchain-strip {
    gap: 8px;
  }

  .toolchain-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .ghost-chip {
    padding: 8px 18px;
    font-size: 13px;
  }

  .cta-email {
    font-size: clamp(1rem, 5vw, 1.4rem);
  }

  .blog-post-header {
    padding: 100px 0 40px;
  }

  .blog-post-body {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   33. SCROLLBAR STYLING (webkit)
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3a3a3a;
}

/* ============================================================
   34. SELECTION STYLING
   ============================================================ */
::selection {
  background: rgba(255, 153, 51, 0.3);
  color: white;
}

::-moz-selection {
  background: rgba(255, 153, 51, 0.3);
  color: white;
}

/* ============================================================
   35. MAITEAM PAGE UTILITIES
   ============================================================ */

/* Page hero heading — inherits h1 base sizing */
.page-hero h1 {
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

/* Large stat numbers inside cards */
.stat-big {
  font-size: 2.5rem;
  font-weight: 800;
}

/* Squad card member list */
.squad-members {
  margin-top: 16px;
}

/* Squad card description */
.squad-desc {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Squad eyebrow colors */
.text-purple { color: #a855f7; }
.text-green  { color: #22c55e; }
.text-blue   { color: #3b82f6; }
.text-sky    { color: #0ea5e9; }
.text-gold   { color: #E5A630; }

/* Standalone agents note */
.standalone-note {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.standalone-note strong {
  color: white;
}

/* CTA bar heading */
.maiteam-cta-bar h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

/* CTA bar subtitle */
.maiteam-cta-bar .cta-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Button row — centered flex wrap */
.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
