/* ==========================================================
   Agentic AI Dubai — landing page styles
   Plain CSS. No preprocessor, no build step, no CSS-in-JS.
   ==========================================================
   Contents
   --------
   Tokens & resets          Header / nav
   Hero + client logos      What agentic AI does
   How it works             Framework compare
   Our work (gallery)       Impact case cards
   Departments panel        Integrations
   Security                 Cost / ROI
   Leadership               Testimonials slider
   FAQ                      Contact form + modal
   Footer                   Responsive styles
   ========================================================== */

:root{
  --bg:           #ffffff;
  --bg-soft:      #fafaf7;
  --bg-tint:      #f5f3fb;
  --surface:      #ffffff;
  --surface-2:    #f8f7fb;
  --surface-3:    #efeaf8;

  --ink:          #0c0a1f;
  --ink-2:        #221d3a;
  --ink-soft:     #524d6a;
  --ink-mute:     #6a6680;

  --line:         #ebe9f2;
  --line-soft:    #f1eff7;
  --line-strong:  #d6cfe8;

  
  --p-50:  #f5f0ff;
  --p-100: #ebe1ff;
  --p-200: #d4c2fd;
  --p-300: #b69bfb;
  --p-400: #9670f5;
  --p-500: #7c4dee;
  --p-600: #6a35e0;
  --p-700: #5824c5;
  --p-800: #441a9b;
  --p-900: #2e1175;
  --purple: var(--p-600);
  --purple-soft: var(--p-50);
  --purple-glow: rgba(124, 77, 238, 0.22);

  
  --teal:   #0a7a6e;
  --teal-2: #d4f3ee;
  --coral:  #c0392b;
  --coral-2: #fbe0db;
  --amber:  #d99e2b;
  --amber-2:#fbecc8;

  
  --blue-50:  #eef4ff;
  --blue-100: #dbe8ff;
  --blue-500: #3a72e0;
  --blue-600: #2a6fdb;
  --blue-700: #1f57b5;
  
  --green-50:  #e9f8ef;
  --green-100: #cdeede;
  --green-500: #17aa5a;
  --green-600: #0f6b31;
  --mint:      #0f7a4f;
  --mint-50:   #e7faf0;

  --success: #16a34a;
  --warn:    #d6443a;

  --serif: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
  --mono:  'Geist Mono', ui-monospace, 'SF Mono', monospace;

  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 0.6, 1);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}.ateam-lp *{ margin: 0; padding: 0; box-sizing: border-box; }.ateam-lp{
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}.ateam-lp{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  text-wrap: pretty;
}.ateam-lp ::selection{ background: var(--p-200); color: var(--p-900); }.ateam-lp a{ color: inherit; }.ateam-lp img{ display: block; max-width: 100%; }.ateam-lp button{ font-family: inherit; cursor: pointer; }.ateam-lp .container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 3;
}@media (max-width: 640px){.ateam-lp .container{ padding: 0 20px; }
}.ateam-lp .nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(1.2) blur(18px);
  -webkit-backdrop-filter: saturate(1.2) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}.ateam-lp .nav.scrolled{
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}.ateam-lp .nav-progress{
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: var(--scroll, 0%);
  background: linear-gradient(90deg, var(--p-400), var(--p-700));
  transition: width 0.05s linear;
}.ateam-lp .nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}.ateam-lp .logo-link{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}.ateam-lp .logo-img{
  height: 36px;
  width: auto;
  display: block;
}.ateam-lp .nav-links{
  display: flex;
  gap: 2px;
  align-items: center;
}.ateam-lp .nav-links a{
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: -0.005em;
  white-space: nowrap;
}.ateam-lp .nav-links a:hover{ color: var(--ink); background: var(--surface-2); }.ateam-lp .nav-cta{
  margin-left: 10px;
  padding: 9px 16px !important;
  background: var(--ink);
  color: #fff !important;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 500;
  transition: transform 0.2s var(--ease), background 0.2s;
}.ateam-lp .nav-cta:hover{
  background: var(--purple) !important;
  transform: translateY(-1px);
}@media (max-width: 820px){.ateam-lp .nav-links a:not(.nav-cta){ display: none; }.ateam-lp .nav-inner{ padding: 12px 20px; }.ateam-lp .logo-img{ height: 30px; }
}.ateam-lp .btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  position: relative;
  white-space: nowrap;
}.ateam-lp .btn svg.arrow{ transition: transform 0.3s var(--ease); }.ateam-lp .btn:hover svg.arrow{ transform: translateX(4px); }.ateam-lp .btn-primary{
  background: var(--ink);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 10px 30px -10px rgba(12, 10, 31, 0.45);
}.ateam-lp .btn-primary:hover{
  background: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 14px 38px -10px var(--purple-glow);
}.ateam-lp .btn-primary::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}.ateam-lp .btn-primary:hover::before{ transform: translateX(100%); }.ateam-lp .btn-purple{
  background: var(--purple);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 30px -10px var(--purple-glow);
}.ateam-lp .btn-purple:hover{
  background: var(--p-700);
  transform: translateY(-2px);
}.ateam-lp .btn-ghost{
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}.ateam-lp .btn-ghost:hover{
  border-color: var(--line-strong);
  background: var(--surface-2);
}.ateam-lp .hero{
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}.ateam-lp .hero::before{
  
  content: '';
  position: absolute;
  right: -10%; top: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, var(--p-50), transparent 65%);
  pointer-events: none;
}.ateam-lp .hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}@media (max-width: 1000px){.ateam-lp .hero-grid{ grid-template-columns: 1fr; gap: 48px; }.ateam-lp .hero{ padding: 32px 0 32px; }
}.ateam-lp .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: 0 4px 14px -8px rgba(106, 53, 224, 0.15);
}.ateam-lp .eyebrow .chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}.ateam-lp .eyebrow .star{ color: var(--amber); font-size: 13px; }.ateam-lp .h1{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 16ch;
  margin-bottom: 28px;
}.ateam-lp .h1 em{
  font-style: italic;
  background: linear-gradient(120deg, var(--p-500) 0%, var(--p-700) 50%, var(--p-500) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 8s linear infinite;
}@keyframes shine{0%{ background-position: 0% 50%; }100%{ background-position: 200% 50%; }
}.ateam-lp .h1-sub{
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 36px;
}.ateam-lp .hero-ctas{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}.ateam-lp .hero-meta{
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-mute);
  font-size: 13px;
}.ateam-lp .hero-meta .avatars{ display: flex; align-items: center; }.ateam-lp .hero-meta .avatars span{
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background-size: cover;
}.ateam-lp .hero-meta .avatars span:first-child{ margin-left: 0; }.ateam-lp .av-1{ background: linear-gradient(135deg, #ffd6a5, #d97757); }.ateam-lp .av-2{ background: linear-gradient(135deg, #c4b1ff, var(--p-600)); }.ateam-lp .av-3{ background: linear-gradient(135deg, #a0e7c8, #2a9d6c); }.ateam-lp .av-4{ background: linear-gradient(135deg, #ffb3c1, #c33567); }.ateam-lp .av-5{
  background: linear-gradient(135deg, #b1cdff, #3a6dd9);
  color: #fff; font-size: 10px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
}.ateam-lp .hero-visual{
  position: relative;
  aspect-ratio: 1 / 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
}@media (max-width: 1000px){.ateam-lp .hero-visual{ aspect-ratio: 1 / 0.85; }
}.ateam-lp .hv-svg{
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}.ateam-lp .hv-node{
  transition: filter 0.3s;
}.ateam-lp .hv-node circle{
  fill: #fff;
  stroke: var(--line);
  stroke-width: 1;
}.ateam-lp .hv-node.primary circle{
  fill: var(--ink);
  stroke: var(--ink);
}.ateam-lp .hv-node.purple circle{
  fill: var(--purple);
  stroke: var(--purple);
}.ateam-lp .hv-edge{
  stroke: var(--line-strong);
  stroke-width: 1;
  fill: none;
}.ateam-lp .hv-edge.live{
  stroke: var(--purple);
  stroke-width: 1.4;
  stroke-dasharray: 4 4;
  animation: dash 8s linear infinite;
}@keyframes dash{to{ stroke-dashoffset: -100; } }.ateam-lp .hv-pulse{
  fill: var(--purple);
  animation: pulse-dot 2s ease-in-out infinite;
}@keyframes pulse-dot{0%, 100%{ r: 4; opacity: 1; }50%{ r: 7; opacity: 0.5; }
}.ateam-lp .hv-chip{
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 14px 30px -16px rgba(70, 30, 160, 0.18), 0 1px 0 rgba(255,255,255,0.8) inset;
  font-size: 12.5px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  z-index: 3;
  animation: float 7s ease-in-out infinite;
}.ateam-lp .hv-chip-2{ animation: float 9s ease-in-out infinite reverse; }.ateam-lp .hv-chip-3{ animation: float 6s ease-in-out infinite; }@keyframes float{0%, 100%{ transform: translateY(0); }50%{ transform: translateY(-8px); }
}.ateam-lp .hv-chip .ic{
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--p-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple);
}.ateam-lp .hv-chip .ic svg{ width: 14px; height: 14px; }.ateam-lp .hv-chip .ic.ok{ background: rgba(22,163,74,0.10); color: var(--success); }.ateam-lp .hv-chip .ic.coral{ background: var(--coral-2); color: var(--coral); }.ateam-lp .hv-chip .tl{ font-weight: 500; }.ateam-lp .hv-chip .sb{ color: var(--ink-mute); font-size: 11px; margin-top: 2px; }.ateam-lp .hv-chip.top{ top: 6%;   left: 4%; }.ateam-lp .hv-chip.right{ top: 22%;  right: -4%; }.ateam-lp .hv-chip.bot{ bottom: 8%; left: 8%; }.ateam-lp .hv-chip.botr{ bottom: 14%; right: 4%; }.ateam-lp .hv-hub{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 132px; height: 132px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--p-500), var(--p-800));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  box-shadow: 0 24px 60px -20px var(--purple-glow), 0 0 0 1px rgba(255,255,255,0.4) inset;
  z-index: 3;
}.ateam-lp .hv-hub::before, .ateam-lp .hv-hub::after{
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid var(--p-200);
  animation: ring 4s ease-out infinite;
}.ateam-lp .hv-hub::after{ animation-delay: 2s; }@keyframes ring{0%{ transform: scale(0.9); opacity: 0.8; }100%{ transform: scale(1.6); opacity: 0; }
}.ateam-lp .trust{
  padding: 56px 0 64px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}.ateam-lp .trust-label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}.ateam-lp .trust-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  opacity: 0.78;
}.ateam-lp .trust-row span, .ateam-lp .trust-row .item{
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 500;
}.ateam-lp .trust-row .bold{ font-weight: 700; letter-spacing: -0.03em; font-size: 22px; }.ateam-lp .trust-row .mono{ font-family: var(--mono); font-size: 14px; letter-spacing: 0.04em; }.ateam-lp .trust-row .serif{ font-family: var(--serif); font-style: italic; font-size: 23px; }.ateam-lp section{ padding: 120px 0; position: relative; }@media (max-width: 760px){.ateam-lp section{ padding: 80px 0; } }.ateam-lp .section-tag{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}.ateam-lp .section-tag::before{
  content: '';
  width: 24px; height: 1px; background: var(--purple);
}.ateam-lp .section-h2{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 24px;
}.ateam-lp .section-h2 em{ font-style: italic; color: var(--purple); }.ateam-lp .section-lead{
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.6;
  margin-bottom: 56px;
}.ateam-lp .problem{
  background: var(--bg);
}.ateam-lp .problem-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}@media (max-width: 980px){.ateam-lp .problem-grid{ grid-template-columns: 1fr; gap: 40px; }
}.ateam-lp .problem-text p{
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.7;
}.ateam-lp .problem-text strong{ color: var(--ink); font-weight: 600; }.ateam-lp .quote-pull{
  margin: 26px 0;
  padding: 22px 26px;
  border-radius: 14px;
  background: var(--bg-soft);
  border-left: 3px solid var(--purple);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}.ateam-lp .pilot-chart{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(70, 30, 160, 0.2);
}.ateam-lp .pc-head{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 26px;
}.ateam-lp .pc-title{
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}.ateam-lp .pc-title .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 4px var(--p-50);
}.ateam-lp .pc-source{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}.ateam-lp .pc-stat{
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}.ateam-lp .pc-stat .big{
  font-family: var(--serif);
  font-size: clamp(80px, 11vw, 132px);
  font-weight: 400;
  color: var(--purple);
  line-height: 0.9;
  letter-spacing: -0.04em;
}.ateam-lp .pc-stat .lbl{
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 18ch;
  line-height: 1.4;
}.ateam-lp .pc-bar{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  height: 14px;
  border-radius: 100px;
  overflow: hidden;
  margin: 18px 0 8px;
}.ateam-lp .pc-bar .fill{
  background: linear-gradient(90deg, var(--p-400), var(--p-700));
  position: relative;
  overflow: hidden;
}.ateam-lp .pc-bar .fill::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 3s linear infinite;
}@keyframes shimmer{100%{ transform: translateX(200%); } }.ateam-lp .pc-bar .ghost{ background: var(--surface-2); }.ateam-lp .pc-bar.r-80 .fill{ grid-column: 1 / span 1; }.ateam-lp .pc-bar.r-80 .ghost{ grid-column: 2 / span 1; }.ateam-lp .pc-legend{
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}.ateam-lp .pc-legend strong{ color: var(--ink-2); font-weight: 500; }.ateam-lp .pc-divider{
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}.ateam-lp .pc-mini{
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.03em;
}.ateam-lp .pc-mini em{ color: var(--purple); font-style: normal; }.ateam-lp .pc-divider p{
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}.ateam-lp .cases{
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}.ateam-lp .cases-head{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}@media (max-width: 760px){.ateam-lp .cases-head{ grid-template-columns: 1fr; }
}.ateam-lp .cases-head .section-lead{ margin-bottom: 0; }.ateam-lp .bento{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}.ateam-lp .bento .card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
}.ateam-lp .bento .card:hover{
  transform: translateY(-4px);
  box-shadow: 0 30px 80px -32px rgba(70, 30, 160, 0.22);
  border-color: var(--p-200);
}.ateam-lp .bento .c-1{ grid-column: span 8; }.ateam-lp .bento .c-2{ grid-column: span 4; }.ateam-lp .bento .c-3{ grid-column: span 4; }.ateam-lp .bento .c-4{ grid-column: span 8; }.ateam-lp .bento .c-5{ grid-column: span 6; }.ateam-lp .bento .c-6{ grid-column: span 6; }@media (max-width: 980px){.ateam-lp .bento{ grid-template-columns: repeat(2, 1fr); }.ateam-lp .bento .card{ grid-column: span 2 !important; }
}@media (max-width: 640px){.ateam-lp .bento{ grid-template-columns: 1fr; }.ateam-lp .bento .card{ grid-column: span 1 !important; }
}.ateam-lp .case-num{
  display: inline-flex;
  align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 600;
}.ateam-lp .case-num::before{
  content: ''; width: 20px; height: 1px; background: var(--purple);
}.ateam-lp .case-industry{
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 22px;
}.ateam-lp .case-industry .tag{
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11.5px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}.ateam-lp .case-title{
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}.ateam-lp .case-context{
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}.ateam-lp .case-solution{
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.65;
  border-top: 1px dashed var(--line-strong);
  padding-top: 16px;
}.ateam-lp .case-solution strong{ color: var(--ink); font-weight: 600; }.ateam-lp .kpi-row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 4px 0 18px;
}.ateam-lp .kpi{
  background: var(--surface-2);
  border-radius: var(--r-sm);
  padding: 12px 14px;
}.ateam-lp .kpi .v{
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--purple);
  line-height: 1;
  letter-spacing: -0.02em;
}.ateam-lp .kpi .l{
  font-size: 11.5px;
  color: var(--ink-mute);
  margin-top: 6px;
  line-height: 1.3;
}.ateam-lp .viz-roster{
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 3px;
  margin: 18px 0 22px;
}.ateam-lp .viz-roster .cell{
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--surface-2);
}.ateam-lp .viz-roster .cell.l1{ background: var(--p-50); }.ateam-lp .viz-roster .cell.l2{ background: var(--p-200); }.ateam-lp .viz-roster .cell.l3{ background: var(--p-400); }.ateam-lp .viz-roster .cell.l4{ background: var(--p-600); }.ateam-lp .viz-roster .cell.gap{ background: repeating-linear-gradient(45deg, var(--coral-2), var(--coral-2) 2px, #fff 2px, #fff 4px); }.ateam-lp .viz-legend{
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}.ateam-lp .viz-legend .scale{
  display: inline-flex; align-items: center; gap: 4px;
}.ateam-lp .viz-legend .scale span{
  width: 12px; height: 12px; border-radius: 3px;
}.ateam-lp .viz-channels{
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  gap: 8px;
  align-items: center;
  margin: 12px 0 22px;
}.ateam-lp .viz-channels .ch-stack{
  display: flex; flex-direction: column;
  gap: 6px;
}.ateam-lp .viz-channels .ch{
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11.5px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
}.ateam-lp .viz-channels .ch .d{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-mute);
}.ateam-lp .viz-channels .ch.email .d{ background: var(--purple); }.ateam-lp .viz-channels .ch.wapp .d{ background: var(--teal); }.ateam-lp .viz-channels .ch.portal .d{ background: var(--amber); }.ateam-lp .viz-channels .arrow-x{
  text-align: center; color: var(--ink-mute); font-size: 16px;
}.ateam-lp .viz-channels .agent{
  background: linear-gradient(160deg, var(--ink) 0%, #2b2540 100%);
  color: #fff;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}.ateam-lp .viz-channels .agent::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 77, 238, 0.4), transparent 60%);
}.ateam-lp .viz-channels .agent .lbl{
  position: relative;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-200);
  margin-bottom: 4px;
}.ateam-lp .viz-channels .agent .nm{
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.1;
}.ateam-lp .viz-channels .clean{
  background: var(--p-50);
  border: 1px solid var(--p-100);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11.5px;
  color: var(--p-800);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
}.ateam-lp .viz-channels .clean .d{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple);
}.ateam-lp .viz-funnel{
  display: flex; flex-direction: column;
  gap: 8px;
  margin: 12px 0 22px;
}.ateam-lp .viz-funnel .row{
  display: grid;
  grid-template-columns: 90px 1fr 64px;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
}.ateam-lp .viz-funnel .row .lbl{
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}.ateam-lp .viz-funnel .row .bar{
  height: 22px;
  background: var(--surface-2);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}.ateam-lp .viz-funnel .row .fill{
  height: 100%;
  background: linear-gradient(90deg, var(--p-400), var(--p-700));
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 8px;
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  border-radius: 6px;
  position: relative;
}.ateam-lp .viz-funnel .row .fill.lite{
  background: linear-gradient(90deg, var(--p-100), var(--p-200));
  color: var(--p-800);
}.ateam-lp .viz-funnel .row .fill.coral{
  background: linear-gradient(90deg, var(--coral-2), var(--coral));
  color: #fff;
}.ateam-lp .viz-funnel .row .v{
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 600;
  font-family: var(--sans);
}.ateam-lp .viz-funnel .delta{
  margin-top: 10px;
  display: flex; gap: 8px; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  padding: 8px 12px;
  background: var(--p-50);
  border-radius: 8px;
  letter-spacing: 0.04em;
}.ateam-lp .confidential{
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 11.5px;
  color: var(--ink-mute);
  font-family: var(--mono);
  display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.02em;
}.ateam-lp .confidential::before{
  content: '◐'; color: var(--purple);
}.ateam-lp .bento .card.dark{
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}.ateam-lp .bento .card.dark::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(124, 77, 238, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(180, 130, 255, 0.20), transparent 60%);
  pointer-events: none;
}.ateam-lp .bento .card.dark > *{ position: relative; }.ateam-lp .bento .card.dark .case-title{ color: #fff; }.ateam-lp .bento .card.dark .case-num{ color: var(--p-300); }.ateam-lp .bento .card.dark .case-num::before{ background: var(--p-300); }.ateam-lp .bento .card.dark .kpi{ background: rgba(255,255,255,0.05); }.ateam-lp .bento .card.dark .kpi .v{ color: var(--p-300); }.ateam-lp .bento .card.dark .kpi .l{ color: rgba(255,255,255,0.55); }.ateam-lp .bento .card.dark .confidential{ color: rgba(255,255,255,0.5); border-top-color: rgba(255,255,255,0.12); }.ateam-lp .framework-intro{ max-width: 720px; }.ateam-lp .compare-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}@media (max-width: 880px){.ateam-lp .compare-grid{ grid-template-columns: 1fr; } }.ateam-lp .compare-col{
  padding: 36px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
}.ateam-lp .compare-col.old{ background: var(--bg-soft); }.ateam-lp .compare-col.new{
  border-color: var(--p-200);
  background: linear-gradient(180deg, #fff 0%, var(--p-50) 100%);
  box-shadow: 0 30px 60px -30px var(--purple-glow);
}.ateam-lp .compare-col.new::after{
  content: 'OUR FRAMEWORK';
  position: absolute;
  top: -12px; right: 24px;
  background: var(--ink);
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
}.ateam-lp .compare-head{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}.ateam-lp .compare-col.new .compare-head{ color: var(--purple); }.ateam-lp .compare-title{
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.18;
}.ateam-lp .compare-list{
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
}.ateam-lp .compare-list li{
  padding-left: 32px;
  position: relative;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}.ateam-lp .compare-list li::before{
  content: ''; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
}.ateam-lp .compare-col.old .compare-list li::before{
  background: var(--coral-2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M7 7 L13 13 M13 7 L7 13' stroke='%23e85d4a' stroke-width='1.8' stroke-linecap='round'/></svg>");
}.ateam-lp .compare-col.new .compare-list li::before{
  background: var(--p-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M6 10.5 L9 13.5 L14.5 7.5' stroke='%236a35e0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
}.ateam-lp .compare-list li strong{ color: var(--ink); font-weight: 600; }.ateam-lp .agent-flow{
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px 48px 56px;
  position: relative;
  overflow: hidden;
}@media (max-width: 760px){.ateam-lp .agent-flow{ padding: 32px; }
}.ateam-lp .af-head{
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}@media (max-width: 760px){.ateam-lp .af-head{ grid-template-columns: 1fr; } }.ateam-lp .af-title{
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  max-width: 24ch;
}.ateam-lp .af-title em{ color: var(--purple); font-style: italic; }.ateam-lp .af-meta{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}.ateam-lp .af-meta::before{
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); box-shadow: 0 0 0 4px rgba(22,163,74,0.15);
}.ateam-lp .af-stages{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}@media (max-width: 880px){.ateam-lp .af-stages{ grid-template-columns: 1fr; gap: 12px; }
}.ateam-lp .af-stage{
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 16px 16px;
  position: relative;
}.ateam-lp .af-stage .num{
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--purple);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}.ateam-lp .af-stage .nm{
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.18;
}.ateam-lp .af-stage .ds{
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}.ateam-lp .af-stage::after{
  content: '→';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--ink-mute);
  z-index: 2;
}.ateam-lp .af-stage:last-child::after{ display: none; }@media (max-width: 880px){.ateam-lp .af-stage::after{ display: none; } }.ateam-lp .af-rails{
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}@media (max-width: 760px){.ateam-lp .af-rails{ grid-template-columns: 1fr; } }.ateam-lp .af-rail{
  background: var(--p-50);
  border: 1px solid var(--p-100);
  border-radius: var(--r-md);
  padding: 18px 18px;
  display: flex; gap: 14px; align-items: flex-start;
}.ateam-lp .af-rail .icb{
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--purple);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}.ateam-lp .af-rail .icb svg{ width: 16px; height: 16px; }.ateam-lp .af-rail .ttl{
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 2px;
}.ateam-lp .af-rail .ds{
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}.ateam-lp .timeline{
  position: relative;
  margin-top: 24px;
}.ateam-lp .timeline::before{
  content: '';
  position: absolute;
  left: 32px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
}.ateam-lp .timeline::after{
  content: '';
  position: absolute;
  left: 32px; top: 0;
  width: 2px;
  height: var(--scroll-line, 0%);
  background: linear-gradient(180deg, var(--p-400), var(--p-700));
  border-radius: 2px;
  transition: height 0.2s linear;
}@media (max-width: 600px){.ateam-lp .timeline::before, .ateam-lp .timeline::after{ left: 18px; }
}.ateam-lp .tl-step{
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
}@media (max-width: 600px){.ateam-lp .tl-step{ grid-template-columns: 56px 1fr; gap: 18px; }
}.ateam-lp .tl-dot{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--ink-mute);
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--ease);
}.ateam-lp .tl-step.in .tl-dot{
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 0 0 6px var(--p-50);
}@media (max-width: 600px){.ateam-lp .tl-dot{ width: 36px; height: 36px; font-size: 14px; }
}.ateam-lp .tl-body{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}.ateam-lp .tl-body:hover{
  transform: translateX(6px);
  border-color: var(--p-200);
  box-shadow: 0 16px 40px -22px var(--purple-glow);
}.ateam-lp .tl-meta{
  display: flex; gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}.ateam-lp .tl-time{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}.ateam-lp .tl-tag{
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: var(--surface-2);
  border-radius: 4px;
}.ateam-lp .tl-title{
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.18;
}.ateam-lp .tl-desc{
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}.ateam-lp .tl-deliv{
  margin-top: 18px;
  display: flex; gap: 8px;
  flex-wrap: wrap;
}.ateam-lp .tl-deliv span{
  font-size: 11.5px;
  font-family: var(--mono);
  color: var(--ink-2);
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  letter-spacing: 0.02em;
}.ateam-lp .stack-section{
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  margin: 0 24px;
  padding: 96px 56px;
  position: relative;
  overflow: hidden;
}@media (max-width: 760px){.ateam-lp .stack-section{ margin: 0 16px; padding: 72px 28px; }
}.ateam-lp .stack-section::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(124, 77, 238, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(15, 181, 163, 0.18), transparent 60%);
  pointer-events: none;
}.ateam-lp .stack-section::after{
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}.ateam-lp .stack-grid{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
  position: relative;
}@media (max-width: 980px){.ateam-lp .stack-grid{ grid-template-columns: 1fr; gap: 40px; } }.ateam-lp .stack-section .section-tag{ color: var(--p-300); }.ateam-lp .stack-section .section-tag::before{ background: var(--p-300); }.ateam-lp .stack-section .section-h2{ color: #fff; }.ateam-lp .stack-section .section-h2 em{ color: var(--p-300); }.ateam-lp .stack-section .lead{
  font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.65;
}.ateam-lp .stack-section .lead strong{ color: #fff; font-weight: 500; }.ateam-lp .constellation{
  position: relative;
  aspect-ratio: 1 / 0.78;
}.ateam-lp .cnst-chip{
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 9px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
  animation: float 8s ease-in-out infinite;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}.ateam-lp .cnst-chip:hover{
  background: rgba(124, 77, 238, 0.25);
  border-color: var(--p-300);
  transform: translateY(-4px) scale(1.04);
}.ateam-lp .cnst-chip .d{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--p-400);
  box-shadow: 0 0 8px var(--p-400);
}.ateam-lp .cnst-chip .d.t{ background: var(--teal);  box-shadow: 0 0 8px var(--teal); }.ateam-lp .cnst-chip .d.a{ background: var(--amber); box-shadow: 0 0 8px var(--amber); }.ateam-lp .c-anthropic{ top: 4%;  left: 14%; animation-delay: 0s; }.ateam-lp .c-openai{ top: 14%; left: 56%; animation-delay: 1.5s; }.ateam-lp .c-gemini{ top: 6%;  right: 4%; animation-delay: 0.5s; }.ateam-lp .c-langgraph{ top: 30%; left: 4%;  animation-delay: 2s; }.ateam-lp .c-crewai{ top: 38%; left: 38%; animation-delay: 1s; }.ateam-lp .c-llama{ top: 30%; right: 14%; animation-delay: 2.5s; }.ateam-lp .c-bedrock{ top: 58%; left: 18%; animation-delay: 0.8s; }.ateam-lp .c-azure{ top: 50%; left: 54%; animation-delay: 1.8s; }.ateam-lp .c-g42{ top: 58%; right: 4%; animation-delay: 0.3s; }.ateam-lp .c-supabase{ top: 80%; left: 4%;  animation-delay: 2.2s; }.ateam-lp .c-pg{ top: 84%; left: 42%; animation-delay: 0.6s; }.ateam-lp .c-temporal{ top: 76%; right: 12%; animation-delay: 1.3s; }@media (max-width: 760px){.ateam-lp .constellation{ aspect-ratio: 1 / 1.4; }
}.ateam-lp .why-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}@media (max-width: 760px){.ateam-lp .why-grid{ grid-template-columns: 1fr; } }.ateam-lp .why-cell{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
  display: flex; gap: 22px;
}.ateam-lp .why-cell:hover{
  transform: translateY(-4px);
  border-color: var(--p-200);
  box-shadow: 0 24px 60px -28px var(--purple-glow);
}.ateam-lp .why-glyph{
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--p-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple);
  position: relative;
}.ateam-lp .why-glyph svg{ width: 26px; height: 26px; }.ateam-lp .why-cell-num{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-weight: 600;
}.ateam-lp .why-cell-title{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.22;
}.ateam-lp .why-cell-desc{
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.62;
}.ateam-lp .hero-clients{
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}.ateam-lp .hc-label{
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}.ateam-lp .hc-label::after{
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}.ateam-lp .hc-wall{
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: nowrap;
}.ateam-lp .hc-card{
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 2px 10px -6px rgba(70, 30, 160, 0.10);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}.ateam-lp .hc-card::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(124,77,238,0.10) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}.ateam-lp .hc-card:hover{
  transform: translateY(-4px);
  border-color: var(--p-200);
  box-shadow: 0 16px 34px -16px rgba(70, 30, 160, 0.28);
}.ateam-lp .hc-card:hover::after{ transform: translateX(120%); }.ateam-lp .brand-vodafone .vf-icon{ width: 26px; height: 26px; flex-shrink: 0; }.ateam-lp .brand-vodafone .vf-word{
  font-family: 'Geist', sans-serif;
  color: #e60000;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.03em;
}.ateam-lp .brand-cpaxtra .cp-badge{
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #e2231a, #b3160f);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}.ateam-lp .brand-cpaxtra .cp-word{
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #14213d;
}.ateam-lp .brand-aster .as-icon{ width: 26px; height: 26px; flex-shrink: 0; }.ateam-lp .brand-aster .as-word{
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #2a3b47;
}.ateam-lp .brand-tna{ flex-direction: column; gap: 1px; line-height: 1; }.ateam-lp .brand-tna .tna-the{
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 11px;
  color: #b3261e;
  letter-spacing: 0.02em;
}.ateam-lp .brand-tna .tna-main{
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #14213d;
  white-space: nowrap;
}.ateam-lp .brand-550 .g550-num{
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.03em;
}.ateam-lp .brand-550 .g550-word{
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  border-left: 1px solid var(--line-strong);
  padding-left: 7px;
  margin-left: 1px;
}@media (max-width: 900px){.ateam-lp .hc-wall{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    margin: 0 -20px;
    padding-left: 20px; padding-right: 20px;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }.ateam-lp .hc-wall::-webkit-scrollbar{ display: none; }.ateam-lp .hc-wall{ scrollbar-width: none; }.ateam-lp .hc-card{
    flex: 0 0 auto;
    min-width: 140px;
    scroll-snap-align: start;
    height: 52px;
  }
}.ateam-lp .case-wide-inner{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
}@media (max-width: 880px){.ateam-lp .case-wide-inner{ grid-template-columns: 1fr; gap: 28px; }
}.ateam-lp .testimonial-section{
  padding: 80px 0 120px;
}.ateam-lp .testimonial-card{
  position: relative;
  background: #0c0a1f;
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}.ateam-lp .tc-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--r-xl);
}.ateam-lp .tc-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}.ateam-lp .tc-orb-1{
  width: 520px; height: 520px;
  background: radial-gradient(circle, #7c4dee, transparent 65%);
  top: -180px; left: -120px;
  animation: orb-drift 18s ease-in-out infinite alternate;
}.ateam-lp .tc-orb-2{
  width: 420px; height: 420px;
  background: radial-gradient(circle, #b69bfb, transparent 65%);
  bottom: -160px; right: -80px;
  animation: orb-drift 22s ease-in-out infinite alternate-reverse;
}@keyframes orb-drift{0%{ transform: translate(0, 0)   scale(1);   }100%{ transform: translate(40px, 20px) scale(1.12); }
}.ateam-lp .tc-grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 75%);
}.ateam-lp .tc-inner{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}.ateam-lp .tc-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}.ateam-lp .tc-stars{
  color: var(--amber);
  letter-spacing: 0.05em;
  font-family: var(--sans);
  font-size: 12px;
}.ateam-lp .tc-quote{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 48px;
  position: relative;
  text-wrap: balance;
}.ateam-lp .tc-quote em{
  color: var(--p-300);
  font-style: italic;
  background: linear-gradient(120deg, #b69bfb, #d4c2fd 50%, #b69bfb);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shine 8s linear infinite;
}.ateam-lp .tc-mark{
  font-family: var(--serif);
  font-size: 1.2em;
  color: var(--p-300);
  margin-right: 4px;
  display: inline-block;
  vertical-align: -0.05em;
}.ateam-lp .tc-attr{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}.ateam-lp .tc-avatar{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--p-400), var(--p-700));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 24px -10px var(--purple-glow), inset 0 1px 0 rgba(255,255,255,0.25);
  flex-shrink: 0;
}.ateam-lp .tc-name{
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 3px;
}.ateam-lp .tc-meta{
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: var(--sans);
}.ateam-lp .tc-ref{
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
}.ateam-lp .tc-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.20);
}@media (max-width: 700px){.ateam-lp .tc-ref{ margin-left: 0; order: 3; }
}.ateam-lp .tquote, .ateam-lp .tquote-attr{ display: none; }.ateam-lp .faq-grid{
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}.ateam-lp .faq-item{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}.ateam-lp .faq-item:hover{ border-color: var(--p-200); }.ateam-lp .faq-item.open{
  border-color: var(--p-300);
  box-shadow: 0 14px 36px -22px var(--purple-glow);
}.ateam-lp .faq-q{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
}.ateam-lp .faq-toggle{
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--p-50);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
}.ateam-lp .faq-toggle svg{ width: 14px; height: 14px; }.ateam-lp .faq-item.open .faq-toggle{
  background: var(--purple); color: #fff; transform: rotate(45deg);
}.ateam-lp .faq-a-wrap{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}.ateam-lp .faq-item.open .faq-a-wrap{ grid-template-rows: 1fr; }.ateam-lp .faq-a-inner{ overflow: hidden; }.ateam-lp .faq-a{
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  padding: 0 28px 24px 28px;
  max-width: 70ch;
}.ateam-lp .cta-section{
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  background: var(--bg-soft);
}.ateam-lp .cta-section::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, var(--p-50), transparent 65%);
  pointer-events: none;
}.ateam-lp .cta-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}@media (max-width: 980px){.ateam-lp .cta-grid{ grid-template-columns: 1fr; gap: 40px; } }.ateam-lp .cta-head .section-h2{ margin-bottom: 24px; }.ateam-lp .cta-head .lead{
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 28px;
}.ateam-lp .cta-bullets{
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}.ateam-lp .cta-bullets li{
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}.ateam-lp .cta-bullets svg{
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--purple);
}.ateam-lp .cta-meta{
  display: flex; gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}.ateam-lp .cta-meta div{ font-size: 13px; color: var(--ink-mute); line-height: 1.5; }.ateam-lp .cta-meta strong{ display: block; font-size: 14px; color: var(--ink); font-weight: 600; margin-bottom: 2px; }.ateam-lp .form-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow:
    0 30px 80px -30px rgba(70, 30, 160, 0.25),
    0 2px 8px -4px rgba(70, 30, 160, 0.06);
  position: relative;
  overflow: hidden;
}.ateam-lp .form-card::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--p-400), var(--p-700));
}.ateam-lp .form-title{
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}.ateam-lp .form-sub{
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 24px;
}.ateam-lp .form-row{ display: grid; gap: 16px; }.ateam-lp .form-row.two{ grid-template-columns: 1fr 1fr; }@media (max-width: 560px){.ateam-lp .form-row.two{ grid-template-columns: 1fr; } }.ateam-lp .field{ position: relative; }.ateam-lp .field label{
  position: unset !important;
  top: 50%; left: 16px;
  font-size: 14px;
  color: var(--ink-mute);
  pointer-events: none;
  transition: all 0.2s var(--ease);
  background: var(--surface);
  padding: 0 4px;
  margin-bottom: 0;
}.ateam-lp .field input, .ateam-lp .field textarea, .ateam-lp .field select{
  width: 100%;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  letter-spacing: -0.005em;
}.ateam-lp .field textarea{
  min-height: 110px;
  height: 110px;
  resize: vertical;
  padding-top: 22px;
  line-height: 1.5;
}.ateam-lp .field input:focus, .ateam-lp .field textarea:focus, .ateam-lp .field select:focus{
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--p-50);
}.ateam-lp .field input:focus + label, .ateam-lp .field textarea:focus + label, .ateam-lp .field input:not(:placeholder-shown) + label, .ateam-lp .field textarea:not(:placeholder-shown) + label, .ateam-lp .field select:valid + label, .ateam-lp .field select:focus + label{
  top: 0;
  font-size: 11px;
  color: var(--purple);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}.ateam-lp .field select{
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><path d='M3 6l5 5 5-5' stroke='%236a35e0' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}.ateam-lp .form-submit{
  margin-top: 22px; width: 100%;
  justify-content: center;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 500;
}.ateam-lp .form-fine{
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.55;
}.ateam-lp .form-success{
  display: none;
  text-align: center;
  padding: 40px 16px;
}.ateam-lp .form-card.sent .form-actual{ display: none; }.ateam-lp .form-card.sent .form-success{ display: block; }.ateam-lp .form-success .ic{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--p-50);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}.ateam-lp .form-success .ic svg{ width: 28px; height: 28px; color: var(--purple); }.ateam-lp .form-success h3{
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}.ateam-lp .form-success p{
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 auto;
  line-height: 1.55;
}.ateam-lp footer{
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  background: var(--bg);
  position: relative;
  z-index: 3;
}.ateam-lp .foot-grid{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}.ateam-lp .foot-brand .logo-img{ height: 36px; margin-bottom: 14px; }.ateam-lp .foot-brand p{
  font-size: 14px;
  color: var(--ink-mute);
  max-width: 40ch;
  line-height: 1.6;
}.ateam-lp .foot-meta{
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.7;
  text-align: right;
}.ateam-lp .foot-locations{
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: flex-end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}@media (max-width: 700px){.ateam-lp .foot-meta, .ateam-lp .foot-locations{ text-align: left; justify-content: flex-start; }
}.ateam-lp .sticky-cta{
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}.ateam-lp .sticky-cta.show{
  opacity: 1; transform: translateY(0); pointer-events: auto;
}.ateam-lp .sticky-cta a{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  box-shadow: 0 14px 40px -10px rgba(70, 30, 160, 0.45);
  transition: transform 0.2s, background 0.2s;
}.ateam-lp .sticky-cta a:hover{
  background: var(--purple);
  transform: translateY(-2px);
}@media (max-width: 600px){.ateam-lp .sticky-cta{ left: 22px; right: 22px; }.ateam-lp .sticky-cta a{ width: 100%; justify-content: center; }
} html.js-anim .ateam-lp .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}.ateam-lp .reveal.in{ opacity: 1; transform: translateY(0); }.ateam-lp .reveal.d1{ transition-delay: 0.08s; }.ateam-lp .reveal.d2{ transition-delay: 0.16s; }.ateam-lp .reveal.d3{ transition-delay: 0.24s; }.ateam-lp .reveal.d4{ transition-delay: 0.32s; }.ateam-lp .pmf{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(70, 30, 160, 0.18);
}.ateam-lp .pmf-head{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 12px;
}.ateam-lp .pmf-title{
  font-size: 13px; color: var(--ink-2); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}.ateam-lp .pmf-title .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 4px var(--p-50);
}.ateam-lp .pmf-source{
  font-family: var(--mono); font-size: 10.5px;
  color: var(--ink-mute); letter-spacing: 0.06em;
}.ateam-lp .pmf-headline{
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}.ateam-lp .pmf-headline .big{
  font-family: var(--serif);
  font-size: clamp(74px, 11vw, 124px);
  font-weight: 400;
  color: var(--purple);
  line-height: 0.9;
  letter-spacing: -0.04em;
}.ateam-lp .pmf-headline .lbl{
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 22ch;
  line-height: 1.4;
}.ateam-lp .pmf-funnel{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 24px 0 12px;
  position: relative;
}.ateam-lp .pmf-stage{
  text-align: center;
  position: relative;
}.ateam-lp .pmf-stage .label{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  min-height: 24px;
  display: flex; align-items: center; justify-content: center;
}.ateam-lp .pmf-bar{
  height: 78px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: flex; align-items: flex-end;
  justify-content: center;
}.ateam-lp .pmf-fill{
  width: 100%;
  background: linear-gradient(180deg, var(--p-400), var(--p-700));
  border-radius: 7px 7px 0 0;
  position: relative;
  transition: height 1.2s var(--ease);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}.ateam-lp .pmf-fill::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: translateY(110%);
  animation: shimmer-y 4s linear infinite;
}@keyframes shimmer-y{to{ transform: translateY(-110%); }
}.ateam-lp .pmf-drop{
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--warn);
  font-weight: 600;
  background: var(--coral-2);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}.ateam-lp .pmf-stage .v{
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
}.ateam-lp .pmf-arrow{
  position: absolute;
  top: 42px;
  right: -4px;
  z-index: 2;
  font-size: 12px;
  color: var(--ink-mute);
}.ateam-lp .pmf-stage:last-child .pmf-arrow{ display: none; }.ateam-lp .pmf-divider{
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}.ateam-lp .pmf-mini{
  font-family: var(--serif);
  font-size: 52px;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.03em;
}.ateam-lp .pmf-mini em{ color: var(--purple); font-style: normal; }.ateam-lp .pmf-divider p{
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}.ateam-lp .tl-body{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}.ateam-lp .tl-body.has-viz{
  grid-template-columns: 1.1fr 1fr;
}@media (max-width: 760px){.ateam-lp .tl-body.has-viz{ grid-template-columns: 1fr; }
}.ateam-lp .tl-viz{
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}.ateam-lp .tl-viz .viz-title{
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}.ateam-lp .op-matrix{
  display: flex; flex-direction: column;
  gap: 8px;
}.ateam-lp .op-row{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}.ateam-lp .op-row .nm{
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
}.ateam-lp .op-bars{
  display: flex; gap: 4px; align-items: center;
}.ateam-lp .op-bars .b{
  width: 7px; height: 14px;
  background: var(--surface-2);
  border-radius: 2px;
}.ateam-lp .op-bars .b.on{ background: var(--purple); }.ateam-lp .op-row .score{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  background: var(--p-50);
  border-radius: 4px;
  min-width: 38px;
  text-align: center;
}.ateam-lp .dash-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}.ateam-lp .dash-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
}.ateam-lp .dash-card .lb{
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}.ateam-lp .dash-card .vl{
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}.ateam-lp .dash-card .vl em{ color: var(--purple); font-style: normal; }.ateam-lp .dash-card .ch{
  margin-top: 6px;
  font-size: 10.5px;
  color: var(--success);
  font-family: var(--mono);
}.ateam-lp .dash-card .ch.warn{ color: var(--warn); }.ateam-lp .dash-spark{
  margin-top: 12px;
  height: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 10px;
  display: flex; align-items: center; gap: 6px;
}.ateam-lp .dash-spark .sp{
  flex: 1;
  height: 100%;
  position: relative;
}.ateam-lp .dash-spark .sp::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(124,77,238,0.20), transparent 80%);
  clip-path: polygon(0 70%, 8% 60%, 16% 65%, 24% 50%, 32% 55%, 40% 35%, 48% 40%, 56% 25%, 64% 30%, 72% 18%, 80% 22%, 88% 12%, 100% 8%, 100% 100%, 0 100%);
}.ateam-lp .dash-spark .sp::after{
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--purple), transparent 80%);
  clip-path: polygon(0 70%, 8% 60%, 16% 65%, 24% 50%, 32% 55%, 40% 35%, 48% 40%, 56% 25%, 64% 30%, 72% 18%, 80% 22%, 88% 12%, 100% 8%, 100% 9%, 88% 13%, 80% 23%, 72% 19%, 64% 31%, 56% 26%, 48% 41%, 40% 36%, 32% 56%, 24% 51%, 16% 66%, 8% 61%, 0 71%);
  opacity: 0.9;
}.ateam-lp .dash-spark .sp-label{
  font-family: var(--mono); font-size: 9.5px;
  color: var(--ink-mute); letter-spacing: 0.06em;
  text-transform: uppercase;
}.ateam-lp .topo{
  position: relative;
  flex: 1;
  min-height: 160px;
}.ateam-lp .topo-hub{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 6px 18px -6px var(--purple-glow);
}.ateam-lp .topo-node{
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 9px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  z-index: 2;
}.ateam-lp .topo-n1{ top: 4%;  left: 6%; }.ateam-lp .topo-n2{ top: 4%;  right: 6%; }.ateam-lp .topo-n3{ top: 50%; left: 0; transform: translateY(-50%); }.ateam-lp .topo-n4{ top: 50%; right: 0; transform: translateY(-50%); }.ateam-lp .topo-n5{ bottom: 4%; left: 18%; }.ateam-lp .topo-n6{ bottom: 4%; right: 18%; }.ateam-lp .topo svg.topo-svg{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}.ateam-lp .topo svg .ln{
  stroke: var(--p-200);
  stroke-width: 1.2;
  stroke-dasharray: 3 3;
  fill: none;
  animation: dash 6s linear infinite;
}.ateam-lp .deliv-stack{
  display: flex; flex-direction: column;
  gap: 6px;
  flex: 1;
}.ateam-lp .deliv-item{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--ink-2);
}.ateam-lp .deliv-item .ic{
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--p-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple);
}.ateam-lp .deliv-item .ic svg{ width: 12px; height: 12px; }.ateam-lp .deliv-item .check{
  font-family: var(--mono);
  font-size: 10px;
  color: var(--success);
  letter-spacing: 0.06em;
}.ateam-lp .deliv-item.transfer{ border-color: var(--p-200); background: linear-gradient(90deg, #fff, var(--p-50)); }.ateam-lp .why-cell{
  flex-direction: column;
  gap: 24px;
}.ateam-lp .why-illus{
  height: 132px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  position: relative;
  overflow: hidden;
}.ateam-lp .illus-map{
  width: 100%; height: 100%;
}.ateam-lp .illus-map svg{ width: 100%; height: 100%; display: block; }.ateam-lp .illus-map .pin{
  animation: pin-pulse 3s ease-in-out infinite;
}.ateam-lp .illus-map .pin-2{ animation-delay: 0.5s; }.ateam-lp .illus-map .pin-3{ animation-delay: 1s; }.ateam-lp .illus-map .pin-4{ animation-delay: 1.5s; }.ateam-lp .illus-map .pin-5{ animation-delay: 2s; }@keyframes pin-pulse{0%, 100%{ transform: scale(1); }50%{ transform: scale(1.15); }
}.ateam-lp .illus-vault{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  height: 100%;
}.ateam-lp .illus-vault .file{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.03em;
}.ateam-lp .illus-vault .file .ic{
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--p-50);
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple);
}.ateam-lp .illus-vault .file .ic svg{ width: 8px; height: 8px; }.ateam-lp .illus-vault .file .lock{
  margin-left: auto;
  font-size: 10px;
  color: var(--success);
}.ateam-lp .illus-eng{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  align-items: center;
  height: 100%;
}.ateam-lp .illus-eng .dot{
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p-300), var(--p-600));
  opacity: 0.85;
}.ateam-lp .illus-eng .dot.muted{ background: var(--surface-2); border: 1px solid var(--line); opacity: 1; }.ateam-lp .illus-eng .count{
  grid-column: span 12;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-top: 4px;
  text-align: right;
}.ateam-lp .illus-meet{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}.ateam-lp .illus-meet svg{ width: 100%; height: 100%; }.ateam-lp .illus-meet .seat-ceo{ fill: var(--purple); }.ateam-lp .illus-meet .table{ fill: #fff; stroke: var(--line-strong); stroke-width: 1.2; }.ateam-lp .illus-meet .seat{ fill: var(--surface-3); }.ateam-lp .illus-meet .label{
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--purple);
  font-weight: 600;
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--p-200);
}.ateam-lp .illus-meet .label-ceo{
  top: 6%; left: 50%; transform: translateX(-50%);
}.ateam-lp .why-cell-body{ display: contents; }.ateam-lp .why-cell .why-glyph{ display: none; }.ateam-lp .flourish{
  display: flex; align-items: center; justify-content: center;
  padding: 24px 0;
  opacity: 0.45;
}.ateam-lp .flourish svg{ width: 64px; height: 14px; }@media (max-width: 880px){.ateam-lp .pmf{ padding: 24px; }.ateam-lp .pmf-funnel{ grid-template-columns: repeat(5, 1fr); gap: 4px; }.ateam-lp .pmf-stage .label{ font-size: 8.5px; min-height: 18px; }.ateam-lp .pmf-bar{ height: 60px; }.ateam-lp .pmf-stage .v{ font-size: 17px; }.ateam-lp .pmf-drop{ font-size: 8.5px; padding: 1px 4px; }.ateam-lp .pmf-arrow{ display: none; }.ateam-lp .tl-body.has-viz{ grid-template-columns: 1fr; gap: 18px; }.ateam-lp .tl-viz{ padding: 14px; min-height: 160px; }.ateam-lp .why-cell{ gap: 18px; }.ateam-lp .why-illus{ height: 110px; padding: 10px; }
}@media (max-width: 880px){.ateam-lp section{ padding: 72px 0; }.ateam-lp .container{ padding: 0 20px; }.ateam-lp .nav-inner{ padding: 12px 16px; }.ateam-lp .logo-img{ height: 28px; }.ateam-lp .hero{ padding: 24px 0 32px; }.ateam-lp .hero-grid{ gap: 32px; }.ateam-lp .h1{ font-size: clamp(42px, 9vw, 64px); margin-bottom: 20px; }.ateam-lp .h1-sub{ font-size: 16.5px; margin-bottom: 28px; }.ateam-lp .eyebrow{ margin-bottom: 20px; font-size: 12px; padding-left: 4px; }.ateam-lp .eyebrow .chip{ font-size: 10px; padding: 3px 8px; }.ateam-lp .hero-ctas .btn{ padding: 13px 18px; font-size: 14px; }.ateam-lp .hero-visual{ aspect-ratio: 1 / 0.9; }.ateam-lp .hv-hub{ width: 96px; height: 96px; font-size: 26px; }.ateam-lp .hv-chip{ padding: 8px 12px; font-size: 11px; }.ateam-lp .hv-chip .ic{ width: 22px; height: 22px; border-radius: 6px; }.ateam-lp .hv-chip.right{ right: -2%; }.ateam-lp .hero-meta{ font-size: 12.5px; flex-wrap: wrap; gap: 12px; }.ateam-lp .trust{ padding: 40px 0 48px; }.ateam-lp .trust-row{ gap: 22px 32px; }.ateam-lp .trust-row .bold{ font-size: 18px; }.ateam-lp .trust-row .serif{ font-size: 19px; }.ateam-lp .trust-row .mono{ font-size: 12px; }.ateam-lp .trust-row span{ font-size: 15px; }.ateam-lp .section-h2{ font-size: clamp(32px, 7.5vw, 48px); }.ateam-lp .section-lead{ font-size: 16px; margin-bottom: 36px; }.ateam-lp .pilot-chart{ padding: 28px; }.ateam-lp .pc-stat .big{ font-size: clamp(72px, 16vw, 96px); }.ateam-lp .pc-mini{ font-size: 44px; }.ateam-lp .bento .card{ padding: 24px; border-radius: 18px; }.ateam-lp .case-title{ font-size: 22px; }.ateam-lp .case-context{ font-size: 14px; }.ateam-lp .case-solution{ font-size: 13px; }.ateam-lp .kpi-row{ grid-template-columns: 1fr 1fr !important; gap: 8px; }.ateam-lp .kpi{ padding: 10px 12px; }.ateam-lp .kpi .v{ font-size: 22px; }.ateam-lp .viz-roster{ gap: 2px; }.ateam-lp .viz-channels{
    grid-template-columns: 1fr;
    gap: 8px;
  }.ateam-lp .viz-channels .arrow-x{
    transform: rotate(90deg);
    height: 18px;
  }.ateam-lp .viz-channels .agent{ padding: 14px; }.ateam-lp .case-wide-inner{ gap: 24px; }.ateam-lp .case-wide .case-title{ font-size: 22px !important; }.ateam-lp .compare-col{ padding: 28px 24px; }.ateam-lp .compare-title{ font-size: 22px; }.ateam-lp .compare-col.new::after{ right: 16px; font-size: 9px; padding: 4px 10px; }.ateam-lp .agent-flow{ padding: 32px 24px; margin-top: 36px; }.ateam-lp .af-title{ font-size: 24px; }.ateam-lp .af-stages{ grid-template-columns: 1fr; gap: 10px; }.ateam-lp .af-stage{ padding: 16px; }.ateam-lp .af-rails{ grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }.ateam-lp .af-rail{ padding: 16px; }.ateam-lp .tl-step{ grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 0; }.ateam-lp .tl-dot{ width: 48px; height: 48px; font-size: 18px; }.ateam-lp .timeline::before, .ateam-lp .timeline::after{ left: 24px; }.ateam-lp .tl-body{ padding: 22px 22px; border-radius: 16px; }.ateam-lp .tl-title{ font-size: 22px; }.ateam-lp .tl-desc{ font-size: 14px; }.ateam-lp .tl-deliv span{ font-size: 10.5px; padding: 3px 8px; }.ateam-lp .stack-section{ margin: 0 16px; padding: 56px 24px; border-radius: 24px; }.ateam-lp .stack-grid{ grid-template-columns: 1fr; gap: 32px; }.ateam-lp .constellation{ aspect-ratio: 1 / 1.6; max-height: 560px; }.ateam-lp .cnst-chip{ font-size: 12px; padding: 7px 12px; }.ateam-lp .c-anthropic{ top: 2%;  left: 6%;  }.ateam-lp .c-openai{ top: 10%; right: 6%; left: auto; }.ateam-lp .c-gemini{ top: 18%; left: 24%; right: auto; }.ateam-lp .c-langgraph{ top: 26%; right: 4%; left: auto; }.ateam-lp .c-crewai{ top: 34%; left: 4%;  }.ateam-lp .c-llama{ top: 42%; right: 8%; left: auto; }.ateam-lp .c-bedrock{ top: 50%; left: 14%; }.ateam-lp .c-azure{ top: 58%; right: 4%; left: auto; }.ateam-lp .c-g42{ top: 66%; left: 4%;  right: auto; }.ateam-lp .c-supabase{ top: 74%; right: 14%; left: auto; }.ateam-lp .c-pg{ top: 82%; left: 6%;  }.ateam-lp .c-temporal{ top: 90%; right: 8%; left: auto; }.ateam-lp .why-cell{ padding: 24px; gap: 16px; flex-direction: column; }.ateam-lp .why-glyph{ width: 48px; height: 48px; }.ateam-lp .why-glyph svg{ width: 22px; height: 22px; }.ateam-lp .why-cell-title{ font-size: 19px; }.ateam-lp .testimonial-section{ padding: 56px 0 80px; }.ateam-lp .testimonial-card{ padding: 48px 28px; border-radius: 20px; }.ateam-lp .tc-quote{ font-size: clamp(22px, 6vw, 32px); margin-bottom: 32px; }.ateam-lp .tc-attr{ gap: 12px; padding-top: 24px; }.ateam-lp .tc-avatar{ width: 44px; height: 44px; font-size: 10px; }.ateam-lp .tc-name{ font-size: 14px; }.ateam-lp .tc-meta{ font-size: 12px; }.ateam-lp .faq-q{ padding: 18px 20px; font-size: 17px; gap: 16px; }.ateam-lp .faq-a{ padding: 0 20px 20px 20px; font-size: 14px; }.ateam-lp .faq-toggle{ width: 28px; height: 28px; }.ateam-lp .cta-section{ padding: 72px 0 88px; }.ateam-lp .cta-grid{ gap: 32px; }.ateam-lp .form-card{ padding: 24px; border-radius: 22px; }.ateam-lp .form-title{ font-size: 22px; }.ateam-lp .field input, .ateam-lp .field textarea, .ateam-lp .field select{ font-size: 16px;  }.ateam-lp .cta-meta{ gap: 16px; padding-top: 20px; }.ateam-lp footer{ padding: 40px 0 32px; }.ateam-lp .foot-grid{ flex-direction: column; align-items: flex-start; gap: 24px; }.ateam-lp .foot-meta, .ateam-lp .foot-locations{ text-align: left; justify-content: flex-start; }.ateam-lp .foot-brand .logo-img{ height: 30px; }.ateam-lp .sticky-cta{ bottom: 16px; }.ateam-lp .sticky-cta a{ padding: 12px 18px; font-size: 13.5px; }
}@media (max-width: 520px){.ateam-lp .h1{ font-size: clamp(36px, 10vw, 52px); }.ateam-lp .hero-ctas{ gap: 8px; }.ateam-lp .hero-ctas .btn{ padding: 12px 16px; font-size: 13.5px; width: 100%; justify-content: center; }.ateam-lp .hero-clients{ margin-top: 28px; padding-top: 22px; }.ateam-lp .hc-row{ gap: 14px 22px; }.ateam-lp .hv-chip.hv-chip-3{ display: none; }.ateam-lp .hv-hub{ width: 88px; height: 88px; font-size: 24px; }.ateam-lp .tc-quote{ font-size: 22px; }.ateam-lp .tc-eyebrow{ margin-bottom: 24px; font-size: 10px; padding: 5px 12px; }.ateam-lp .nav-cta{ padding: 8px 14px !important; font-size: 12px !important; }.ateam-lp .compare-col{ padding: 24px 20px; }.ateam-lp .compare-list li{ font-size: 13.5px; padding-left: 28px; }.ateam-lp .viz-funnel .row{ grid-template-columns: 70px 1fr 50px; gap: 8px; }.ateam-lp .viz-funnel .row .lbl{ font-size: 10.5px; }
}.ateam-lp .logo-link{
  padding: 6px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px -10px rgba(70, 30, 160, 0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  white-space: nowrap;
  line-height: 0;
}.ateam-lp .logo-link:hover{
  transform: translateY(-1px);
  border-color: var(--p-200);
  box-shadow: 0 10px 26px -12px var(--purple-glow);
}.ateam-lp .nav .logo-img{ height: 30px; }.ateam-lp .foot-brand .logo-link{ background: transparent; border: none; box-shadow: none; padding: 0; }@media (max-width: 820px){.ateam-lp .nav .logo-img{ height: 26px; }.ateam-lp .logo-link{ padding: 5px 10px; }
}.ateam-lp .modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 10, 31, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}.ateam-lp .modal-overlay.open{ opacity: 1; visibility: visible; }.ateam-lp .modal{
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 40px 100px -30px rgba(12, 10, 31, 0.6);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  max-height: 92vh;
  overflow-y: auto;
}.ateam-lp .modal-overlay.open .modal{ transform: translateY(0) scale(1); opacity: 1; }.ateam-lp .modal::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: linear-gradient(90deg, var(--p-400), var(--p-700));
}.ateam-lp .modal-close{
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}.ateam-lp .modal-close:hover{ background: var(--ink); color: #fff; transform: rotate(90deg); }.ateam-lp .modal-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--p-50);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}.ateam-lp .modal-eyebrow .d{ width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }.ateam-lp .modal-title{
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}.ateam-lp .modal-sub{
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}.ateam-lp .modal .form-row{ display: grid; gap: 14px; margin-bottom: 14px; }.ateam-lp .modal .form-row.two{ grid-template-columns: 1fr 1fr; }@media (max-width: 420px){.ateam-lp .modal .form-row.two{ grid-template-columns: 1fr; } }.ateam-lp .modal .field input, .ateam-lp .modal .field textarea{
  font-size: 16px;
}.ateam-lp .modal-submit{ width: 100%; justify-content: center; margin-top: 6px; }.ateam-lp .modal-fine{
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
}.ateam-lp .modal-success{ display: none; text-align: center; padding: 20px 8px; }.ateam-lp .modal.sent .modal-form{ display: none; }.ateam-lp .modal.sent .modal-success{ display: block; }.ateam-lp .modal-success .ic{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--p-50);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  animation: pop-check 0.5s var(--ease) both;
}@keyframes pop-check{0%{ transform: scale(0.4); opacity: 0; }60%{ transform: scale(1.12); }100%{ transform: scale(1); opacity: 1; } }.ateam-lp .modal-success .ic svg{ width: 28px; height: 28px; color: var(--purple); }.ateam-lp .modal-success h3{ font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em; }.ateam-lp .modal-success p{ font-size: 14.5px; color: var(--ink-soft); max-width: 34ch; margin: 0 auto; line-height: 1.55; }.ateam-lp .case-card{ will-change: transform; }.ateam-lp .viz-roster .cell{
  opacity: 0;
  transform: scale(0.4);
}.ateam-lp .case-card.viz-in .viz-roster .cell{
  animation: cellPop 0.45s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}@keyframes cellPop{0%{ opacity: 0; transform: scale(0.4); }60%{ opacity: 1; transform: scale(1.12); }100%{ opacity: 1; transform: scale(1); }
}.ateam-lp .viz-channels .ch, .ateam-lp .viz-channels .clean{
  opacity: 0;
  transform: translateX(-10px);
}.ateam-lp .viz-channels .agent{ opacity: 0; transform: scale(0.9); }.ateam-lp .case-card.viz-in .viz-channels .ch:nth-child(1){ animation: slideIn 0.5s var(--ease) 0.05s forwards; }.ateam-lp .case-card.viz-in .viz-channels .ch:nth-child(2){ animation: slideIn 0.5s var(--ease) 0.12s forwards; }.ateam-lp .case-card.viz-in .viz-channels .ch:nth-child(3){ animation: slideIn 0.5s var(--ease) 0.19s forwards; }.ateam-lp .case-card.viz-in .viz-channels .ch:nth-child(4){ animation: slideIn 0.5s var(--ease) 0.26s forwards; }.ateam-lp .case-card.viz-in .viz-channels .agent{ animation: popScale 0.5s var(--ease) 0.34s forwards; }.ateam-lp .case-card.viz-in .viz-channels .clean{ animation: slideInR 0.5s var(--ease) 0.46s forwards; }.ateam-lp .case-card.viz-in .viz-channels .clean:nth-child(2){ animation-delay: 0.52s; }.ateam-lp .case-card.viz-in .viz-channels .clean:nth-child(3){ animation-delay: 0.58s; }.ateam-lp .case-card.viz-in .viz-channels .clean:nth-child(4){ animation-delay: 0.64s; }@keyframes slideIn{to{ opacity: 1; transform: translateX(0); } }@keyframes slideInR{from{ opacity: 0; transform: translateX(10px);}to{ opacity: 1; transform: translateX(0); } }@keyframes popScale{to{ opacity: 1; transform: scale(1); } }.ateam-lp .viz-funnel .fill{ transform: scaleX(0); transform-origin: left center; }.ateam-lp .case-card.viz-in .viz-funnel .row:nth-child(1) .fill{ animation: growX 0.9s var(--ease) 0.1s forwards; }.ateam-lp .case-card.viz-in .viz-funnel .row:nth-child(2) .fill{ animation: growX 0.9s var(--ease) 0.25s forwards; }.ateam-lp .case-card.viz-in .viz-funnel .row:nth-child(3) .fill{ animation: growX 0.9s var(--ease) 0.4s forwards; }.ateam-lp .case-card.viz-in .viz-funnel .row:nth-child(4) .fill{ animation: growX 0.9s var(--ease) 0.55s forwards; }.ateam-lp .viz-funnel .delta{ opacity: 0; transform: translateY(8px); }.ateam-lp .case-card.viz-in .viz-funnel .delta{ animation: slideUp 0.6s var(--ease) 0.8s forwards; }@keyframes growX{to{ transform: scaleX(1); } }@keyframes slideUp{to{ opacity: 1; transform: translateY(0); } }.ateam-lp .kpi{ opacity: 0; transform: translateY(12px); }.ateam-lp .case-card.viz-in .kpi{ animation: kpiIn 0.5s var(--ease) forwards; }.ateam-lp .case-card.viz-in .kpi:nth-child(1){ animation-delay: 0.1s; }.ateam-lp .case-card.viz-in .kpi:nth-child(2){ animation-delay: 0.18s; }.ateam-lp .case-card.viz-in .kpi:nth-child(3){ animation-delay: 0.26s; }.ateam-lp .case-card.viz-in .kpi:nth-child(4){ animation-delay: 0.34s; }@keyframes kpiIn{to{ opacity: 1; transform: translateY(0); } }.ateam-lp .kpi .v{ display: inline-block; }.ateam-lp .case-card.viz-in .kpi .v{ animation: kpiPop 0.5s var(--ease) both; }@keyframes kpiPop{0%{ transform: scale(0.6); }60%{ transform: scale(1.1); }100%{ transform: scale(1); } }.ateam-lp .pmf-fill{ transform: scaleY(0); transform-origin: bottom; }.ateam-lp .pmf.viz-in .pmf-stage:nth-child(1) .pmf-fill{ animation: growY 0.8s var(--ease) 0.1s forwards; }.ateam-lp .pmf.viz-in .pmf-stage:nth-child(2) .pmf-fill{ animation: growY 0.8s var(--ease) 0.24s forwards; }.ateam-lp .pmf.viz-in .pmf-stage:nth-child(3) .pmf-fill{ animation: growY 0.8s var(--ease) 0.38s forwards; }.ateam-lp .pmf.viz-in .pmf-stage:nth-child(4) .pmf-fill{ animation: growY 0.8s var(--ease) 0.52s forwards; }.ateam-lp .pmf.viz-in .pmf-stage:nth-child(5) .pmf-fill{ animation: growY 0.8s var(--ease) 0.66s forwards; }.ateam-lp .pmf-drop{ opacity: 0; }.ateam-lp .pmf.viz-in .pmf-drop{ animation: slideUp 0.5s var(--ease) 0.9s forwards; }@keyframes growY{to{ transform: scaleY(1); } }.ateam-lp .af-title{
  font-size: clamp(34px, 4.2vw, 52px) !important;
  max-width: 20ch !important;
  line-height: 1.08 !important;
}.ateam-lp .af-title em{
  position: relative;
  display: inline-block;
}.ateam-lp .af-title em::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0.04em;
  width: 100%; height: 0.5em;
  background: linear-gradient(90deg, var(--p-200), var(--p-400));
  opacity: 0.28;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 4px;
}.ateam-lp .agent-flow.viz-in .af-title em::after{ animation: growX 0.9s var(--ease) 0.3s forwards; }.ateam-lp .agent-flow{
  position: relative;
  overflow: hidden;
}.ateam-lp .agent-flow::after{
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--p-50), transparent 70%);
  pointer-events: none;
}.ateam-lp .af-stage{
  opacity: 0;
  transform: translateY(16px);
}.ateam-lp .agent-flow.viz-in .af-stage{ animation: kpiIn 0.55s var(--ease) forwards; }.ateam-lp .agent-flow.viz-in .af-stage:nth-child(1){ animation-delay: 0.15s; }.ateam-lp .agent-flow.viz-in .af-stage:nth-child(2){ animation-delay: 0.27s; }.ateam-lp .agent-flow.viz-in .af-stage:nth-child(3){ animation-delay: 0.39s; }.ateam-lp .agent-flow.viz-in .af-stage:nth-child(4){ animation-delay: 0.51s; }.ateam-lp .agent-flow.viz-in .af-stage:nth-child(5){ animation-delay: 0.63s; }.ateam-lp .af-stage::after{ transition: color 0.3s; }.ateam-lp .agent-flow.viz-in .af-stage::after{ animation: arrowPulse 1.6s var(--ease) infinite; }@keyframes arrowPulse{0%, 100%{ color: var(--ink-mute); transform: translate(0, -50%); }50%{ color: var(--purple);  transform: translate(4px, -50%); }
}.ateam-lp .af-rail{
  opacity: 0;
  transform: translateY(16px);
}.ateam-lp .agent-flow.viz-in .af-rail{ animation: kpiIn 0.55s var(--ease) forwards; }.ateam-lp .agent-flow.viz-in .af-rail:nth-child(1){ animation-delay: 0.7s; }.ateam-lp .agent-flow.viz-in .af-rail:nth-child(2){ animation-delay: 0.8s; }.ateam-lp .agent-flow.viz-in .af-rail:nth-child(3){ animation-delay: 0.9s; }.ateam-lp .af-rail .icb{ transition: transform 0.3s var(--ease); }.ateam-lp .af-rail:hover .icb{ transform: scale(1.12) rotate(-6deg); }@media (prefers-reduced-motion: reduce){.ateam-lp *{ animation: none !important; }.ateam-lp .viz-roster .cell, .ateam-lp .viz-channels .ch, .ateam-lp .viz-channels .clean, .ateam-lp .viz-channels .agent, .ateam-lp .viz-funnel .fill, .ateam-lp .viz-funnel .delta, .ateam-lp .kpi, .ateam-lp .af-stage, .ateam-lp .af-rail, .ateam-lp .pmf-fill, .ateam-lp .pmf-drop{
    opacity: 1 !important; transform: none !important;
  }
}.ateam-lp .section-head-center{ text-align: center; max-width: 760px; margin: 0 auto 56px; }.ateam-lp .section-h2.center{ margin-left: auto; margin-right: auto; }.ateam-lp .section-lead.center{ margin-left: auto; margin-right: auto; }.ateam-lp .screen-frame{
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 34px 90px -40px rgba(70, 30, 160, 0.30), 0 4px 14px -6px rgba(70,30,160,0.08);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}.ateam-lp .screen-frame:hover{ transform: translateY(-6px); box-shadow: 0 44px 110px -40px rgba(70, 30, 160, 0.38); }.ateam-lp .screen-frame img{ width: 100%; height: auto; display: block; }.ateam-lp .problem2{ padding: 110px 0; }.ateam-lp .split{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}@media (max-width: 900px){.ateam-lp .split{ grid-template-columns: 1fr; gap: 36px; } }.ateam-lp .split-lead{ font-size: 18px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 26px; max-width: 46ch; }.ateam-lp .chip-row{ display: flex; flex-wrap: wrap; gap: 10px; }.ateam-lp .fact{
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-weight: 500;
}.ateam-lp .how{ background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.ateam-lp .steps3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}@media (max-width: 860px){.ateam-lp .steps3{ grid-template-columns: 1fr; } }.ateam-lp .step3{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}.ateam-lp .step3:hover{ transform: translateY(-4px); border-color: var(--p-200); box-shadow: 0 24px 60px -30px var(--purple-glow); }.ateam-lp .step3.accent{ background: linear-gradient(180deg, #fff, var(--p-50)); border-color: var(--p-200); }.ateam-lp .step3-top{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }.ateam-lp .step3-num{
  font-family: var(--serif); font-style: italic; font-size: 30px;
  color: var(--purple); line-height: 1;
}.ateam-lp .step3-tag{
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute); padding: 4px 10px; background: var(--surface-2); border-radius: 100px;
}.ateam-lp .step3-title{ font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }.ateam-lp .step3-desc{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; }.ateam-lp .step3-out{
  font-size: 13px; color: var(--p-800); font-weight: 500;
  padding-top: 14px; border-top: 1px dashed var(--p-200);
}.ateam-lp .screen-wide{
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 44px;
}@media (max-width: 900px){.ateam-lp .screen-wide{ grid-template-columns: 1fr; gap: 28px; padding: 28px; } }.ateam-lp .screen-wide-h{ font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 400; letter-spacing: -0.02em; color: var(--ink); line-height: 1.12; margin: 4px 0 12px; }.ateam-lp .screen-wide-h em{ color: var(--purple); font-style: italic; }.ateam-lp .screen-wide-copy p{ font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 22px; max-width: 42ch; }.ateam-lp .kpi-strip{ display: flex; gap: 24px; flex-wrap: wrap; }.ateam-lp .kpi-strip .kpi-b .v{ font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--purple); line-height: 1; letter-spacing: -0.02em; }.ateam-lp .kpi-strip .kpi-b .l{ font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }.ateam-lp .work{ padding: 120px 0; }.ateam-lp .sol-gallery{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }@media (max-width: 980px){.ateam-lp .sol-gallery{ grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }.ateam-lp .sol-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}.ateam-lp .sol-card:hover{ transform: translateY(-6px); border-color: var(--p-200); box-shadow: 0 34px 80px -36px rgba(70,30,160,0.30); }.ateam-lp .sol-shot{ overflow: hidden; border-bottom: 1px solid var(--line); }.ateam-lp .sol-shot img{ width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }.ateam-lp .sol-card:hover .sol-shot img{ transform: scale(1.03); }.ateam-lp .sol-card figcaption{ padding: 22px 24px 26px; }.ateam-lp .sol-tag{ font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }.ateam-lp .sol-title{ font-family: var(--sans); font-size: 19px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.22; margin-bottom: 14px; }.ateam-lp .sol-kpi{ font-size: 13.5px; color: var(--ink-soft); }.ateam-lp .sol-kpi strong{ color: var(--purple); font-weight: 600; }.ateam-lp .build-grid{
  margin-top: 32px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}.ateam-lp .build-grid::before{
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 15% 20%, rgba(124,77,238,0.35), transparent 60%);
  pointer-events: none;
}@media (max-width: 900px){.ateam-lp .build-grid{ grid-template-columns: 1fr; gap: 28px; padding: 30px; } }.ateam-lp .build-head{ position: relative; }.ateam-lp .build-head h3{ font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 12px; }.ateam-lp .build-head h3 em{ color: var(--p-300); font-style: italic; }.ateam-lp .build-head p{ font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; max-width: 34ch; }.ateam-lp .build-items{ position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }@media (max-width: 520px){.ateam-lp .build-items{ grid-template-columns: 1fr; } }.ateam-lp .build-item{
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px; font-weight: 500;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}.ateam-lp .build-item:hover{ background: rgba(124,77,238,0.22); border-color: var(--p-300); transform: translateY(-2px); }.ateam-lp .bi-ic{ font-size: 18px; filter: grayscale(0.1); }.ateam-lp .authority{ padding: 40px 0 120px; }.ateam-lp .auth-card{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px -44px rgba(70,30,160,0.30);
}@media (max-width: 860px){.ateam-lp .auth-card{ grid-template-columns: 1fr; } }.ateam-lp .auth-img{ position: relative; min-height: 100%; }.ateam-lp .auth-img img{ width: 100%; height: 100%; object-fit: cover; display: block; }@media (max-width: 860px){.ateam-lp .auth-img img{ max-height: 320px; } }.ateam-lp .auth-copy{ padding: 48px 44px; align-self: center; }@media (max-width: 860px){.ateam-lp .auth-copy{ padding: 32px 28px; } }.ateam-lp .auth-flag{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 18px;
}.ateam-lp .auth-flag .uae{
  width: 22px; height: 15px; border-radius: 2px; overflow: hidden;
  background:
    linear-gradient(90deg, #ce1126 0 5px, transparent 5px),
    linear-gradient(180deg, #009739 0 33%, #ffffff 33% 66%, #000 66%);
  border: 1px solid var(--line);
}.ateam-lp .auth-h{ font-family: var(--serif); font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; letter-spacing: -0.02em; line-height: 1.06; color: var(--ink); margin-bottom: 18px; }.ateam-lp .auth-h em{ color: var(--purple); font-style: italic; }.ateam-lp .auth-sub{ font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 28px; max-width: 52ch; }.ateam-lp .why2-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }@media (max-width: 980px){.ateam-lp .why2-grid{ grid-template-columns: 1fr 1fr; } }@media (max-width: 560px){.ateam-lp .why2-grid{ grid-template-columns: 1fr; } }.ateam-lp .why2{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}.ateam-lp .why2:hover{ transform: translateY(-4px); border-color: var(--p-200); box-shadow: 0 24px 60px -30px var(--purple-glow); }.ateam-lp .why2-ic{
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--p-50); color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}.ateam-lp .why2-ic svg{ width: 26px; height: 26px; }.ateam-lp .why2 h3{ font-family: var(--serif); font-size: 21px; font-weight: 400; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 10px; }.ateam-lp .why2 p{ font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }@media (max-width: 860px){.ateam-lp .problem2{ padding: 72px 0; }.ateam-lp .work{ padding: 80px 0; }.ateam-lp .section-head-center{ margin-bottom: 40px; }
}.ateam-lp .mock{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 30px 80px -42px rgba(70,30,160,0.30), 0 3px 10px -5px rgba(70,30,160,0.08);
}.ateam-lp .mock-rollout .mock-bar{
  display: flex; align-items: center; gap: 7px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 12px; color: var(--ink-2); font-weight: 500;
}.ateam-lp .mock-dot{ width: 9px; height: 9px; border-radius: 50%; }.ateam-lp .mock-dot.r{ background: #c0392b; }.ateam-lp .mock-dot.y{ background: #d99e2b; }.ateam-lp .mock-dot.g{ background: #16a34a; }.ateam-lp .mock-title{ margin-left: 6px; }.ateam-lp .mock-flag{ margin-left: auto; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; padding: 3px 9px; border-radius: 100px; }.ateam-lp .mock-flag.warn{ background: rgba(192,57,43,0.10); color: #c33; }.ateam-lp .mock-modules{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }.ateam-lp .mod{
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 12px; border-radius: 10px; font-size: 11.5px; font-weight: 500;
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-2);
}.ateam-lp .mod .ms{ width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }.ateam-lp .mod.ok{ border-color: rgba(22,163,74,0.25); background: rgba(22,163,74,0.06); }.ateam-lp .mod.ok .ms{ background: #16a34a; color: #fff; }.ateam-lp .mod.bad{ border-color: rgba(192,57,43,0.35); background: rgba(192,57,43,0.07); color: #a33; }.ateam-lp .mod.bad .ms{ background: #c0392b; color: #fff; }.ateam-lp .mod.idle{ opacity: 0.6; }.ateam-lp .mod.idle .ms{ background: var(--line-strong); color: #fff; }.ateam-lp .mock-stats{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }.ateam-lp .mst{ background: var(--surface-2); border-radius: 10px; padding: 12px; text-align: center; }.ateam-lp .mst .v{ font-family: var(--serif); font-size: 30px; line-height: 1; color: var(--ink); }.ateam-lp .mst .v.ok{ color: #16a34a; }.ateam-lp .mst .v.warn{ color: #d99e2b; }.ateam-lp .mst .v.bad{ color: #c0392b; }.ateam-lp .mst .l{ font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }.ateam-lp .mock-risk{
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: rgba(192,57,43,0.07); border: 1px solid rgba(192,57,43,0.22);
  border-radius: 10px; padding: 12px 14px;
}.ateam-lp .mock-risk .rl{ font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #a33; }.ateam-lp .mock-risk .rv{ font-weight: 700; color: #c0392b; }.ateam-lp .mock-risk .rd{ font-size: 12px; color: var(--ink-soft); margin-left: auto; }.ateam-lp .mock-dash{ padding: 24px; }.ateam-lp .md-head{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }.ateam-lp .md-eyebrow{ font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }.ateam-lp .md-name{ font-family: var(--serif); font-size: 22px; color: var(--ink); display: flex; align-items: center; gap: 10px; }.ateam-lp .md-live{ font-family: var(--sans); font-size: 11px; color: #16a34a; display: inline-flex; align-items: center; gap: 5px; background: rgba(22,163,74,0.10); padding: 3px 9px; border-radius: 100px; }.ateam-lp .md-live .ld{ width: 6px; height: 6px; border-radius: 50%; background: #16a34a; animation: pulse 2s ease-in-out infinite; }.ateam-lp .md-ring{ position: relative; width: 64px; height: 64px; flex-shrink: 0; }.ateam-lp .md-ring svg{ transform: rotate(-90deg); width: 64px; height: 64px; }.ateam-lp .md-ring .rbg{ fill: none; stroke: var(--surface-3); stroke-width: 6; }.ateam-lp .md-ring .rfg{ fill: none; stroke: var(--purple); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 170; stroke-dashoffset: 10; }.ateam-lp .md-ring-v{ position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 8px; color: var(--ink-mute); }.ateam-lp .md-ring-v strong{ font-family: var(--serif); font-size: 17px; color: var(--ink); font-weight: 400; }.ateam-lp .md-kpis{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }.ateam-lp .md-kpi{ background: var(--surface-2); border-radius: 10px; padding: 12px 10px; }.ateam-lp .md-kpi .l{ font-family: var(--mono); font-size: 9px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); }.ateam-lp .md-kpi .v{ font-family: var(--serif); font-size: 20px; color: var(--ink); margin: 4px 0 2px; }.ateam-lp .md-kpi .c{ font-size: 10px; color: #16a34a; font-family: var(--mono); }.ateam-lp .md-health{ background: var(--surface-2); border-radius: 12px; padding: 14px; margin-bottom: 14px; }.ateam-lp .md-health-top{ display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-mute); font-family: var(--mono); margin-bottom: 8px; }.ateam-lp .md-health-top .ok{ color: #16a34a; }.ateam-lp .md-spark{ width: 100%; height: 46px; display: block; }.ateam-lp .md-spark polyline{ fill: none; stroke: var(--purple); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }.ateam-lp .md-spark polygon{ fill: rgba(124,77,238,0.12); stroke: none; }.ateam-lp .md-issues{ display: flex; flex-direction: column; gap: 6px; }.ateam-lp .mi{ display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--ink-2); padding: 9px 12px; background: var(--surface-2); border-radius: 8px; }.ateam-lp .mi .fx{ font-family: var(--mono); font-size: 10px; color: #16a34a; }.ateam-lp .sol-mock{ border-bottom: 1px solid var(--line); padding: 22px; min-height: 300px; background: linear-gradient(180deg, var(--p-50), #fff); }.ateam-lp .mock-chat{ display: flex; flex-direction: column; gap: 8px; }.ateam-lp .chat-head{ display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-mute); font-family: var(--mono); margin-bottom: 4px; }.ateam-lp .chat-head .wa{ width: 14px; height: 14px; border-radius: 50%; background: #25d366; }.ateam-lp .bub{ font-size: 12.5px; line-height: 1.4; padding: 10px 12px; border-radius: 12px; max-width: 80%; }.ateam-lp .bub.in{ background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }.ateam-lp .bub.out{ background: #dcf8c6; align-self: flex-end; border-bottom-right-radius: 4px; color: #14351e; }.ateam-lp .bub.slots{ display: flex; flex-direction: column; gap: 6px; background: #eaf7dd; }.ateam-lp .bub .slot{ background: #fff; border: 1px solid #c9e6b0; border-radius: 8px; padding: 6px 9px; font-size: 11.5px; color: #14351e; }.ateam-lp .bub.ok{ background: #fff; border: 1px solid var(--p-200); color: var(--ink); display: flex; flex-direction: column; gap: 2px; }.ateam-lp .bub.ok strong{ color: var(--purple); }.ateam-lp .mock-flow{ display: flex; flex-direction: column; justify-content: center; }.ateam-lp .flow-cols{ display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; }.ateam-lp .fc-src{ display: flex; flex-direction: column; gap: 7px; }.ateam-lp .src{ font-size: 11.5px; padding: 8px 10px; border-radius: 8px; background: #fff; border: 1px solid var(--line); color: var(--ink-2); display: flex; align-items: center; gap: 7px; }.ateam-lp .src.email{ color: #2a6fdb; }.ateam-lp .src.wapp{ color: #25a35a; }.ateam-lp .src.wechat{ color: #1aad19; }.ateam-lp .src .src-d{ width: 6px; height: 6px; border-radius: 50%; background: currentColor; display: inline-block; }.ateam-lp .fc-agent{ width: 62px; height: 62px; border-radius: 16px; background: linear-gradient(160deg, var(--p-500), var(--p-800)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; line-height: 1; box-shadow: 0 12px 26px -10px var(--purple-glow); margin: 0 auto; }.ateam-lp .fc-agent small{ font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }.ateam-lp .fc-out{ display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px; }.ateam-lp .fc-out .orc{ color: #c2281b; font-weight: 800; font-size: 13px; letter-spacing: 0.08em; margin-bottom: 4px; }.ateam-lp .fc-out .row{ height: 8px; border-radius: 3px; background: var(--surface-3); }.ateam-lp .fc-out .row.ok{ background: rgba(22,163,74,0.4); }.ateam-lp .flow-note{ font-family: var(--mono); font-size: 10.5px; color: var(--ink-mute); text-align: center; margin-top: 16px; letter-spacing: 0.02em; }.ateam-lp .mock-steps{ display: flex; flex-direction: column; gap: 9px; justify-content: center; }.ateam-lp .cstep{ display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: var(--ink-2); font-weight: 500; }.ateam-lp .cstep .cn{ width: 24px; height: 24px; border-radius: 7px; background: var(--p-50); color: var(--purple); display: inline-flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 12px; font-weight: 600; }.ateam-lp .cstep .ck{ margin-left: auto; width: 22px; height: 22px; border-radius: 50%; background: rgba(22,163,74,0.12); color: #16a34a; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }.ateam-lp .cstep .ck.live{ background: var(--p-50); color: var(--purple); animation: pulse 2s ease-in-out infinite; }.ateam-lp .auth-viz{ position: relative; overflow: hidden; min-height: 300px; }.ateam-lp .auth-viz .skyline{ width: 100%; height: 100%; display: block; object-fit: cover; }.ateam-lp .auth-badge{
  position: absolute; left: 24px; bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 14px; padding: 12px 16px; color: #fff;
}.ateam-lp .auth-badge .ab-ic{ width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.18); display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; font-size: 16px; }.ateam-lp .auth-badge strong{ display: block; font-size: 14px; font-weight: 600; }.ateam-lp .auth-badge span{ font-size: 11px; color: rgba(255,255,255,0.7); }.ateam-lp .framework2{ padding: 110px 0; }.ateam-lp .stat-band{
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--ink) 0%, #241d43 100%);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  position: relative; overflow: hidden;
}.ateam-lp .stat-band::before{
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 85% 50%, rgba(124,77,238,0.35), transparent 60%);
  pointer-events: none;
}.ateam-lp .sb-item{ position: relative; flex: 1 1 260px; }.ateam-lp .sb-v{ font-family: var(--serif); font-size: clamp(56px, 8vw, 88px); line-height: 0.9; color: #fff; letter-spacing: -0.03em; }.ateam-lp .sb-item:first-child .sb-v{ color: var(--p-300); }.ateam-lp .sb-l{ font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.5; margin-top: 10px; max-width: 30ch; }.ateam-lp .sb-div{ width: 1px; height: 90px; background: rgba(255,255,255,0.14); }@media (max-width: 760px){.ateam-lp .sb-div{ display: none; } }.ateam-lp .sb-src{ position: relative; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); align-self: flex-end; text-transform: uppercase; }.ateam-lp .step3-chips{ display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }.ateam-lp .step3-chips span{
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.03em;
  color: var(--ink-2); padding: 4px 9px; border-radius: 100px;
  background: var(--surface-2); border: 1px solid var(--line);
}.ateam-lp .explain{ padding: 30px 0 0; }.ateam-lp .explain-inner{
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 44px;
}@media (max-width: 900px){.ateam-lp .explain-inner{ grid-template-columns: 1fr; gap: 28px; padding: 28px; } }.ateam-lp .explain-lead{ font-size: 17px; color: var(--ink-soft); line-height: 1.6; max-width: 46ch; }.ateam-lp .explain-flow{ display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }.ateam-lp .ef{
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 18px; font-size: 14px; font-weight: 500; color: var(--ink-2);
  box-shadow: 0 8px 22px -14px rgba(70,30,160,0.2);
}.ateam-lp .ef-ic{ font-size: 16px; }.ateam-lp .ef.done{ background: var(--purple); color: #fff; border-color: var(--purple); }.ateam-lp .ea{ color: var(--p-300); font-size: 18px; }@media (max-width: 900px){.ateam-lp .explain-flow .ea{ transform: rotate(90deg); }.ateam-lp .explain-flow{ flex-direction: column; } }@media (max-width: 860px){.ateam-lp .framework2{ padding: 72px 0; }.ateam-lp .stat-band{ padding: 28px; gap: 20px; }.ateam-lp .sb-src{ align-self: flex-start; }
}.ateam-lp{ font-weight: 400; letter-spacing: -0.006em; }.ateam-lp .explain .section-tag{ color: var(--blue-600); }.ateam-lp .explain .section-tag::before{ background: var(--blue-600); }.ateam-lp .work .section-tag{ color: var(--mint); }.ateam-lp .work .section-tag::before{ background: var(--mint); }.ateam-lp .vs-grid{
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch;
  max-width: 1000px; margin: 0 auto;
}@media (max-width: 820px){.ateam-lp .vs-grid{ grid-template-columns: 1fr; gap: 16px; } }.ateam-lp .vs-card{ background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; }.ateam-lp .vs-card.plain{ background: linear-gradient(180deg, var(--blue-50), #fff); border-color: var(--blue-100); }.ateam-lp .vs-card.agent{ background: linear-gradient(180deg, var(--p-50), #fff); border-color: var(--p-200); box-shadow: 0 24px 60px -34px var(--purple-glow); }.ateam-lp .vs-head{ display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }.ateam-lp .vs-ic{ width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }.ateam-lp .vs-ic svg{ width: 22px; height: 22px; }.ateam-lp .vs-ic.blue{ background: var(--blue-100); color: var(--blue-600); }.ateam-lp .vs-ic.purple{ background: var(--p-100); color: var(--purple); }.ateam-lp .vs-kick{ font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }.ateam-lp .vs-name{ font-family: var(--serif); font-size: 22px; color: var(--ink); }.ateam-lp .vs-thread{ display: flex; flex-direction: column; gap: 8px; flex: 1; }.ateam-lp .vs-bub{ font-size: 13px; line-height: 1.45; padding: 10px 13px; border-radius: 12px; max-width: 88%; }.ateam-lp .vs-bub.in{ align-self: flex-end; background: var(--blue-600); color: #fff; border-bottom-right-radius: 4px; }.ateam-lp .vs-bub.bot{ align-self: flex-start; background: #fff; border: 1px solid var(--line); color: var(--ink-2); border-bottom-left-radius: 4px; }.ateam-lp .vs-steps{ display: flex; flex-direction: column; gap: 8px; flex: 1; }.ateam-lp .vsr{ display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: 13px; color: var(--ink-2); font-weight: 500; }.ateam-lp .vsr.done{ border-color: var(--p-200); background: #fff; }.ateam-lp .vsr-n{ width: 22px; height: 22px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 11px; font-weight: 700; color: #fff; }.ateam-lp .vsr-n.blue{ background: var(--blue-600); }.ateam-lp .vsr-n.teal{ background: var(--teal); }.ateam-lp .vsr-n.amber{ background: var(--amber); }.ateam-lp .vsr-n.green{ background: var(--mint); }.ateam-lp .vsr-ck{ margin-left: auto; color: var(--mint); font-size: 13px; }.ateam-lp .vsr-ck.live{ color: var(--purple); animation: pulse 2s ease-in-out infinite; }.ateam-lp .vs-foot{ margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 12.5px; font-weight: 500; }.ateam-lp .vs-foot.dead{ color: var(--ink-mute); }.ateam-lp .vs-foot.live{ color: var(--p-800); }.ateam-lp .vs-mid{ display: flex; align-items: center; justify-content: center; }.ateam-lp .vs-vs{ font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink-mute); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; }@media (max-width: 820px){.ateam-lp .vs-vs{ transform: rotate(90deg); } }.ateam-lp .photo-stack{ position: relative; padding: 0 0 30px; }.ateam-lp .photo-main{ display: block; width: 100%; height: 420px; border-radius: 22px; box-shadow: 0 34px 90px -44px rgba(12,10,31,0.4); }@media (max-width: 900px){.ateam-lp .photo-main{ height: 320px; } }.ateam-lp .float-card{ position: absolute; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.9); border-radius: 16px; box-shadow: 0 20px 50px -24px rgba(12,10,31,0.35); padding: 16px 18px; }.ateam-lp .fc-fail{ top: 24px; left: -18px; width: 210px; }.ateam-lp .fc-top{ display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-mute); font-family: var(--mono); letter-spacing: 0.04em; margin-bottom: 8px; }.ateam-lp .fc-dot{ width: 8px; height: 8px; border-radius: 50%; }.ateam-lp .fc-dot.red{ background: var(--coral); box-shadow: 0 0 0 4px rgba(192,57,43,0.14); }.ateam-lp .fc-big{ font-family: var(--serif); font-size: 30px; color: var(--coral); line-height: 1; }.ateam-lp .fc-sub{ font-size: 12px; color: var(--ink-soft); margin-top: 6px; line-height: 1.4; }.ateam-lp .fc-live{ bottom: 0; right: -14px; display: flex; align-items: center; gap: 12px; }.ateam-lp .fc-badge{ font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }.ateam-lp .fc-badge.green{ background: var(--mint-50); color: var(--green-600); }.ateam-lp .fc-live-copy{ font-size: 12.5px; color: var(--ink-2); line-height: 1.3; }.ateam-lp .fc-live-copy strong{ display: block; color: var(--ink); }@media (max-width: 520px){.ateam-lp .fc-fail{ left: 0; }.ateam-lp .fc-live{ right: 0; } }.ateam-lp .build-head2{ text-align: center; max-width: 640px; margin: 72px auto 40px; }.ateam-lp .build-head2 h3{ font-family: var(--serif); font-size: clamp(28px, 3.4vw, 40px); font-weight: 400; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }.ateam-lp .build-head2 h3 em{ color: var(--purple); font-style: italic; }.ateam-lp .build-head2 p{ font-size: 16px; color: var(--ink-soft); line-height: 1.55; }.ateam-lp .build-gallery .sol-mock{ min-height: 220px; display: flex; align-items: center; justify-content: center; padding: 24px; }.ateam-lp .tint-blue{ background: linear-gradient(160deg, var(--blue-50), #fff); }.ateam-lp .tint-green{ background: linear-gradient(160deg, var(--green-50), #fff); }.ateam-lp .tint-teal{ background: linear-gradient(160deg, var(--teal-2), #fff); }.ateam-lp .tint-amber{ background: linear-gradient(160deg, var(--amber-2), #fff); }.ateam-lp .tint-purple{ background: linear-gradient(160deg, var(--p-50), #fff); }.ateam-lp .tint-orb{ background: radial-gradient(circle at 50% 45%, #eef2ff, #fff 70%); flex-direction: column; gap: 14px; }.ateam-lp .sol-tag.blue{ color: var(--blue-600); }.ateam-lp .sol-tag.green{ color: var(--green-600); }.ateam-lp .sol-tag.teal{ color: var(--teal); }.ateam-lp .sol-tag.amber{ color: #8a5f10; }.ateam-lp .sol-tag.purple{ color: var(--purple); }.ateam-lp .bk-tbl{ width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; font-size: 11.5px; }.ateam-lp .bk-head{ display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; padding: 9px 12px; background: var(--blue-50); color: var(--ink-mute); font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; }.ateam-lp .bk-row{ display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; align-items: center; padding: 9px 12px; border-top: 1px solid var(--line); }.ateam-lp .bk-row b{ color: var(--ink); font-weight: 600; }.ateam-lp .bk-row small{ display: block; color: var(--ink-mute); font-size: 9.5px; }.ateam-lp .bk-row > span{ color: var(--ink-2); align-self: center; }.ateam-lp .bk-btn{ font-size: 10px; font-weight: 600; padding: 5px 12px; border-radius: 100px; color: #fff; }.ateam-lp .bk-btn.blue{ background: var(--blue-600); }.ateam-lp .orb{ width: 118px; height: 118px; border-radius: 50%; background: conic-gradient(from 180deg, #b1cdff, #c4b1ff, #a0e7c8, #ffd6a5, #b1cdff); filter: blur(2px); box-shadow: 0 20px 50px -18px rgba(124,77,238,0.4), inset 0 0 30px rgba(255,255,255,0.6); animation: orb-spin 8s linear infinite; }@keyframes orb-spin{to{ transform: rotate(360deg); } }.ateam-lp .orb-cap{ font-size: 14px; color: var(--ink-soft); font-style: italic; }.ateam-lp .pipe{ width: 100%; }.ateam-lp .pipe-top{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }.ateam-lp .pipe-top > span:first-child{ font-weight: 700; font-size: 13px; color: var(--ink); }.ateam-lp .pipe-badge{ font-family: var(--mono); font-size: 10px; color: var(--green-600); background: var(--mint-50); padding: 3px 9px; border-radius: 100px; }.ateam-lp .pipe-row{ display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; margin-bottom: 7px; }.ateam-lp .pipe-row b{ font-size: 12px; color: var(--ink); }.ateam-lp .pipe-row small{ display: block; font-size: 10px; color: var(--ink-mute); }.ateam-lp .pi-ic{ width: 26px; height: 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; flex-shrink: 0; }.ateam-lp .pi-ic.meta{ background: var(--blue-50); color: var(--blue-600); }.ateam-lp .pi-ic.land{ background: var(--p-50); color: var(--purple); }.ateam-lp .pi-ic.voice{ background: var(--mint-50); color: var(--green-600); }.ateam-lp .pi-st{ margin-left: auto; font-size: 11px; font-weight: 600; }.ateam-lp .pi-st.blue{ color: var(--blue-600); }.ateam-lp .pi-st.purple{ color: var(--purple); }.ateam-lp .pi-st.green{ color: var(--green-600); }.ateam-lp .claim-steps{ width: 100%; display: flex; flex-direction: column; gap: 8px; }.ateam-lp .clm{ display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; font-size: 12.5px; color: var(--ink-2); font-weight: 500; }.ateam-lp .clm-ic{ width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; color: #fff; }.ateam-lp .clm-ic.teal{ background: var(--teal); }.ateam-lp .clm-ic.mint{ background: var(--mint); }.ateam-lp .clm.live .clm-ic{ animation: pulse 2s ease-in-out infinite; }.ateam-lp .sup{ width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; }.ateam-lp .sup-src{ display: flex; gap: 6px; }.ateam-lp .chp{ font-size: 11px; font-weight: 600; padding: 6px 11px; border-radius: 100px; }.ateam-lp .chp.blue{ background: var(--blue-50); color: var(--blue-600); }.ateam-lp .chp.green{ background: var(--mint-50); color: var(--green-600); }.ateam-lp .chp.amber{ background: var(--amber-2); color: #8a5f10; }.ateam-lp .sup-arrow{ color: var(--ink-mute); font-size: 16px; }.ateam-lp .sup-out{ display: flex; flex-direction: column; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 22px; }.ateam-lp .sup-orc{ color: #c2281b; font-weight: 800; font-size: 15px; letter-spacing: 0.06em; }.ateam-lp .sup-ok{ font-size: 11px; color: var(--green-600); font-family: var(--mono); }.ateam-lp .rep{ width: 100%; }.ateam-lp .rep-top{ display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--ink-mute); }.ateam-lp .rep-up{ color: var(--green-600); font-weight: 700; background: var(--mint-50); padding: 2px 8px; border-radius: 100px; font-size: 11px; }.ateam-lp .rep-big{ font-family: var(--serif); font-size: 34px; color: var(--ink); letter-spacing: -0.02em; margin: 4px 0 10px; }.ateam-lp .rep-spark{ width: 100%; height: 48px; display: block; }.ateam-lp .rep-spark polyline{ fill: none; stroke: var(--purple); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }.ateam-lp .rep-spark polygon{ fill: rgba(124,77,238,0.12); stroke: none; }.ateam-lp .auth-photo{ position: relative; min-height: 100%; overflow: hidden; }.ateam-lp .auth-slot{ display: block; width: 100%; height: 100%; min-height: 340px; }@media (max-width: 860px){.ateam-lp .auth-slot{ min-height: 260px; } }.ateam-lp .why2:nth-child(1) .why2-ic{ background: var(--blue-50); color: var(--blue-600); }.ateam-lp .why2:nth-child(2) .why2-ic{ background: var(--mint-50); color: var(--green-600); }.ateam-lp .why2:nth-child(3) .why2-ic{ background: var(--amber-2); color: #8a5f10; }.ateam-lp .why2:nth-child(4) .why2-ic{ background: var(--p-50); color: var(--purple); }.ateam-lp .testimonial2{ padding: 100px 0; text-align: center; background: linear-gradient(180deg, #fbfbfd, #f4f2f9); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.ateam-lp .t2-eyebrow{ display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-bottom: 30px; }.ateam-lp .t2-eyebrow .t2-dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--purple); }.ateam-lp .t2-quote{ font-family: var(--sans); font-weight: 700; font-size: clamp(26px, 4.4vw, 52px); line-height: 1.16; letter-spacing: -0.025em; color: var(--ink); max-width: 20ch; margin: 0 auto 40px; text-wrap: balance; }.ateam-lp .t2-quote .hl{ color: var(--purple); }.ateam-lp .t2-attr{ display: inline-flex; align-items: center; gap: 14px; }.ateam-lp .t2-avatar{ display: block; width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; }.ateam-lp .t2-attr > div{ text-align: left; }.ateam-lp .t2-name{ font-size: 15px; font-weight: 700; color: var(--ink); }.ateam-lp .t2-role{ font-size: 13.5px; color: var(--ink-mute); }@media (max-width: 860px){.ateam-lp .testimonial2{ padding: 72px 0; }.ateam-lp .build-head2{ margin: 56px auto 32px; }.ateam-lp .photo-main{ height: 300px; }
}.ateam-lp .problem2, .ateam-lp .explain, .ateam-lp .how, .ateam-lp .work, .ateam-lp .authority, .ateam-lp .testimonial2, .ateam-lp .framework2{
  --mono: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
}.ateam-lp .problem2 .section-tag, .ateam-lp .explain .section-tag, .ateam-lp .how .section-tag, .ateam-lp .work .section-tag, .ateam-lp .authority .section-tag, .ateam-lp .framework2 .section-tag, .ateam-lp .md-eyebrow, .ateam-lp .md-kpi .l, .ateam-lp .md-health-top, .ateam-lp .mi .fx, .ateam-lp .bk-head, .ateam-lp .pipe-badge, .ateam-lp .sup-ok, .ateam-lp .flow-note, .ateam-lp .fc-top, .ateam-lp .fc-badge, .ateam-lp .sol-tag, .ateam-lp .vs-kick, .ateam-lp .lc-legend, .ateam-lp .lc-axisrow, .ateam-lp .step3-tag, .ateam-lp .step3-chips span, .ateam-lp .tl-time, .ateam-lp .tl-tag{
  letter-spacing: 0.02em;
  font-weight: 600;
}.ateam-lp .md-kpi .l, .ateam-lp .bk-head, .ateam-lp .flow-note, .ateam-lp .lc-axisrow{ font-size: 10.5px; }.ateam-lp .mock, .ateam-lp .sol-mock, .ateam-lp .vs-card, .ateam-lp .lifecycle{ font-feature-settings: "tnum" 1; }.ateam-lp .lifecycle{
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px 22px; box-shadow: 0 30px 80px -44px rgba(70,30,160,0.28);
}.ateam-lp .lc-head{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }.ateam-lp .lc-title{ font-size: 14px; font-weight: 700; color: var(--ink); }.ateam-lp .lc-legend{ display: flex; gap: 14px; }.ateam-lp .lc-legend .lg{ font-size: 11px; color: var(--ink-mute); display: inline-flex; align-items: center; gap: 6px; }.ateam-lp .lc-legend .lg::before{ content: ''; width: 14px; height: 3px; border-radius: 2px; background: var(--line-strong); }.ateam-lp .lc-legend .lg.purple::before{ background: var(--purple); }.ateam-lp .lc-chart{ position: relative; margin-top: 8px; }.ateam-lp .lc-svg{ width: 100%; height: 240px; display: block; overflow: visible; }.ateam-lp .lc-axis{ stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 4; }.ateam-lp .lc-typ{ fill: none; stroke: #c7c2d6; stroke-width: 2.4; stroke-linecap: round; }.ateam-lp .lc-ours{ fill: none; stroke: var(--purple); stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 6px 10px rgba(124,77,238,0.25)); }.ateam-lp .lc-ours-fill{ fill: url(#none); fill: rgba(124,77,238,0.07); stroke: none; }.ateam-lp .lc-peak{ fill: #fff; stroke: #c7c2d6; stroke-width: 2.5; }.ateam-lp .lc-crash{ fill: var(--coral); }.ateam-lp .lc-live{ fill: var(--purple); stroke: #fff; stroke-width: 2.5; }.ateam-lp .lc-ann{ position: absolute; font-size: 11px; font-weight: 700; color: var(--ink); line-height: 1.15; }.ateam-lp .lc-ann small{ display: block; font-size: 10px; font-weight: 500; color: var(--ink-mute); margin-top: 2px; }.ateam-lp .lc-ann.demo{ top: 2%; left: 40%; transform: translateX(-50%); text-align: center; }.ateam-lp .lc-ann.crash{ top: 60%; left: 60%; color: var(--coral); }.ateam-lp .lc-ann.crash small{ color: var(--ink-mute); }.ateam-lp .lc-ann.live{ top: 2%; right: 0; text-align: right; color: var(--purple); }.ateam-lp .lc-axisrow{ display: flex; justify-content: space-between; margin-top: 6px; font-size: 10.5px; color: var(--ink-mute); }@media (max-width: 520px){.ateam-lp .lc-ann{ font-size: 10px; }.ateam-lp .lc-svg{ height: 200px; } }.ateam-lp .impact{ padding: 120px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.ateam-lp .impact .section-tag{ color: var(--purple); }.ateam-lp .impact .section-tag::before{ background: var(--purple); }.ateam-lp .impact-metrics{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }@media (max-width: 900px){.ateam-lp .impact-metrics{ grid-template-columns: 1fr 1fr; } }@media (max-width: 520px){.ateam-lp .impact-metrics{ grid-template-columns: 1fr; } }.ateam-lp .im-metric{ background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }.ateam-lp .im-metric:hover{ transform: translateY(-4px); box-shadow: 0 24px 60px -34px rgba(70,30,160,0.24); }.ateam-lp .im-v{ font-family: var(--serif); font-size: clamp(40px, 5vw, 58px); line-height: 0.95; letter-spacing: -0.03em; }.ateam-lp .im-v.purple{ color: var(--purple); }.ateam-lp .im-v.blue{ color: var(--blue-600); }.ateam-lp .im-v.teal{ color: var(--teal); }.ateam-lp .im-v.green{ color: var(--green-600); }.ateam-lp .im-l{ font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 10px; }.ateam-lp .im-c{ font-size: 12.5px; color: var(--ink-mute); margin-top: 6px; line-height: 1.4; }.ateam-lp .cases2{ display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }.ateam-lp .case2{
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}.ateam-lp .case2:hover{ transform: translateY(-3px); border-color: var(--p-200); box-shadow: 0 30px 80px -40px rgba(70,30,160,0.24); }@media (max-width: 860px){.ateam-lp .case2{ grid-template-columns: 1fr; } }.ateam-lp .case2-side{ padding: 34px 36px; }@media (max-width: 520px){.ateam-lp .case2-side{ padding: 26px 24px; } }.ateam-lp .case2-tag{ display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }.ateam-lp .case2-tag.purple{ background: var(--p-50); color: var(--purple); }.ateam-lp .case2-tag.teal{ background: var(--teal-2); color: #0a8c7e; }.ateam-lp .case2-tag.amber{ background: var(--amber-2); color: #8a5f10; }.ateam-lp .case2-h{ font-family: var(--serif); font-size: clamp(23px, 2.6vw, 30px); font-weight: 400; letter-spacing: -0.02em; color: var(--ink); line-height: 1.15; margin-bottom: 16px; }.ateam-lp .case2-mess, .ateam-lp .case2-fix{ font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 12px; }.ateam-lp .case2-mess .lbl{ color: var(--coral); font-weight: 700; }.ateam-lp .case2-fix .lbl{ color: var(--purple); font-weight: 700; }.ateam-lp .case2-proof{ background: linear-gradient(180deg, var(--surface-2), #fff); border-left: 1px solid var(--line); padding: 34px 32px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }@media (max-width: 860px){.ateam-lp .case2-proof{ border-left: none; border-top: 1px solid var(--line); } }.ateam-lp .ba-row{ display: flex; align-items: center; gap: 14px; }.ateam-lp .ba{ flex: 1; text-align: center; padding: 16px 10px; border-radius: 14px; background: #fff; border: 1px solid var(--line); }.ateam-lp .ba-k{ font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }.ateam-lp .ba-v{ font-family: var(--serif); font-size: 36px; line-height: 1; letter-spacing: -0.02em; color: var(--ink-2); }.ateam-lp .ba-s{ font-size: 11.5px; color: var(--ink-mute); margin-top: 6px; }.ateam-lp .ba.before .ba-v{ color: var(--coral); }.ateam-lp .ba.after{ border-color: var(--p-200); background: var(--p-50); }.ateam-lp .ba.after.purple .ba-v{ color: var(--purple); }.ateam-lp .ba.after.teal{ border-color: #9fe3d8; background: var(--teal-2); }.ateam-lp .ba.after.teal .ba-v{ color: #0a8c7e; }.ateam-lp .ba.after.amber{ border-color: #f2d99a; background: var(--amber-2); }.ateam-lp .ba.after.amber .ba-v{ color: #8a5f10; }.ateam-lp .ba-arrow{ color: var(--p-300); flex-shrink: 0; }.ateam-lp .ba-arrow svg{ width: 26px; height: 26px; }.ateam-lp .ba-bar{ height: 8px; border-radius: 100px; background: var(--surface-3); overflow: hidden; }.ateam-lp .ba-fill{ height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--p-400), var(--p-700)); transform: scaleX(0); transform-origin: left; }.ateam-lp .ba-bar.teal .ba-fill{ background: linear-gradient(90deg, #34c6b4, #0a8c7e); }.ateam-lp .ba-bar.amber .ba-fill{ background: linear-gradient(90deg, #eec14e, #c8901a); }.ateam-lp .case2.viz-in .ba-fill, .ateam-lp .impact .im-metric.reveal.in ~ * .ba-fill{ animation: growX 1s var(--ease) 0.2s forwards; }.ateam-lp .case2.viz-in .ba-fill{ animation: growX 1s var(--ease) 0.2s forwards; }.ateam-lp .ba-foot{ font-size: 13px; color: var(--ink-soft); line-height: 1.5; }.ateam-lp .ba-foot strong{ color: var(--ink); font-weight: 700; }.ateam-lp .impact-note{ display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 26px; font-size: 13px; color: var(--ink-mute); text-align: center; }.ateam-lp .in-dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }@media (max-width: 860px){.ateam-lp .impact{ padding: 80px 0; } }:root{ --violet: #7c2ce6; }.ateam-lp .build-head2 h3{ font-weight: 800; }.ateam-lp .build-head2 h3 em{
  font-style: normal; color: var(--violet); font-weight: 800;
  background: linear-gradient(180deg, transparent 62%, rgba(124,44,230,0.18) 62%);
  padding: 0 2px;
}.ateam-lp .case2-h{
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 29px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.12;
}.ateam-lp .case2-side{ position: relative; }.ateam-lp .case2-side::before{
  content: ''; position: absolute; left: 0; top: 34px; width: 4px; height: 30px;
  border-radius: 0 4px 4px 0; background: var(--violet);
}.ateam-lp .case2:nth-child(2) .case2-side::before{ background: var(--teal); }.ateam-lp .case2:nth-child(3) .case2-side::before{ background: var(--amber); }@media (max-width: 520px){.ateam-lp .case2-side::before{ top: 26px; } }.ateam-lp #why{ padding-top: 110px; }.ateam-lp .why2{ padding: 34px 28px; }.ateam-lp .why2-ic{ width: 56px; height: 56px; border-radius: 15px; margin-bottom: 22px; }.ateam-lp .why2-ic svg{ width: 28px; height: 28px; }.ateam-lp .why2 h3{
  font-family: var(--sans);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.22;
  margin-bottom: 10px;
}.ateam-lp .why2 p{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.62; }.ateam-lp .why2:hover{ box-shadow: 0 28px 64px -30px var(--purple-glow); }.ateam-lp .section-h2 em{ color: var(--violet); }.ateam-lp .t2-quote .hl{ color: var(--violet); }.ateam-lp .t2-quote{ max-width: 22ch; }.ateam-lp .stack-why{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }.ateam-lp .stack-why .sw{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px; border-radius: 100px;
}.ateam-lp .stack-why .sw::before{ content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--p-300); }.ateam-lp .trust-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; }@media (max-width: 900px){.ateam-lp .trust-grid{ grid-template-columns: 1fr 1fr; } }@media (max-width: 560px){.ateam-lp .trust-grid{ grid-template-columns: 1fr; } }.ateam-lp .trust-cell{
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s var(--ease);
}.ateam-lp .trust-cell:last-child{ border-right: none; }@media (max-width: 900px){.ateam-lp .trust-cell:nth-child(2n){ border-right: none; }.ateam-lp .trust-cell:nth-child(-n+2){ border-bottom: 1px solid var(--line); }
}@media (max-width: 560px){.ateam-lp .trust-cell{ border-right: none; border-bottom: 1px solid var(--line); }.ateam-lp .trust-cell:last-child{ border-bottom: none; }
}.ateam-lp .trust-cell:hover{ background: var(--bg-soft); }.ateam-lp .tc-fig{
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}.ateam-lp .tc-fig span{ font-size: 0.5em; vertical-align: super; margin-left: 2px; }.ateam-lp .tc-fig.purple{ color: var(--violet); }.ateam-lp .tc-fig.teal{ color: var(--teal); }.ateam-lp .tc-fig.amber{ color: #c8901a; }.ateam-lp .tc-fig.blue{ color: var(--blue-600); }.ateam-lp .trust-cell h3{ font-family: var(--sans); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; line-height: 1.2; }.ateam-lp .trust-cell p{ font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }.ateam-lp .how-layout{ display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }@media (max-width: 940px){.ateam-lp .how-layout{ grid-template-columns: 1fr; gap: 40px; } }.ateam-lp .how-steps{ position: relative; display: flex; flex-direction: column; gap: 8px; }.ateam-lp .hstep{ display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 8px 0; position: relative; }.ateam-lp .hstep-rail{ position: relative; display: flex; justify-content: center; }.ateam-lp .hstep-num{
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line-strong); z-index: 2;
  transition: all 0.4s var(--ease);
}.ateam-lp .hstep-num.accent{ background: var(--violet); border-color: var(--violet); color: #fff; box-shadow: 0 8px 22px -8px var(--purple-glow); }.ateam-lp .hstep:not(:last-child) .hstep-rail::after{
  content: ''; position: absolute; top: 44px; bottom: -8px; left: 50%;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--line-strong), var(--line));
}.ateam-lp .hstep-body{ padding-bottom: 20px; }.ateam-lp .hstep-time{ font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); margin-bottom: 6px; }.ateam-lp .hstep-title{ font-family: var(--sans); font-weight: 800; font-size: clamp(19px, 2.1vw, 23px); letter-spacing: -0.02em; color: var(--ink); line-height: 1.2; margin-bottom: 8px; }.ateam-lp .hstep-desc{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.62; max-width: 42ch; }.ateam-lp .how-proof{ position: relative; }.ateam-lp .how-proof-cap{ font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; text-align: center; }.ateam-lp .how-proof-cap strong{ color: var(--violet); font-weight: 700; }.ateam-lp .how-proof .mock-dash{ box-shadow: 0 40px 100px -44px rgba(70,30,160,0.35); }@media (max-width: 940px){.ateam-lp .how-proof-cap{ text-align: left; } }.ateam-lp .md-roi{ background: linear-gradient(120deg, var(--p-50), #fff); border: 1px solid var(--p-100); border-radius: 12px; padding: 14px 16px; margin-bottom: 14px; }.ateam-lp .md-roi .roi-l{ font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); }.ateam-lp .md-roi .roi-v{ font-family: var(--serif); font-size: 30px; color: var(--ink); letter-spacing: -0.02em; margin-top: 3px; display: flex; align-items: baseline; gap: 8px; }.ateam-lp .md-roi .roi-up{ font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--green-600); background: var(--mint-50); padding: 2px 8px; border-radius: 100px; }.ateam-lp .mi .fx.to-human{ color: var(--blue-600); }.ateam-lp .proof-photo{ position: relative; }.ateam-lp .proof-slot{ display: block; width: 100%; height: 380px; border-radius: 20px; box-shadow: 0 36px 90px -44px rgba(12,10,31,0.42); }@media (max-width: 940px){.ateam-lp .proof-slot{ height: 320px; } }.ateam-lp .proof-badge{ position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-radius: 100px; padding: 7px 14px 7px 8px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); box-shadow: 0 10px 24px -14px rgba(12,10,31,0.4); }.ateam-lp .pb-live{ display: inline-flex; align-items: center; gap: 6px; background: var(--mint-50); color: var(--green-600); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }.ateam-lp .pb-live .ld{ width: 6px; height: 6px; border-radius: 50%; background: var(--green-600); animation: pulse 2s ease-in-out infinite; }.ateam-lp .proof-roi{ position: absolute; bottom: -18px; right: -14px; background: #fff; border: 1px solid var(--p-100); border-radius: 16px; padding: 16px 20px; box-shadow: 0 26px 56px -24px var(--purple-glow); max-width: 260px; }.ateam-lp .pr-l{ font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); }.ateam-lp .pr-v{ font-family: var(--serif); font-size: 30px; color: var(--ink); letter-spacing: -0.02em; margin: 4px 0; display: flex; align-items: baseline; gap: 8px; }.ateam-lp .pr-up{ font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--green-600); background: var(--mint-50); padding: 2px 8px; border-radius: 100px; }.ateam-lp .pr-sub{ font-size: 12px; color: var(--ink-soft); }@media (max-width: 520px){.ateam-lp .proof-roi{ right: 0; max-width: 220px; } }.ateam-lp .proof-hero{ position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 36px 90px -44px rgba(12,10,31,0.45); aspect-ratio: 3 / 2.5; }@media (max-width: 940px){.ateam-lp .proof-hero{ aspect-ratio: 3 / 2; } }.ateam-lp .proof-hero-img{ display: block; width: 100%; height: 100%; }.ateam-lp .proof-hero-overlay{ position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,10,31,0.42) 0%, rgba(12,10,31,0.15) 40%, rgba(12,10,31,0.75) 100%); }.ateam-lp .proof-hero-title{ position: absolute; top: 26px; left: 26px; right: 26px; }.ateam-lp .ph-live{ display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.16); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }.ateam-lp .ph-live .ld{ width: 6px; height: 6px; border-radius: 50%; background: #4be0a0; box-shadow: 0 0 0 3px rgba(75,224,160,0.3); animation: pulse 2s ease-in-out infinite; }.ateam-lp .proof-hero-title h3{ font-family: var(--sans); font-weight: 800; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.03em; line-height: 1.08; color: #fff; }.ateam-lp .proof-hero-strip{ position: absolute; left: 20px; right: 20px; bottom: 20px; background: rgba(255,255,255,0.12); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 16px 18px; }.ateam-lp .phs-label{ font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 10px; }.ateam-lp .phs-metrics{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }.ateam-lp .phs{ display: flex; flex-direction: column; }.ateam-lp .phs .v{ font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); line-height: 1; color: #fff; letter-spacing: -0.02em; }.ateam-lp .phs .l{ font-size: 11px; color: rgba(255,255,255,0.72); margin-top: 5px; line-height: 1.3; }@media (max-width: 400px){.ateam-lp .phs .l{ font-size: 10px; } }.ateam-lp .t2-slider{ background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 48px 44px; box-shadow: 0 30px 80px -46px rgba(70,30,160,0.25); }@media (max-width: 640px){.ateam-lp .t2-slider{ padding: 32px 22px; } }.ateam-lp .t2-slide{ padding: 0 4px; }.ateam-lp .t2-quote::before{ content: '\201C'; display: block; font-family: var(--serif); font-size: 60px; line-height: 0.5; color: var(--p-200); margin-bottom: 18px; }.ateam-lp .t2-nav{ margin-top: 28px; }.ateam-lp .faq-q{ font-family: var(--sans) !important; font-weight: 700 !important; font-size: 17.5px !important; letter-spacing: -0.015em; color: var(--ink); }.ateam-lp .faq-a{ font-family: var(--sans); font-size: 15px; }.ateam-lp .case2-side::before{ display: none; }.ateam-lp .case2-h{
  position: relative;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(21px, 2.4vw, 27px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.18;
  padding-bottom: 14px;
  margin-bottom: 16px;
}.ateam-lp .case2-h::after{
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 48px; height: 4px; border-radius: 100px;
  background: var(--violet);
}.ateam-lp .case2:nth-child(1) .case2-h::after{ background: var(--violet); }.ateam-lp .case2:nth-child(2) .case2-h::after{ background: var(--teal); }.ateam-lp .case2:nth-child(3) .case2-h::after{ background: var(--amber); }.ateam-lp .h2-sans{ font-family: var(--sans) !important; font-weight: 800 !important; letter-spacing: -0.03em !important; line-height: 1.08 !important; }.ateam-lp .h2-sans em{ font-family: var(--sans); font-weight: 800; font-style: normal; color: var(--violet); }.ateam-lp .reality{ background: linear-gradient(135deg, #14102b 0%, #241a48 100%); border-radius: var(--r-xl); padding: 48px; position: relative; overflow: hidden; }@media (max-width: 640px){.ateam-lp .reality{ padding: 30px 24px; } }.ateam-lp .reality::before{ content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 90% 20%, rgba(124,44,230,0.35), transparent 60%); pointer-events: none; }.ateam-lp .reality-head{ position: relative; margin-bottom: 28px; }.ateam-lp .reality-h{ font-family: var(--sans); font-weight: 800; font-size: clamp(22px, 3vw, 32px); letter-spacing: -0.03em; color: #fff; line-height: 1.12; max-width: 22ch; margin-top: 12px; }.ateam-lp .reality-cards{ position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }@media (max-width: 640px){.ateam-lp .reality-cards{ grid-template-columns: 1fr; } }.ateam-lp .rcard{ background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); padding: 24px; }.ateam-lp .rcard.warn{ border-color: rgba(192,57,43,0.4); }.ateam-lp .rcard.good{ border-color: rgba(15,122,79,0.4); }.ateam-lp .rc-top{ display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 14px; }.ateam-lp .rc-ic{ width: 26px; height: 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }.ateam-lp .rc-ic svg{ width: 15px; height: 15px; }.ateam-lp .rc-ic.warn{ background: rgba(192,57,43,0.18); color: #ff8a75; }.ateam-lp .rc-ic.good{ background: rgba(15,122,79,0.18); color: #4be0a0; }.ateam-lp .rc-v{ font-family: var(--serif); font-size: clamp(56px, 8vw, 78px); line-height: 0.9; letter-spacing: -0.04em; color: #fff; margin-bottom: 12px; }.ateam-lp .rcard.warn .rc-v{ color: #ff8a75; }.ateam-lp .rcard.good .rc-v{ color: #4be0a0; }.ateam-lp .rc-l{ font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.55; }.ateam-lp .reality-foot{ position: relative; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 14.5px; color: #fff; font-weight: 600; }.ateam-lp .reality-foot .src{ display: block; margin-top: 6px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }.ateam-lp .compare-title.good{ color: var(--green-600); }.ateam-lp .reality2{ display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: center; padding: 4px 0 14px; }@media (max-width: 820px){.ateam-lp .reality2{ grid-template-columns: 1fr; gap: 20px; } }.ateam-lp .r2-h{ font-family: var(--sans); font-weight: 800; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.03em; color: var(--ink); line-height: 1.12; margin-top: 10px; max-width: 16ch; }.ateam-lp .r2-stats{ display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }@media (max-width: 480px){.ateam-lp .r2-stats{ grid-template-columns: 1fr; gap: 20px; } }.ateam-lp .r2-stat{ border-left: 3px solid var(--line-strong); padding-left: 18px; }.ateam-lp .r2-stat:first-child{ border-left-color: var(--coral); }.ateam-lp .r2-stat:last-child{ border-left-color: var(--mint); }.ateam-lp .r2-v{ font-family: var(--serif); font-size: clamp(48px, 6vw, 64px); line-height: 0.9; letter-spacing: -0.04em; }.ateam-lp .r2-v.warn{ color: var(--coral); }.ateam-lp .r2-v.good{ color: var(--green-600); }.ateam-lp .r2-l{ font-size: 14px; color: var(--ink-soft); line-height: 1.45; margin-top: 8px; max-width: 24ch; }.ateam-lp .r2-src{ font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.04em; margin-top: 8px; }.ateam-lp .compare-col.old{ background: var(--bg-soft); border-color: var(--line); }.ateam-lp .compare-col.old .compare-title{ color: var(--ink-mute); }.ateam-lp .ch-badge{ display: inline-flex; align-items: center; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }.ateam-lp .ch-badge.bad{ background: var(--coral-2); color: var(--coral); }.ateam-lp .ch-badge.good{ background: var(--mint-50); color: var(--green-600); }.ateam-lp .compare-col.new{ background: linear-gradient(180deg, #fff, var(--p-50)); border-color: var(--p-200); box-shadow: 0 30px 70px -40px var(--purple-glow); }.ateam-lp .t2-slider{ overflow: hidden; max-width: 900px; margin: 0 auto; } .ateam-lp .t2-track { display: flex;  }.ateam-lp .t2-slide{ min-width: 100%; padding: 0 8px; text-align: center; }.ateam-lp .t2-quote{ font-family: var(--sans); font-weight: 700; font-size: clamp(20px, 3vw, 34px); line-height: 1.24; letter-spacing: -0.02em; color: var(--ink); max-width: 24ch; margin: 0 auto 32px; text-wrap: balance; }.ateam-lp .t2-quote .hl{ color: var(--violet); }.ateam-lp .t2-attr{ display: inline-flex; align-items: center; gap: 13px; }.ateam-lp .t2-avatar{ display: block; width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0; }.ateam-lp .t2-attr > div{ text-align: left; }.ateam-lp .t2-name{ font-size: 14.5px; font-weight: 700; color: var(--ink); }.ateam-lp .t2-role{ font-size: 13px; color: var(--ink-mute); }.ateam-lp .t2-nav{ display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 36px; }.ateam-lp .t2-arrow{ width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }.ateam-lp .t2-arrow svg{ width: 15px; height: 15px; }.ateam-lp .t2-arrow:hover{ background: var(--violet); border-color: var(--violet); color: #fff; }.ateam-lp .t2-dots{ display: flex; gap: 8px; }.ateam-lp .t2-dots button{ width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--line-strong); cursor: pointer; transition: all 0.2s; padding: 0; }.ateam-lp .t2-dots button.active{ background: var(--violet); width: 24px; border-radius: 100px; }.ateam-lp .hero-visual{ position: relative; aspect-ratio: 1 / 0.92; }@media (max-width: 1000px){.ateam-lp .hero-visual{ aspect-ratio: 1 / 0.8; } }.ateam-lp .hv2-mesh{ position: absolute; inset: 6% 6% 6% 6%; border-radius: 50%; background: radial-gradient(circle at 55% 45%, rgba(124,44,230,0.20), rgba(180,155,251,0.10) 45%, transparent 70%); filter: blur(26px); animation: mesh-drift 16s ease-in-out infinite alternate; }@keyframes mesh-drift{0%{ transform: scale(1) translate(0,0);}100%{ transform: scale(1.08) translate(10px,-8px);} }.ateam-lp .hv2-flow{ position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }.ateam-lp .hv2-flow .fl{ fill: none; stroke: var(--line-strong); stroke-width: 2; stroke-dasharray: 5 6; opacity: 0.7; }.ateam-lp .hv2-flow .fl.out{ stroke: var(--violet); opacity: 0.55; }.ateam-lp .hv2-flow .fl-dot{ fill: var(--p-400); }.ateam-lp .hv2-flow .fl-dot.out{ fill: var(--violet); }.ateam-lp .hv2-src{ position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px 14px 10px 10px; box-shadow: 0 16px 34px -20px rgba(12,10,31,0.28); animation: floaty 6s ease-in-out infinite; }.ateam-lp .src-a{ top: 6%; left: 0; }.ateam-lp .src-b{ top: 43%; left: -4%; animation-delay: 1s; }.ateam-lp .src-c{ bottom: 8%; left: 2%; animation-delay: 2s; }@keyframes floaty{0%,100%{ transform: translateY(0);}50%{ transform: translateY(-7px);} }.ateam-lp .hv2-ic{ width: 38px; height: 38px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }.ateam-lp .hv2-ic svg{ width: 22px; height: 22px; }.ateam-lp .hv2-ic.wa{ background: #25d366; }.ateam-lp .hv2-ic.em{ background: #2a6fdb; }.ateam-lp .hv2-ic.ph{ background: #16a34a; }.ateam-lp .hv2-src .t{ font-size: 13px; font-weight: 700; color: var(--ink); }.ateam-lp .hv2-src .s{ font-size: 11.5px; color: var(--ink-mute); }.ateam-lp .hv2-hub{ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 4; width: 128px; height: 128px; display: flex; align-items: center; justify-content: center; }.ateam-lp .hub-rings span{ position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--p-300); opacity: 0; animation: hubring 3s ease-out infinite; }.ateam-lp .hub-rings span:last-child{ animation-delay: 1.5s; }@keyframes hubring{0%{ transform: scale(0.7); opacity: 0.7; }100%{ transform: scale(1.5); opacity: 0; } }.ateam-lp .hub-core{ width: 108px; height: 108px; border-radius: 50%; background: linear-gradient(160deg, var(--p-500), var(--p-800)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; box-shadow: 0 24px 54px -18px var(--purple-glow), inset 0 2px 0 rgba(255,255,255,0.25); }.ateam-lp .hub-ai{ font-family: var(--sans); font-weight: 800; font-size: 34px; letter-spacing: -0.03em; line-height: 1; }.ateam-lp .hub-status{ font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 5px; min-height: 12px; }.ateam-lp .hub-status::after{ content: ''; }.ateam-lp .hv2-result{ position: absolute; z-index: 5; top: 42%; right: -2%; display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--p-100); border-radius: 16px; padding: 14px 16px; box-shadow: 0 22px 50px -22px var(--purple-glow); max-width: 230px; animation: floaty 7s ease-in-out infinite reverse; transition: opacity 0.3s; }.ateam-lp .res-ic{ width: 34px; height: 34px; border-radius: 50%; background: var(--mint-50); color: var(--green-600); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }.ateam-lp .res-ic svg{ width: 18px; height: 18px; }.ateam-lp .res-t{ font-size: 13.5px; font-weight: 700; color: var(--ink); }.ateam-lp .res-s{ font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; line-height: 1.35; }.ateam-lp .hv2-result.swap{ opacity: 0; transform: translateY(6px); }@media (max-width: 520px){.ateam-lp .hv2-src .s{ display: none; }.ateam-lp .hv2-result{ max-width: 190px; right: 0; }.ateam-lp .hub-core{ width: 92px; height: 92px; }.ateam-lp .hv2-hub{ width: 108px; height: 108px; }
}.ateam-lp .vs-card.agent .vsr{ opacity: 0.45; transform: translateX(-4px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s; }.ateam-lp .vs-card.agent .vsr .vsr-ck{ opacity: 0; transform: scale(0.4); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }.ateam-lp .vs-card.agent.in .vsr{ opacity: 1; transform: translateX(0); }.ateam-lp .vs-card.agent.in .vsr:nth-child(1){ transition-delay: 0.2s; }.ateam-lp .vs-card.agent.in .vsr:nth-child(2){ transition-delay: 0.7s; }.ateam-lp .vs-card.agent.in .vsr:nth-child(3){ transition-delay: 1.2s; }.ateam-lp .vs-card.agent.in .vsr:nth-child(4){ transition-delay: 1.7s; }.ateam-lp .vs-card.agent.in .vsr .vsr-ck{ opacity: 1; transform: scale(1); }.ateam-lp .vs-card.agent.in .vsr:nth-child(1) .vsr-ck{ transition-delay: 0.5s; }.ateam-lp .vs-card.agent.in .vsr:nth-child(2) .vsr-ck{ transition-delay: 1.0s; }.ateam-lp .vs-card.agent.in .vsr:nth-child(3) .vsr-ck{ transition-delay: 1.5s; }.ateam-lp .vs-card.agent.in .vsr:nth-child(4) .vsr-ck{ transition-delay: 2.0s; }.ateam-lp .vs-card.agent.in .vsr.done{ border-color: var(--p-200); background: var(--p-50); }.ateam-lp .vs-foot.live{ opacity: 0; transition: opacity 0.5s var(--ease) 2.3s; }.ateam-lp .vs-card.agent.in .vs-foot.live{ opacity: 1; }.ateam-lp .vs-scene{ flex: 1; display: flex; flex-direction: column; gap: 8px; min-height: 210px; background: linear-gradient(180deg, #ece7f6, #fff); border-radius: 14px; padding: 14px; position: relative; }.ateam-lp .sc-thread{ display: flex; flex-direction: column; gap: 8px; }.ateam-lp .sc-msg{ font-size: 13px; line-height: 1.4; padding: 9px 12px; border-radius: 12px; max-width: 85%; opacity: 0; transform: translateY(8px); animation: scIn 0.4s var(--ease) forwards; }@keyframes scIn{to{ opacity: 1; transform: translateY(0); } }.ateam-lp .sc-msg.in{ align-self: flex-start; background: #fff; border: 1px solid var(--line); color: var(--ink-2); border-bottom-left-radius: 4px; }.ateam-lp .sc-msg.out{ align-self: flex-end; background: var(--violet); color: #fff; border-bottom-right-radius: 4px; }.ateam-lp .sc-msg.slots{ align-self: flex-end; background: #fff; border: 1px solid var(--p-200); color: var(--ink-2); display: flex; flex-direction: column; gap: 5px; max-width: 92%; }.ateam-lp .sc-msg.slots .s{ background: var(--p-50); border-radius: 7px; padding: 5px 9px; font-size: 12px; display: flex; justify-content: space-between; align-items: center; }.ateam-lp .sc-msg.slots .s.pick{ background: var(--violet); color: #fff; }.ateam-lp .sc-msg.ok{ align-self: flex-end; background: var(--mint-50); border: 1px solid #b6ead0; color: #0c6b4a; display: flex; flex-direction: column; gap: 2px; }.ateam-lp .sc-msg.ok strong{ display: flex; align-items: center; gap: 6px; color: var(--green-600); }.ateam-lp .sc-work{ display: flex; align-items: center; gap: 9px; align-self: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px; font-size: 12px; color: var(--ink-soft); margin-top: 2px; opacity: 0; transition: opacity 0.3s; }.ateam-lp .sc-work.show{ opacity: 1; }.ateam-lp .sc-spin{ width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--p-200); border-top-color: var(--violet); animation: spin 0.7s linear infinite; }@keyframes spin{to{ transform: rotate(360deg); } }.ateam-lp .reality2{ display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; padding: 8px 0 16px; }@media (max-width: 820px){.ateam-lp .reality2{ grid-template-columns: 1fr; gap: 28px; } }.ateam-lp .r2-h{ font-family: var(--sans); font-weight: 800; font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.03em; color: var(--ink); line-height: 1.1; margin-top: 12px; max-width: 20ch; }.ateam-lp .r2-p{ font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; margin-top: 14px; max-width: 46ch; }.ateam-lp .r2-stats{ display: grid; grid-template-columns: 1fr; gap: 14px; }.ateam-lp .r2-stat{ display: flex; align-items: center; gap: 20px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px; border-left-width: 4px; }.ateam-lp .r2-stat:first-child{ border-left-color: var(--coral); }.ateam-lp .r2-stat:last-child{ border-left-color: var(--mint); }.ateam-lp .r2-v{ font-family: var(--serif); font-size: clamp(46px, 6vw, 60px); line-height: 0.85; letter-spacing: -0.04em; flex-shrink: 0; }.ateam-lp .r2-v span{ font-size: 0.5em; vertical-align: super; }.ateam-lp .r2-v.warn{ color: var(--coral); }.ateam-lp .r2-v.good{ color: var(--green-600); }.ateam-lp .r2-l{ font-size: 14.5px; color: var(--ink-2); line-height: 1.4; font-weight: 500; }.ateam-lp .r2-src{ font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.04em; margin-top: 14px; text-align: right; }@media (max-width: 820px){.ateam-lp .r2-src{ text-align: left; } }.ateam-lp .compare-col.old{ background: #f4f2f6; border-color: #e4e0ec; }.ateam-lp .compare-col.old .compare-list li{ color: var(--ink-mute); }.ateam-lp .compare-col.old .compare-list li strong{ color: var(--ink-soft); }.ateam-lp .compare-col.old .compare-title{ color: #a29db3; }.ateam-lp .compare-col.new{ background: linear-gradient(180deg, #fff, #f3ecff); border: 1.5px solid var(--p-300); box-shadow: 0 34px 80px -40px var(--purple-glow); }.ateam-lp .compare-col.new .compare-list li{ color: var(--ink-2); }.ateam-lp .c2scene{ border-radius: 14px; padding: 18px; margin-bottom: 18px; border: 1px solid var(--line); }.ateam-lp .c2scene.claims{ background: linear-gradient(160deg, var(--p-50), #fff); display: flex; align-items: center; gap: 14px; }.ateam-lp .c2s-doc{ width: 46px; height: 58px; background: #fff; border: 1px solid var(--p-200); border-radius: 6px; padding: 9px 7px; display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }.ateam-lp .c2s-line{ height: 4px; border-radius: 2px; background: var(--p-200); }.ateam-lp .c2s-line.w1{ width: 100%; }.ateam-lp .c2s-line.w2{ width: 70%; }.ateam-lp .c2s-line.w3{ width: 85%; }.ateam-lp .c2s-checks{ display: flex; flex-direction: column; gap: 5px; flex: 1; }.ateam-lp .c2s-chk{ font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 6px; }.ateam-lp .c2s-chk.ok{ background: var(--mint-50); color: var(--green-600); }.ateam-lp .c2s-chk.flag{ background: var(--blue-50); color: var(--blue-600); }.ateam-lp .c2s-out{ align-self: center; font-family: var(--sans); font-weight: 800; font-size: 13px; padding: 8px 14px; border-radius: 100px; flex-shrink: 0; }.ateam-lp .c2s-out.purple{ background: var(--violet); color: #fff; }.ateam-lp .c2scene.booking{ background: linear-gradient(160deg, var(--teal-2), #fff); display: flex; align-items: center; gap: 16px; }.ateam-lp .c2s-chat{ display: flex; flex-direction: column; gap: 5px; flex: 1; }.ateam-lp .c2s-bub{ font-size: 11px; padding: 5px 9px; border-radius: 9px; max-width: 82%; }.ateam-lp .c2s-bub.in{ align-self: flex-start; background: #fff; border: 1px solid var(--line); color: var(--ink-2); }.ateam-lp .c2s-bub.out{ align-self: flex-end; background: #0a8c7e; color: #fff; }.ateam-lp .c2s-bub.ok{ align-self: flex-end; background: var(--mint-50); color: var(--green-600); font-weight: 700; border: 1px solid #b6ead0; }.ateam-lp .c2s-clock{ text-align: center; flex-shrink: 0; }.ateam-lp .c2s-24{ display: block; font-family: var(--sans); font-weight: 800; font-size: 24px; color: #0a8c7e; letter-spacing: -0.03em; }.ateam-lp .c2s-cl{ font-size: 10px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; }.ateam-lp .c2scene.supply{ background: linear-gradient(160deg, var(--amber-2), #fff); display: flex; align-items: center; gap: 12px; }.ateam-lp .c2s-srcs{ display: grid; grid-template-columns: 1fr 1fr; gap: 5px; flex: 1; }.ateam-lp .c2s-src{ font-size: 10.5px; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 5px 8px; text-align: center; }.ateam-lp .c2s-merge{ font-size: 20px; color: #c8901a; flex-shrink: 0; }.ateam-lp .c2s-erp{ flex-shrink: 0; text-align: center; background: #fff; border: 1px solid #f2d99a; border-radius: 10px; padding: 12px 16px; font-family: var(--sans); font-weight: 800; font-size: 15px; color: #8a5f10; }.ateam-lp .c2s-erp span{ display: block; font-family: var(--sans); font-weight: 500; font-size: 9.5px; color: var(--ink-mute); margin-top: 3px; }@media (max-width: 520px){.ateam-lp .c2scene{ flex-wrap: wrap; } }.ateam-lp .build-gallery{ align-items: start; }.ateam-lp .build-gallery .sol-mock, .ateam-lp .build-gallery .sol-shot{ display: none; }.ateam-lp .build-gallery .sol-card{ display: flex; flex-direction: column; }.ateam-lp .build-gallery .ps{ margin: 24px 22px 0; height: 400px; }.ateam-lp .ps-web, .ateam-lp .ps-phone{ width: auto; }.ateam-lp .ps-web{ background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 50px -30px rgba(12,10,31,0.35); display: flex; flex-direction: column; }.ateam-lp .ps-bar{ display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line); flex-shrink: 0; }.ateam-lp .ps-bar .d{ width: 9px; height: 9px; border-radius: 50%; }.ateam-lp .ps-bar .d.r{ background: #ff5f57; }.ateam-lp .ps-bar .d.y{ background: #febc2e; }.ateam-lp .ps-bar .d.g{ background: #28c840; }.ateam-lp .ps-url{ margin-left: 10px; font-family: var(--mono); font-size: 11px; color: var(--ink-mute); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 4px 12px; flex: 1; }.ateam-lp .ps-app{ padding: 18px; display: flex; flex-direction: column; flex: 1; overflow: hidden; }.ateam-lp .ps-phone{ display: flex; align-items: center; justify-content: center; background: none; border: none; box-shadow: none; }.ateam-lp .ps-phone{ padding-top: 22px; }.ateam-lp .ps-phone-frame{ position: relative; width: 200px; background: #0c0a1f; border-radius: 28px; padding: 10px 9px; box-shadow: 0 26px 54px -24px rgba(12,10,31,0.5); }.ateam-lp .ps-notch{ position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 60px; height: 15px; background: #0c0a1f; border-radius: 0 0 12px 12px; z-index: 3; }.ateam-lp .ps-phone .ps-app{ border-radius: 20px; height: 360px; overflow: hidden; padding: 18px; }.ateam-lp .app-blue{ background: linear-gradient(180deg, #eef4ff, #fff); }.ateam-lp .app-teal{ background: #fff; }.ateam-lp .app-green{ background: #fff; }.ateam-lp .app-amber{ background: #fff; }.ateam-lp .app-purple{ background: #fff; }.ateam-lp .app-voice{ background: linear-gradient(180deg, #16102e, #2a1d54); }.ateam-lp .psa-top{ display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }.ateam-lp .psa-back{ color: var(--blue-600); font-size: 20px; }.ateam-lp .psa-dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); }.ateam-lp .psa-doc{ display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--blue-100); border-radius: 12px; padding: 10px; margin-bottom: 14px; }.ateam-lp .psa-avatar{ width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #7aa5ff, var(--blue-600)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }.ateam-lp .psa-name{ font-size: 13px; font-weight: 700; color: var(--ink); }.ateam-lp .psa-spec{ font-size: 11px; color: var(--ink-mute); }.ateam-lp .psa-day{ font-size: 12px; font-weight: 600; color: var(--ink-2); margin-bottom: 9px; }.ateam-lp .psa-slots{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 16px; }.ateam-lp .psa-slot{ text-align: center; font-size: 12px; font-weight: 600; padding: 9px 0; border-radius: 9px; background: #fff; border: 1px solid var(--blue-100); color: var(--ink-2); }.ateam-lp .psa-slot.sel{ background: var(--blue-600); color: #fff; border-color: var(--blue-600); }.ateam-lp .psa-cta{ text-align: center; background: var(--blue-600); color: #fff; font-size: 13px; font-weight: 700; padding: 12px; border-radius: 12px; }.ateam-lp .app-voice{ display: flex; flex-direction: column; align-items: center; text-align: center; color: #fff; padding: 22px 16px; }.ateam-lp .pv-status{ font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; margin-bottom: 22px; }.ateam-lp .pv-orb{ position: relative; width: 84px; height: 84px; margin-bottom: 20px; }.ateam-lp .pv-orb span{ position: absolute; inset: 0; border-radius: 50%; }.ateam-lp .pv-orb span:nth-child(1){ background: radial-gradient(circle at 40% 35%, #b69bfb, #6a35e0); }.ateam-lp .pv-orb span:nth-child(2){ border: 1.5px solid rgba(180,155,251,0.5); animation: hubring 2.4s ease-out infinite; }.ateam-lp .pv-orb span:nth-child(3){ border: 1.5px solid rgba(180,155,251,0.4); animation: hubring 2.4s ease-out infinite 1.2s; }.ateam-lp .pv-caption{ font-size: 12.5px; line-height: 1.4; color: rgba(255,255,255,0.9); max-width: 22ch; margin-bottom: 18px; }.ateam-lp .pv-wave{ display: flex; align-items: center; gap: 3px; height: 26px; margin-bottom: 20px; }.ateam-lp .pv-wave i{ width: 3px; border-radius: 2px; background: var(--p-300); animation: wave 1s ease-in-out infinite; }.ateam-lp .pv-wave i:nth-child(odd){ animation-delay: 0.2s; }.ateam-lp .pv-wave i:nth-child(3n){ animation-delay: 0.4s; }@keyframes wave{0%,100%{ height: 7px; }50%{ height: 24px; } }.ateam-lp .pv-actions{ display: flex; align-items: center; gap: 14px; }.ateam-lp .pv-end{ background: #c2281b; color: #fff; font-size: 12px; font-weight: 700; padding: 8px 20px; border-radius: 100px; }.ateam-lp .pv-live{ font-size: 11px; color: #4be0a0; }.ateam-lp .pg-head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }.ateam-lp .pg-title{ font-size: 13px; font-weight: 700; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.04em; }.ateam-lp .pg-badge{ font-size: 11px; font-weight: 700; color: var(--green-600); background: var(--mint-50); padding: 4px 10px; border-radius: 100px; }.ateam-lp .pg-hero{ display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }.ateam-lp .pg-hero-n{ font-size: 46px; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }.ateam-lp .pg-hero-up{ font-size: 14px; font-weight: 700; color: var(--green-600); }.ateam-lp .pg-funnel{ display: flex; flex-direction: column; gap: 12px; }.ateam-lp .pgf{ display: grid; grid-template-columns: 74px 1fr auto; align-items: center; gap: 12px; }.ateam-lp .pgf-l{ font-size: 12px; font-weight: 600; color: var(--ink-2); }.ateam-lp .pgf-bar{ height: 20px; border-radius: 6px; background: linear-gradient(90deg, #9fe0bd, #2bb673); }.ateam-lp .pgf-bar.win{ background: linear-gradient(90deg, #2bb673, var(--green-600)); }.ateam-lp .pgf-v{ font-size: 12px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }.ateam-lp .pc-ringwrap{ position: relative; width: 130px; height: 130px; margin: 4px auto 18px; }.ateam-lp .pc-ring{ width: 130px; height: 130px; transform: rotate(-90deg); }.ateam-lp .pcr-bg{ fill: none; stroke: var(--teal-2); stroke-width: 11; }.ateam-lp .pcr-fg{ fill: none; stroke: #0a8c7e; stroke-width: 11; stroke-linecap: round; stroke-dasharray: 314; stroke-dashoffset: 19; }.ateam-lp .pc-ringv{ position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }.ateam-lp .pc-ringv b{ font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }.ateam-lp .pc-ringv span{ font-size: 10px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }.ateam-lp .pc-chips{ display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }.ateam-lp .pc-chip{ font-size: 11.5px; font-weight: 600; padding: 6px 12px; border-radius: 100px; background: var(--teal-2); color: #0a8c7e; }.ateam-lp .pc-chip.approved{ background: #0a8c7e; color: #fff; }.ateam-lp .pu-head{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 13px; font-weight: 700; color: var(--ink); }.ateam-lp .pu-live{ font-size: 11px; color: #8a5f10; font-weight: 600; }.ateam-lp .pu-row{ display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 9px; }.ateam-lp .pu-ch{ width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0; }.ateam-lp .pu-ch.email{ background: var(--blue-600); }.ateam-lp .pu-ch.wa{ background: #25a35a; }.ateam-lp .pu-ch.portal{ background: #8a5f10; }.ateam-lp .pu-body{ flex: 1; }.ateam-lp .pu-body b{ font-size: 13px; color: var(--ink); }.ateam-lp .pu-body small{ display: block; font-size: 11px; color: var(--ink-mute); margin-top: 2px; }.ateam-lp .pu-ok{ font-size: 11px; font-weight: 700; color: var(--green-600); flex-shrink: 0; }.ateam-lp .pu-flag{ font-size: 11px; font-weight: 700; color: #8a5f10; flex-shrink: 0; }.ateam-lp .pr-head{ display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ink-mute); font-weight: 600; }.ateam-lp .pr-up{ color: var(--green-600); font-weight: 700; }.ateam-lp .pr-big{ font-size: 34px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin: 6px 0 16px; white-space: nowrap; }.ateam-lp .pr-bars{ display: flex; align-items: flex-end; gap: 10px; height: 120px; margin-bottom: 16px; }.ateam-lp .pr-bars span{ flex: 1; border-radius: 6px 6px 0 0; background: var(--p-100); }.ateam-lp .pr-bars span.win{ background: linear-gradient(180deg, var(--p-400), var(--violet)); }.ateam-lp .pr-tiles{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.ateam-lp .build-gallery .ps.solhero{ position: relative; overflow: hidden; border-radius: 16px; display: flex; align-items: center; justify-content: center; border: none; box-shadow: 0 24px 50px -30px rgba(12,10,31,0.4); }.ateam-lp .sh-green{ background: linear-gradient(155deg, #0f6b31 0%, #0b5f34 100%); }.ateam-lp .sh-teal{ background: linear-gradient(155deg, #0a7a6e 0%, #086b60 100%); }.ateam-lp .sh-amber{ background: linear-gradient(155deg, #d99e2b 0%, #8a5f10 100%); }.ateam-lp .sh-purple{ background: linear-gradient(155deg, #7c4dee 0%, #3a1c8f 100%); }.ateam-lp .sh-rings{ position: absolute; inset: 0; background-image: radial-gradient(circle at 72% 28%, transparent 0, transparent 38px, rgba(255,255,255,0.09) 39px, rgba(255,255,255,0.09) 40px, transparent 41px), radial-gradient(circle at 72% 28%, transparent 0, transparent 74px, rgba(255,255,255,0.07) 75px, rgba(255,255,255,0.07) 76px, transparent 77px), radial-gradient(circle at 72% 28%, transparent 0, transparent 118px, rgba(255,255,255,0.05) 119px, rgba(255,255,255,0.05) 120px, transparent 121px); }.ateam-lp .sh-inner{ position: relative; z-index: 2; color: #fff; text-align: center; padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; }.ateam-lp .sh-badge{ font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28); padding: 6px 14px; border-radius: 100px; }.ateam-lp .sh-badge.light{ background: rgba(255,255,255,0.9); color: #3a1c8f; border: none; }.ateam-lp .sh-metric{ font-family: var(--sans); font-weight: 800; font-size: 42px; letter-spacing: -0.04em; line-height: 0.9; }.ateam-lp .sh-metric span{ display: block; font-size: 13px; font-weight: 500; letter-spacing: 0; margin-top: 8px; color: rgba(255,255,255,0.8); }.ateam-lp .sh-note{ font-size: 13px; font-weight: 600; background: rgba(255,255,255,0.16); padding: 6px 14px; border-radius: 100px; }.ateam-lp .sh-chips{ display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }.ateam-lp .sh-chips span{ font-size: 11.5px; font-weight: 600; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); padding: 5px 12px; border-radius: 100px; }.ateam-lp .sh-shield{ width: 58px; height: 58px; border-radius: 16px; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; color: #fff; }.ateam-lp .sh-shield svg{ width: 30px; height: 30px; }.ateam-lp .sh-flow{ display: flex; gap: 8px; }.ateam-lp .sh-flow span{ font-size: 12px; font-weight: 600; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28); padding: 7px 13px; border-radius: 10px; }.ateam-lp .sh-arrow{ font-size: 22px; opacity: 0.85; }.ateam-lp .sh-erp{ font-size: 22px; font-weight: 800; letter-spacing: 0.05em; background: rgba(255,255,255,0.92); color: #8a5f10; padding: 12px 26px; border-radius: 12px; }.ateam-lp .sh-bars{ display: flex; align-items: flex-end; gap: 8px; height: 84px; width: 190px; margin-top: 6px; }.ateam-lp .sh-bars i{ flex: 1; border-radius: 5px 5px 0 0; background: rgba(255,255,255,0.35); }.ateam-lp .sh-bars i.win{ background: #fff; }.ateam-lp .build-gallery.portfolio{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px 44px; }@media (max-width: 760px){.ateam-lp .build-gallery.portfolio{ grid-template-columns: 1fr; gap: 32px; } }.ateam-lp .build-gallery.portfolio .sol-card{ background: none; border: none; box-shadow: none; padding: 0; overflow: visible; }.ateam-lp .build-gallery.portfolio .sol-card:hover{ transform: none; box-shadow: none; border: none; }.ateam-lp .build-gallery.portfolio .sol-hero{ display: block; width: 100%; height: 300px; border-radius: 16px; overflow: hidden; box-shadow: 0 26px 56px -34px rgba(12,10,31,0.4); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }@media (max-width: 520px){.ateam-lp .build-gallery.portfolio .sol-hero{ height: 230px; } }.ateam-lp .build-gallery.portfolio .sol-card:hover .sol-hero{ transform: translateY(-6px); box-shadow: 0 40px 80px -34px rgba(12,10,31,0.45); }.ateam-lp .build-gallery.portfolio figcaption{ padding: 20px 4px 0; }.ateam-lp .build-gallery.portfolio .sol-title{ font-family: var(--sans); font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.03em; color: var(--ink); line-height: 1.14; margin-bottom: 8px; }.ateam-lp .build-gallery.portfolio .sol-kpi{ font-size: 14.5px; color: var(--ink-soft); }.ateam-lp .sol-illus{ height: 300px; border-radius: 16px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; box-shadow: 0 26px 56px -34px rgba(12,10,31,0.4); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }@media (max-width: 520px){.ateam-lp .sol-illus{ height: 230px; } }.ateam-lp .sol-card:hover .sol-illus{ transform: translateY(-6px); box-shadow: 0 40px 80px -34px rgba(12,10,31,0.45); }.ateam-lp .sol-illus svg{ width: 78%; height: 78%; overflow: visible; }.ateam-lp .si-blue{ background: linear-gradient(155deg, #eaf1ff, #d6e4ff); }.ateam-lp .si-purple{ background: linear-gradient(155deg, #f1ebff, #e6dcff); }.ateam-lp .si-green{ background: linear-gradient(155deg, #e7f8ef, #cdeede); }.ateam-lp .si-teal{ background: linear-gradient(155deg, #e2f6f2, #cfeee7); }.ateam-lp .si-amber{ background: linear-gradient(155deg, #fbf1d9, #f6e6bd); }.ateam-lp .si-violet{ background: linear-gradient(155deg, #efe8ff, #ddd0fb); }.ateam-lp .si-float{ animation: floaty 6s ease-in-out infinite; }.ateam-lp .si-float2{ animation: floaty 7s ease-in-out infinite reverse; }.ateam-lp .pr-tile{ background: var(--p-50); border-radius: 10px; padding: 12px 14px; }.ateam-lp .pr-tile b{ font-size: 17px; font-weight: 800; color: var(--ink); }.ateam-lp .pr-tile small{ display: block; font-size: 11px; color: var(--ink-mute); margin-top: 2px; }.ateam-lp .sol-card.mock-anim.viz-in .bk-row{ opacity: 0; animation: kpiIn 0.5s var(--ease) forwards; }.ateam-lp .sol-card.mock-anim.viz-in .bk-row:nth-child(2){ animation-delay: 0.2s; }.ateam-lp .sol-card.mock-anim.viz-in .bk-row:nth-child(3){ animation-delay: 0.45s; }.ateam-lp .sol-card.mock-anim.viz-in .bk-row:nth-child(4){ animation-delay: 0.7s; }.ateam-lp .sol-card.mock-anim .bk-btn{ transition: background 0.3s, color 0.3s; }.ateam-lp .sol-card.mock-anim.viz-in .bk-row:nth-child(2) .bk-btn{ animation: btnConfirm 0.5s var(--ease) 1.0s forwards; }.ateam-lp .sol-card.mock-anim.viz-in .bk-row:nth-child(3) .bk-btn{ animation: btnConfirm 0.5s var(--ease) 1.3s forwards; }.ateam-lp .sol-card.mock-anim.viz-in .bk-row:nth-child(4) .bk-btn{ animation: btnConfirm 0.5s var(--ease) 1.6s forwards; }@keyframes btnConfirm{to{ background: var(--mint-50); color: var(--green-600); } }.ateam-lp .sol-card.mock-anim .clm{ opacity: 0.4; transition: opacity 0.4s var(--ease); }.ateam-lp .sol-card.mock-anim.viz-in .clm{ opacity: 1; }.ateam-lp .sol-card.mock-anim.viz-in .clm:nth-child(1){ transition-delay: 0.2s; }.ateam-lp .sol-card.mock-anim.viz-in .clm:nth-child(2){ transition-delay: 0.6s; }.ateam-lp .sol-card.mock-anim.viz-in .clm:nth-child(3){ transition-delay: 1.0s; }.ateam-lp .sol-card.mock-anim.viz-in .clm:nth-child(4){ transition-delay: 1.4s; }.ateam-lp .sol-card.mock-anim .clm-ic{ transform: scale(0.4); transition: transform 0.35s var(--ease); }.ateam-lp .sol-card.mock-anim.viz-in .clm:nth-child(1) .clm-ic{ transition-delay: 0.4s; transform: scale(1); }.ateam-lp .sol-card.mock-anim.viz-in .clm:nth-child(2) .clm-ic{ transition-delay: 0.8s; transform: scale(1); }.ateam-lp .sol-card.mock-anim.viz-in .clm:nth-child(3) .clm-ic{ transition-delay: 1.2s; transform: scale(1); }.ateam-lp .sol-card.mock-anim.viz-in .clm:nth-child(4) .clm-ic{ transition-delay: 1.6s; transform: scale(1); }.ateam-lp .h1, .ateam-lp .section-h2, .ateam-lp .tl-title, .ateam-lp .case-title, .ateam-lp .compare-title, .ateam-lp .af-title, .ateam-lp .why-cell-title, .ateam-lp .form-title, .ateam-lp .modal-title, .ateam-lp .auth-h, .ateam-lp .build-head h3, .ateam-lp .screen-wide-h, .ateam-lp .why2 h3, .ateam-lp .vs-name, .ateam-lp .r2-h{
  font-weight: 700;
  letter-spacing: -0.035em;
}.ateam-lp .h1{ font-weight: 700; letter-spacing: -0.04em; max-width: 15ch; }.ateam-lp .section-h2{ font-weight: 700; letter-spacing: -0.035em; line-height: 1.05; }.ateam-lp .h1 em, .ateam-lp .section-h2 em, .ateam-lp .auth-h em, .ateam-lp .screen-wide-h em, .ateam-lp .build-head h3 em, .ateam-lp .tc-quote em, .ateam-lp .compare-title em, .ateam-lp .af-title em{
  font-style: normal !important;
}.ateam-lp .step3-num, .ateam-lp .vs-vs, .ateam-lp .tc-mark, .ateam-lp .fc-agent, .ateam-lp .auth-badge .ab-ic{ font-style: normal; }.ateam-lp .reality2{ grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; padding: 8px 0 20px; }.ateam-lp .r2-h{ font-size: clamp(26px, 3.2vw, 40px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.08; max-width: 18ch; }.ateam-lp .r2-p{ font-size: 16px; }.ateam-lp .r2-stats{ gap: 0; }.ateam-lp .r2-stat{ border-left: none; padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; }.ateam-lp .r2-stat:first-child{ padding-top: 0; }.ateam-lp .r2-stat:last-child{ border-bottom: none; padding-bottom: 0; }.ateam-lp .r2-v{ font-family: var(--serif); font-weight: 700; font-size: clamp(46px, 6vw, 62px); }.ateam-lp .r2-v.warn{ color: var(--ink); }.ateam-lp .r2-v.good{ color: var(--ink); }.ateam-lp .r2-v.warn span, .ateam-lp .r2-v.good span{ color: var(--ink-mute); font-weight: 600; }.ateam-lp .r2-stat::before{ content: none; }.ateam-lp .r2-stat{ position: relative; padding-left: 20px; }.ateam-lp .r2-stat::after{ content: ''; position: absolute; left: 0; top: 26px; bottom: 26px; width: 4px; border-radius: 4px; }.ateam-lp .r2-stat:first-child::after{ top: 4px; background: var(--coral); }.ateam-lp .r2-stat:last-child::after{ bottom: 4px; background: var(--mint); }.ateam-lp .compare-col{ border-radius: var(--r-lg); padding: 36px 34px; }.ateam-lp .compare-col.old{ background: #f6f5f8; border-color: #e8e5f0; }.ateam-lp .compare-col.old .compare-title{ color: var(--ink-2); }.ateam-lp .compare-col.old .compare-head{ opacity: 0.9; }.ateam-lp .compare-col.new{ background: #fff; border: 1.5px solid var(--p-200); box-shadow: 0 30px 70px -42px var(--purple-glow); }.ateam-lp .compare-col.new::before{ content: ''; position: absolute; inset: 0; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(124,77,238,0.05), transparent 40%); pointer-events: none; }.ateam-lp .compare-title{ font-size: 24px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 22px; }.ateam-lp .compare-list li{ font-size: 14.5px; line-height: 1.55; }.ateam-lp .trust2{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }@media (max-width: 900px){.ateam-lp .trust2{ grid-template-columns: 1fr; gap: 36px; } }.ateam-lp .trust2-photo{ position: relative; }.ateam-lp .trust2-panel{ position: relative; background: linear-gradient(160deg, #14102b 0%, #241a48 100%); border-radius: var(--r-xl); padding: 40px; overflow: hidden; }.ateam-lp .trust2-panel::before{ content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 85% 15%, rgba(124,44,230,0.35), transparent 60%); pointer-events: none; }.ateam-lp .tp-stats{ position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-bottom: 28px; }.ateam-lp .tp-stat .tp-n{ font-family: var(--sans); font-weight: 800; font-size: clamp(38px, 5vw, 52px); line-height: 0.9; letter-spacing: -0.04em; color: #fff; }.ateam-lp .tp-stat .tp-n span{ color: var(--p-300); font-size: 0.55em; }.ateam-lp .tp-stat .tp-c{ font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 8px; line-height: 1.4; }.ateam-lp .tp-compliance{ position: relative; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); }.ateam-lp .tp-comp-l{ font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }.ateam-lp .tp-comp-tags{ display: flex; flex-wrap: wrap; gap: 8px; }.ateam-lp .tp-comp-tags span{ font-size: 12px; font-weight: 600; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 100px; padding: 6px 13px; }.ateam-lp .tp-foot{ position: relative; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 9px; }.ateam-lp .tp-dot{ width: 8px; height: 8px; border-radius: 50%; background: #4be0a0; box-shadow: 0 0 0 3px rgba(75,224,160,0.25); animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }.ateam-lp .trust2-points{ display: flex; flex-direction: column; gap: 12px; }.ateam-lp .t2p{ display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 26px; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }.ateam-lp .t2p:hover{ transform: translateY(-3px); border-color: var(--p-200); box-shadow: 0 22px 54px -32px var(--purple-glow); }.ateam-lp .t2p-ic{ width: 46px; height: 46px; border-radius: 13px; background: var(--p-50); color: var(--purple); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }.ateam-lp .t2p:nth-child(2) .t2p-ic{ background: var(--mint-50); color: var(--green-600); }.ateam-lp .t2p:nth-child(3) .t2p-ic{ background: var(--blue-50); color: var(--blue-600); }.ateam-lp .t2p-ic svg{ width: 24px; height: 24px; }.ateam-lp .t2p-body h3{ font-size: 18px; font-weight: 700; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 6px; line-height: 1.2; }.ateam-lp .t2p-body p{ font-size: 14px; color: var(--ink-soft); line-height: 1.55; }.ateam-lp .case2-proof{ background: var(--bg-soft); border-left: 1px solid var(--line); gap: 22px; }.ateam-lp .ba-row{ align-items: stretch; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }.ateam-lp .ba{ flex: 1; text-align: left; padding: 20px 22px; border-radius: 0; background: #fff; border: none; }.ateam-lp .ba.before{ border-right: 1px solid var(--line); }.ateam-lp .ba-k{ font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }.ateam-lp .ba-v{ font-family: var(--serif); font-weight: 700; font-size: 34px; line-height: 1; letter-spacing: -0.03em; color: var(--ink-mute); }.ateam-lp .ba-s{ font-size: 12px; color: var(--ink-mute); margin-top: 8px; }.ateam-lp .ba.before{ background: #faf9fc; }.ateam-lp .ba.before .ba-v{ color: #b6b1c4; }.ateam-lp .ba.after{ background: #fff; }.ateam-lp .ba.after.purple .ba-v{ color: var(--violet); }.ateam-lp .ba.after.teal .ba-v{ color: #0a8c7e; }.ateam-lp .ba.after.amber .ba-v{ color: #8a5f10; }.ateam-lp .ba.after .ba-k{ color: var(--ink-2); }.ateam-lp .ba-arrow{ display: none; }.ateam-lp .ba-bar{ height: 6px; }.ateam-lp .ba-foot{ font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }.ateam-lp .ba-foot strong{ color: var(--ink); font-weight: 700; }@media (max-width: 860px){.ateam-lp .ba.before{ border-right: none; border-bottom: 1px solid var(--line); } }.ateam-lp .sol-gallery.build-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}@media (max-width: 980px){.ateam-lp .sol-gallery.build-gallery{ grid-template-columns: 1fr 1fr; max-width: none; margin: 0; } }@media (max-width: 640px){.ateam-lp .sol-gallery.build-gallery{ grid-template-columns: 1fr; } }.ateam-lp .sol-gallery.build-gallery .sol-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}.ateam-lp .sol-gallery.build-gallery .sol-card:hover{ transform: translateY(-5px); box-shadow: 0 30px 70px -38px rgba(70,30,160,0.28); border-color: var(--p-200); }.ateam-lp .sol-gallery.build-gallery .ps{
  margin: 0;
  height: 460px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}.ateam-lp .sol-gallery.build-gallery .ps.ps-web{
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: flex-start;
  padding: 0; background: #fff;
}.ateam-lp .sol-gallery.build-gallery .ps-web .ps-bar{ flex-shrink: 0; }.ateam-lp .sol-gallery.build-gallery .ps-web.nobar .ps-app{ padding-top: 20px; }.ateam-lp .sol-gallery.build-gallery .sol-shot-img{ display: block; width: 100%; height: 460px; object-fit: cover; background: var(--bg-soft); border-bottom: 1px solid var(--line); }.ateam-lp .dashx.ps-web{ background: none; border: none; box-shadow: none; }.ateam-lp .dx{ height: 460px; display: flex; flex-direction: column; gap: 12px; padding: 22px !important; color: #fff; border-bottom: none; }.ateam-lp .dx-leads{ background: linear-gradient(165deg, #0f2a1c, #08160f); }.ateam-lp .dx-sup{ background: linear-gradient(165deg, #2a1f0a, #14100a); }.ateam-lp .dx-erp{ background: linear-gradient(165deg, #1c1340, #100a24); }.ateam-lp .dx-top{ display: flex; align-items: center; justify-content: space-between; }.ateam-lp .dx-eyebrow{ font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }.ateam-lp .dx-badge{ font-size: 11px; font-weight: 800; color: #0c1a12; background: #8ef0b0; padding: 4px 11px; border-radius: 100px; }.ateam-lp .dx-erp .dx-badge{ background: #c9b8ff; color: #1a0f3d; }.ateam-lp .dx-live{ display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #f0c674; background: rgba(217,158,43,0.16); padding: 4px 11px; border-radius: 100px; }.ateam-lp .dx-live .ld{ width: 6px; height: 6px; border-radius: 50%; background: #f0c674; animation: pulse 2s ease-in-out infinite; }.ateam-lp .dx-hero{ display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }.ateam-lp .dx-n{ font-size: 44px; font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; white-space: nowrap; }.ateam-lp .dx-sub{ font-size: 12.5px; color: rgba(255,255,255,0.7); }.ateam-lp .dx-sub b{ color: #8ef0b0; }.ateam-lp .dx-sup .dx-sub b{ color: #f0c674; }.ateam-lp .dx-src{ display: flex; gap: 7px; }.ateam-lp .dxs{ flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; background: rgba(255,255,255,0.08); border-radius: 10px; padding: 8px 4px; font-size: 11px; font-weight: 600; }.ateam-lp .dxs svg{ width: 15px; height: 15px; }.ateam-lp .dx-funnel{ display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }.ateam-lp .dxf{ display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 10px; }.ateam-lp .dxf-l{ font-size: 11.5px; color: rgba(255,255,255,0.75); }.ateam-lp .dxf-track{ height: 18px; background: rgba(255,255,255,0.1); border-radius: 6px; overflow: hidden; }.ateam-lp .dxf-track i{ display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, #3fbf78, #8ef0b0); }.ateam-lp .dxf-track i.win{ background: #8ef0b0; }.ateam-lp .dxf-v{ font-size: 12px; font-weight: 800; font-variant-numeric: tabular-nums; }.ateam-lp .dx-rows{ display: flex; flex-direction: column; gap: 8px; }.ateam-lp .dxr{ display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.07); border-radius: 11px; padding: 9px 11px; }.ateam-lp .dxr-ic{ width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }.ateam-lp .dxr-ic svg{ width: 16px; height: 16px; }.ateam-lp .dxr-b{ flex: 1; min-width: 0; }.ateam-lp .dxr-b b{ font-size: 12px; }.ateam-lp .dxr-b small{ display: block; font-size: 10.5px; color: rgba(255,255,255,0.5); }.ateam-lp .dxr-ok{ font-size: 11px; font-weight: 800; color: #8ef0b0; }.ateam-lp .dxr-flag{ font-size: 11px; font-weight: 800; color: #f0c674; }.ateam-lp .dx-chart{ display: flex; align-items: flex-end; gap: 8px; height: 120px; padding: 8px; background: rgba(255,255,255,0.05); border-radius: 14px; }.ateam-lp .dx-chart span{ flex: 1; border-radius: 5px 5px 2px 2px; background: rgba(201,184,255,0.4); }.ateam-lp .dx-chart span.win{ background: linear-gradient(180deg, #b49bff, #8b6dff); }.ateam-lp .dx-tiles{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }.ateam-lp .dxt{ background: rgba(255,255,255,0.07); border-radius: 11px; padding: 10px 12px; }.ateam-lp .dxt b{ display: block; font-size: 15px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }.ateam-lp .dxt small{ font-size: 10px; color: rgba(255,255,255,0.5); }.ateam-lp .dx-foot{ margin-top: auto; font-size: 11.5px; color: rgba(255,255,255,0.6); text-align: center; padding-top: 4px; }.ateam-lp .sol-gallery.build-gallery .ps-web .ps-app{ flex: 1; overflow: hidden; padding: 18px; }.ateam-lp .sol-gallery.build-gallery .ps.ps-phone{ padding: 0; }.ateam-lp .sol-gallery.build-gallery .ps-phone-frame{ width: 200px; height: 420px; padding: 9px 8px; }.ateam-lp .sol-gallery.build-gallery .ps-phone .ps-app{ height: 100%; border-radius: 20px; padding: 16px; overflow: hidden; }.ateam-lp .sol-gallery.build-gallery figcaption{ padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }.ateam-lp .sol-gallery.build-gallery .sol-title{ font-family: var(--sans); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); line-height: 1.25; margin: 4px 0 8px; min-height: 2.5em; }.ateam-lp .sol-gallery.build-gallery .sol-kpi{ font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin-top: auto; }.ateam-lp .bkapp{ padding: 0 !important; background: #fbfbfe; display: flex; flex-direction: column; font-family: var(--sans); }.ateam-lp .bk-status{ display: flex; align-items: center; justify-content: space-between; padding: 9px 20px 5px; font-size: 11px; font-weight: 700; color: #fff; position: relative; z-index: 2; }.ateam-lp .bk-sig{ width: 15px; height: 9px; border-radius: 2px; background: #fff; opacity: 0.9; }.ateam-lp .bk-hero{ position: relative; background: linear-gradient(155deg, #6d5cff 0%, #4a2fd6 55%, #3a1fb0 100%); padding: 4px 18px 20px; border-radius: 0 0 28px 28px; overflow: hidden; }.ateam-lp .bk-hero-glow{ position: absolute; top: -40px; right: -30px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%); }.ateam-lp .bk-hero-top{ position: relative; display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }.ateam-lp .bk-pill{ font-size: 10px; font-weight: 700; letter-spacing: 0.03em; color: #fff; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); padding: 4px 10px; border-radius: 100px; backdrop-filter: blur(4px); }.ateam-lp .bk-heart{ color: rgba(255,255,255,0.85); font-size: 15px; }.ateam-lp .bk-hero-row{ position: relative; display: flex; align-items: center; gap: 11px; min-width: 0; }.ateam-lp .bk-docwrap{ min-width: 0; flex: 1; }.ateam-lp .bk-avatar{ width: 40px; height: 40px; border-radius: 12px; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.5); display: block; box-shadow: 0 6px 16px -6px rgba(0,0,0,0.3); flex-shrink: 0; }.ateam-lp .bk-doc{ font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.ateam-lp .bk-spec{ font-size: 11.5px; color: rgba(255,255,255,0.82); margin-top: 2px; }.ateam-lp .bk-body{ padding: 14px 18px 16px; flex: 1; display: flex; flex-direction: column; }.ateam-lp .bk-label{ font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9a95ad; margin-bottom: 8px; }.ateam-lp .bk-dates{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 14px; }.ateam-lp .bk-date{ display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 9px 0; border-radius: 14px; background: #fff; box-shadow: 0 1px 3px rgba(20,10,50,0.05), inset 0 0 0 1px #eeecf6; }.ateam-lp .bk-date i{ font-size: 9.5px; font-weight: 600; color: #9a95ad; font-style: normal; }.ateam-lp .bk-date b{ font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }.ateam-lp .bk-date.on{ background: linear-gradient(155deg, #6d5cff, #4a2fd6); box-shadow: 0 8px 18px -6px rgba(93,63,238,0.55); }.ateam-lp .bk-date.on i, .ateam-lp .bk-date.on b{ color: #fff; }.ateam-lp .bk-times{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 16px; }.ateam-lp .bk-time{ text-align: center; padding: 10px 0; border-radius: 12px; background: #fff; font-size: 12px; font-weight: 700; color: var(--ink-2); box-shadow: 0 1px 3px rgba(20,10,50,0.05), inset 0 0 0 1px #eeecf6; }.ateam-lp .bk-time.on{ background: #efecff; color: #4a2fd6; box-shadow: inset 0 0 0 1.5px #6d5cff; }.ateam-lp .bk-confirm{ margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(120deg, #6d5cff, #4a2fd6); color: #fff; font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; padding: 13px; border-radius: 15px; box-shadow: 0 12px 26px -10px rgba(93,63,238,0.6); }.ateam-lp .bk-arrow{ font-size: 15px; }.ateam-lp .lg2{ background: #fbfbfe; display: flex; flex-direction: column; gap: 14px; }.ateam-lp .lg2-head{ display: flex; align-items: flex-start; justify-content: space-between; }.ateam-lp .lg2-eyebrow{ font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9a95ad; margin-bottom: 4px; }.ateam-lp .lg2-big{ font-size: 40px; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); line-height: 0.9; display: flex; align-items: baseline; gap: 10px; }.ateam-lp .lg2-up{ font-size: 13px; font-weight: 700; color: var(--green-600); }.ateam-lp .lg2-roas{ text-align: center; background: linear-gradient(150deg, #0f7a4f, #0f6b31); color: #fff; border-radius: 14px; padding: 10px 14px; box-shadow: 0 10px 22px -10px rgba(15,107,49,0.6); }.ateam-lp .lg2-roas b{ display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }.ateam-lp .lg2-roas small{ font-size: 9.5px; font-weight: 600; opacity: 0.9; letter-spacing: 0.06em; }.ateam-lp .lg2-channels{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }.ateam-lp .lg2-ch{ display: flex; align-items: center; gap: 6px; background: #fff; border-radius: 11px; padding: 9px 11px; font-size: 11.5px; font-weight: 600; color: var(--ink-2); box-shadow: inset 0 0 0 1px #eeecf6; }.ateam-lp .lg2-ch b{ margin-left: auto; font-size: 14px; font-weight: 800; color: var(--ink); }.ateam-lp .lg2-ic{ width: 18px; height: 18px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }.ateam-lp .lg2-ic svg{ width: 18px; height: 18px; }.ateam-lp .lg2-dot{ width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }.ateam-lp .lg2-dot.meta{ background: #4267f0; }.ateam-lp .lg2-dot.goog{ background: #ea4335; }.ateam-lp .lg2-dot.wa{ background: #25a35a; }.ateam-lp .lg2-label{ font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9a95ad; margin-bottom: -4px; }.ateam-lp .lg2-funnel{ display: flex; flex-direction: column; gap: 9px; }.ateam-lp .lg2f{ display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 12px; }.ateam-lp .lg2f-l{ font-size: 12px; font-weight: 600; color: var(--ink-2); }.ateam-lp .lg2f-track{ height: 22px; background: #f0eef7; border-radius: 7px; overflow: hidden; }.ateam-lp .lg2f-bar{ display: block; height: 100%; border-radius: 7px; background: linear-gradient(90deg, #6ee0aa, #0f7a4f); }.ateam-lp .lg2f-bar.win{ background: linear-gradient(90deg, #0f7a4f, #0f6b31); }.ateam-lp .lg2f-v{ font-size: 12px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }.ateam-lp .cl2{ background: #fbfbfe; display: flex; flex-direction: column; gap: 14px; }.ateam-lp .cl2-head{ display: flex; align-items: center; justify-content: space-between; }.ateam-lp .cl2-eyebrow{ font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #8f97a3; margin-bottom: 4px; white-space: nowrap; }.ateam-lp .cl2-amt{ font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 0.9; white-space: nowrap; }.ateam-lp .cl2-ring{ position: relative; width: 52px; height: 52px; flex-shrink: 0; }.ateam-lp .cl2-ring svg{ width: 52px; height: 52px; transform: rotate(-90deg); }.ateam-lp .cl2r-bg{ fill: none; stroke: #d7 efea; stroke-width: 5; }.ateam-lp .cl2r-bg{ fill: none; stroke: #d7efea; stroke-width: 5; }.ateam-lp .cl2r-fg{ fill: none; stroke: #0a7a6e; stroke-width: 5; stroke-linecap: round; stroke-dasharray: 113; stroke-dashoffset: 7; }.ateam-lp .cl2-ring span{ position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }.ateam-lp .cl2-steps{ display: flex; flex-direction: column; gap: 7px; }.ateam-lp .cl2-step{ display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 11px; padding: 10px 12px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); box-shadow: inset 0 0 0 1px #ebeef0; }.ateam-lp .cl2-ic{ width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; background: #0a7a6e; flex-shrink: 0; }.ateam-lp .cl2-step.live{ box-shadow: inset 0 0 0 1.5px #0a7a6e; background: #ecf9f6; }.ateam-lp .cl2-step.live .cl2-ic{ background: #0f6b31; animation: pulse 2s ease-in-out infinite; }.ateam-lp .cl2-t{ margin-left: auto; font-size: 10.5px; font-weight: 700; color: #8f97a3; font-variant-numeric: tabular-nums; }.ateam-lp .cl2-foot{ display: flex; align-items: center; gap: 10px; margin-top: 2px; }.ateam-lp .cl2-badge{ font-size: 11.5px; font-weight: 800; color: #fff; background: linear-gradient(120deg, #0a7a6e, #0a8c7e); padding: 8px 16px; border-radius: 100px; box-shadow: 0 10px 20px -10px rgba(10,122,110,0.6); }.ateam-lp .cl2-sub{ font-size: 11.5px; color: var(--ink-soft); }.ateam-lp .cx{ background: radial-gradient(ellipse 80% 60% at 50% 0%, #e2f6f2, #fbfbfe 70%); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }.ateam-lp .cx-seal{ width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(150deg, #12b89e, #0a8c7e); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -10px rgba(10,122,110,0.6), 0 0 0 8px rgba(10,122,110,0.12); margin: 6px 0 10px; }.ateam-lp .cx-seal svg{ width: 30px; height: 30px; }.ateam-lp .cx-status{ font-size: 12px; font-weight: 700; letter-spacing: 0.02em; color: #0a8c7e; text-transform: uppercase; }.ateam-lp .cx-amt{ font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1; white-space: nowrap; }.ateam-lp .cx-meta{ font-size: 11.5px; color: var(--ink-mute); margin-bottom: 14px; }.ateam-lp .cx-track{ display: flex; align-items: center; width: 100%; padding: 0 6px; }.ateam-lp .cx-node{ width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; background: #fff; box-shadow: inset 0 0 0 2px #d0e8e2; }.ateam-lp .cx-node.done{ background: #0a7a6e; box-shadow: 0 0 0 3px rgba(10,122,110,0.18); }.ateam-lp .cx-node.now{ background: #fff; box-shadow: 0 0 0 3px rgba(10,122,110,0.3), inset 0 0 0 3px #0a7a6e; animation: pulse 2s ease-in-out infinite; }.ateam-lp .cx-line{ flex: 1; height: 3px; background: #d0e8e2; }.ateam-lp .cx-line.done{ background: #0a7a6e; }.ateam-lp .cx-labels{ display: flex; justify-content: space-between; width: 100%; padding: 0 2px; margin-top: 8px; }.ateam-lp .cx-labels span{ font-size: 10px; font-weight: 700; color: var(--ink-mute); letter-spacing: 0.02em; }.ateam-lp .cx-foot{ margin-top: 16px; font-size: 12px; color: var(--ink-soft); background: #fff; border-radius: 10px; padding: 10px 14px; box-shadow: inset 0 0 0 1px #e2f0ec; }.ateam-lp .cx-foot b{ color: #0a8c7e; font-weight: 800; }.ateam-lp .case2-photo{ position: relative; padding: 0; border-left: none; overflow: hidden; min-height: 300px; display: block; }@media (max-width: 860px){.ateam-lp .case2-photo{ min-height: 260px; } }.ateam-lp .c2ph-img{ position: absolute; inset: 0; width: 100%; height: 100%; display: block; }.ateam-lp .c2ph-shade{ position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,10,45,0.15) 0%, rgba(20,10,45,0.05) 40%, rgba(20,10,45,0.82) 100%); }.ateam-lp .c2ph-badge{ position: absolute; top: 18px; left: 18px; display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-radius: 100px; padding: 6px 13px; font-size: 11.5px; font-weight: 700; color: var(--ink-2); }.ateam-lp .c2ph-dot{ width: 6px; height: 6px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.25); animation: pulse 2s ease-in-out infinite; }.ateam-lp .c2ph-panel{ position: absolute; left: 18px; right: 18px; bottom: 18px; }.ateam-lp .c2ph-ba{ display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }.ateam-lp .c2ph-cell{ display: flex; flex-direction: column; }.ateam-lp .c2ph-k{ font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); }.ateam-lp .c2ph-v{ font-family: var(--sans); font-size: 40px; font-weight: 800; letter-spacing: -0.04em; color: #fff; line-height: 1; }.ateam-lp .c2ph-v.red{ color: #ff8a75; }.ateam-lp .c2ph-s{ font-size: 10.5px; color: rgba(255,255,255,0.6); }.ateam-lp .c2ph-arrow{ font-size: 22px; color: rgba(255,255,255,0.55); }.ateam-lp .c2ph-foot{ font-size: 12.5px; color: rgba(255,255,255,0.85); line-height: 1.5; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 10px 13px; }.ateam-lp .c2ph-foot b{ color: #fff; font-weight: 800; }.ateam-lp .su2{ background: #fbfbfe; display: flex; flex-direction: column; gap: 8px; }.ateam-lp .su2-head{ display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 4px; }.ateam-lp .su2-eyebrow{ font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #a8926a; margin-bottom: 3px; }.ateam-lp .su2-title{ font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }.ateam-lp .su2-live{ display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #8a5f10; background: #fbf1d9; padding: 5px 10px; border-radius: 100px; }.ateam-lp .su2-live .ld{ width: 6px; height: 6px; border-radius: 50%; background: #d99e2b; animation: pulse 2s ease-in-out infinite; }.ateam-lp .su2-row{ display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px; padding: 9px 11px; box-shadow: inset 0 0 0 1px #efe6d4; }.ateam-lp .su2-ch{ width: 28px; height: 28px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }.ateam-lp .su2-ch svg{ width: 18px; height: 18px; }.ateam-lp .su2-ch.email{ background: #fff; box-shadow: inset 0 0 0 1px #f0d9a8; }.ateam-lp .su2-ch.wa{ background: #25a35a; }.ateam-lp .su2-ch.portal{ background: #d99e2b; }.ateam-lp .su2-b{ flex: 1; min-width: 0; }.ateam-lp .su2-b b{ font-size: 12.5px; color: var(--ink); }.ateam-lp .su2-b small{ display: block; font-size: 10.5px; color: var(--ink-mute); }.ateam-lp .su2-ok{ font-size: 11px; font-weight: 800; color: #0f6b31; flex-shrink: 0; }.ateam-lp .su2-flag{ font-size: 11px; font-weight: 800; color: #8a5f10; flex-shrink: 0; }.ateam-lp .su2-foot{ margin-top: 2px; font-size: 12px; color: var(--ink-soft); text-align: center; }.ateam-lp .su2-foot b{ color: var(--ink); font-weight: 800; }.ateam-lp .er2{ background: #fbfbfe; display: flex; flex-direction: column; gap: 14px; }.ateam-lp .er2-head{ display: flex; align-items: flex-start; justify-content: space-between; }.ateam-lp .er2-eyebrow{ font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9a8fc4; margin-bottom: 4px; }.ateam-lp .er2-big{ font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 0.9; white-space: nowrap; }.ateam-lp .er2-up{ font-size: 12px; font-weight: 800; color: #0f6b31; background: #e7f8ef; padding: 5px 11px; border-radius: 100px; }.ateam-lp .er2-chart{ display: flex; align-items: flex-end; gap: 8px; height: 132px; padding: 10px 4px; background: #fff; border-radius: 16px; box-shadow: inset 0 0 0 1px #eeecf6; }.ateam-lp .er2-chart span{ flex: 1; border-radius: 6px 6px 3px 3px; background: #ddd2f7; }.ateam-lp .er2-chart span.win{ background: linear-gradient(180deg, #8b6dff, #5d3fee); box-shadow: 0 8px 16px -6px rgba(93,63,238,0.5); }.ateam-lp .er2-tiles{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }.ateam-lp .er2-tile{ background: #f2edff; border-radius: 12px; padding: 11px 12px; }.ateam-lp .er2-tile b{ display: block; font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; white-space: nowrap; }.ateam-lp .er2-tile small{ font-size: 10px; color: var(--ink-mute); font-weight: 600; }

/* ===== recovered build stylesheet ===== */
<!DOCTYPE html>
<html lang="en"><head>






<style>/* cyrillic-ext */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("9b22bde9-c5c8-4b53-8c19-fb3dc6dc2ffe") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("0a2b70e2-ab97-48e9-8545-db78e347f8ec") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* symbols2 */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("cdb4d1d4-853e-401b-ac93-dcc536787d8c") format('woff2');
  unicode-range: U+2000-2001, U+2004-2008, U+200A, U+23B8-23BD, U+2500-259F;
}
/* vietnamese */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("b68b7988-3efc-45ad-9825-3ba3e7d36759") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("2daac637-fe8d-4fc9-b9cd-e96b4259dab6") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("d242d907-d9fb-4d6c-863c-e3476807b1b5") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("9b22bde9-c5c8-4b53-8c19-fb3dc6dc2ffe") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("0a2b70e2-ab97-48e9-8545-db78e347f8ec") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* symbols2 */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("cdb4d1d4-853e-401b-ac93-dcc536787d8c") format('woff2');
  unicode-range: U+2000-2001, U+2004-2008, U+200A, U+23B8-23BD, U+2500-259F;
}
/* vietnamese */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("b68b7988-3efc-45ad-9825-3ba3e7d36759") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("2daac637-fe8d-4fc9-b9cd-e96b4259dab6") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("d242d907-d9fb-4d6c-863c-e3476807b1b5") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ========================================================
   ATeam — Agentic AI for Dubai Enterprises · v2
   Mostly white · purple as accent · graphic-led 2026 design
   ======================================================== */

:root {
  --bg:           #ffffff;
  --bg-soft:      #fafaf7;
  --bg-tint:      #f5f3fb;
  --surface:      #ffffff;
  --surface-2:    #f8f7fb;
  --surface-3:    #efeaf8;

  --ink:          #0c0a1f;
  --ink-2:        #221d3a;
  --ink-soft:     #524d6a;
  --ink-mute:     #6a6680;

  --line:         #ebe9f2;
  --line-soft:    #f1eff7;
  --line-strong:  #d6cfe8;

  /* Purple — desaturated, used sparingly */
  --p-50:  #f5f0ff;
  --p-100: #ebe1ff;
  --p-200: #d4c2fd;
  --p-300: #b69bfb;
  --p-400: #9670f5;
  --p-500: #7c4dee;
  --p-600: #6a35e0;
  --p-700: #5824c5;
  --p-800: #441a9b;
  --p-900: #2e1175;
  --purple: var(--p-600);
  --purple-soft: var(--p-50);
  --purple-glow: rgba(124, 77, 238, 0.22);

  /* Secondary accents — used across sections to break monotony */
  --teal:   #0a7a6e;
  --teal-2: #d4f3ee;
  --coral:  #c0392b;
  --coral-2: #fbe0db;
  --amber:  #d99e2b;
  --amber-2:#fbecc8;

  /* Blue */
  --blue-50:  #eef4ff;
  --blue-100: #dbe8ff;
  --blue-500: #3a72e0;
  --blue-600: #2a6fdb;
  --blue-700: #1f57b5;
  /* Green / mint */
  --green-50:  #e9f8ef;
  --green-100: #cdeede;
  --green-500: #17aa5a;
  --green-600: #0f6b31;
  --mint:      #0f7a4f;
  --mint-50:   #e7faf0;

  --success: #16a34a;
  --warn:    #d6443a;

  --serif: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
  --mono:  'Geist Mono', ui-monospace, 'SF Mono', monospace;

  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 0.6, 1);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  text-wrap: pretty;
}

::selection { background: var(--p-200); color: var(--p-900); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 3;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(1.2) blur(18px);
  -webkit-backdrop-filter: saturate(1.2) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}
.nav-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: var(--scroll, 0%);
  background: linear-gradient(90deg, var(--p-400), var(--p-700));
  transition: width 0.05s linear;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-cta {
  margin-left: 10px;
  padding: 9px 16px !important;
  background: var(--ink);
  color: #fff !important;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 500;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.nav-cta:hover {
  background: var(--purple) !important;
  transform: translateY(-1px);
}
@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-inner { padding: 12px 20px; }
  .logo-img { height: 30px; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  position: relative;
  white-space: nowrap;
}
.btn svg.arrow { transition: transform 0.3s var(--ease); }
.btn:hover svg.arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 10px 30px -10px rgba(12, 10, 31, 0.45);
}
.btn-primary:hover {
  background: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 14px 38px -10px var(--purple-glow);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 30px -10px var(--purple-glow);
}
.btn-purple:hover {
  background: var(--p-700);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
}

/* ===================== HERO ===================== */
.hero {
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* very subtle vignette only behind hero visual */
  content: '';
  position: absolute;
  right: -10%; top: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, var(--p-50), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 32px 0 32px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: 0 4px 14px -8px rgba(106, 53, 224, 0.15);
}
.eyebrow .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow .star { color: var(--amber); font-size: 13px; }

.h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 16ch;
  margin-bottom: 28px;
}
.h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--p-500) 0%, var(--p-700) 50%, var(--p-500) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 8s linear infinite;
}
@keyframes shine {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.h1-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-mute);
  font-size: 13px;
}
.hero-meta .avatars { display: flex; align-items: center; }
.hero-meta .avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background-size: cover;
}
.hero-meta .avatars span:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #ffd6a5, #d97757); }
.av-2 { background: linear-gradient(135deg, #c4b1ff, var(--p-600)); }
.av-3 { background: linear-gradient(135deg, #a0e7c8, #2a9d6c); }
.av-4 { background: linear-gradient(135deg, #ffb3c1, #c33567); }
.av-5 {
  background: linear-gradient(135deg, #b1cdff, #3a6dd9);
  color: #fff; font-size: 10px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
}

/* ============ HERO VISUAL — Animated Agent Network ============ */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .hero-visual { aspect-ratio: 1 / 0.85; }
}
.hv-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.hv-node {
  transition: filter 0.3s;
}
.hv-node circle {
  fill: #fff;
  stroke: var(--line);
  stroke-width: 1;
}
.hv-node.primary circle {
  fill: var(--ink);
  stroke: var(--ink);
}
.hv-node.purple circle {
  fill: var(--purple);
  stroke: var(--purple);
}
.hv-edge {
  stroke: var(--line-strong);
  stroke-width: 1;
  fill: none;
}
.hv-edge.live {
  stroke: var(--purple);
  stroke-width: 1.4;
  stroke-dasharray: 4 4;
  animation: dash 8s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -100; } }

.hv-pulse {
  fill: var(--purple);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { r: 4; opacity: 1; }
  50%      { r: 7; opacity: 0.5; }
}

/* floating UI chips over the network */
.hv-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 14px 30px -16px rgba(70, 30, 160, 0.18), 0 1px 0 rgba(255,255,255,0.8) inset;
  font-size: 12.5px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  z-index: 3;
  animation: float 7s ease-in-out infinite;
}
.hv-chip-2 { animation: float 9s ease-in-out infinite reverse; }
.hv-chip-3 { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hv-chip .ic {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--p-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.hv-chip .ic svg { width: 14px; height: 14px; }
.hv-chip .ic.ok { background: rgba(22,163,74,0.10); color: var(--success); }
.hv-chip .ic.coral { background: var(--coral-2); color: var(--coral); }
.hv-chip .tl { font-weight: 500; }
.hv-chip .sb { color: var(--ink-mute); font-size: 11px; margin-top: 2px; }
.hv-chip.top    { top: 6%;   left: 4%; }
.hv-chip.right  { top: 22%;  right: -4%; }
.hv-chip.bot    { bottom: 8%; left: 8%; }
.hv-chip.botr   { bottom: 14%; right: 4%; }

/* center "agent" hub */
.hv-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 132px; height: 132px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--p-500), var(--p-800));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  box-shadow: 0 24px 60px -20px var(--purple-glow), 0 0 0 1px rgba(255,255,255,0.4) inset;
  z-index: 3;
}
.hv-hub::before, .hv-hub::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid var(--p-200);
  animation: ring 4s ease-out infinite;
}
.hv-hub::after { animation-delay: 2s; }
@keyframes ring {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===================== TRUST STRIP ===================== */
.trust {
  padding: 56px 0 64px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.trust-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  opacity: 0.78;
}
.trust-row span,
.trust-row .item {
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 500;
}
.trust-row .bold    { font-weight: 700; letter-spacing: -0.03em; font-size: 22px; }
.trust-row .mono    { font-family: var(--mono); font-size: 14px; letter-spacing: 0.04em; }
.trust-row .serif   { font-family: var(--serif); font-style: italic; font-size: 23px; }

/* ===================== SECTION BASE ===================== */
section { padding: 120px 0; position: relative; }
@media (max-width: 760px) { section { padding: 80px 0; } }

.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1px; background: var(--purple);
}
.section-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 24px;
}
.section-h2 em { font-style: italic; color: var(--purple); }
.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.6;
  margin-bottom: 56px;
}

/* ===================== PROBLEM ===================== */
.problem {
  background: var(--bg);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
}
.problem-text p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.7;
}
.problem-text strong { color: var(--ink); font-weight: 600; }
.quote-pull {
  margin: 26px 0;
  padding: 22px 26px;
  border-radius: 14px;
  background: var(--bg-soft);
  border-left: 3px solid var(--purple);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}

/* Pilot-failure chart visualization */
.pilot-chart {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(70, 30, 160, 0.2);
}
.pc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 26px;
}
.pc-title {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.pc-title .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 4px var(--p-50);
}
.pc-source {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.pc-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}
.pc-stat .big {
  font-family: var(--serif);
  font-size: clamp(80px, 11vw, 132px);
  font-weight: 400;
  color: var(--purple);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.pc-stat .lbl {
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 18ch;
  line-height: 1.4;
}
.pc-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  height: 14px;
  border-radius: 100px;
  overflow: hidden;
  margin: 18px 0 8px;
}
.pc-bar .fill {
  background: linear-gradient(90deg, var(--p-400), var(--p-700));
  position: relative;
  overflow: hidden;
}
.pc-bar .fill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 100% { transform: translateX(200%); } }
.pc-bar .ghost { background: var(--surface-2); }
.pc-bar.r-80 .fill { grid-column: 1 / span 1; }
.pc-bar.r-80 .ghost { grid-column: 2 / span 1; }
.pc-legend {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.pc-legend strong { color: var(--ink-2); font-weight: 500; }

.pc-divider {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
.pc-mini {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.pc-mini em { color: var(--purple); font-style: normal; }
.pc-divider p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ===================== CASES (Bento) ===================== */
.cases {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cases-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 760px) {
  .cases-head { grid-template-columns: 1fr; }
}
.cases-head .section-lead { margin-bottom: 0; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.bento .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.bento .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px -32px rgba(70, 30, 160, 0.22);
  border-color: var(--p-200);
}
.bento .c-1 { grid-column: span 8; }
.bento .c-2 { grid-column: span 4; }
.bento .c-3 { grid-column: span 4; }
.bento .c-4 { grid-column: span 8; }
.bento .c-5 { grid-column: span 6; }
.bento .c-6 { grid-column: span 6; }
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card { grid-column: span 2 !important; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento .card { grid-column: span 1 !important; }
}

.case-num {
  display: inline-flex;
  align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 600;
}
.case-num::before {
  content: ''; width: 20px; height: 1px; background: var(--purple);
}
.case-industry {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.case-industry .tag {
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11.5px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.case-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.case-context {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.case-solution {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.65;
  border-top: 1px dashed var(--line-strong);
  padding-top: 16px;
}
.case-solution strong { color: var(--ink); font-weight: 600; }

/* Result KPI row inside a case */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 4px 0 18px;
}
.kpi {
  background: var(--surface-2);
  border-radius: var(--r-sm);
  padding: 12px 14px;
}
.kpi .v {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--purple);
  line-height: 1;
  letter-spacing: -0.02em;
}
.kpi .l {
  font-size: 11.5px;
  color: var(--ink-mute);
  margin-top: 6px;
  line-height: 1.3;
}

/* === CASE VISUAL — Nurse calendar heatmap === */
.viz-roster {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 3px;
  margin: 18px 0 22px;
}
.viz-roster .cell {
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--surface-2);
}
.viz-roster .cell.l1 { background: var(--p-50); }
.viz-roster .cell.l2 { background: var(--p-200); }
.viz-roster .cell.l3 { background: var(--p-400); }
.viz-roster .cell.l4 { background: var(--p-600); }
.viz-roster .cell.gap { background: repeating-linear-gradient(45deg, var(--coral-2), var(--coral-2) 2px, #fff 2px, #fff 4px); }
.viz-legend {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.viz-legend .scale {
  display: inline-flex; align-items: center; gap: 4px;
}
.viz-legend .scale span {
  width: 12px; height: 12px; border-radius: 3px;
}

/* === CASE VISUAL — Channel merge === */
.viz-channels {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  gap: 8px;
  align-items: center;
  margin: 12px 0 22px;
}
.viz-channels .ch-stack {
  display: flex; flex-direction: column;
  gap: 6px;
}
.viz-channels .ch {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11.5px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
}
.viz-channels .ch .d {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-mute);
}
.viz-channels .ch.email .d   { background: var(--purple); }
.viz-channels .ch.wapp .d    { background: var(--teal); }
.viz-channels .ch.portal .d  { background: var(--amber); }
.viz-channels .arrow-x {
  text-align: center; color: var(--ink-mute); font-size: 16px;
}
.viz-channels .agent {
  background: linear-gradient(160deg, var(--ink) 0%, #2b2540 100%);
  color: #fff;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.viz-channels .agent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 77, 238, 0.4), transparent 60%);
}
.viz-channels .agent .lbl {
  position: relative;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-200);
  margin-bottom: 4px;
}
.viz-channels .agent .nm {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.1;
}
.viz-channels .clean {
  background: var(--p-50);
  border: 1px solid var(--p-100);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11.5px;
  color: var(--p-800);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
}
.viz-channels .clean .d {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple);
}

/* === CASE VISUAL — Claim funnel === */
.viz-funnel {
  display: flex; flex-direction: column;
  gap: 8px;
  margin: 12px 0 22px;
}
.viz-funnel .row {
  display: grid;
  grid-template-columns: 90px 1fr 64px;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
}
.viz-funnel .row .lbl {
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.viz-funnel .row .bar {
  height: 22px;
  background: var(--surface-2);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.viz-funnel .row .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--p-400), var(--p-700));
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 8px;
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  border-radius: 6px;
  position: relative;
}
.viz-funnel .row .fill.lite {
  background: linear-gradient(90deg, var(--p-100), var(--p-200));
  color: var(--p-800);
}
.viz-funnel .row .fill.coral {
  background: linear-gradient(90deg, var(--coral-2), var(--coral));
  color: #fff;
}
.viz-funnel .row .v {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 600;
  font-family: var(--sans);
}
.viz-funnel .delta {
  margin-top: 10px;
  display: flex; gap: 8px; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  padding: 8px 12px;
  background: var(--p-50);
  border-radius: 8px;
  letter-spacing: 0.04em;
}

/* Confidential meta */
.confidential {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 11.5px;
  color: var(--ink-mute);
  font-family: var(--mono);
  display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.02em;
}
.confidential::before {
  content: '◐'; color: var(--purple);
}

/* === Small cards in bento (results-only / quote) === */
.bento .card.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.bento .card.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(124, 77, 238, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(180, 130, 255, 0.20), transparent 60%);
  pointer-events: none;
}
.bento .card.dark > * { position: relative; }
.bento .card.dark .case-title { color: #fff; }
.bento .card.dark .case-num { color: var(--p-300); }
.bento .card.dark .case-num::before { background: var(--p-300); }
.bento .card.dark .kpi { background: rgba(255,255,255,0.05); }
.bento .card.dark .kpi .v { color: var(--p-300); }
.bento .card.dark .kpi .l { color: rgba(255,255,255,0.55); }
.bento .card.dark .confidential { color: rgba(255,255,255,0.5); border-top-color: rgba(255,255,255,0.12); }

/* ===================== FRAMEWORK ===================== */
.framework-intro { max-width: 720px; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 880px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col {
  padding: 36px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
}
.compare-col.old { background: var(--bg-soft); }
.compare-col.new {
  border-color: var(--p-200);
  background: linear-gradient(180deg, #fff 0%, var(--p-50) 100%);
  box-shadow: 0 30px 60px -30px var(--purple-glow);
}
.compare-col.new::after {
  content: 'OUR FRAMEWORK';
  position: absolute;
  top: -12px; right: 24px;
  background: var(--ink);
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.compare-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.compare-col.new .compare-head { color: var(--purple); }
.compare-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.18;
}
.compare-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
}
.compare-list li {
  padding-left: 32px;
  position: relative;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}
.compare-list li::before {
  content: ''; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
}
.compare-col.old .compare-list li::before {
  background: var(--coral-2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M7 7 L13 13 M13 7 L7 13' stroke='%23e85d4a' stroke-width='1.8' stroke-linecap='round'/></svg>");
}
.compare-col.new .compare-list li::before {
  background: var(--p-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M6 10.5 L9 13.5 L14.5 7.5' stroke='%236a35e0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
}
.compare-list li strong { color: var(--ink); font-weight: 600; }

/* ===================== AGENT FLOW (How agents handle wrong) ===================== */
.agent-flow {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px 48px 56px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 760px) {
  .agent-flow { padding: 32px; }
}
.af-head {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
@media (max-width: 760px) { .af-head { grid-template-columns: 1fr; } }
.af-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  max-width: 24ch;
}
.af-title em { color: var(--purple); font-style: italic; }
.af-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.af-meta::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); box-shadow: 0 0 0 4px rgba(22,163,74,0.15);
}

.af-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}
@media (max-width: 880px) {
  .af-stages { grid-template-columns: 1fr; gap: 12px; }
}
.af-stage {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 16px 16px;
  position: relative;
}
.af-stage .num {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--purple);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.af-stage .nm {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.18;
}
.af-stage .ds {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.af-stage::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--ink-mute);
  z-index: 2;
}
.af-stage:last-child::after { display: none; }
@media (max-width: 880px) { .af-stage::after { display: none; } }

/* "guardrails" branching off */
.af-rails {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 760px) { .af-rails { grid-template-columns: 1fr; } }
.af-rail {
  background: var(--p-50);
  border: 1px solid var(--p-100);
  border-radius: var(--r-md);
  padding: 18px 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.af-rail .icb {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--purple);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.af-rail .icb svg { width: 16px; height: 16px; }
.af-rail .ttl {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 2px;
}
.af-rail .ds {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ===================== APPROACH TIMELINE ===================== */
.timeline {
  position: relative;
  margin-top: 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 32px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
}
.timeline::after {
  content: '';
  position: absolute;
  left: 32px; top: 0;
  width: 2px;
  height: var(--scroll-line, 0%);
  background: linear-gradient(180deg, var(--p-400), var(--p-700));
  border-radius: 2px;
  transition: height 0.2s linear;
}
@media (max-width: 600px) {
  .timeline::before, .timeline::after { left: 18px; }
}

.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
}
@media (max-width: 600px) {
  .tl-step { grid-template-columns: 56px 1fr; gap: 18px; }
}
.tl-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--ink-mute);
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--ease);
}
.tl-step.in .tl-dot {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 0 0 6px var(--p-50);
}
@media (max-width: 600px) {
  .tl-dot { width: 36px; height: 36px; font-size: 14px; }
}
.tl-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.tl-body:hover {
  transform: translateX(6px);
  border-color: var(--p-200);
  box-shadow: 0 16px 40px -22px var(--purple-glow);
}
.tl-meta {
  display: flex; gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.tl-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.tl-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: var(--surface-2);
  border-radius: 4px;
}
.tl-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.18;
}
.tl-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.tl-deliv {
  margin-top: 18px;
  display: flex; gap: 8px;
  flex-wrap: wrap;
}
.tl-deliv span {
  font-size: 11.5px;
  font-family: var(--mono);
  color: var(--ink-2);
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ===================== TECH STACK CONSTELLATION ===================== */
.stack-section {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  margin: 0 24px;
  padding: 96px 56px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 760px) {
  .stack-section { margin: 0 16px; padding: 72px 28px; }
}
.stack-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(124, 77, 238, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(15, 181, 163, 0.18), transparent 60%);
  pointer-events: none;
}
.stack-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}
.stack-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px) { .stack-grid { grid-template-columns: 1fr; gap: 40px; } }
.stack-section .section-tag { color: var(--p-300); }
.stack-section .section-tag::before { background: var(--p-300); }
.stack-section .section-h2 { color: #fff; }
.stack-section .section-h2 em { color: var(--p-300); }
.stack-section .lead {
  font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.65;
}
.stack-section .lead strong { color: #fff; font-weight: 500; }

/* Floating chips arrangement */
.constellation {
  position: relative;
  aspect-ratio: 1 / 0.78;
}
.cnst-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 9px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
  animation: float 8s ease-in-out infinite;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.cnst-chip:hover {
  background: rgba(124, 77, 238, 0.25);
  border-color: var(--p-300);
  transform: translateY(-4px) scale(1.04);
}
.cnst-chip .d {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--p-400);
  box-shadow: 0 0 8px var(--p-400);
}
.cnst-chip .d.t { background: var(--teal);  box-shadow: 0 0 8px var(--teal); }
.cnst-chip .d.a { background: var(--amber); box-shadow: 0 0 8px var(--amber); }

/* exact placements */
.c-anthropic { top: 4%;  left: 14%; animation-delay: 0s; }
.c-openai    { top: 14%; left: 56%; animation-delay: 1.5s; }
.c-gemini    { top: 6%;  right: 4%; animation-delay: 0.5s; }
.c-langgraph { top: 30%; left: 4%;  animation-delay: 2s; }
.c-crewai    { top: 38%; left: 38%; animation-delay: 1s; }
.c-llama     { top: 30%; right: 14%; animation-delay: 2.5s; }
.c-bedrock   { top: 58%; left: 18%; animation-delay: 0.8s; }
.c-azure     { top: 50%; left: 54%; animation-delay: 1.8s; }
.c-g42       { top: 58%; right: 4%; animation-delay: 0.3s; }
.c-supabase  { top: 80%; left: 4%;  animation-delay: 2.2s; }
.c-pg        { top: 84%; left: 42%; animation-delay: 0.6s; }
.c-temporal  { top: 76%; right: 12%; animation-delay: 1.3s; }

@media (max-width: 760px) {
  .constellation { aspect-ratio: 1 / 1.4; }
}

/* ===================== WHY US ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }
.why-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
  display: flex; gap: 22px;
}
.why-cell:hover {
  transform: translateY(-4px);
  border-color: var(--p-200);
  box-shadow: 0 24px 60px -28px var(--purple-glow);
}
.why-glyph {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--p-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple);
  position: relative;
}
.why-glyph svg { width: 26px; height: 26px; }
.why-cell-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-weight: 600;
}
.why-cell-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.22;
}
.why-cell-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.62;
}

/* ===================== HERO CLIENT LOGOS — logo wall ===================== */
.hero-clients {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hc-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hc-label::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.hc-wall {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: nowrap;
}
.hc-card {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 2px 10px -6px rgba(70, 30, 160, 0.10);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.hc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(124,77,238,0.10) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.hc-card:hover {
  transform: translateY(-4px);
  border-color: var(--p-200);
  box-shadow: 0 16px 34px -16px rgba(70, 30, 160, 0.28);
}
.hc-card:hover::after { transform: translateX(120%); }

/* Vodafone */
.brand-vodafone .vf-icon { width: 26px; height: 26px; flex-shrink: 0; }
.brand-vodafone .vf-word {
  font-family: 'Geist', sans-serif;
  color: #e60000;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.03em;
}

/* CP Axtra */
.brand-cpaxtra .cp-badge {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #e2231a, #b3160f);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}
.brand-cpaxtra .cp-word {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #14213d;
}

/* Aster */
.brand-aster .as-icon { width: 26px; height: 26px; flex-shrink: 0; }
.brand-aster .as-word {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #2a3b47;
}

/* The New American — masthead */
.brand-tna { flex-direction: column; gap: 1px; line-height: 1; }
.brand-tna .tna-the {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 11px;
  color: #b3261e;
  letter-spacing: 0.02em;
}
.brand-tna .tna-main {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #14213d;
  white-space: nowrap;
}

/* 550 Group */
.brand-550 .g550-num {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.brand-550 .g550-word {
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  border-left: 1px solid var(--line-strong);
  padding-left: 7px;
  margin-left: 1px;
}

@media (max-width: 900px) {
  .hc-wall {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    margin: 0 -20px;
    padding-left: 20px; padding-right: 20px;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
  .hc-wall::-webkit-scrollbar { display: none; }
  .hc-wall { scrollbar-width: none; }
  .hc-card {
    flex: 0 0 auto;
    min-width: 140px;
    scroll-snap-align: start;
    height: 52px;
  }
}

/* ===================== CASE WIDE (case 3) ===================== */
.case-wide-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
}
@media (max-width: 880px) {
  .case-wide-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ===================== TESTIMONIAL — dark, modern slab ===================== */
.testimonial-section {
  padding: 80px 0 120px;
}
.testimonial-card {
  position: relative;
  background: #0c0a1f;
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}
.tc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.tc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.tc-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #7c4dee, transparent 65%);
  top: -180px; left: -120px;
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.tc-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #b69bfb, transparent 65%);
  bottom: -160px; right: -80px;
  animation: orb-drift 22s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  0%   { transform: translate(0, 0)   scale(1);   }
  100% { transform: translate(40px, 20px) scale(1.12); }
}
.tc-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 75%);
}
.tc-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
.tc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tc-stars {
  color: var(--amber);
  letter-spacing: 0.05em;
  font-family: var(--sans);
  font-size: 12px;
}

.tc-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 48px;
  position: relative;
  text-wrap: balance;
}
.tc-quote em {
  color: var(--p-300);
  font-style: italic;
  background: linear-gradient(120deg, #b69bfb, #d4c2fd 50%, #b69bfb);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shine 8s linear infinite;
}
.tc-mark {
  font-family: var(--serif);
  font-size: 1.2em;
  color: var(--p-300);
  margin-right: 4px;
  display: inline-block;
  vertical-align: -0.05em;
}

.tc-attr {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.tc-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--p-400), var(--p-700));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 24px -10px var(--purple-glow), inset 0 1px 0 rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.tc-name {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 3px;
}
.tc-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: var(--sans);
}
.tc-ref {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
}
.tc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.20);
}
@media (max-width: 700px) {
  .tc-ref { margin-left: 0; order: 3; }
}

/* legacy editorial quote — keep for safety, hidden */
.tquote, .tquote-attr { display: none; }

/* ===================== FAQ ===================== */
.faq-grid {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--p-200); }
.faq-item.open {
  border-color: var(--p-300);
  box-shadow: 0 14px 36px -22px var(--purple-glow);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.faq-toggle {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--p-50);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.faq-toggle svg { width: 14px; height: 14px; }
.faq-item.open .faq-toggle {
  background: var(--purple); color: #fff; transform: rotate(45deg);
}
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  padding: 0 28px 24px 28px;
  max-width: 70ch;
}

/* ===================== CTA FORM ===================== */
.cta-section {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  background: var(--bg-soft);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, var(--p-50), transparent 65%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .cta-grid { grid-template-columns: 1fr; gap: 40px; } }

.cta-head .section-h2 { margin-bottom: 24px; }
.cta-head .lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 28px;
}
.cta-bullets {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.cta-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.cta-bullets svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--purple);
}
.cta-meta {
  display: flex; gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cta-meta div { font-size: 13px; color: var(--ink-mute); line-height: 1.5; }
.cta-meta strong { display: block; font-size: 14px; color: var(--ink); font-weight: 600; margin-bottom: 2px; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow:
    0 30px 80px -30px rgba(70, 30, 160, 0.25),
    0 2px 8px -4px rgba(70, 30, 160, 0.06);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--p-400), var(--p-700));
}
.form-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.form-row { display: grid; gap: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row.two { grid-template-columns: 1fr; } }
.field { position: relative; }
.field label {
  top: 50%; left: 16px;
  font-size: 14px;
  color: var(--ink-mute);
  pointer-events: none;
  transition: all 0.2s var(--ease);
  background: var(--surface);
  padding: 0 4px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 18px 14px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  letter-spacing: -0.005em;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
  padding-top: 22px;
  line-height: 1.5;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--p-50);
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field select:valid + label,
.field select:focus + label {
  top: 0;
  font-size: 11px;
  color: var(--purple);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><path d='M3 6l5 5 5-5' stroke='%236a35e0' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  padding-top: 22px;
  cursor: pointer;
}
.form-submit {
  margin-top: 22px; width: 100%;
  justify-content: center;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 500;
}
.form-fine {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.55;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 16px;
}
.form-card.sent .form-actual { display: none; }
.form-card.sent .form-success { display: block; }
.form-success .ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--p-50);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.form-success .ic svg { width: 28px; height: 28px; color: var(--purple); }
.form-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 auto;
  line-height: 1.55;
}

/* ===================== FOOTER ===================== */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  background: var(--bg);
  position: relative;
  z-index: 3;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}
.foot-brand .logo-img { height: 36px; margin-bottom: 14px; }
.foot-brand p {
  font-size: 14px;
  color: var(--ink-mute);
  max-width: 40ch;
  line-height: 1.6;
}
.foot-meta {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.7;
  text-align: right;
}
.foot-locations {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: flex-end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
@media (max-width: 700px) {
  .foot-meta, .foot-locations { text-align: left; justify-content: flex-start; }
}

/* ===================== STICKY CTA ===================== */
.sticky-cta {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.sticky-cta.show {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.sticky-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  box-shadow: 0 14px 40px -10px rgba(70, 30, 160, 0.45);
  transition: transform 0.2s, background 0.2s;
}
.sticky-cta a:hover {
  background: var(--purple);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .sticky-cta { left: 22px; right: 22px; }
  .sticky-cta a { width: 100%; justify-content: center; }
}

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* =========================================================
   GRAPHIC VIZ COMPONENTS (v3 — more visuals)
   ========================================================= */

/* ---- Pilot Mortality Funnel ---- */
.pmf {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(70, 30, 160, 0.18);
}
.pmf-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 12px;
}
.pmf-title {
  font-size: 13px; color: var(--ink-2); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.pmf-title .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 4px var(--p-50);
}
.pmf-source {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--ink-mute); letter-spacing: 0.06em;
}

.pmf-headline {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.pmf-headline .big {
  font-family: var(--serif);
  font-size: clamp(74px, 11vw, 124px);
  font-weight: 400;
  color: var(--purple);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.pmf-headline .lbl {
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 22ch;
  line-height: 1.4;
}

.pmf-funnel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 24px 0 12px;
  position: relative;
}
.pmf-stage {
  text-align: center;
  position: relative;
}
.pmf-stage .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  min-height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.pmf-bar {
  height: 78px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: flex; align-items: flex-end;
  justify-content: center;
}
.pmf-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--p-400), var(--p-700));
  border-radius: 7px 7px 0 0;
  position: relative;
  transition: height 1.2s var(--ease);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.pmf-fill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: translateY(110%);
  animation: shimmer-y 4s linear infinite;
}
@keyframes shimmer-y {
  to { transform: translateY(-110%); }
}
.pmf-drop {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--warn);
  font-weight: 600;
  background: var(--coral-2);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.pmf-stage .v {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.pmf-arrow {
  position: absolute;
  top: 42px;
  right: -4px;
  z-index: 2;
  font-size: 12px;
  color: var(--ink-mute);
}
.pmf-stage:last-child .pmf-arrow { display: none; }

.pmf-divider {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
.pmf-mini {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.pmf-mini em { color: var(--purple); font-style: normal; }
.pmf-divider p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---- Phase Illustrations (timeline) ---- */
.tl-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.tl-body.has-viz {
  grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 760px) {
  .tl-body.has-viz { grid-template-columns: 1fr; }
}
.tl-viz {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.tl-viz .viz-title {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Phase 1 — Opportunity Matrix */
.op-matrix {
  display: flex; flex-direction: column;
  gap: 8px;
}
.op-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}
.op-row .nm {
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.op-bars {
  display: flex; gap: 4px; align-items: center;
}
.op-bars .b {
  width: 7px; height: 14px;
  background: var(--surface-2);
  border-radius: 2px;
}
.op-bars .b.on { background: var(--purple); }
.op-row .score {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  background: var(--p-50);
  border-radius: 4px;
  min-width: 38px;
  text-align: center;
}

/* Phase 2 — Live dashboard */
.dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dash-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
}
.dash-card .lb {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.dash-card .vl {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.dash-card .vl em { color: var(--purple); font-style: normal; }
.dash-card .ch {
  margin-top: 6px;
  font-size: 10.5px;
  color: var(--success);
  font-family: var(--mono);
}
.dash-card .ch.warn { color: var(--warn); }
.dash-spark {
  margin-top: 12px;
  height: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 10px;
  display: flex; align-items: center; gap: 6px;
}
.dash-spark .sp {
  flex: 1;
  height: 100%;
  position: relative;
}
.dash-spark .sp::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(124,77,238,0.20), transparent 80%);
  clip-path: polygon(0 70%, 8% 60%, 16% 65%, 24% 50%, 32% 55%, 40% 35%, 48% 40%, 56% 25%, 64% 30%, 72% 18%, 80% 22%, 88% 12%, 100% 8%, 100% 100%, 0 100%);
}
.dash-spark .sp::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--purple), transparent 80%);
  clip-path: polygon(0 70%, 8% 60%, 16% 65%, 24% 50%, 32% 55%, 40% 35%, 48% 40%, 56% 25%, 64% 30%, 72% 18%, 80% 22%, 88% 12%, 100% 8%, 100% 9%, 88% 13%, 80% 23%, 72% 19%, 64% 31%, 56% 26%, 48% 41%, 40% 36%, 32% 56%, 24% 51%, 16% 66%, 8% 61%, 0 71%);
  opacity: 0.9;
}
.dash-spark .sp-label {
  font-family: var(--mono); font-size: 9.5px;
  color: var(--ink-mute); letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Phase 3 — Integration topology */
.topo {
  position: relative;
  flex: 1;
  min-height: 160px;
}
.topo-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 6px 18px -6px var(--purple-glow);
}
.topo-node {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 9px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  z-index: 2;
}
.topo-n1 { top: 4%;  left: 6%; }
.topo-n2 { top: 4%;  right: 6%; }
.topo-n3 { top: 50%; left: 0; transform: translateY(-50%); }
.topo-n4 { top: 50%; right: 0; transform: translateY(-50%); }
.topo-n5 { bottom: 4%; left: 18%; }
.topo-n6 { bottom: 4%; right: 18%; }
.topo svg.topo-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.topo svg .ln {
  stroke: var(--p-200);
  stroke-width: 1.2;
  stroke-dasharray: 3 3;
  fill: none;
  animation: dash 6s linear infinite;
}

/* Phase 4 — Deliverables stack */
.deliv-stack {
  display: flex; flex-direction: column;
  gap: 6px;
  flex: 1;
}
.deliv-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--ink-2);
}
.deliv-item .ic {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--p-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.deliv-item .ic svg { width: 12px; height: 12px; }
.deliv-item .check {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--success);
  letter-spacing: 0.06em;
}
.deliv-item.transfer { border-color: var(--p-200); background: linear-gradient(90deg, #fff, var(--p-50)); }

/* ---- Why Us — Mini Illustrations ---- */
.why-cell {
  flex-direction: column;
  gap: 24px;
}
.why-illus {
  height: 132px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

/* GCC map mini */
.illus-map {
  width: 100%; height: 100%;
}
.illus-map svg { width: 100%; height: 100%; display: block; }
.illus-map .pin {
  animation: pin-pulse 3s ease-in-out infinite;
}
.illus-map .pin-2 { animation-delay: 0.5s; }
.illus-map .pin-3 { animation-delay: 1s; }
.illus-map .pin-4 { animation-delay: 1.5s; }
.illus-map .pin-5 { animation-delay: 2s; }
@keyframes pin-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* IP ownership vault */
.illus-vault {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  height: 100%;
}
.illus-vault .file {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.03em;
}
.illus-vault .file .ic {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--p-50);
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.illus-vault .file .ic svg { width: 8px; height: 8px; }
.illus-vault .file .lock {
  margin-left: auto;
  font-size: 10px;
  color: var(--success);
}

/* Engineer headcount grid */
.illus-eng {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  align-items: center;
  height: 100%;
}
.illus-eng .dot {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p-300), var(--p-600));
  opacity: 0.85;
}
.illus-eng .dot.muted { background: var(--surface-2); border: 1px solid var(--line); opacity: 1; }
.illus-eng .count {
  grid-column: span 12;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-top: 4px;
  text-align: right;
}

/* CEO in the room — meeting table */
.illus-meet {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-meet svg { width: 100%; height: 100%; }
.illus-meet .seat-ceo { fill: var(--purple); }
.illus-meet .table { fill: #fff; stroke: var(--line-strong); stroke-width: 1.2; }
.illus-meet .seat { fill: var(--surface-3); }
.illus-meet .label {
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--purple);
  font-weight: 600;
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--p-200);
}
.illus-meet .label-ceo {
  top: 6%; left: 50%; transform: translateX(-50%);
}

.why-cell-body { display: contents; }
.why-cell .why-glyph { display: none; }

/* ---- Section dividers — subtle SVG flourish ---- */
.flourish {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 0;
  opacity: 0.45;
}
.flourish svg { width: 64px; height: 14px; }

@media (max-width: 880px) {
  .pmf { padding: 24px; }
  .pmf-funnel { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .pmf-stage .label { font-size: 8.5px; min-height: 18px; }
  .pmf-bar { height: 60px; }
  .pmf-stage .v { font-size: 17px; }
  .pmf-drop { font-size: 8.5px; padding: 1px 4px; }
  .pmf-arrow { display: none; }

  .tl-body.has-viz { grid-template-columns: 1fr; gap: 18px; }
  .tl-viz { padding: 14px; min-height: 160px; }

  .why-cell { gap: 18px; }
  .why-illus { height: 110px; padding: 10px; }
}

/* ===================================================
   MOBILE OPTIMIZATION
   =================================================== */

@media (max-width: 880px) {
  /* tighten section vertical rhythm */
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* nav */
  .nav-inner { padding: 12px 16px; }
  .logo-img { height: 28px; }

  /* hero copy tighter */
  .hero { padding: 24px 0 32px; }
  .hero-grid { gap: 32px; }
  .h1 { font-size: clamp(42px, 9vw, 64px); margin-bottom: 20px; }
  .h1-sub { font-size: 16.5px; margin-bottom: 28px; }
  .eyebrow { margin-bottom: 20px; font-size: 12px; padding-left: 4px; }
  .eyebrow .chip { font-size: 10px; padding: 3px 8px; }

  .hero-ctas .btn { padding: 13px 18px; font-size: 14px; }

  /* hero visual scales down */
  .hero-visual { aspect-ratio: 1 / 0.9; }
  .hv-hub { width: 96px; height: 96px; font-size: 26px; }
  .hv-chip { padding: 8px 12px; font-size: 11px; }
  .hv-chip .ic { width: 22px; height: 22px; border-radius: 6px; }
  .hv-chip.right { right: -2%; }

  /* hero meta wrap */
  .hero-meta { font-size: 12.5px; flex-wrap: wrap; gap: 12px; }

  /* trust strip */
  .trust { padding: 40px 0 48px; }
  .trust-row { gap: 22px 32px; }
  .trust-row .bold  { font-size: 18px; }
  .trust-row .serif { font-size: 19px; }
  .trust-row .mono  { font-size: 12px; }
  .trust-row span   { font-size: 15px; }

  /* section h2 */
  .section-h2 { font-size: clamp(32px, 7.5vw, 48px); }
  .section-lead { font-size: 16px; margin-bottom: 36px; }

  /* problem chart */
  .pilot-chart { padding: 28px; }
  .pc-stat .big { font-size: clamp(72px, 16vw, 96px); }
  .pc-mini { font-size: 44px; }

  /* bento padding */
  .bento .card { padding: 24px; border-radius: 18px; }
  .case-title { font-size: 22px; }
  .case-context { font-size: 14px; }
  .case-solution { font-size: 13px; }
  .kpi-row { grid-template-columns: 1fr 1fr !important; gap: 8px; }
  .kpi { padding: 10px 12px; }
  .kpi .v { font-size: 22px; }

  /* case 1 roster heatmap — keep dense but fits */
  .viz-roster { gap: 2px; }

  /* case 2 channel merge — stack vertically on mobile */
  .viz-channels {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .viz-channels .arrow-x {
    transform: rotate(90deg);
    height: 18px;
  }
  .viz-channels .agent { padding: 14px; }

  /* case 3 wide grid — already collapses at 880 via case-wide-inner rule */
  .case-wide-inner { gap: 24px; }
  .case-wide .case-title { font-size: 22px !important; }

  /* framework / compare */
  .compare-col { padding: 28px 24px; }
  .compare-title { font-size: 22px; }
  .compare-col.new::after { right: 16px; font-size: 9px; padding: 4px 10px; }

  /* agent flow */
  .agent-flow { padding: 32px 24px; margin-top: 36px; }
  .af-title { font-size: 24px; }
  .af-stages { grid-template-columns: 1fr; gap: 10px; }
  .af-stage { padding: 16px; }
  .af-rails { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
  .af-rail { padding: 16px; }

  /* approach timeline */
  .tl-step { grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 0; }
  .tl-dot { width: 48px; height: 48px; font-size: 18px; }
  .timeline::before, .timeline::after { left: 24px; }
  .tl-body { padding: 22px 22px; border-radius: 16px; }
  .tl-title { font-size: 22px; }
  .tl-desc { font-size: 14px; }
  .tl-deliv span { font-size: 10.5px; padding: 3px 8px; }

  /* tech stack constellation */
  .stack-section { margin: 0 16px; padding: 56px 24px; border-radius: 24px; }
  .stack-grid { grid-template-columns: 1fr; gap: 32px; }
  .constellation { aspect-ratio: 1 / 1.6; max-height: 560px; }
  .cnst-chip { font-size: 12px; padding: 7px 12px; }

  /* re-place chips into a compact column layout on mobile */
  .c-anthropic { top: 2%;  left: 6%;  }
  .c-openai    { top: 10%; right: 6%; left: auto; }
  .c-gemini    { top: 18%; left: 24%; right: auto; }
  .c-langgraph { top: 26%; right: 4%; left: auto; }
  .c-crewai    { top: 34%; left: 4%;  }
  .c-llama     { top: 42%; right: 8%; left: auto; }
  .c-bedrock   { top: 50%; left: 14%; }
  .c-azure     { top: 58%; right: 4%; left: auto; }
  .c-g42       { top: 66%; left: 4%;  right: auto; }
  .c-supabase  { top: 74%; right: 14%; left: auto; }
  .c-pg        { top: 82%; left: 6%;  }
  .c-temporal  { top: 90%; right: 8%; left: auto; }

  /* why us */
  .why-cell { padding: 24px; gap: 16px; flex-direction: column; }
  .why-glyph { width: 48px; height: 48px; }
  .why-glyph svg { width: 22px; height: 22px; }
  .why-cell-title { font-size: 19px; }

  /* testimonial */
  .testimonial-section { padding: 56px 0 80px; }
  .testimonial-card { padding: 48px 28px; border-radius: 20px; }
  .tc-quote { font-size: clamp(22px, 6vw, 32px); margin-bottom: 32px; }
  .tc-attr { gap: 12px; padding-top: 24px; }
  .tc-avatar { width: 44px; height: 44px; font-size: 10px; }
  .tc-name { font-size: 14px; }
  .tc-meta { font-size: 12px; }

  /* faq */
  .faq-q { padding: 18px 20px; font-size: 17px; gap: 16px; }
  .faq-a { padding: 0 20px 20px 20px; font-size: 14px; }
  .faq-toggle { width: 28px; height: 28px; }

  /* cta */
  .cta-section { padding: 72px 0 88px; }
  .cta-grid { gap: 32px; }
  .form-card { padding: 24px; border-radius: 22px; }
  .form-title { font-size: 22px; }
  .field input, .field textarea, .field select { font-size: 16px; /* prevent iOS zoom */ }
  .cta-meta { gap: 16px; padding-top: 20px; }

  /* footer */
  footer { padding: 40px 0 32px; }
  .foot-grid { flex-direction: column; align-items: flex-start; gap: 24px; }
  .foot-meta, .foot-locations { text-align: left; justify-content: flex-start; }
  .foot-brand .logo-img { height: 30px; }

  /* sticky cta */
  .sticky-cta { bottom: 16px; }
  .sticky-cta a { padding: 12px 18px; font-size: 13.5px; }
}

@media (max-width: 520px) {
  .h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero-ctas { gap: 8px; }
  .hero-ctas .btn { padding: 12px 16px; font-size: 13.5px; width: 100%; justify-content: center; }
  .hero-clients { margin-top: 28px; padding-top: 22px; }
  .hc-row { gap: 14px 22px; }

  /* hero chips — reduce clutter on tiny screens */
  .hv-chip.hv-chip-3 { display: none; }
  .hv-hub { width: 88px; height: 88px; font-size: 24px; }

  /* avoid testimonial quote getting unreadable */
  .tc-quote { font-size: 22px; }
  .tc-eyebrow { margin-bottom: 24px; font-size: 10px; padding: 5px 12px; }

  /* nav links hide already, ensure CTA still visible */
  .nav-cta { padding: 8px 14px !important; font-size: 12px !important; }

  /* compare cols */
  .compare-col { padding: 24px 20px; }
  .compare-list li { font-size: 13.5px; padding-left: 28px; }

  /* funnel rows */
  .viz-funnel .row { grid-template-columns: 70px 1fr 50px; gap: 8px; }
  .viz-funnel .row .lbl { font-size: 10.5px; }
}

/* =========================================================
   v5 — Nav logo highlight, modal, richer case animations
   ========================================================= */

/* ----- Nav logo: single line + highlighted chip ----- */
.logo-link {
  padding: 6px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px -10px rgba(70, 30, 160, 0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  white-space: nowrap;
  line-height: 0;
}
.logo-link:hover {
  transform: translateY(-1px);
  border-color: var(--p-200);
  box-shadow: 0 10px 26px -12px var(--purple-glow);
}
.nav .logo-img { height: 30px; }
.foot-brand .logo-link { background: transparent; border: none; box-shadow: none; padding: 0; }

@media (max-width: 820px) {
  .nav .logo-img { height: 26px; }
  .logo-link { padding: 5px 10px; }
}

/* ----- CTA Modal ----- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 10, 31, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 40px 100px -30px rgba(12, 10, 31, 0.6);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  max-height: 92vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: linear-gradient(90deg, var(--p-400), var(--p-700));
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.modal-close:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
.modal-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--p-50);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.modal-eyebrow .d { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
.modal-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.modal .form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.modal .form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 420px) { .modal .form-row.two { grid-template-columns: 1fr; } }
.modal .field input,
.modal .field textarea {
  font-size: 16px;
}
.modal-submit { width: 100%; justify-content: center; margin-top: 6px; }
.modal-fine {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
}
.modal-success { display: none; text-align: center; padding: 20px 8px; }
.modal.sent .modal-form { display: none; }
.modal.sent .modal-success { display: block; }
.modal-success .ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--p-50);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  animation: pop-check 0.5s var(--ease) both;
}
@keyframes pop-check { 0% { transform: scale(0.4); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
.modal-success .ic svg { width: 28px; height: 28px; color: var(--purple); }
.modal-success h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em; }
.modal-success p { font-size: 14.5px; color: var(--ink-soft); max-width: 34ch; margin: 0 auto; line-height: 1.55; }

/* ----- Case-study scroll-triggered animations ----- */
.case-card { will-change: transform; }

/* roster heatmap cascade */
.viz-roster .cell {
  opacity: 0;
  transform: scale(0.4);
}
.case-card.viz-in .viz-roster .cell {
  animation: cellPop 0.45s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes cellPop {
  0%   { opacity: 0; transform: scale(0.4); }
  60%  { opacity: 1; transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}

/* channel chips slide-in */
.viz-channels .ch,
.viz-channels .clean {
  opacity: 0;
  transform: translateX(-10px);
}
.viz-channels .agent { opacity: 0; transform: scale(0.9); }
.case-card.viz-in .viz-channels .ch:nth-child(1) { animation: slideIn 0.5s var(--ease) 0.05s forwards; }
.case-card.viz-in .viz-channels .ch:nth-child(2) { animation: slideIn 0.5s var(--ease) 0.12s forwards; }
.case-card.viz-in .viz-channels .ch:nth-child(3) { animation: slideIn 0.5s var(--ease) 0.19s forwards; }
.case-card.viz-in .viz-channels .ch:nth-child(4) { animation: slideIn 0.5s var(--ease) 0.26s forwards; }
.case-card.viz-in .viz-channels .agent { animation: popScale 0.5s var(--ease) 0.34s forwards; }
.case-card.viz-in .viz-channels .clean { animation: slideInR 0.5s var(--ease) 0.46s forwards; }
.case-card.viz-in .viz-channels .clean:nth-child(2) { animation-delay: 0.52s; }
.case-card.viz-in .viz-channels .clean:nth-child(3) { animation-delay: 0.58s; }
.case-card.viz-in .viz-channels .clean:nth-child(4) { animation-delay: 0.64s; }
@keyframes slideIn  { to { opacity: 1; transform: translateX(0); } }
@keyframes slideInR { from { opacity: 0; transform: translateX(10px);} to { opacity: 1; transform: translateX(0); } }
@keyframes popScale { to { opacity: 1; transform: scale(1); } }

/* funnel bars grow */
.viz-funnel .fill { transform: scaleX(0); transform-origin: left center; }
.case-card.viz-in .viz-funnel .row:nth-child(1) .fill { animation: growX 0.9s var(--ease) 0.1s forwards; }
.case-card.viz-in .viz-funnel .row:nth-child(2) .fill { animation: growX 0.9s var(--ease) 0.25s forwards; }
.case-card.viz-in .viz-funnel .row:nth-child(3) .fill { animation: growX 0.9s var(--ease) 0.4s forwards; }
.case-card.viz-in .viz-funnel .row:nth-child(4) .fill { animation: growX 0.9s var(--ease) 0.55s forwards; }
.viz-funnel .delta { opacity: 0; transform: translateY(8px); }
.case-card.viz-in .viz-funnel .delta { animation: slideUp 0.6s var(--ease) 0.8s forwards; }
@keyframes growX  { to { transform: scaleX(1); } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* KPI tiles cascade */
.kpi { opacity: 0; transform: translateY(12px); }
.case-card.viz-in .kpi { animation: kpiIn 0.5s var(--ease) forwards; }
.case-card.viz-in .kpi:nth-child(1) { animation-delay: 0.1s; }
.case-card.viz-in .kpi:nth-child(2) { animation-delay: 0.18s; }
.case-card.viz-in .kpi:nth-child(3) { animation-delay: 0.26s; }
.case-card.viz-in .kpi:nth-child(4) { animation-delay: 0.34s; }
@keyframes kpiIn { to { opacity: 1; transform: translateY(0); } }
.kpi .v { display: inline-block; }
.case-card.viz-in .kpi .v { animation: kpiPop 0.5s var(--ease) both; }
@keyframes kpiPop { 0% { transform: scale(0.6); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* pmf funnel bars grow on view */
.pmf-fill { transform: scaleY(0); transform-origin: bottom; }
.pmf.viz-in .pmf-stage:nth-child(1) .pmf-fill { animation: growY 0.8s var(--ease) 0.1s forwards; }
.pmf.viz-in .pmf-stage:nth-child(2) .pmf-fill { animation: growY 0.8s var(--ease) 0.24s forwards; }
.pmf.viz-in .pmf-stage:nth-child(3) .pmf-fill { animation: growY 0.8s var(--ease) 0.38s forwards; }
.pmf.viz-in .pmf-stage:nth-child(4) .pmf-fill { animation: growY 0.8s var(--ease) 0.52s forwards; }
.pmf.viz-in .pmf-stage:nth-child(5) .pmf-fill { animation: growY 0.8s var(--ease) 0.66s forwards; }
.pmf-drop { opacity: 0; }
.pmf.viz-in .pmf-drop { animation: slideUp 0.5s var(--ease) 0.9s forwards; }
@keyframes growY { to { transform: scaleY(1); } }

/* ----- Framework af-title — bigger + animated underline ----- */
.af-title {
  font-size: clamp(34px, 4.2vw, 52px) !important;
  max-width: 20ch !important;
  line-height: 1.08 !important;
}
.af-title em {
  position: relative;
  display: inline-block;
}
.af-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0.04em;
  width: 100%; height: 0.5em;
  background: linear-gradient(90deg, var(--p-200), var(--p-400));
  opacity: 0.28;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 4px;
}
.agent-flow.viz-in .af-title em::after { animation: growX 0.9s var(--ease) 0.3s forwards; }

.agent-flow {
  position: relative;
  overflow: hidden;
}
.agent-flow::after {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--p-50), transparent 70%);
  pointer-events: none;
}
.af-stage {
  opacity: 0;
  transform: translateY(16px);
}
.agent-flow.viz-in .af-stage { animation: kpiIn 0.55s var(--ease) forwards; }
.agent-flow.viz-in .af-stage:nth-child(1) { animation-delay: 0.15s; }
.agent-flow.viz-in .af-stage:nth-child(2) { animation-delay: 0.27s; }
.agent-flow.viz-in .af-stage:nth-child(3) { animation-delay: 0.39s; }
.agent-flow.viz-in .af-stage:nth-child(4) { animation-delay: 0.51s; }
.agent-flow.viz-in .af-stage:nth-child(5) { animation-delay: 0.63s; }
.af-stage::after { transition: color 0.3s; }
.agent-flow.viz-in .af-stage::after { animation: arrowPulse 1.6s var(--ease) infinite; }
@keyframes arrowPulse {
  0%, 100% { color: var(--ink-mute); transform: translate(0, -50%); }
  50%      { color: var(--purple);  transform: translate(4px, -50%); }
}
.af-rail {
  opacity: 0;
  transform: translateY(16px);
}
.agent-flow.viz-in .af-rail { animation: kpiIn 0.55s var(--ease) forwards; }
.agent-flow.viz-in .af-rail:nth-child(1) { animation-delay: 0.7s; }
.agent-flow.viz-in .af-rail:nth-child(2) { animation-delay: 0.8s; }
.agent-flow.viz-in .af-rail:nth-child(3) { animation-delay: 0.9s; }
.af-rail .icb { transition: transform 0.3s var(--ease); }
.af-rail:hover .icb { transform: scale(1.12) rotate(-6deg); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .viz-roster .cell, .viz-channels .ch, .viz-channels .clean, .viz-channels .agent,
  .viz-funnel .fill, .viz-funnel .delta, .kpi, .af-stage, .af-rail, .pmf-fill, .pmf-drop {
    opacity: 1 !important; transform: none !important;
  }
}

/* =========================================================
   v6 — Conversion redesign: less text, more visuals
   ========================================================= */

.section-head-center { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-h2.center { margin-left: auto; margin-right: auto; }
.section-lead.center { margin-left: auto; margin-right: auto; }

/* ----- Product screenshot frame ----- */
.screen-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 34px 90px -40px rgba(70, 30, 160, 0.30), 0 4px 14px -6px rgba(70,30,160,0.08);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.screen-frame:hover { transform: translateY(-6px); box-shadow: 0 44px 110px -40px rgba(70, 30, 160, 0.38); }
.screen-frame img { width: 100%; height: auto; display: block; }

/* ----- PROBLEM split ----- */
.problem2 { padding: 110px 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split-lead { font-size: 18px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 26px; max-width: 46ch; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.fact {
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-weight: 500;
}

/* ----- HOW: 3 steps ----- */
.how { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .steps3 { grid-template-columns: 1fr; } }
.step3 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.step3:hover { transform: translateY(-4px); border-color: var(--p-200); box-shadow: 0 24px 60px -30px var(--purple-glow); }
.step3.accent { background: linear-gradient(180deg, #fff, var(--p-50)); border-color: var(--p-200); }
.step3-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.step3-num {
  font-family: var(--serif); font-style: italic; font-size: 30px;
  color: var(--purple); line-height: 1;
}
.step3-tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute); padding: 4px 10px; background: var(--surface-2); border-radius: 100px;
}
.step3-title { font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }
.step3-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; }
.step3-out {
  font-size: 13px; color: var(--p-800); font-weight: 500;
  padding-top: 14px; border-top: 1px dashed var(--p-200);
}

/* ----- Wide product screenshot band ----- */
.screen-wide {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 44px;
}
@media (max-width: 900px) { .screen-wide { grid-template-columns: 1fr; gap: 28px; padding: 28px; } }
.screen-wide-h { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 400; letter-spacing: -0.02em; color: var(--ink); line-height: 1.12; margin: 4px 0 12px; }
.screen-wide-h em { color: var(--purple); font-style: italic; }
.screen-wide-copy p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 22px; max-width: 42ch; }
.kpi-strip { display: flex; gap: 24px; flex-wrap: wrap; }
.kpi-strip .kpi-b .v { font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--purple); line-height: 1; letter-spacing: -0.02em; }
.kpi-strip .kpi-b .l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }

/* ----- OUR WORK gallery ----- */
.work { padding: 120px 0; }
.sol-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .sol-gallery { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.sol-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.sol-card:hover { transform: translateY(-6px); border-color: var(--p-200); box-shadow: 0 34px 80px -36px rgba(70,30,160,0.30); }
.sol-shot { overflow: hidden; border-bottom: 1px solid var(--line); }
.sol-shot img { width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }
.sol-card:hover .sol-shot img { transform: scale(1.03); }
.sol-card figcaption { padding: 22px 24px 26px; }
.sol-tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
.sol-title { font-family: var(--sans); font-size: 19px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.22; margin-bottom: 14px; }
.sol-kpi { font-size: 13.5px; color: var(--ink-soft); }
.sol-kpi strong { color: var(--purple); font-weight: 600; }

/* ----- Build grid ----- */
.build-grid {
  margin-top: 32px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.build-grid::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 15% 20%, rgba(124,77,238,0.35), transparent 60%);
  pointer-events: none;
}
@media (max-width: 900px) { .build-grid { grid-template-columns: 1fr; gap: 28px; padding: 30px; } }
.build-head { position: relative; }
.build-head h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 12px; }
.build-head h3 em { color: var(--p-300); font-style: italic; }
.build-head p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; max-width: 34ch; }
.build-items { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .build-items { grid-template-columns: 1fr; } }
.build-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px; font-weight: 500;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.build-item:hover { background: rgba(124,77,238,0.22); border-color: var(--p-300); transform: translateY(-2px); }
.bi-ic { font-size: 18px; filter: grayscale(0.1); }

/* ----- AUTHORITY band ----- */
.authority { padding: 40px 0 120px; }
.auth-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px -44px rgba(70,30,160,0.30);
}
@media (max-width: 860px) { .auth-card { grid-template-columns: 1fr; } }
.auth-img { position: relative; min-height: 100%; }
.auth-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) { .auth-img img { max-height: 320px; } }
.auth-copy { padding: 48px 44px; align-self: center; }
@media (max-width: 860px) { .auth-copy { padding: 32px 28px; } }
.auth-flag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 18px;
}
.auth-flag .uae {
  width: 22px; height: 15px; border-radius: 2px; overflow: hidden;
  background:
    linear-gradient(90deg, #ce1126 0 5px, transparent 5px),
    linear-gradient(180deg, #009739 0 33%, #ffffff 33% 66%, #000 66%);
  border: 1px solid var(--line);
}
.auth-h { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; letter-spacing: -0.02em; line-height: 1.06; color: var(--ink); margin-bottom: 18px; }
.auth-h em { color: var(--purple); font-style: italic; }
.auth-sub { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 28px; max-width: 52ch; }

/* ----- WHY US 2 ----- */
.why2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .why2-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why2-grid { grid-template-columns: 1fr; } }
.why2 {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.why2:hover { transform: translateY(-4px); border-color: var(--p-200); box-shadow: 0 24px 60px -30px var(--purple-glow); }
.why2-ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--p-50); color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why2-ic svg { width: 26px; height: 26px; }
.why2 h3 { font-family: var(--serif); font-size: 21px; font-weight: 400; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 10px; }
.why2 p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

@media (max-width: 860px) {
  .problem2 { padding: 72px 0; }
  .work { padding: 80px 0; }
  .section-head-center { margin-bottom: 40px; }
}

/* =========================================================
   v7 — Native product mockups (no raw ad images)
   ========================================================= */

.mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 30px 80px -42px rgba(70,30,160,0.30), 0 3px 10px -5px rgba(70,30,160,0.08);
}

/* --- Rollout mock (problem) --- */
.mock-rollout .mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 12px; color: var(--ink-2); font-weight: 500;
}
.mock-dot { width: 9px; height: 9px; border-radius: 50%; }
.mock-dot.r { background: #c0392b; } .mock-dot.y { background: #d99e2b; } .mock-dot.g { background: #16a34a; }
.mock-title { margin-left: 6px; }
.mock-flag { margin-left: auto; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; padding: 3px 9px; border-radius: 100px; }
.mock-flag.warn { background: rgba(192,57,43,0.10); color: #c33; }
.mock-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.mod {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 12px; border-radius: 10px; font-size: 11.5px; font-weight: 500;
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-2);
}
.mod .ms { width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.mod.ok { border-color: rgba(22,163,74,0.25); background: rgba(22,163,74,0.06); }
.mod.ok .ms { background: #16a34a; color: #fff; }
.mod.bad { border-color: rgba(192,57,43,0.35); background: rgba(192,57,43,0.07); color: #a33; }
.mod.bad .ms { background: #c0392b; color: #fff; }
.mod.idle { opacity: 0.6; }
.mod.idle .ms { background: var(--line-strong); color: #fff; }
.mock-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.mst { background: var(--surface-2); border-radius: 10px; padding: 12px; text-align: center; }
.mst .v { font-family: var(--serif); font-size: 30px; line-height: 1; color: var(--ink); }
.mst .v.ok { color: #16a34a; } .mst .v.warn { color: #d99e2b; } .mst .v.bad { color: #c0392b; }
.mst .l { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }
.mock-risk {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: rgba(192,57,43,0.07); border: 1px solid rgba(192,57,43,0.22);
  border-radius: 10px; padding: 12px 14px;
}
.mock-risk .rl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #a33; }
.mock-risk .rv { font-weight: 700; color: #c0392b; }
.mock-risk .rd { font-size: 12px; color: var(--ink-soft); margin-left: auto; }

/* --- Live dashboard mock --- */
.mock-dash { padding: 24px; }
.md-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.md-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.md-name { font-family: var(--serif); font-size: 22px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.md-live { font-family: var(--sans); font-size: 11px; color: #16a34a; display: inline-flex; align-items: center; gap: 5px; background: rgba(22,163,74,0.10); padding: 3px 9px; border-radius: 100px; }
.md-live .ld { width: 6px; height: 6px; border-radius: 50%; background: #16a34a; animation: pulse 2s ease-in-out infinite; }
.md-ring { position: relative; width: 64px; height: 64px; flex-shrink: 0; }
.md-ring svg { transform: rotate(-90deg); width: 64px; height: 64px; }
.md-ring .rbg { fill: none; stroke: var(--surface-3); stroke-width: 6; }
.md-ring .rfg { fill: none; stroke: var(--purple); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 170; stroke-dashoffset: 10; }
.md-ring-v { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 8px; color: var(--ink-mute); }
.md-ring-v strong { font-family: var(--serif); font-size: 17px; color: var(--ink); font-weight: 400; }
.md-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.md-kpi { background: var(--surface-2); border-radius: 10px; padding: 12px 10px; }
.md-kpi .l { font-family: var(--mono); font-size: 9px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); }
.md-kpi .v { font-family: var(--serif); font-size: 20px; color: var(--ink); margin: 4px 0 2px; }
.md-kpi .c { font-size: 10px; color: #16a34a; font-family: var(--mono); }
.md-health { background: var(--surface-2); border-radius: 12px; padding: 14px; margin-bottom: 14px; }
.md-health-top { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-mute); font-family: var(--mono); margin-bottom: 8px; }
.md-health-top .ok { color: #16a34a; }
.md-spark { width: 100%; height: 46px; display: block; }
.md-spark polyline { fill: none; stroke: var(--purple); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.md-spark polygon { fill: rgba(124,77,238,0.12); stroke: none; }
.md-issues { display: flex; flex-direction: column; gap: 6px; }
.mi { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--ink-2); padding: 9px 12px; background: var(--surface-2); border-radius: 8px; }
.mi .fx { font-family: var(--mono); font-size: 10px; color: #16a34a; }

/* --- Sol mocks (fill the sol-shot slot) --- */
.sol-mock { border-bottom: 1px solid var(--line); padding: 22px; min-height: 300px; background: linear-gradient(180deg, var(--p-50), #fff); }

.mock-chat { display: flex; flex-direction: column; gap: 8px; }
.chat-head { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-mute); font-family: var(--mono); margin-bottom: 4px; }
.chat-head .wa { width: 14px; height: 14px; border-radius: 50%; background: #25d366; }
.bub { font-size: 12.5px; line-height: 1.4; padding: 10px 12px; border-radius: 12px; max-width: 80%; }
.bub.in { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.bub.out { background: #dcf8c6; align-self: flex-end; border-bottom-right-radius: 4px; color: #14351e; }
.bub.slots { display: flex; flex-direction: column; gap: 6px; background: #eaf7dd; }
.bub .slot { background: #fff; border: 1px solid #c9e6b0; border-radius: 8px; padding: 6px 9px; font-size: 11.5px; color: #14351e; }
.bub.ok { background: #fff; border: 1px solid var(--p-200); color: var(--ink); display: flex; flex-direction: column; gap: 2px; }
.bub.ok strong { color: var(--purple); }

.mock-flow { display: flex; flex-direction: column; justify-content: center; }
.flow-cols { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; }
.fc-src { display: flex; flex-direction: column; gap: 7px; }
.src { font-size: 11.5px; padding: 8px 10px; border-radius: 8px; background: #fff; border: 1px solid var(--line); color: var(--ink-2); display: flex; align-items: center; gap: 7px; }
.src.email { color: #2a6fdb; } .src.wapp { color: #25a35a; } .src.wechat { color: #1aad19; }
.src .src-d { width: 6px; height: 6px; border-radius: 50%; background: currentColor; display: inline-block; }
.fc-agent { width: 62px; height: 62px; border-radius: 16px; background: linear-gradient(160deg, var(--p-500), var(--p-800)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; line-height: 1; box-shadow: 0 12px 26px -10px var(--purple-glow); margin: 0 auto; }
.fc-agent small { font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.fc-out { display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.fc-out .orc { color: #c2281b; font-weight: 800; font-size: 13px; letter-spacing: 0.08em; margin-bottom: 4px; }
.fc-out .row { height: 8px; border-radius: 3px; background: var(--surface-3); }
.fc-out .row.ok { background: rgba(22,163,74,0.4); }
.flow-note { font-family: var(--mono); font-size: 10.5px; color: var(--ink-mute); text-align: center; margin-top: 16px; letter-spacing: 0.02em; }

.mock-steps { display: flex; flex-direction: column; gap: 9px; justify-content: center; }
.cstep { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: var(--ink-2); font-weight: 500; }
.cstep .cn { width: 24px; height: 24px; border-radius: 7px; background: var(--p-50); color: var(--purple); display: inline-flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 12px; font-weight: 600; }
.cstep .ck { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; background: rgba(22,163,74,0.12); color: #16a34a; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.cstep .ck.live { background: var(--p-50); color: var(--purple); animation: pulse 2s ease-in-out infinite; }

/* --- Authority native visual --- */
.auth-viz { position: relative; overflow: hidden; min-height: 300px; }
.auth-viz .skyline { width: 100%; height: 100%; display: block; object-fit: cover; }
.auth-badge {
  position: absolute; left: 24px; bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 14px; padding: 12px 16px; color: #fff;
}
.auth-badge .ab-ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.18); display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; font-size: 16px; }
.auth-badge strong { display: block; font-size: 14px; font-weight: 600; }
.auth-badge span { font-size: 11px; color: rgba(255,255,255,0.7); }

/* --- v8: restored content (stat band, step chips, framework) --- */
.framework2 { padding: 110px 0; }
.stat-band {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--ink) 0%, #241d43 100%);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  position: relative; overflow: hidden;
}
.stat-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 85% 50%, rgba(124,77,238,0.35), transparent 60%);
  pointer-events: none;
}
.sb-item { position: relative; flex: 1 1 260px; }
.sb-v { font-family: var(--serif); font-size: clamp(56px, 8vw, 88px); line-height: 0.9; color: #fff; letter-spacing: -0.03em; }
.sb-item:first-child .sb-v { color: var(--p-300); }
.sb-l { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.5; margin-top: 10px; max-width: 30ch; }
.sb-div { width: 1px; height: 90px; background: rgba(255,255,255,0.14); }
@media (max-width: 760px) { .sb-div { display: none; } }
.sb-src { position: relative; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); align-self: flex-end; text-transform: uppercase; }

.step3-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.step3-chips span {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.03em;
  color: var(--ink-2); padding: 4px 9px; border-radius: 100px;
  background: var(--surface-2); border: 1px solid var(--line);
}

/* --- Agentic explainer band --- */
.explain { padding: 30px 0 0; }
.explain-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 44px;
}
@media (max-width: 900px) { .explain-inner { grid-template-columns: 1fr; gap: 28px; padding: 28px; } }
.explain-lead { font-size: 17px; color: var(--ink-soft); line-height: 1.6; max-width: 46ch; }
.explain-flow { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.ef {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 18px; font-size: 14px; font-weight: 500; color: var(--ink-2);
  box-shadow: 0 8px 22px -14px rgba(70,30,160,0.2);
}
.ef-ic { font-size: 16px; }
.ef.done { background: var(--purple); color: #fff; border-color: var(--purple); }
.ea { color: var(--p-300); font-size: 18px; }
@media (max-width: 900px) { .explain-flow .ea { transform: rotate(90deg); } .explain-flow { flex-direction: column; } }

@media (max-width: 860px) {
  .framework2 { padding: 72px 0; }
  .stat-band { padding: 28px; gap: 20px; }
  .sb-src { align-self: flex-start; }
}

/* =========================================================
   v9 — multi-color, reference-style mockups, redesigns
   ========================================================= */

body { font-weight: 400; letter-spacing: -0.006em; }

/* multi-color section tags rotate away from pure purple monotony */
.explain .section-tag { color: var(--blue-600); }
.explain .section-tag::before { background: var(--blue-600); }
.work .section-tag { color: var(--mint); }
.work .section-tag::before { background: var(--mint); }

/* ---- Regular vs Agentic comparison ---- */
.vs-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch;
  max-width: 1000px; margin: 0 auto;
}
@media (max-width: 820px) { .vs-grid { grid-template-columns: 1fr; gap: 16px; } }
.vs-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; }
.vs-card.plain { background: linear-gradient(180deg, var(--blue-50), #fff); border-color: var(--blue-100); }
.vs-card.agent { background: linear-gradient(180deg, var(--p-50), #fff); border-color: var(--p-200); box-shadow: 0 24px 60px -34px var(--purple-glow); }
.vs-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.vs-ic { width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vs-ic svg { width: 22px; height: 22px; }
.vs-ic.blue { background: var(--blue-100); color: var(--blue-600); }
.vs-ic.purple { background: var(--p-100); color: var(--purple); }
.vs-kick { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.vs-name { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.vs-thread { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vs-bub { font-size: 13px; line-height: 1.45; padding: 10px 13px; border-radius: 12px; max-width: 88%; }
.vs-bub.in { align-self: flex-end; background: var(--blue-600); color: #fff; border-bottom-right-radius: 4px; }
.vs-bub.bot { align-self: flex-start; background: #fff; border: 1px solid var(--line); color: var(--ink-2); border-bottom-left-radius: 4px; }
.vs-steps { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vsr { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: 13px; color: var(--ink-2); font-weight: 500; }
.vsr.done { border-color: var(--p-200); background: #fff; }
.vsr-n { width: 22px; height: 22px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 11px; font-weight: 700; color: #fff; }
.vsr-n.blue { background: var(--blue-600); } .vsr-n.teal { background: var(--teal); } .vsr-n.amber { background: var(--amber); } .vsr-n.green { background: var(--mint); }
.vsr-ck { margin-left: auto; color: var(--mint); font-size: 13px; }
.vsr-ck.live { color: var(--purple); animation: pulse 2s ease-in-out infinite; }
.vs-foot { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 12.5px; font-weight: 500; }
.vs-foot.dead { color: var(--ink-mute); }
.vs-foot.live { color: var(--p-800); }
.vs-mid { display: flex; align-items: center; justify-content: center; }
.vs-vs { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink-mute); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 820px) { .vs-vs { transform: rotate(90deg); } }

/* ---- Problem: real photo + floating cards ---- */
.photo-stack { position: relative; padding: 0 0 30px; }
.photo-main { display: block; width: 100%; height: 420px; border-radius: 22px; box-shadow: 0 34px 90px -44px rgba(12,10,31,0.4); }
@media (max-width: 900px) { .photo-main { height: 320px; } }
.float-card { position: absolute; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.9); border-radius: 16px; box-shadow: 0 20px 50px -24px rgba(12,10,31,0.35); padding: 16px 18px; }
.fc-fail { top: 24px; left: -18px; width: 210px; }
.fc-top { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-mute); font-family: var(--mono); letter-spacing: 0.04em; margin-bottom: 8px; }
.fc-dot { width: 8px; height: 8px; border-radius: 50%; } .fc-dot.red { background: var(--coral); box-shadow: 0 0 0 4px rgba(192,57,43,0.14); }
.fc-big { font-family: var(--serif); font-size: 30px; color: var(--coral); line-height: 1; }
.fc-sub { font-size: 12px; color: var(--ink-soft); margin-top: 6px; line-height: 1.4; }
.fc-live { bottom: 0; right: -14px; display: flex; align-items: center; gap: 12px; }
.fc-badge { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.fc-badge.green { background: var(--mint-50); color: var(--green-600); }
.fc-live-copy { font-size: 12.5px; color: var(--ink-2); line-height: 1.3; } .fc-live-copy strong { display: block; color: var(--ink); }
@media (max-width: 520px) { .fc-fail { left: 0; } .fc-live { right: 0; } }

/* ---- Build gallery (Dubai solutions) ---- */
.build-head2 { text-align: center; max-width: 640px; margin: 72px auto 40px; }
.build-head2 h3 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 40px); font-weight: 400; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }
.build-head2 h3 em { color: var(--purple); font-style: italic; }
.build-head2 p { font-size: 16px; color: var(--ink-soft); line-height: 1.55; }
.build-gallery .sol-mock { min-height: 220px; display: flex; align-items: center; justify-content: center; padding: 24px; }

/* tint backgrounds */
.tint-blue  { background: linear-gradient(160deg, var(--blue-50), #fff); }
.tint-green { background: linear-gradient(160deg, var(--green-50), #fff); }
.tint-teal  { background: linear-gradient(160deg, var(--teal-2), #fff); }
.tint-amber { background: linear-gradient(160deg, var(--amber-2), #fff); }
.tint-purple{ background: linear-gradient(160deg, var(--p-50), #fff); }
.tint-orb   { background: radial-gradient(circle at 50% 45%, #eef2ff, #fff 70%); flex-direction: column; gap: 14px; }

.sol-tag.blue { color: var(--blue-600); } .sol-tag.green { color: var(--green-600); }
.sol-tag.teal { color: var(--teal); } .sol-tag.amber { color: #8a5f10; } .sol-tag.purple { color: var(--purple); }

/* booking table */
.bk-tbl { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; font-size: 11.5px; }
.bk-head { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; padding: 9px 12px; background: var(--blue-50); color: var(--ink-mute); font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.bk-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; align-items: center; padding: 9px 12px; border-top: 1px solid var(--line); }
.bk-row b { color: var(--ink); font-weight: 600; } .bk-row small { display: block; color: var(--ink-mute); font-size: 9.5px; }
.bk-row > span { color: var(--ink-2); align-self: center; }
.bk-btn { font-size: 10px; font-weight: 600; padding: 5px 12px; border-radius: 100px; color: #fff; }
.bk-btn.blue { background: var(--blue-600); }

/* voice orb */
.orb { width: 118px; height: 118px; border-radius: 50%; background: conic-gradient(from 180deg, #b1cdff, #c4b1ff, #a0e7c8, #ffd6a5, #b1cdff); filter: blur(2px); box-shadow: 0 20px 50px -18px rgba(124,77,238,0.4), inset 0 0 30px rgba(255,255,255,0.6); animation: orb-spin 8s linear infinite; }
@keyframes orb-spin { to { transform: rotate(360deg); } }
.orb-cap { font-size: 14px; color: var(--ink-soft); font-style: italic; }

/* lead pipeline */
.pipe { width: 100%; }
.pipe-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.pipe-top > span:first-child { font-weight: 700; font-size: 13px; color: var(--ink); }
.pipe-badge { font-family: var(--mono); font-size: 10px; color: var(--green-600); background: var(--mint-50); padding: 3px 9px; border-radius: 100px; }
.pipe-row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; margin-bottom: 7px; }
.pipe-row b { font-size: 12px; color: var(--ink); } .pipe-row small { display: block; font-size: 10px; color: var(--ink-mute); }
.pi-ic { width: 26px; height: 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; flex-shrink: 0; }
.pi-ic.meta { background: var(--blue-50); color: var(--blue-600); } .pi-ic.land { background: var(--p-50); color: var(--purple); } .pi-ic.voice { background: var(--mint-50); color: var(--green-600); }
.pi-st { margin-left: auto; font-size: 11px; font-weight: 600; }
.pi-st.blue { color: var(--blue-600); } .pi-st.purple { color: var(--purple); } .pi-st.green { color: var(--green-600); }

/* claim steps */
.claim-steps { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.clm { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; font-size: 12.5px; color: var(--ink-2); font-weight: 500; }
.clm-ic { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; color: #fff; }
.clm-ic.teal { background: var(--teal); } .clm-ic.mint { background: var(--mint); }
.clm.live .clm-ic { animation: pulse 2s ease-in-out infinite; }

/* supplier flow */
.sup { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sup-src { display: flex; gap: 6px; }
.chp { font-size: 11px; font-weight: 600; padding: 6px 11px; border-radius: 100px; }
.chp.blue { background: var(--blue-50); color: var(--blue-600); } .chp.green { background: var(--mint-50); color: var(--green-600); } .chp.amber { background: var(--amber-2); color: #8a5f10; }
.sup-arrow { color: var(--ink-mute); font-size: 16px; }
.sup-out { display: flex; flex-direction: column; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 22px; }
.sup-orc { color: #c2281b; font-weight: 800; font-size: 15px; letter-spacing: 0.06em; }
.sup-ok { font-size: 11px; color: var(--green-600); font-family: var(--mono); }

/* ERP report */
.rep { width: 100%; }
.rep-top { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--ink-mute); }
.rep-up { color: var(--green-600); font-weight: 700; background: var(--mint-50); padding: 2px 8px; border-radius: 100px; font-size: 11px; }
.rep-big { font-family: var(--serif); font-size: 34px; color: var(--ink); letter-spacing: -0.02em; margin: 4px 0 10px; }
.rep-spark { width: 100%; height: 48px; display: block; }
.rep-spark polyline { fill: none; stroke: var(--purple); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.rep-spark polygon { fill: rgba(124,77,238,0.12); stroke: none; }

/* ---- Authority real photo ---- */
.auth-photo { position: relative; min-height: 100%; overflow: hidden; }
.auth-slot { display: block; width: 100%; height: 100%; min-height: 340px; }
@media (max-width: 860px) { .auth-slot { min-height: 260px; } }

/* ---- Why-us multi-color icons ---- */
.why2:nth-child(1) .why2-ic { background: var(--blue-50); color: var(--blue-600); }
.why2:nth-child(2) .why2-ic { background: var(--mint-50); color: var(--green-600); }
.why2:nth-child(3) .why2-ic { background: var(--amber-2); color: #8a5f10; }
.why2:nth-child(4) .why2-ic { background: var(--p-50); color: var(--purple); }

/* ---- Testimonial v2 (reference style) ---- */
.testimonial2 { padding: 100px 0; text-align: center; background: linear-gradient(180deg, #fbfbfd, #f4f2f9); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.t2-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-bottom: 30px; }
.t2-eyebrow .t2-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple); }
.t2-quote { font-family: var(--sans); font-weight: 700; font-size: clamp(26px, 4.4vw, 52px); line-height: 1.16; letter-spacing: -0.025em; color: var(--ink); max-width: 20ch; margin: 0 auto 40px; text-wrap: balance; }
.t2-quote .hl { color: var(--purple); }
.t2-attr { display: inline-flex; align-items: center; gap: 14px; }
.t2-avatar { display: block; width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; }
.t2-attr > div { text-align: left; }
.t2-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.t2-role { font-size: 13.5px; color: var(--ink-mute); }

@media (max-width: 860px) {
  .testimonial2 { padding: 72px 0; }
  .build-head2 { margin: 56px auto 32px; }
  .photo-main { height: 300px; }
}

/* =========================================================
   v10 — readable mockup fonts + unique lifecycle visual
   ========================================================= */

/* Swap the mono variable to the readable sans inside product/visual
   sections, so every small label becomes legible while serif display
   numbers stay elegant. */
.problem2, .explain, .how, .work, .authority, .testimonial2, .framework2 {
  --mono: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
}
/* mono-based labels were tuned for a monospace face — relax the tracking
   and nudge size so Jakarta reads cleanly */
.problem2 .section-tag, .explain .section-tag, .how .section-tag,
.work .section-tag, .authority .section-tag, .framework2 .section-tag,
.md-eyebrow, .md-kpi .l, .md-health-top, .mi .fx, .bk-head, .pipe-badge,
.sup-ok, .flow-note, .fc-top, .fc-badge, .sol-tag, .vs-kick, .lc-legend,
.lc-axisrow, .step3-tag, .step3-chips span, .tl-time, .tl-tag {
  letter-spacing: 0.02em;
  font-weight: 600;
}
.md-kpi .l, .bk-head, .flow-note, .lc-axisrow { font-size: 10.5px; }
.mock, .sol-mock, .vs-card, .lifecycle { font-feature-settings: "tnum" 1; }

/* ---- Unique AI-pilot-lifecycle chart ---- */
.lifecycle {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px 22px; box-shadow: 0 30px 80px -44px rgba(70,30,160,0.28);
}
.lc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.lc-title { font-size: 14px; font-weight: 700; color: var(--ink); }
.lc-legend { display: flex; gap: 14px; }
.lc-legend .lg { font-size: 11px; color: var(--ink-mute); display: inline-flex; align-items: center; gap: 6px; }
.lc-legend .lg::before { content: ''; width: 14px; height: 3px; border-radius: 2px; background: var(--line-strong); }
.lc-legend .lg.purple::before { background: var(--purple); }
.lc-chart { position: relative; margin-top: 8px; }
.lc-svg { width: 100%; height: 240px; display: block; overflow: visible; }
.lc-axis { stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 4; }
.lc-typ { fill: none; stroke: #c7c2d6; stroke-width: 2.4; stroke-linecap: round; }
.lc-ours { fill: none; stroke: var(--purple); stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 6px 10px rgba(124,77,238,0.25)); }
.lc-ours-fill { fill: url(#none); fill: rgba(124,77,238,0.07); stroke: none; }
.lc-peak { fill: #fff; stroke: #c7c2d6; stroke-width: 2.5; }
.lc-crash { fill: var(--coral); }
.lc-live { fill: var(--purple); stroke: #fff; stroke-width: 2.5; }
.lc-ann { position: absolute; font-size: 11px; font-weight: 700; color: var(--ink); line-height: 1.15; }
.lc-ann small { display: block; font-size: 10px; font-weight: 500; color: var(--ink-mute); margin-top: 2px; }
.lc-ann.demo { top: 2%; left: 40%; transform: translateX(-50%); text-align: center; }
.lc-ann.crash { top: 60%; left: 60%; color: var(--coral); }
.lc-ann.crash small { color: var(--ink-mute); }
.lc-ann.live { top: 2%; right: 0; text-align: right; color: var(--purple); }
.lc-axisrow { display: flex; justify-content: space-between; margin-top: 6px; font-size: 10.5px; color: var(--ink-mute); }
@media (max-width: 520px) { .lc-ann { font-size: 10px; } .lc-svg { height: 200px; } }

/* =========================================================
   v11 — Impact / case-study section
   ========================================================= */
.impact { padding: 120px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.impact .section-tag { color: var(--purple); }
.impact .section-tag::before { background: var(--purple); }

/* headline metrics */
.impact-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
@media (max-width: 900px) { .impact-metrics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .impact-metrics { grid-template-columns: 1fr; } }
.im-metric { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.im-metric:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -34px rgba(70,30,160,0.24); }
.im-v { font-family: var(--serif); font-size: clamp(40px, 5vw, 58px); line-height: 0.95; letter-spacing: -0.03em; }
.im-v.purple { color: var(--purple); } .im-v.blue { color: var(--blue-600); } .im-v.teal { color: var(--teal); } .im-v.green { color: var(--green-600); }
.im-l { font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 10px; }
.im-c { font-size: 12.5px; color: var(--ink-mute); margin-top: 6px; line-height: 1.4; }

/* case studies */
.cases2 { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.case2 {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.case2:hover { transform: translateY(-3px); border-color: var(--p-200); box-shadow: 0 30px 80px -40px rgba(70,30,160,0.24); }
@media (max-width: 860px) { .case2 { grid-template-columns: 1fr; } }
.case2-side { padding: 34px 36px; }
@media (max-width: 520px) { .case2-side { padding: 26px 24px; } }
.case2-tag { display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.case2-tag.purple { background: var(--p-50); color: var(--purple); }
.case2-tag.teal { background: var(--teal-2); color: #0a8c7e; }
.case2-tag.amber { background: var(--amber-2); color: #8a5f10; }
.case2-h { font-family: var(--serif); font-size: clamp(23px, 2.6vw, 30px); font-weight: 400; letter-spacing: -0.02em; color: var(--ink); line-height: 1.15; margin-bottom: 16px; }
.case2-mess, .case2-fix { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 12px; }
.case2-mess .lbl { color: var(--coral); font-weight: 700; }
.case2-fix .lbl { color: var(--purple); font-weight: 700; }
.case2-proof { background: linear-gradient(180deg, var(--surface-2), #fff); border-left: 1px solid var(--line); padding: 34px 32px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
@media (max-width: 860px) { .case2-proof { border-left: none; border-top: 1px solid var(--line); } }
.ba-row { display: flex; align-items: center; gap: 14px; }
.ba { flex: 1; text-align: center; padding: 16px 10px; border-radius: 14px; background: #fff; border: 1px solid var(--line); }
.ba-k { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.ba-v { font-family: var(--serif); font-size: 36px; line-height: 1; letter-spacing: -0.02em; color: var(--ink-2); }
.ba-s { font-size: 11.5px; color: var(--ink-mute); margin-top: 6px; }
.ba.before .ba-v { color: var(--coral); }
.ba.after { border-color: var(--p-200); background: var(--p-50); }
.ba.after.purple .ba-v { color: var(--purple); }
.ba.after.teal { border-color: #9fe3d8; background: var(--teal-2); } .ba.after.teal .ba-v { color: #0a8c7e; }
.ba.after.amber { border-color: #f2d99a; background: var(--amber-2); } .ba.after.amber .ba-v { color: #8a5f10; }
.ba-arrow { color: var(--p-300); flex-shrink: 0; } .ba-arrow svg { width: 26px; height: 26px; }
.ba-bar { height: 8px; border-radius: 100px; background: var(--surface-3); overflow: hidden; }
.ba-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--p-400), var(--p-700)); transform: scaleX(0); transform-origin: left; }
.ba-bar.teal .ba-fill { background: linear-gradient(90deg, #34c6b4, #0a8c7e); }
.ba-bar.amber .ba-fill { background: linear-gradient(90deg, #eec14e, #c8901a); }
.case2.viz-in .ba-fill, .impact .im-metric.reveal.in ~ * .ba-fill { animation: growX 1s var(--ease) 0.2s forwards; }
.case2.viz-in .ba-fill { animation: growX 1s var(--ease) 0.2s forwards; }
.ba-foot { font-size: 13px; color: var(--ink-soft); line-height: 1.5; } .ba-foot strong { color: var(--ink); font-weight: 700; }
.impact-note { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 26px; font-size: 13px; color: var(--ink-mute); text-align: center; }
.in-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }
@media (max-width: 860px) { .impact { padding: 80px 0; } }

/* =========================================================
   v12 — stronger highlights, readable titles, reworks
   ========================================================= */

/* brighter highlight violet for emphasis */
:root { --violet: #7c2ce6; }

/* Solutions-in-Dubai heading — make the highlight unmistakable */
.build-head2 h3 { font-weight: 800; }
.build-head2 h3 em {
  font-style: normal; color: var(--violet); font-weight: 800;
  background: linear-gradient(180deg, transparent 62%, rgba(124,44,230,0.18) 62%);
  padding: 0 2px;
}

/* Case-study titles — bold, high-contrast, attention-grabbing */
.case2-h {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 29px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.12;
}
.case2-side { position: relative; }
.case2-side::before {
  content: ''; position: absolute; left: 0; top: 34px; width: 4px; height: 30px;
  border-radius: 0 4px 4px 0; background: var(--violet);
}
.case2:nth-child(2) .case2-side::before { background: var(--teal); }
.case2:nth-child(3) .case2-side::before { background: var(--amber); }
@media (max-width: 520px) { .case2-side::before { top: 26px; } }

/* WHY US — rework: bold readable titles, prominent cards */
#why { padding-top: 110px; }
.why2 { padding: 34px 28px; }
.why2-ic { width: 56px; height: 56px; border-radius: 15px; margin-bottom: 22px; }
.why2-ic svg { width: 28px; height: 28px; }
.why2 h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.22;
  margin-bottom: 10px;
}
.why2 p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.62; }
.why2:hover { box-shadow: 0 28px 64px -30px var(--purple-glow); }

/* section-h2 highlight — a touch brighter across page */
.section-h2 em { color: var(--violet); }

/* Testimonial highlight → brighter violet, matching reference */
.t2-quote .hl { color: var(--violet); }
.t2-quote { max-width: 22ch; }

/* Tech-stack rationale chips */
.stack-why { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.stack-why .sw {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px; border-radius: 100px;
}
.stack-why .sw::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--p-300); }

/* --- Why-us: modern number-forward layout (no icon boxes) --- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s var(--ease);
}
.trust-cell:last-child { border-right: none; }
@media (max-width: 900px) {
  .trust-cell:nth-child(2n) { border-right: none; }
  .trust-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .trust-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-cell:last-child { border-bottom: none; }
}
.trust-cell:hover { background: var(--bg-soft); }
.tc-fig {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.tc-fig span { font-size: 0.5em; vertical-align: super; margin-left: 2px; }
.tc-fig.purple { color: var(--violet); } .tc-fig.teal { color: var(--teal); }
.tc-fig.amber { color: #c8901a; } .tc-fig.blue { color: var(--blue-600); }
.trust-cell h3 { font-family: var(--sans); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; line-height: 1.2; }
.trust-cell p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* --- Merged "How it works": steps + live proof --- */
.how-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .how-layout { grid-template-columns: 1fr; gap: 40px; } }
.how-steps { position: relative; display: flex; flex-direction: column; gap: 8px; }
.hstep { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 8px 0; position: relative; }
.hstep-rail { position: relative; display: flex; justify-content: center; }
.hstep-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line-strong); z-index: 2;
  transition: all 0.4s var(--ease);
}
.hstep-num.accent { background: var(--violet); border-color: var(--violet); color: #fff; box-shadow: 0 8px 22px -8px var(--purple-glow); }
/* connecting line down the rail */
.hstep:not(:last-child) .hstep-rail::after {
  content: ''; position: absolute; top: 44px; bottom: -8px; left: 50%;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--line-strong), var(--line));
}
.hstep-body { padding-bottom: 20px; }
.hstep-time { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); margin-bottom: 6px; }
.hstep-title { font-family: var(--sans); font-weight: 800; font-size: clamp(19px, 2.1vw, 23px); letter-spacing: -0.02em; color: var(--ink); line-height: 1.2; margin-bottom: 8px; }
.hstep-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.62; max-width: 42ch; }
.how-proof { position: relative; }
.how-proof-cap { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; text-align: center; }
.how-proof-cap strong { color: var(--violet); font-weight: 700; }
.how-proof .mock-dash { box-shadow: 0 40px 100px -44px rgba(70,30,160,0.35); }
@media (max-width: 940px) { .how-proof-cap { text-align: left; } }
/* ROI hero + human-routed pill in the proof card */
.md-roi { background: linear-gradient(120deg, var(--p-50), #fff); border: 1px solid var(--p-100); border-radius: 12px; padding: 14px 16px; margin-bottom: 14px; }
.md-roi .roi-l { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); }
.md-roi .roi-v { font-family: var(--serif); font-size: 30px; color: var(--ink); letter-spacing: -0.02em; margin-top: 3px; display: flex; align-items: baseline; gap: 8px; }
.md-roi .roi-up { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--green-600); background: var(--mint-50); padding: 2px 8px; border-radius: 100px; }
.mi .fx.to-human { color: var(--blue-600); }

/* --- Proof: business photo + live ROI overlay --- */
.proof-photo { position: relative; }
.proof-slot { display: block; width: 100%; height: 380px; border-radius: 20px; box-shadow: 0 36px 90px -44px rgba(12,10,31,0.42); }
@media (max-width: 940px) { .proof-slot { height: 320px; } }
.proof-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-radius: 100px; padding: 7px 14px 7px 8px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); box-shadow: 0 10px 24px -14px rgba(12,10,31,0.4); }
.pb-live { display: inline-flex; align-items: center; gap: 6px; background: var(--mint-50); color: var(--green-600); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.pb-live .ld { width: 6px; height: 6px; border-radius: 50%; background: var(--green-600); animation: pulse 2s ease-in-out infinite; }
.proof-roi { position: absolute; bottom: -18px; right: -14px; background: #fff; border: 1px solid var(--p-100); border-radius: 16px; padding: 16px 20px; box-shadow: 0 26px 56px -24px var(--purple-glow); max-width: 260px; }
.pr-l { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); }
.pr-v { font-family: var(--serif); font-size: 30px; color: var(--ink); letter-spacing: -0.02em; margin: 4px 0; display: flex; align-items: baseline; gap: 8px; }
.pr-up { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--green-600); background: var(--mint-50); padding: 2px 8px; border-radius: 100px; }
.pr-sub { font-size: 12px; color: var(--ink-soft); }
@media (max-width: 520px) { .proof-roi { right: 0; max-width: 220px; } }

/* --- Proof hero (reference-style photo card) --- */
.proof-hero { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 36px 90px -44px rgba(12,10,31,0.45); aspect-ratio: 3 / 2.5; }
@media (max-width: 940px) { .proof-hero { aspect-ratio: 3 / 2; } }
.proof-hero-img { display: block; width: 100%; height: 100%; }
.proof-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,10,31,0.42) 0%, rgba(12,10,31,0.15) 40%, rgba(12,10,31,0.75) 100%); }
.proof-hero-title { position: absolute; top: 26px; left: 26px; right: 26px; }
.ph-live { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.16); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.ph-live .ld { width: 6px; height: 6px; border-radius: 50%; background: #4be0a0; box-shadow: 0 0 0 3px rgba(75,224,160,0.3); animation: pulse 2s ease-in-out infinite; }
.proof-hero-title h3 { font-family: var(--sans); font-weight: 800; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.03em; line-height: 1.08; color: #fff; }
.proof-hero-strip { position: absolute; left: 20px; right: 20px; bottom: 20px; background: rgba(255,255,255,0.12); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 16px 18px; }
.phs-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.phs-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.phs { display: flex; flex-direction: column; }
.phs .v { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); line-height: 1; color: #fff; letter-spacing: -0.02em; }
.phs .l { font-size: 11px; color: rgba(255,255,255,0.72); margin-top: 5px; line-height: 1.3; }
@media (max-width: 400px) { .phs .l { font-size: 10px; } }

/* --- Slider upgraded to a card --- */
.t2-slider { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 48px 44px; box-shadow: 0 30px 80px -46px rgba(70,30,160,0.25); }
@media (max-width: 640px) { .t2-slider { padding: 32px 22px; } }
.t2-slide { padding: 0 4px; }
.t2-quote::before { content: '\201C'; display: block; font-family: var(--serif); font-size: 60px; line-height: 0.5; color: var(--p-200); margin-bottom: 18px; }
.t2-nav { margin-top: 28px; }

/* --- FAQ: readable sans font --- */
.faq-q { font-family: var(--sans) !important; font-weight: 700 !important; font-size: 17.5px !important; letter-spacing: -0.015em; color: var(--ink); }
.faq-a { font-family: var(--sans); font-size: 15px; }

/* --- Case-study H3s: bolder, framed visual treatment --- */
.case2-side::before { display: none; }
.case2-h {
  position: relative;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(21px, 2.4vw, 27px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.18;
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.case2-h::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 48px; height: 4px; border-radius: 100px;
  background: var(--violet);
}
.case2:nth-child(1) .case2-h::after { background: var(--violet); }
.case2:nth-child(2) .case2-h::after { background: var(--teal); }
.case2:nth-child(3) .case2-h::after { background: var(--amber); }

/* --- Bold readable sans H2 for chosen sections --- */
.h2-sans { font-family: var(--sans) !important; font-weight: 800 !important; letter-spacing: -0.03em !important; line-height: 1.08 !important; }
.h2-sans em { font-family: var(--sans); font-weight: 800; font-style: normal; color: var(--violet); }

/* --- Reality panel (replaces stat-band) --- */
.reality { background: linear-gradient(135deg, #14102b 0%, #241a48 100%); border-radius: var(--r-xl); padding: 48px; position: relative; overflow: hidden; }
@media (max-width: 640px) { .reality { padding: 30px 24px; } }
.reality::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 90% 20%, rgba(124,44,230,0.35), transparent 60%); pointer-events: none; }
.reality-head { position: relative; margin-bottom: 28px; }
.reality-h { font-family: var(--sans); font-weight: 800; font-size: clamp(22px, 3vw, 32px); letter-spacing: -0.03em; color: #fff; line-height: 1.12; max-width: 22ch; margin-top: 12px; }
.reality-cards { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .reality-cards { grid-template-columns: 1fr; } }
.rcard { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); padding: 24px; }
.rcard.warn { border-color: rgba(192,57,43,0.4); }
.rcard.good { border-color: rgba(15,122,79,0.4); }
.rc-top { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.rc-ic { width: 26px; height: 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.rc-ic svg { width: 15px; height: 15px; }
.rc-ic.warn { background: rgba(192,57,43,0.18); color: #ff8a75; }
.rc-ic.good { background: rgba(15,122,79,0.18); color: #4be0a0; }
.rc-v { font-family: var(--serif); font-size: clamp(56px, 8vw, 78px); line-height: 0.9; letter-spacing: -0.04em; color: #fff; margin-bottom: 12px; }
.rcard.warn .rc-v { color: #ff8a75; }
.rcard.good .rc-v { color: #4be0a0; }
.rc-l { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.55; }
.reality-foot { position: relative; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 14.5px; color: #fff; font-weight: 600; }
.reality-foot .src { display: block; margin-top: 6px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }

/* --- Compare 'Production-first' title in positive green --- */
.compare-title.good { color: var(--green-600); }

/* --- compact reality strip (no animation) --- */
.reality2 { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: center; padding: 4px 0 14px; }
@media (max-width: 820px) { .reality2 { grid-template-columns: 1fr; gap: 20px; } }
.r2-h { font-family: var(--sans); font-weight: 800; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.03em; color: var(--ink); line-height: 1.12; margin-top: 10px; max-width: 16ch; }
.r2-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 480px) { .r2-stats { grid-template-columns: 1fr; gap: 20px; } }
.r2-stat { border-left: 3px solid var(--line-strong); padding-left: 18px; }
.r2-stat:first-child { border-left-color: var(--coral); }
.r2-stat:last-child { border-left-color: var(--mint); }
.r2-v { font-family: var(--serif); font-size: clamp(48px, 6vw, 64px); line-height: 0.9; letter-spacing: -0.04em; }
.r2-v.warn { color: var(--coral); } .r2-v.good { color: var(--green-600); }
.r2-l { font-size: 14px; color: var(--ink-soft); line-height: 1.45; margin-top: 8px; max-width: 24ch; }
.r2-src { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.04em; margin-top: 8px; }

/* --- compare column contrast --- */
.compare-col.old { background: var(--bg-soft); border-color: var(--line); }
.compare-col.old .compare-title { color: var(--ink-mute); }
.ch-badge { display: inline-flex; align-items: center; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.ch-badge.bad { background: var(--coral-2); color: var(--coral); }
.ch-badge.good { background: var(--mint-50); color: var(--green-600); }
.compare-col.new { background: linear-gradient(180deg, #fff, var(--p-50)); border-color: var(--p-200); box-shadow: 0 30px 70px -40px var(--purple-glow); }

/* --- Testimonial slider --- */
.t2-slider { overflow: hidden; max-width: 900px; margin: 0 auto; } .t2-track { display: flex;  } html.js-anim .t2-track { transition: transform .5s cubic-bezier(.22,1,.36,1); }
.t2-slide { min-width: 100%; padding: 0 8px; text-align: center; }
.t2-quote { font-family: var(--sans); font-weight: 700; font-size: clamp(20px, 3vw, 34px); line-height: 1.24; letter-spacing: -0.02em; color: var(--ink); max-width: 24ch; margin: 0 auto 32px; text-wrap: balance; }
.t2-quote .hl { color: var(--violet); }
.t2-attr { display: inline-flex; align-items: center; gap: 13px; }
.t2-avatar { display: block; width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0; }
.t2-attr > div { text-align: left; }
.t2-name { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.t2-role { font-size: 13px; color: var(--ink-mute); }
.t2-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 36px; }
.t2-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }
.t2-arrow svg { width: 15px; height: 15px; }
.t2-arrow:hover { background: var(--violet); border-color: var(--violet); color: #fff; }
.t2-dots { display: flex; gap: 8px; }
.t2-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--line-strong); cursor: pointer; transition: all 0.2s; padding: 0; }
.t2-dots button.active { background: var(--violet); width: 24px; border-radius: 100px; }

/* =========================================================
   v13 — hero: channels -> AI -> outcomes
   ========================================================= */
.hero-visual { position: relative; aspect-ratio: 1 / 0.92; }
@media (max-width: 1000px) { .hero-visual { aspect-ratio: 1 / 0.8; } }
.hv2-mesh { position: absolute; inset: 6% 6% 6% 6%; border-radius: 50%; background: radial-gradient(circle at 55% 45%, rgba(124,44,230,0.20), rgba(180,155,251,0.10) 45%, transparent 70%); filter: blur(26px); animation: mesh-drift 16s ease-in-out infinite alternate; }
@keyframes mesh-drift { 0% { transform: scale(1) translate(0,0);} 100% { transform: scale(1.08) translate(10px,-8px);} }
.hv2-flow { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hv2-flow .fl { fill: none; stroke: var(--line-strong); stroke-width: 2; stroke-dasharray: 5 6; opacity: 0.7; }
.hv2-flow .fl.out { stroke: var(--violet); opacity: 0.55; }
.hv2-flow .fl-dot { fill: var(--p-400); }
.hv2-flow .fl-dot.out { fill: var(--violet); }

/* channel source chips */
.hv2-src { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px 14px 10px 10px; box-shadow: 0 16px 34px -20px rgba(12,10,31,0.28); animation: floaty 6s ease-in-out infinite; }
.src-a { top: 6%; left: 0; }
.src-b { top: 43%; left: -4%; animation-delay: 1s; }
.src-c { bottom: 8%; left: 2%; animation-delay: 2s; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-7px);} }
.hv2-ic { width: 38px; height: 38px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hv2-ic svg { width: 22px; height: 22px; }
.hv2-ic.wa { background: #25d366; } .hv2-ic.em { background: #2a6fdb; } .hv2-ic.ph { background: #16a34a; }
.hv2-src .t { font-size: 13px; font-weight: 700; color: var(--ink); }
.hv2-src .s { font-size: 11.5px; color: var(--ink-mute); }

/* center AI hub */
.hv2-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 4; width: 128px; height: 128px; display: flex; align-items: center; justify-content: center; }
.hub-rings span { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--p-300); opacity: 0; animation: hubring 3s ease-out infinite; }
.hub-rings span:last-child { animation-delay: 1.5s; }
@keyframes hubring { 0% { transform: scale(0.7); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }
.hub-core { width: 108px; height: 108px; border-radius: 50%; background: linear-gradient(160deg, var(--p-500), var(--p-800)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; box-shadow: 0 24px 54px -18px var(--purple-glow), inset 0 2px 0 rgba(255,255,255,0.25); }
.hub-ai { font-family: var(--sans); font-weight: 800; font-size: 34px; letter-spacing: -0.03em; line-height: 1; }
.hub-status { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 5px; min-height: 12px; }
.hub-status::after { content: ''; }

/* outcome result card */
.hv2-result { position: absolute; z-index: 5; top: 42%; right: -2%; display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--p-100); border-radius: 16px; padding: 14px 16px; box-shadow: 0 22px 50px -22px var(--purple-glow); max-width: 230px; animation: floaty 7s ease-in-out infinite reverse; transition: opacity 0.3s; }
.res-ic { width: 34px; height: 34px; border-radius: 50%; background: var(--mint-50); color: var(--green-600); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.res-ic svg { width: 18px; height: 18px; }
.res-t { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.res-s { font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; line-height: 1.35; }
.hv2-result.swap { opacity: 0; transform: translateY(6px); }
@media (max-width: 520px) {
  .hv2-src .s { display: none; }
  .hv2-result { max-width: 190px; right: 0; }
  .hub-core { width: 92px; height: 92px; } .hv2-hub { width: 108px; height: 108px; }
}

/* --- Agent steps: animate as if the AI is working --- */
.vs-card.agent .vsr { opacity: 0.45; transform: translateX(-4px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s; }
.vs-card.agent .vsr .vsr-ck { opacity: 0; transform: scale(0.4); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.vs-card.agent.in .vsr { opacity: 1; transform: translateX(0); }
.vs-card.agent.in .vsr:nth-child(1) { transition-delay: 0.2s; }
.vs-card.agent.in .vsr:nth-child(2) { transition-delay: 0.7s; }
.vs-card.agent.in .vsr:nth-child(3) { transition-delay: 1.2s; }
.vs-card.agent.in .vsr:nth-child(4) { transition-delay: 1.7s; }
.vs-card.agent.in .vsr .vsr-ck { opacity: 1; transform: scale(1); }
.vs-card.agent.in .vsr:nth-child(1) .vsr-ck { transition-delay: 0.5s; }
.vs-card.agent.in .vsr:nth-child(2) .vsr-ck { transition-delay: 1.0s; }
.vs-card.agent.in .vsr:nth-child(3) .vsr-ck { transition-delay: 1.5s; }
.vs-card.agent.in .vsr:nth-child(4) .vsr-ck { transition-delay: 2.0s; }
.vs-card.agent.in .vsr.done { border-color: var(--p-200); background: var(--p-50); }
.vs-foot.live { opacity: 0; transition: opacity 0.5s var(--ease) 2.3s; }
.vs-card.agent.in .vs-foot.live { opacity: 1; }

/* --- Agent live scenario (WhatsApp-style, plays out) --- */
.vs-scene { flex: 1; display: flex; flex-direction: column; gap: 8px; min-height: 210px; background: linear-gradient(180deg, #ece7f6, #fff); border-radius: 14px; padding: 14px; position: relative; }
.sc-thread { display: flex; flex-direction: column; gap: 8px; }
.sc-msg { font-size: 13px; line-height: 1.4; padding: 9px 12px; border-radius: 12px; max-width: 85%; opacity: 0; transform: translateY(8px); animation: scIn 0.4s var(--ease) forwards; }
@keyframes scIn { to { opacity: 1; transform: translateY(0); } }
.sc-msg.in { align-self: flex-start; background: #fff; border: 1px solid var(--line); color: var(--ink-2); border-bottom-left-radius: 4px; }
.sc-msg.out { align-self: flex-end; background: var(--violet); color: #fff; border-bottom-right-radius: 4px; }
.sc-msg.slots { align-self: flex-end; background: #fff; border: 1px solid var(--p-200); color: var(--ink-2); display: flex; flex-direction: column; gap: 5px; max-width: 92%; }
.sc-msg.slots .s { background: var(--p-50); border-radius: 7px; padding: 5px 9px; font-size: 12px; display: flex; justify-content: space-between; align-items: center; }
.sc-msg.slots .s.pick { background: var(--violet); color: #fff; }
.sc-msg.ok { align-self: flex-end; background: var(--mint-50); border: 1px solid #b6ead0; color: #0c6b4a; display: flex; flex-direction: column; gap: 2px; }
.sc-msg.ok strong { display: flex; align-items: center; gap: 6px; color: var(--green-600); }
.sc-work { display: flex; align-items: center; gap: 9px; align-self: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px; font-size: 12px; color: var(--ink-soft); margin-top: 2px; opacity: 0; transition: opacity 0.3s; }
.sc-work.show { opacity: 1; }
.sc-spin { width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--p-200); border-top-color: var(--violet); animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Reality2 redesign --- */
.reality2 { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; padding: 8px 0 16px; }
@media (max-width: 820px) { .reality2 { grid-template-columns: 1fr; gap: 28px; } }
.r2-h { font-family: var(--sans); font-weight: 800; font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.03em; color: var(--ink); line-height: 1.1; margin-top: 12px; max-width: 20ch; }
.r2-p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; margin-top: 14px; max-width: 46ch; }
.r2-stats { display: grid; grid-template-columns: 1fr; gap: 14px; }
.r2-stat { display: flex; align-items: center; gap: 20px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px; border-left-width: 4px; }
.r2-stat:first-child { border-left-color: var(--coral); }
.r2-stat:last-child { border-left-color: var(--mint); }
.r2-v { font-family: var(--serif); font-size: clamp(46px, 6vw, 60px); line-height: 0.85; letter-spacing: -0.04em; flex-shrink: 0; }
.r2-v span { font-size: 0.5em; vertical-align: super; }
.r2-v.warn { color: var(--coral); } .r2-v.good { color: var(--green-600); }
.r2-l { font-size: 14.5px; color: var(--ink-2); line-height: 1.4; font-weight: 500; }
.r2-src { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.04em; margin-top: 14px; text-align: right; }
@media (max-width: 820px) { .r2-src { text-align: left; } }

/* --- Stronger compare contrast --- */
.compare-col.old { background: #f4f2f6; border-color: #e4e0ec; }
.compare-col.old .compare-list li { color: var(--ink-mute); }
.compare-col.old .compare-list li strong { color: var(--ink-soft); }
.compare-col.old .compare-title { color: #a29db3; }
.compare-col.new { background: linear-gradient(180deg, #fff, #f3ecff); border: 1.5px solid var(--p-300); box-shadow: 0 34px 80px -40px var(--purple-glow); }
.compare-col.new .compare-list li { color: var(--ink-2); }

/* --- Case-study visual scenes --- */
.c2scene { border-radius: 14px; padding: 18px; margin-bottom: 18px; border: 1px solid var(--line); }
.c2scene.claims { background: linear-gradient(160deg, var(--p-50), #fff); display: flex; align-items: center; gap: 14px; }
.c2s-doc { width: 46px; height: 58px; background: #fff; border: 1px solid var(--p-200); border-radius: 6px; padding: 9px 7px; display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
.c2s-line { height: 4px; border-radius: 2px; background: var(--p-200); }
.c2s-line.w1 { width: 100%; } .c2s-line.w2 { width: 70%; } .c2s-line.w3 { width: 85%; }
.c2s-checks { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.c2s-chk { font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 6px; }
.c2s-chk.ok { background: var(--mint-50); color: var(--green-600); }
.c2s-chk.flag { background: var(--blue-50); color: var(--blue-600); }
.c2s-out { align-self: center; font-family: var(--sans); font-weight: 800; font-size: 13px; padding: 8px 14px; border-radius: 100px; flex-shrink: 0; }
.c2s-out.purple { background: var(--violet); color: #fff; }

.c2scene.booking { background: linear-gradient(160deg, var(--teal-2), #fff); display: flex; align-items: center; gap: 16px; }
.c2s-chat { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.c2s-bub { font-size: 11px; padding: 5px 9px; border-radius: 9px; max-width: 82%; }
.c2s-bub.in { align-self: flex-start; background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.c2s-bub.out { align-self: flex-end; background: #0a8c7e; color: #fff; }
.c2s-bub.ok { align-self: flex-end; background: var(--mint-50); color: var(--green-600); font-weight: 700; border: 1px solid #b6ead0; }
.c2s-clock { text-align: center; flex-shrink: 0; }
.c2s-24 { display: block; font-family: var(--sans); font-weight: 800; font-size: 24px; color: #0a8c7e; letter-spacing: -0.03em; }
.c2s-cl { font-size: 10px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; }

.c2scene.supply { background: linear-gradient(160deg, var(--amber-2), #fff); display: flex; align-items: center; gap: 12px; }
.c2s-srcs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; flex: 1; }
.c2s-src { font-size: 10.5px; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 5px 8px; text-align: center; }
.c2s-merge { font-size: 20px; color: #c8901a; flex-shrink: 0; }
.c2s-erp { flex-shrink: 0; text-align: center; background: #fff; border: 1px solid #f2d99a; border-radius: 10px; padding: 12px 16px; font-family: var(--sans); font-weight: 800; font-size: 15px; color: #8a5f10; }
.c2s-erp span { display: block; font-family: var(--sans); font-weight: 500; font-size: 9.5px; color: var(--ink-mute); margin-top: 3px; }
@media (max-width: 520px) { .c2scene { flex-wrap: wrap; } }

/* === Product-screen mockups (Dubai solutions) === */
.build-gallery { align-items: start; }
.build-gallery .sol-mock, .build-gallery .sol-shot { display: none; }
.build-gallery .sol-card { display: flex; flex-direction: column; }
.build-gallery .ps { margin: 24px 22px 0; height: 400px; }
.ps-web, .ps-phone { width: auto; }

/* web chrome */
.ps-web { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 50px -30px rgba(12,10,31,0.35); display: flex; flex-direction: column; }
.ps-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line); flex-shrink: 0; }
.ps-bar .d { width: 9px; height: 9px; border-radius: 50%; }
.ps-bar .d.r { background: #ff5f57; } .ps-bar .d.y { background: #febc2e; } .ps-bar .d.g { background: #28c840; }
.ps-url { margin-left: 10px; font-family: var(--mono); font-size: 11px; color: var(--ink-mute); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 4px 12px; flex: 1; }
.ps-app { padding: 18px; display: flex; flex-direction: column; flex: 1; overflow: hidden; }

/* phone chrome — center the frame within the fixed-height slot */
.ps-phone { display: flex; align-items: center; justify-content: center; background: none; border: none; box-shadow: none; }

/* phone chrome */
.ps-phone { padding-top: 22px; }
.ps-phone-frame { position: relative; width: 200px; background: #0c0a1f; border-radius: 28px; padding: 10px 9px; box-shadow: 0 26px 54px -24px rgba(12,10,31,0.5); }
.ps-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 60px; height: 15px; background: #0c0a1f; border-radius: 0 0 12px 12px; z-index: 3; }
.ps-phone .ps-app { border-radius: 20px; height: 360px; overflow: hidden; padding: 18px; }

/* app color themes */
.app-blue { background: linear-gradient(180deg, #eef4ff, #fff); }
.app-teal { background: #fff; }
.app-green { background: #fff; }
.app-amber { background: #fff; }
.app-purple { background: #fff; }
.app-voice { background: linear-gradient(180deg, #16102e, #2a1d54); }

/* booking phone app */
.psa-top { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.psa-back { color: var(--blue-600); font-size: 20px; }
.psa-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); }
.psa-doc { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--blue-100); border-radius: 12px; padding: 10px; margin-bottom: 14px; }
.psa-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #7aa5ff, var(--blue-600)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.psa-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.psa-spec { font-size: 11px; color: var(--ink-mute); }
.psa-day { font-size: 12px; font-weight: 600; color: var(--ink-2); margin-bottom: 9px; }
.psa-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 16px; }
.psa-slot { text-align: center; font-size: 12px; font-weight: 600; padding: 9px 0; border-radius: 9px; background: #fff; border: 1px solid var(--blue-100); color: var(--ink-2); }
.psa-slot.sel { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.psa-cta { text-align: center; background: var(--blue-600); color: #fff; font-size: 13px; font-weight: 700; padding: 12px; border-radius: 12px; }

/* voice call app */
.app-voice { display: flex; flex-direction: column; align-items: center; text-align: center; color: #fff; padding: 22px 16px; }
.pv-status { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; margin-bottom: 22px; }
.pv-orb { position: relative; width: 84px; height: 84px; margin-bottom: 20px; }
.pv-orb span { position: absolute; inset: 0; border-radius: 50%; }
.pv-orb span:nth-child(1) { background: radial-gradient(circle at 40% 35%, #b69bfb, #6a35e0); }
.pv-orb span:nth-child(2) { border: 1.5px solid rgba(180,155,251,0.5); animation: hubring 2.4s ease-out infinite; }
.pv-orb span:nth-child(3) { border: 1.5px solid rgba(180,155,251,0.4); animation: hubring 2.4s ease-out infinite 1.2s; }
.pv-caption { font-size: 12.5px; line-height: 1.4; color: rgba(255,255,255,0.9); max-width: 22ch; margin-bottom: 18px; }
.pv-wave { display: flex; align-items: center; gap: 3px; height: 26px; margin-bottom: 20px; }
.pv-wave i { width: 3px; border-radius: 2px; background: var(--p-300); animation: wave 1s ease-in-out infinite; }
.pv-wave i:nth-child(odd) { animation-delay: 0.2s; } .pv-wave i:nth-child(3n) { animation-delay: 0.4s; }
@keyframes wave { 0%,100% { height: 7px; } 50% { height: 24px; } }
.pv-actions { display: flex; align-items: center; gap: 14px; }
.pv-end { background: #c2281b; color: #fff; font-size: 12px; font-weight: 700; padding: 8px 20px; border-radius: 100px; }
.pv-live { font-size: 11px; color: #4be0a0; }

/* lead pipeline (green) */
/* lead pipeline (green) — funnel */
.pg-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.pg-title { font-size: 13px; font-weight: 700; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.04em; }
.pg-badge { font-size: 11px; font-weight: 700; color: var(--green-600); background: var(--mint-50); padding: 4px 10px; border-radius: 100px; }
.pg-hero { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.pg-hero-n { font-size: 46px; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.pg-hero-up { font-size: 14px; font-weight: 700; color: var(--green-600); }
.pg-funnel { display: flex; flex-direction: column; gap: 12px; }
.pgf { display: grid; grid-template-columns: 74px 1fr auto; align-items: center; gap: 12px; }
.pgf-l { font-size: 12px; font-weight: 600; color: var(--ink-2); }
.pgf-bar { height: 20px; border-radius: 6px; background: linear-gradient(90deg, #9fe0bd, #2bb673); }
.pgf-bar.win { background: linear-gradient(90deg, #2bb673, var(--green-600)); }
.pgf-v { font-size: 12px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }

/* claims (teal) — ring + chips */
.pc-ringwrap { position: relative; width: 130px; height: 130px; margin: 4px auto 18px; }
.pc-ring { width: 130px; height: 130px; transform: rotate(-90deg); }
.pcr-bg { fill: none; stroke: var(--teal-2); stroke-width: 11; }
.pcr-fg { fill: none; stroke: #0a8c7e; stroke-width: 11; stroke-linecap: round; stroke-dasharray: 314; stroke-dashoffset: 19; }
.pc-ringv { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.pc-ringv b { font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.pc-ringv span { font-size: 10px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.pc-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.pc-chip { font-size: 11.5px; font-weight: 600; padding: 6px 12px; border-radius: 100px; background: var(--teal-2); color: #0a8c7e; }
.pc-chip.approved { background: #0a8c7e; color: #fff; }

/* supplier (amber) */
.pu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 13px; font-weight: 700; color: var(--ink); }
.pu-live { font-size: 11px; color: #8a5f10; font-weight: 600; }
.pu-row { display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 9px; }
.pu-ch { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0; }
.pu-ch.email { background: var(--blue-600); } .pu-ch.wa { background: #25a35a; } .pu-ch.portal { background: #8a5f10; }
.pu-body { flex: 1; } .pu-body b { font-size: 13px; color: var(--ink); } .pu-body small { display: block; font-size: 11px; color: var(--ink-mute); margin-top: 2px; }
.pu-ok { font-size: 11px; font-weight: 700; color: var(--green-600); flex-shrink: 0; }
.pu-flag { font-size: 11px; font-weight: 700; color: #8a5f10; flex-shrink: 0; }

/* ERP reporting (purple) — bar chart */
.pr-head { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ink-mute); font-weight: 600; }
.pr-up { color: var(--green-600); font-weight: 700; }
.pr-big { font-size: 34px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin: 6px 0 16px; white-space: nowrap; }
.pr-bars { display: flex; align-items: flex-end; gap: 10px; height: 120px; margin-bottom: 16px; }
.pr-bars span { flex: 1; border-radius: 6px 6px 0 0; background: var(--p-100); }
.pr-bars span.win { background: linear-gradient(180deg, var(--p-400), var(--violet)); }
.pr-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* === Branded hero panels (Dubai solution cards 3-6) === */
.build-gallery .ps.solhero { position: relative; overflow: hidden; border-radius: 16px; display: flex; align-items: center; justify-content: center; border: none; box-shadow: 0 24px 50px -30px rgba(12,10,31,0.4); }
.sh-green { background: linear-gradient(155deg, #0f6b31 0%, #0b5f34 100%); }
.sh-teal { background: linear-gradient(155deg, #0a7a6e 0%, #086b60 100%); }
.sh-amber { background: linear-gradient(155deg, #d99e2b 0%, #8a5f10 100%); }
.sh-purple { background: linear-gradient(155deg, #7c4dee 0%, #3a1c8f 100%); }
.sh-rings { position: absolute; inset: 0; background-image: radial-gradient(circle at 72% 28%, transparent 0, transparent 38px, rgba(255,255,255,0.09) 39px, rgba(255,255,255,0.09) 40px, transparent 41px), radial-gradient(circle at 72% 28%, transparent 0, transparent 74px, rgba(255,255,255,0.07) 75px, rgba(255,255,255,0.07) 76px, transparent 77px), radial-gradient(circle at 72% 28%, transparent 0, transparent 118px, rgba(255,255,255,0.05) 119px, rgba(255,255,255,0.05) 120px, transparent 121px); }
.sh-inner { position: relative; z-index: 2; color: #fff; text-align: center; padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.sh-badge { font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28); padding: 6px 14px; border-radius: 100px; }
.sh-badge.light { background: rgba(255,255,255,0.9); color: #3a1c8f; border: none; }
.sh-metric { font-family: var(--sans); font-weight: 800; font-size: 42px; letter-spacing: -0.04em; line-height: 0.9; }
.sh-metric span { display: block; font-size: 13px; font-weight: 500; letter-spacing: 0; margin-top: 8px; color: rgba(255,255,255,0.8); }
.sh-note { font-size: 13px; font-weight: 600; background: rgba(255,255,255,0.16); padding: 6px 14px; border-radius: 100px; }
.sh-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.sh-chips span { font-size: 11.5px; font-weight: 600; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); padding: 5px 12px; border-radius: 100px; }
.sh-shield { width: 58px; height: 58px; border-radius: 16px; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; color: #fff; }
.sh-shield svg { width: 30px; height: 30px; }
.sh-flow { display: flex; gap: 8px; }
.sh-flow span { font-size: 12px; font-weight: 600; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28); padding: 7px 13px; border-radius: 10px; }
.sh-arrow { font-size: 22px; opacity: 0.85; }
.sh-erp { font-size: 22px; font-weight: 800; letter-spacing: 0.05em; background: rgba(255,255,255,0.92); color: #8a5f10; padding: 12px 26px; border-radius: 12px; }
.sh-bars { display: flex; align-items: flex-end; gap: 8px; height: 84px; width: 190px; margin-top: 6px; }
.sh-bars i { flex: 1; border-radius: 5px 5px 0 0; background: rgba(255,255,255,0.35); }
.sh-bars i.win { background: #fff; }

/* === Portfolio image cards (reference style) === */
.build-gallery.portfolio { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 44px; }
@media (max-width: 760px) { .build-gallery.portfolio { grid-template-columns: 1fr; gap: 32px; } }
.build-gallery.portfolio .sol-card { background: none; border: none; box-shadow: none; padding: 0; overflow: visible; }
.build-gallery.portfolio .sol-card:hover { transform: none; box-shadow: none; border: none; }
.build-gallery.portfolio .sol-hero { display: block; width: 100%; height: 300px; border-radius: 16px; overflow: hidden; box-shadow: 0 26px 56px -34px rgba(12,10,31,0.4); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
@media (max-width: 520px) { .build-gallery.portfolio .sol-hero { height: 230px; } }
.build-gallery.portfolio .sol-card:hover .sol-hero { transform: translateY(-6px); box-shadow: 0 40px 80px -34px rgba(12,10,31,0.45); }
.build-gallery.portfolio figcaption { padding: 20px 4px 0; }
.build-gallery.portfolio .sol-title { font-family: var(--sans); font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.03em; color: var(--ink); line-height: 1.14; margin-bottom: 8px; }
.build-gallery.portfolio .sol-kpi { font-size: 14.5px; color: var(--ink-soft); }

/* custom illustration heroes */
.sol-illus { height: 300px; border-radius: 16px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; box-shadow: 0 26px 56px -34px rgba(12,10,31,0.4); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
@media (max-width: 520px) { .sol-illus { height: 230px; } }
.sol-card:hover .sol-illus { transform: translateY(-6px); box-shadow: 0 40px 80px -34px rgba(12,10,31,0.45); }
.sol-illus svg { width: 78%; height: 78%; overflow: visible; }
.si-blue { background: linear-gradient(155deg, #eaf1ff, #d6e4ff); }
.si-purple { background: linear-gradient(155deg, #f1ebff, #e6dcff); }
.si-green { background: linear-gradient(155deg, #e7f8ef, #cdeede); }
.si-teal { background: linear-gradient(155deg, #e2f6f2, #cfeee7); }
.si-amber { background: linear-gradient(155deg, #fbf1d9, #f6e6bd); }
.si-violet { background: linear-gradient(155deg, #efe8ff, #ddd0fb); }
.si-float { animation: floaty 6s ease-in-out infinite; }
.si-float2 { animation: floaty 7s ease-in-out infinite reverse; }
.pr-tile { background: var(--p-50); border-radius: 10px; padding: 12px 14px; }
.pr-tile b { font-size: 17px; font-weight: 800; color: var(--ink); } .pr-tile small { display: block; font-size: 11px; color: var(--ink-mute); margin-top: 2px; }

/* --- Dubai solution card animations (on scroll) --- */
.sol-card.mock-anim.viz-in .bk-row { opacity: 0; animation: kpiIn 0.5s var(--ease) forwards; }
.sol-card.mock-anim.viz-in .bk-row:nth-child(2) { animation-delay: 0.2s; }
.sol-card.mock-anim.viz-in .bk-row:nth-child(3) { animation-delay: 0.45s; }
.sol-card.mock-anim.viz-in .bk-row:nth-child(4) { animation-delay: 0.7s; }
.sol-card.mock-anim .bk-btn { transition: background 0.3s, color 0.3s; }
.sol-card.mock-anim.viz-in .bk-row:nth-child(2) .bk-btn { animation: btnConfirm 0.5s var(--ease) 1.0s forwards; }
.sol-card.mock-anim.viz-in .bk-row:nth-child(3) .bk-btn { animation: btnConfirm 0.5s var(--ease) 1.3s forwards; }
.sol-card.mock-anim.viz-in .bk-row:nth-child(4) .bk-btn { animation: btnConfirm 0.5s var(--ease) 1.6s forwards; }
@keyframes btnConfirm { to { background: var(--mint-50); color: var(--green-600); } }

.sol-card.mock-anim .clm { opacity: 0.4; transition: opacity 0.4s var(--ease); }
.sol-card.mock-anim.viz-in .clm { opacity: 1; }
.sol-card.mock-anim.viz-in .clm:nth-child(1) { transition-delay: 0.2s; }
.sol-card.mock-anim.viz-in .clm:nth-child(2) { transition-delay: 0.6s; }
.sol-card.mock-anim.viz-in .clm:nth-child(3) { transition-delay: 1.0s; }
.sol-card.mock-anim.viz-in .clm:nth-child(4) { transition-delay: 1.4s; }
.sol-card.mock-anim .clm-ic { transform: scale(0.4); transition: transform 0.35s var(--ease); }
.sol-card.mock-anim.viz-in .clm:nth-child(1) .clm-ic { transition-delay: 0.4s; transform: scale(1); }
.sol-card.mock-anim.viz-in .clm:nth-child(2) .clm-ic { transition-delay: 0.8s; transform: scale(1); }
.sol-card.mock-anim.viz-in .clm:nth-child(3) .clm-ic { transition-delay: 1.2s; transform: scale(1); }
.sol-card.mock-anim.viz-in .clm:nth-child(4) .clm-ic { transition-delay: 1.6s; transform: scale(1); }

/* =========================================================
   v14 — Apple-style headings (SF Pro) + section reworks
   ========================================================= */
/* Apple display type: bold, tightly tracked, upright (no italic) */
.h1, .section-h2, .tl-title, .case-title, .compare-title, .af-title,
.why-cell-title, .form-title, .modal-title, .auth-h, .build-head h3,
.screen-wide-h, .why2 h3, .vs-name, .r2-h {
  font-weight: 700;
  letter-spacing: -0.035em;
}
.h1 { font-weight: 700; letter-spacing: -0.04em; max-width: 15ch; }
.section-h2 { font-weight: 700; letter-spacing: -0.035em; line-height: 1.05; }
.h1 em, .section-h2 em, .auth-h em, .screen-wide-h em, .build-head h3 em,
.tc-quote em, .compare-title em, .af-title em {
  font-style: normal !important;
}
/* keep decorative script-y italics from looking broken in system font */
.step3-num, .vs-vs, .tc-mark, .fc-agent, .auth-badge .ab-ic { font-style: normal; }

/* ---- Reality: natural editorial layout ---- */
.reality2 { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; padding: 8px 0 20px; }
.r2-h { font-size: clamp(26px, 3.2vw, 40px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.08; max-width: 18ch; }
.r2-p { font-size: 16px; }
.r2-stats { gap: 0; }
.r2-stat { border-left: none; padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; }
.r2-stat:first-child { padding-top: 0; }
.r2-stat:last-child { border-bottom: none; padding-bottom: 0; }
.r2-v { font-family: var(--serif); font-weight: 700; font-size: clamp(46px, 6vw, 62px); }
.r2-v.warn { color: var(--ink); } .r2-v.good { color: var(--ink); }
.r2-v.warn span, .r2-v.good span { color: var(--ink-mute); font-weight: 600; }
.r2-stat::before { content: none; }
/* small colored keyline before each stat number */
.r2-stat { position: relative; padding-left: 20px; }
.r2-stat::after { content: ''; position: absolute; left: 0; top: 26px; bottom: 26px; width: 4px; border-radius: 4px; }
.r2-stat:first-child::after { top: 4px; background: var(--coral); }
.r2-stat:last-child::after { bottom: 4px; background: var(--mint); }

/* ---- Compare columns: cleaner bg + type ---- */
.compare-col { border-radius: var(--r-lg); padding: 36px 34px; }
.compare-col.old { background: #f6f5f8; border-color: #e8e5f0; }
.compare-col.old .compare-title { color: var(--ink-2); }
.compare-col.old .compare-head { opacity: 0.9; }
.compare-col.new { background: #fff; border: 1.5px solid var(--p-200); box-shadow: 0 30px 70px -42px var(--purple-glow); }
.compare-col.new::before { content: ''; position: absolute; inset: 0; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(124,77,238,0.05), transparent 40%); pointer-events: none; }
.compare-title { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 22px; }
.compare-list li { font-size: 14.5px; line-height: 1.55; }

/* --- Why-us: human layout (team photo + points) --- */
.trust2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .trust2 { grid-template-columns: 1fr; gap: 36px; } }
.trust2-photo { position: relative; }
.trust2-panel { position: relative; background: linear-gradient(160deg, #14102b 0%, #241a48 100%); border-radius: var(--r-xl); padding: 40px; overflow: hidden; }
.trust2-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 85% 15%, rgba(124,44,230,0.35), transparent 60%); pointer-events: none; }
.tp-stats { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-bottom: 28px; }
.tp-stat .tp-n { font-family: var(--sans); font-weight: 800; font-size: clamp(38px, 5vw, 52px); line-height: 0.9; letter-spacing: -0.04em; color: #fff; }
.tp-stat .tp-n span { color: var(--p-300); font-size: 0.55em; }
.tp-stat .tp-c { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 8px; line-height: 1.4; }
.tp-compliance { position: relative; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); }
.tp-comp-l { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.tp-comp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tp-comp-tags span { font-size: 12px; font-weight: 600; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 100px; padding: 6px 13px; }
.tp-foot { position: relative; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 9px; }
.tp-dot { width: 8px; height: 8px; border-radius: 50%; background: #4be0a0; box-shadow: 0 0 0 3px rgba(75,224,160,0.25); animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.trust2-points { display: flex; flex-direction: column; gap: 12px; }
.t2p { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 26px; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
.t2p:hover { transform: translateY(-3px); border-color: var(--p-200); box-shadow: 0 22px 54px -32px var(--purple-glow); }
.t2p-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--p-50); color: var(--purple); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t2p:nth-child(2) .t2p-ic { background: var(--mint-50); color: var(--green-600); }
.t2p:nth-child(3) .t2p-ic { background: var(--blue-50); color: var(--blue-600); }
.t2p-ic svg { width: 24px; height: 24px; }
.t2p-body h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 6px; line-height: 1.2; }
.t2p-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ---- Case-study before/after: calmer, editorial ---- */
.case2-proof { background: var(--bg-soft); border-left: 1px solid var(--line); gap: 22px; }
.ba-row { align-items: stretch; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.ba { flex: 1; text-align: left; padding: 20px 22px; border-radius: 0; background: #fff; border: none; }
.ba.before { border-right: 1px solid var(--line); }
.ba-k { font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.ba-v { font-family: var(--serif); font-weight: 700; font-size: 34px; line-height: 1; letter-spacing: -0.03em; color: var(--ink-mute); }
.ba-s { font-size: 12px; color: var(--ink-mute); margin-top: 8px; }
.ba.before { background: #faf9fc; }
.ba.before .ba-v { color: #b6b1c4; }
.ba.after { background: #fff; }
.ba.after.purple .ba-v { color: var(--violet); }
.ba.after.teal .ba-v { color: #0a8c7e; }
.ba.after.amber .ba-v { color: #8a5f10; }
.ba.after .ba-k { color: var(--ink-2); }
/* remove the arrow chip — replaced by the divider between panes */
.ba-arrow { display: none; }
.ba-bar { height: 6px; }
.ba-foot { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.ba-foot strong { color: var(--ink); font-weight: 700; }
@media (max-width: 860px) { .ba.before { border-right: none; border-bottom: 1px solid var(--line); } }

/* ============================================================
   AUTHORITATIVE Dubai-solutions gallery layout (final override)
   ============================================================ */
.sol-gallery.build-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 980px) { .sol-gallery.build-gallery { grid-template-columns: 1fr 1fr; max-width: none; margin: 0; } }
@media (max-width: 640px)  { .sol-gallery.build-gallery { grid-template-columns: 1fr; } }

.sol-gallery.build-gallery .sol-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.sol-gallery.build-gallery .sol-card:hover { transform: translateY(-5px); box-shadow: 0 30px 70px -38px rgba(70,30,160,0.28); border-color: var(--p-200); }

/* the screen slot */
.sol-gallery.build-gallery .ps {
  margin: 0;
  height: 460px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

/* web browser window */
.sol-gallery.build-gallery .ps.ps-web {
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: flex-start;
  padding: 0; background: #fff;
}
.sol-gallery.build-gallery .ps-web .ps-bar { flex-shrink: 0; }
.sol-gallery.build-gallery .ps-web.nobar .ps-app { padding-top: 20px; }
/* full-image solution shots (booking, leads, supplier, ERP) */
.sol-gallery.build-gallery .sol-shot-img { display: block; width: 100%; height: 460px; object-fit: cover; background: var(--bg-soft); border-bottom: 1px solid var(--line); }

/* single-screen solution dashboards (leads, supplier, ERP) */
.dashx.ps-web { background: none; border: none; box-shadow: none; }
.dx { height: 460px; display: flex; flex-direction: column; gap: 12px; padding: 22px !important; color: #fff; border-bottom: none; }
.dx-leads { background: linear-gradient(165deg, #0f2a1c, #08160f); }
.dx-sup { background: linear-gradient(165deg, #2a1f0a, #14100a); }
.dx-erp { background: linear-gradient(165deg, #1c1340, #100a24); }
.dx-top { display: flex; align-items: center; justify-content: space-between; }
.dx-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.dx-badge { font-size: 11px; font-weight: 800; color: #0c1a12; background: #8ef0b0; padding: 4px 11px; border-radius: 100px; }
.dx-erp .dx-badge { background: #c9b8ff; color: #1a0f3d; }
.dx-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #f0c674; background: rgba(217,158,43,0.16); padding: 4px 11px; border-radius: 100px; }
.dx-live .ld { width: 6px; height: 6px; border-radius: 50%; background: #f0c674; animation: pulse 2s ease-in-out infinite; }
.dx-hero { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.dx-n { font-size: 44px; font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; white-space: nowrap; }
.dx-sub { font-size: 12.5px; color: rgba(255,255,255,0.7); } .dx-sub b { color: #8ef0b0; }
.dx-sup .dx-sub b { color: #f0c674; }
.dx-src { display: flex; gap: 7px; }
.dxs { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; background: rgba(255,255,255,0.08); border-radius: 10px; padding: 8px 4px; font-size: 11px; font-weight: 600; }
.dxs svg { width: 15px; height: 15px; }
.dx-funnel { display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }
.dxf { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 10px; }
.dxf-l { font-size: 11.5px; color: rgba(255,255,255,0.75); }
.dxf-track { height: 18px; background: rgba(255,255,255,0.1); border-radius: 6px; overflow: hidden; }
.dxf-track i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, #3fbf78, #8ef0b0); }
.dxf-track i.win { background: #8ef0b0; }
.dxf-v { font-size: 12px; font-weight: 800; font-variant-numeric: tabular-nums; }
.dx-rows { display: flex; flex-direction: column; gap: 8px; }
.dxr { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.07); border-radius: 11px; padding: 9px 11px; }
.dxr-ic { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dxr-ic svg { width: 16px; height: 16px; }
.dxr-b { flex: 1; min-width: 0; } .dxr-b b { font-size: 12px; } .dxr-b small { display: block; font-size: 10.5px; color: rgba(255,255,255,0.5); }
.dxr-ok { font-size: 11px; font-weight: 800; color: #8ef0b0; } .dxr-flag { font-size: 11px; font-weight: 800; color: #f0c674; }
.dx-chart { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding: 8px; background: rgba(255,255,255,0.05); border-radius: 14px; }
.dx-chart span { flex: 1; border-radius: 5px 5px 2px 2px; background: rgba(201,184,255,0.4); }
.dx-chart span.win { background: linear-gradient(180deg, #b49bff, #8b6dff); }
.dx-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dxt { background: rgba(255,255,255,0.07); border-radius: 11px; padding: 10px 12px; }
.dxt b { display: block; font-size: 15px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; } .dxt small { font-size: 10px; color: rgba(255,255,255,0.5); }
.dx-foot { margin-top: auto; font-size: 11.5px; color: rgba(255,255,255,0.6); text-align: center; padding-top: 4px; }
.sol-gallery.build-gallery .ps-web .ps-app { flex: 1; overflow: hidden; padding: 18px; }

/* phone frame centered in the slot */
.sol-gallery.build-gallery .ps.ps-phone { padding: 0; }
.sol-gallery.build-gallery .ps-phone-frame { width: 200px; height: 420px; padding: 9px 8px; }
.sol-gallery.build-gallery .ps-phone .ps-app { height: 100%; border-radius: 20px; padding: 16px; overflow: hidden; }

/* caption */
.sol-gallery.build-gallery figcaption { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.sol-gallery.build-gallery .sol-title { font-family: var(--sans); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); line-height: 1.25; margin: 4px 0 8px; min-height: 2.5em; }
.sol-gallery.build-gallery .sol-kpi { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin-top: auto; }

/* AI booking — modern 2026 customer mobile app */
.bkapp { padding: 0 !important; background: #fbfbfe; display: flex; flex-direction: column; font-family: var(--sans); }
.bk-status { display: flex; align-items: center; justify-content: space-between; padding: 9px 20px 5px; font-size: 11px; font-weight: 700; color: #fff; position: relative; z-index: 2; }
.bk-sig { width: 15px; height: 9px; border-radius: 2px; background: #fff; opacity: 0.9; }
.bk-hero { position: relative; background: linear-gradient(155deg, #6d5cff 0%, #4a2fd6 55%, #3a1fb0 100%); padding: 4px 18px 20px; border-radius: 0 0 28px 28px; overflow: hidden; }
.bk-hero-glow { position: absolute; top: -40px; right: -30px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%); }
.bk-hero-top { position: relative; display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.bk-pill { font-size: 10px; font-weight: 700; letter-spacing: 0.03em; color: #fff; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); padding: 4px 10px; border-radius: 100px; backdrop-filter: blur(4px); }
.bk-heart { color: rgba(255,255,255,0.85); font-size: 15px; }
.bk-hero-row { position: relative; display: flex; align-items: center; gap: 11px; min-width: 0; }
.bk-docwrap { min-width: 0; flex: 1; }
.bk-avatar { width: 40px; height: 40px; border-radius: 12px; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.5); display: block; box-shadow: 0 6px 16px -6px rgba(0,0,0,0.3); flex-shrink: 0; }
.bk-doc { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bk-spec { font-size: 11.5px; color: rgba(255,255,255,0.82); margin-top: 2px; }
.bk-body { padding: 14px 18px 16px; flex: 1; display: flex; flex-direction: column; }
.bk-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9a95ad; margin-bottom: 8px; }
.bk-dates { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 14px; }
.bk-date { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 9px 0; border-radius: 14px; background: #fff; box-shadow: 0 1px 3px rgba(20,10,50,0.05), inset 0 0 0 1px #eeecf6; }
.bk-date i { font-size: 9.5px; font-weight: 600; color: #9a95ad; font-style: normal; }
.bk-date b { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.bk-date.on { background: linear-gradient(155deg, #6d5cff, #4a2fd6); box-shadow: 0 8px 18px -6px rgba(93,63,238,0.55); }
.bk-date.on i, .bk-date.on b { color: #fff; }
.bk-times { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 16px; }
.bk-time { text-align: center; padding: 10px 0; border-radius: 12px; background: #fff; font-size: 12px; font-weight: 700; color: var(--ink-2); box-shadow: 0 1px 3px rgba(20,10,50,0.05), inset 0 0 0 1px #eeecf6; }
.bk-time.on { background: #efecff; color: #4a2fd6; box-shadow: inset 0 0 0 1.5px #6d5cff; }
.bk-confirm { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(120deg, #6d5cff, #4a2fd6); color: #fff; font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; padding: 13px; border-radius: 15px; box-shadow: 0 12px 26px -10px rgba(93,63,238,0.6); }
.bk-arrow { font-size: 15px; }

/* Omni-channel lead capture — modern 2026 web dashboard */
.lg2 { background: #fbfbfe; display: flex; flex-direction: column; gap: 14px; }
.lg2-head { display: flex; align-items: flex-start; justify-content: space-between; }
.lg2-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9a95ad; margin-bottom: 4px; }
.lg2-big { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); line-height: 0.9; display: flex; align-items: baseline; gap: 10px; }
.lg2-up { font-size: 13px; font-weight: 700; color: var(--green-600); }
.lg2-roas { text-align: center; background: linear-gradient(150deg, #0f7a4f, #0f6b31); color: #fff; border-radius: 14px; padding: 10px 14px; box-shadow: 0 10px 22px -10px rgba(15,107,49,0.6); }
.lg2-roas b { display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.lg2-roas small { font-size: 9.5px; font-weight: 600; opacity: 0.9; letter-spacing: 0.06em; }
.lg2-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.lg2-ch { display: flex; align-items: center; gap: 6px; background: #fff; border-radius: 11px; padding: 9px 11px; font-size: 11.5px; font-weight: 600; color: var(--ink-2); box-shadow: inset 0 0 0 1px #eeecf6; }
.lg2-ch b { margin-left: auto; font-size: 14px; font-weight: 800; color: var(--ink); }
.lg2-ic { width: 18px; height: 18px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.lg2-ic svg { width: 18px; height: 18px; }
.lg2-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lg2-dot.meta { background: #4267f0; } .lg2-dot.goog { background: #ea4335; } .lg2-dot.wa { background: #25a35a; }
.lg2-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9a95ad; margin-bottom: -4px; }
.lg2-funnel { display: flex; flex-direction: column; gap: 9px; }
.lg2f { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 12px; }
.lg2f-l { font-size: 12px; font-weight: 600; color: var(--ink-2); }
.lg2f-track { height: 22px; background: #f0eef7; border-radius: 7px; overflow: hidden; }
.lg2f-bar { display: block; height: 100%; border-radius: 7px; background: linear-gradient(90deg, #6ee0aa, #0f7a4f); }
.lg2f-bar.win { background: linear-gradient(90deg, #0f7a4f, #0f6b31); }
.lg2f-v { font-size: 12px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }

/* AI claims processing — modern 2026 web dashboard */
.cl2 { background: #fbfbfe; display: flex; flex-direction: column; gap: 14px; }
.cl2-head { display: flex; align-items: center; justify-content: space-between; }
.cl2-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #8f97a3; margin-bottom: 4px; white-space: nowrap; }
.cl2-amt { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 0.9; white-space: nowrap; }
.cl2-ring { position: relative; width: 52px; height: 52px; flex-shrink: 0; }
.cl2-ring svg { width: 52px; height: 52px; transform: rotate(-90deg); }
.cl2r-bg { fill: none; stroke: #d7 efea; stroke-width: 5; }
.cl2r-bg { fill: none; stroke: #d7efea; stroke-width: 5; }
.cl2r-fg { fill: none; stroke: #0a7a6e; stroke-width: 5; stroke-linecap: round; stroke-dasharray: 113; stroke-dashoffset: 7; }
.cl2-ring span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.cl2-steps { display: flex; flex-direction: column; gap: 7px; }
.cl2-step { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 11px; padding: 10px 12px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); box-shadow: inset 0 0 0 1px #ebeef0; }
.cl2-ic { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; background: #0a7a6e; flex-shrink: 0; }
.cl2-step.live { box-shadow: inset 0 0 0 1.5px #0a7a6e; background: #ecf9f6; }
.cl2-step.live .cl2-ic { background: #0f6b31; animation: pulse 2s ease-in-out infinite; }
.cl2-t { margin-left: auto; font-size: 10.5px; font-weight: 700; color: #8f97a3; font-variant-numeric: tabular-nums; }
.cl2-foot { display: flex; align-items: center; gap: 10px; margin-top: 2px; }
.cl2-badge { font-size: 11.5px; font-weight: 800; color: #fff; background: linear-gradient(120deg, #0a7a6e, #0a8c7e); padding: 8px 16px; border-radius: 100px; box-shadow: 0 10px 20px -10px rgba(10,122,110,0.6); }
.cl2-sub { font-size: 11.5px; color: var(--ink-soft); }

/* AI claims processing — centered approval hero (distinct) */
.cx { background: radial-gradient(ellipse 80% 60% at 50% 0%, #e2f6f2, #fbfbfe 70%); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.cx-seal { width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(150deg, #12b89e, #0a8c7e); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -10px rgba(10,122,110,0.6), 0 0 0 8px rgba(10,122,110,0.12); margin: 6px 0 10px; }
.cx-seal svg { width: 30px; height: 30px; }
.cx-status { font-size: 12px; font-weight: 700; letter-spacing: 0.02em; color: #0a8c7e; text-transform: uppercase; }
.cx-amt { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1; white-space: nowrap; }
.cx-meta { font-size: 11.5px; color: var(--ink-mute); margin-bottom: 14px; }
.cx-track { display: flex; align-items: center; width: 100%; padding: 0 6px; }
.cx-node { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; background: #fff; box-shadow: inset 0 0 0 2px #d0e8e2; }
.cx-node.done { background: #0a7a6e; box-shadow: 0 0 0 3px rgba(10,122,110,0.18); }
.cx-node.now { background: #fff; box-shadow: 0 0 0 3px rgba(10,122,110,0.3), inset 0 0 0 3px #0a7a6e; animation: pulse 2s ease-in-out infinite; }
.cx-line { flex: 1; height: 3px; background: #d0e8e2; }
.cx-line.done { background: #0a7a6e; }
.cx-labels { display: flex; justify-content: space-between; width: 100%; padding: 0 2px; margin-top: 8px; }
.cx-labels span { font-size: 10px; font-weight: 700; color: var(--ink-mute); letter-spacing: 0.02em; }
.cx-foot { margin-top: 16px; font-size: 12px; color: var(--ink-soft); background: #fff; border-radius: 10px; padding: 10px 14px; box-shadow: inset 0 0 0 1px #e2f0ec; }
.cx-foot b { color: #0a8c7e; font-weight: 800; }

/* Case study — photo proof with overlaid stats */
.case2-photo { position: relative; padding: 0; border-left: none; overflow: hidden; min-height: 300px; display: block; }
@media (max-width: 860px) { .case2-photo { min-height: 260px; } }
.c2ph-img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.c2ph-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,10,45,0.15) 0%, rgba(20,10,45,0.05) 40%, rgba(20,10,45,0.82) 100%); }
.c2ph-badge { position: absolute; top: 18px; left: 18px; display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-radius: 100px; padding: 6px 13px; font-size: 11.5px; font-weight: 700; color: var(--ink-2); }
.c2ph-dot { width: 6px; height: 6px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.25); animation: pulse 2s ease-in-out infinite; }
.c2ph-panel { position: absolute; left: 18px; right: 18px; bottom: 18px; }
.c2ph-ba { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.c2ph-cell { display: flex; flex-direction: column; }
.c2ph-k { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.c2ph-v { font-family: var(--sans); font-size: 40px; font-weight: 800; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.c2ph-v.red { color: #ff8a75; }
.c2ph-s { font-size: 10.5px; color: rgba(255,255,255,0.6); }
.c2ph-arrow { font-size: 22px; color: rgba(255,255,255,0.55); }
.c2ph-foot { font-size: 12.5px; color: rgba(255,255,255,0.85); line-height: 1.5; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 10px 13px; }
.c2ph-foot b { color: #fff; font-weight: 800; }

/* AI supplier tracking — modern 2026 web dashboard */
.su2 { background: #fbfbfe; display: flex; flex-direction: column; gap: 8px; }
.su2-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 4px; }
.su2-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #a8926a; margin-bottom: 3px; }
.su2-title { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.su2-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #8a5f10; background: #fbf1d9; padding: 5px 10px; border-radius: 100px; }
.su2-live .ld { width: 6px; height: 6px; border-radius: 50%; background: #d99e2b; animation: pulse 2s ease-in-out infinite; }
.su2-row { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px; padding: 9px 11px; box-shadow: inset 0 0 0 1px #efe6d4; }
.su2-ch { width: 28px; height: 28px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.su2-ch svg { width: 18px; height: 18px; }
.su2-ch.email { background: #fff; box-shadow: inset 0 0 0 1px #f0d9a8; } .su2-ch.wa { background: #25a35a; } .su2-ch.portal { background: #d99e2b; }
.su2-b { flex: 1; min-width: 0; } .su2-b b { font-size: 12.5px; color: var(--ink); } .su2-b small { display: block; font-size: 10.5px; color: var(--ink-mute); }
.su2-ok { font-size: 11px; font-weight: 800; color: #0f6b31; flex-shrink: 0; }
.su2-flag { font-size: 11px; font-weight: 800; color: #8a5f10; flex-shrink: 0; }
.su2-foot { margin-top: 2px; font-size: 12px; color: var(--ink-soft); text-align: center; }
.su2-foot b { color: var(--ink); font-weight: 800; }

/* AI ERP reporting — modern 2026 web dashboard */
.er2 { background: #fbfbfe; display: flex; flex-direction: column; gap: 14px; }
.er2-head { display: flex; align-items: flex-start; justify-content: space-between; }
.er2-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9a8fc4; margin-bottom: 4px; }
.er2-big { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 0.9; white-space: nowrap; }
.er2-up { font-size: 12px; font-weight: 800; color: #0f6b31; background: #e7f8ef; padding: 5px 11px; border-radius: 100px; }
.er2-chart { display: flex; align-items: flex-end; gap: 8px; height: 132px; padding: 10px 4px; background: #fff; border-radius: 16px; box-shadow: inset 0 0 0 1px #eeecf6; }
.er2-chart span { flex: 1; border-radius: 6px 6px 3px 3px; background: #ddd2f7; }
.er2-chart span.win { background: linear-gradient(180deg, #8b6dff, #5d3fee); box-shadow: 0 8px 16px -6px rgba(93,63,238,0.5); }
.er2-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.er2-tile { background: #f2edff; border-radius: 12px; padding: 11px 12px; }
.er2-tile b { display: block; font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; white-space: nowrap; }
.er2-tile small { font-size: 10px; color: var(--ink-mute); font-weight: 600; }

/* --- compare columns: ATeam way = purple field, typical vendor = white --- */
.compare-col.old {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: none;
}
.compare-col.old::before { content: none; }
.compare-col.new {
  background: linear-gradient(180deg, #f3ecff 0%, #e9dcff 100%);
  border: 1.5px solid var(--p-300);
  box-shadow: 0 34px 80px -40px var(--purple-glow);
}
.compare-col.new::before { content: none; }

/* ===== ported hero banner (design from main build) ===== */
.hcTop { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.hcLine { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.hcLabel { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap; }
.hcItem { flex: 1 1 0; min-width: 0; display: flex; align-items: center; justify-content: center; padding: 4px 0; }
.hcItem img {
  width: auto; height: auto; display: block;
  /* assets are tight-cropped; caps below equalise INK AREA, not bounding box —
     square/badge marks need more height than wide wordmarks to read equally */
  opacity: .82;
  transition: opacity .38s var(--ease), transform .38s var(--ease);
}
.hcItem:hover img { opacity: 1; transform: scale(1.05); }
.hcSep { width: 1px; height: 30px; background: var(--line); flex: 0 0 auto; }
@media (max-width: 760px) {
.hcRow .hcItem { flex: 0 0 40%; }
.hcItem img { max-width: 132px; filter: none; }
.hcSep { display: none; }
.hcTop .hcLine { display: none; }
.hcTop { justify-content: center; }
}
@media (max-width: 760px) {
.hcItem img { opacity: .88; }
}
.hcItem { align-self: stretch; min-height: 84px; }
.hcSep { align-self: center; }
@media (max-width: 760px) {
.hcItem { min-height: 64px; }
}
/* client logos: brand colour at every breakpoint (no greyscale/alpha filter) */
.hcItem img, .hcItem:hover img { filter: none !important; }
@media (max-width: 760px) {
.hcItem img { opacity: .9; }
}
/* new Vodafone lockup is a wide wordmark (4.06:1) — match the other wordmarks */
.hcItem.wVoda img { max-width: 152px; max-height: 44px; }
@media (max-width: 760px) {
.hcItem.wVoda img { max-width: 132px; }
}
/* ============================================================
   HERO — dark astronaut banner (final)
   ============================================================ */
.hero.heroDark {
  position: relative;
  background: radial-gradient(120% 90% at 78% 12%, #241a48 0%, #150f2e 42%, #0b0818 100%);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 72px;
  isolation: isolate;
}
.hero.heroDark::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 40%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 40%, #000, transparent 72%);
}
.heroBgGlow { position: absolute; z-index: 0; width: 720px; height: 720px; right: -140px; top: -220px;
  background: radial-gradient(circle, rgba(124,44,230,.42), transparent 66%); filter: blur(28px); pointer-events: none; }
.hero.heroDark .container { position: relative; z-index: 2; }
.hero.heroDark .hero-grid { grid-template-columns: minmax(0,1.06fr) minmax(0,.94fr); gap: 40px; align-items: center; }
.heroEyebrow { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.82); box-shadow: none; }
.heroEyebrow .chip { background: #fff; color: #1a1033; }
.h1.heroH1 {
  font-size: clamp(40px, 5.1vw, 68px);
  line-height: 1.02; letter-spacing: -0.035em; font-weight: 800;
  color: #fff; max-width: 18ch; margin-bottom: 20px;
}
.h1.heroH1 em {
  font-style: normal;
  background: linear-gradient(100deg, #c9b3ff 0%, #7c2ce6 52%, #c9b3ff 100%);
  background-size: 200% 100%; -webkit-background-clip: text; background-clip: text;
  color: transparent; animation: shine 8s linear infinite;
}
.h1-sub.heroSub { color: rgba(255,255,255,.72); font-size: 17px; max-width: 50ch; margin-bottom: 30px; }
.heroActions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn.heroCta {
  background: linear-gradient(180deg, #7c2ce6, #6a24e0); color: #fff;
  padding: 15px 26px; font-weight: 700; font-size: 15px; border-radius: 12px;
  box-shadow: 0 14px 34px -12px rgba(124,44,230,.7), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn.heroCta:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(124,44,230,.8), inset 0 1px 0 rgba(255,255,255,.34); }
.heroProof { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px 8px 10px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: rgba(255,255,255,.06); }
.heroFaces { display: inline-flex; }
.heroFaces img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(20,14,40,.9); margin-left: -10px; background: #241a48; }
.heroFaces img:first-child { margin-left: 0; }
.heroProofText { font-size: 12.5px; line-height: 1.3; color: rgba(255,255,255,.7); display: flex; flex-direction: column; }
.heroProofText strong { color: #fff; font-weight: 700; font-size: 13px; }
.heroBuilt { display: flex; align-items: center; gap: 18px; margin-top: 34px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap; }
.heroBuiltLabel { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.heroBuiltMarks { display: inline-flex; align-items: center; gap: 20px; }
.hbLogo { height: 27px; width: auto; opacity: .95; display: block; }
.hbLogo.hbOai { height: 31px; }
.hbSep { width: 1px; height: 26px; background: rgba(255,255,255,.2); }
.heroArt { position: relative; display: flex; align-items: center; justify-content: center; }
.heroAstro { width: 100%; max-width: 470px; height: auto; display: block;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,.55));
  mask-image: radial-gradient(115% 105% at 52% 46%, #000 62%, rgba(0,0,0,.35) 84%, transparent 100%);
  -webkit-mask-image: radial-gradient(115% 105% at 52% 46%, #000 62%, rgba(0,0,0,.35) 84%, transparent 100%);
}
/* logo wall sits on the dark banner */
.heroDark .hero-clients { border-top-color: rgba(255,255,255,.12); margin-top: 46px; padding-top: 30px; }
.heroDark .hcLabel { color: rgba(255,255,255,.55); }
.heroDark .hcLine { background: linear-gradient(90deg, transparent, rgba(255,255,255,.2)); }
.heroDark .hcTop > .hcLine:last-child { background: linear-gradient(90deg, rgba(255,255,255,.2), transparent); }
.heroDark .hcSep { background: rgba(255,255,255,.16); }
.heroDark .hcItem img { filter: brightness(0) invert(1) !important; opacity: .78; }
.heroDark .hcItem:hover img { opacity: 1; }
@media (max-width: 1000px) {
.hero.heroDark { padding: 40px 0 52px; }
.hero.heroDark .hero-grid { grid-template-columns: 1fr; gap: 30px; }
.heroArt { order: -1; }
.heroAstro { max-width: 330px; }
.h1.heroH1 { max-width: 22ch; }
}
@media (max-width: 560px) {
.h1.heroH1 { font-size: clamp(32px, 9vw, 42px); }
.heroActions { gap: 12px; }
.btn.heroCta { width: 100%; justify-content: center; }
.heroProof { width: 100%; }
.heroAstro { max-width: 260px; }
.heroBuiltMarks { gap: 14px; }
.hbLogo { height: 23px; }
.hbLogo.hbOai { height: 26px; }
}
/* hero: near-black stage so the astronaut plate blends, and screen-blend
   the artwork so its black background disappears entirely */
.hero.heroDark {
  background: radial-gradient(120% 92% at 76% 10%, #1a1233 0%, #0e0a1e 46%, #06040d 100%);
}
.heroBgGlow { width: 620px; height: 620px; right: -160px; top: -240px;
  background: radial-gradient(circle, rgba(124,44,230,.30), transparent 68%); }
.heroAstro {
  mix-blend-mode: screen;
  mask-image: none; -webkit-mask-image: none;
  filter: none;
}
/* astronaut now has real alpha — drop the blend hack and add a soft violet bloom */
.heroAstro { mix-blend-mode: normal; filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); }
.heroArt::before { content: ''; position: absolute; z-index: 0; width: 78%; aspect-ratio: 1;
  left: 50%; top: 46%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(124,44,230,.34), transparent 66%); filter: blur(34px); }
.heroAstro { position: relative; z-index: 1; }
/* soften the artwork's outer edges so the lit wall/porthole dissolves into the stage */
.heroAstro {
  mask-image: radial-gradient(118% 104% at 44% 56%, #000 52%, rgba(0,0,0,.55) 78%, transparent 96%);
  -webkit-mask-image: radial-gradient(118% 104% at 44% 56%, #000 52%, rgba(0,0,0,.55) 78%, transparent 96%);
}
/* complete the fade inside the image box so no hard edge remains */
.heroAstro {
  mask-image: radial-gradient(86% 90% at 42% 54%, #000 40%, rgba(0,0,0,.45) 70%, transparent 85%);
  -webkit-mask-image: radial-gradient(86% 90% at 42% 54%, #000 40%, rgba(0,0,0,.45) 70%, transparent 85%);
}
/* ---- hero fixes: art height-capped, copy leads when stacked, logos keep brand colour ---- */
.heroArt img, .heroAstro { max-height: 520px; width: auto; }
@media (max-width: 1000px) {
.heroArt { order: 0; }
.heroAstro { max-width: 260px; max-height: 300px; margin-inline: auto; }
}
@media (max-width: 620px) {
.heroAstro { max-width: 210px; max-height: 240px; }
}
/* restore full-colour client logos on the dark stage */
.heroDark .hcItem img { filter: none !important; opacity: 1 !important; }
.heroDark .hcRow .hcItem { background: rgba(255,255,255,0.94); border-radius: 12px; padding: 12px 18px; }
.heroDark .hcRow { gap: 14px; }
.heroDark .hcItem + .hcItem { border-left: none; }
@media (max-width: 1000px) {
.heroAstro, .heroAstro img { max-height: 300px !important; width: auto !important; }
.heroArt { display: flex; justify-content: center; }
}
@media (max-width: 620px) {
.heroAstro, .heroAstro img { max-height: 240px !important; }
}
@media (max-width: 620px) {
.heroAstro, .heroAstro img { max-height: 320px !important; }
}
/* restore the borderless row with hairline dividers on the dark stage:
   one shared light panel instead of per-mark plates */
.heroDark .hcRow {
  background: rgba(255,255,255,0.94);
  border-radius: 16px;
  padding: 10px 6px;
}
.heroDark .hcRow .hcItem {
  background: none !important;
  border-radius: 0 !important;
  padding: 10px 22px !important;
}
.heroDark .hcItem + .hcItem { border-left: 1px solid rgba(12,10,31,0.10) !important; }
@media (max-width: 760px) {
.heroDark .hcItem + .hcItem { border-left: none !important; }
}
.heroDark .hero-clients .hcRow .hcItem + .hcItem { border-left: 1px solid rgba(12,10,31,0.12) !important; border-left-style: solid !important; }
@media (max-width: 760px) {
.heroDark .hero-clients .hcRow .hcItem + .hcItem { border-left-style: none !important; }
}
.heroDark .heroBuilt { margin-top: 28px; grid-column: 1 / -1; }
.heroDark .hcRow .hcItem + .hcItem { border-left: 1px solid rgba(12,10,31,0.12) !important; border-left-style: solid !important; }
@media (max-width: 760px) {
.heroDark .hcRow .hcItem + .hcItem { border-left-style: none !important; }
}
/* dividers: adjacency-independent (explicit separator nodes may sit between items) */
.heroDark .hcRow .hcItem:not(:first-child) { border-left: 1px solid rgba(12,10,31,0.12) !important; }
@media (max-width: 760px) {
.heroDark .hcRow .hcItem:not(:first-child) { border-left: none !important; }
}
/* faces pill: stop flex from compressing the avatars into slivers */
.heroProof .heroFaces { display: inline-flex; align-items: center; flex: 0 0 auto; }
.heroProof .heroFaces img {
  flex: 0 0 auto !important;
  width: 36px !important; height: 36px !important;
  min-width: 36px; min-height: 36px;
  border-radius: 50% !important;
  object-fit: cover !important; object-position: center 28% !important;
  border: 2px solid #17122e;
  background: #241c46;
}
.heroProof .heroFaces img + img { margin-left: -11px; }
.heroProof { flex-wrap: nowrap; }
.heroProof .heroProofText { flex: 1 1 auto; min-width: 0; }
/* partner marks: tight crops, optically balanced, crisp on dark */
.heroBuiltMarks { gap: 22px; }
.heroBuiltMarks .hbLogo { image-rendering: -webkit-optimize-contrast; }
.hbSep { width: 1px; height: 26px; background: rgba(255,255,255,.20); display: inline-block; }
@media (max-width: 760px) {
.hbSep { height: 22px; }
}
/* astronaut plate carries baked volumetric light + feathered alpha:
   no CSS mask needed, and masks would only clip the haze */
.heroAstro,
.heroArt img.heroAstro {
  mask-image: none !important;
  -webkit-mask-image: none !important;
  mix-blend-mode: normal;
  filter: drop-shadow(0 34px 64px rgba(0,0,0,.55));
}
/* the plate supplies its own bloom; keep the stage glow subtle behind it */
.heroArt::before { opacity: .55; }
/* brand marks must never be cropped */
.hcRow img, .heroBuiltMarks img, .logo-img { object-fit: contain; object-position: center; }
/* transparent artwork keeps its own silhouette */
.heroAstro { object-fit: contain; object-position: center bottom; }
/* ==========================================================
   Frosted glass restored (was stripped on a wrong theory)
   ========================================================== */
.hv-chip, .hvPill, .heroBuilt, .whyPanel, .intTab.isOn, .intStage,
.slBody, .suCard, .t2-slider, .modal, .nav, .eyebrow, .whyDTag,
.secTag, .askTag, .wnQuote, .deptCard, .tp-comp-tags span {
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
}
/* ==========================================================
   Hero awards — Clutch rating + badges
   ========================================================== */
.heroAwards { display:flex; align-items:center; gap:28px; flex-wrap:wrap; margin-top:46px; }
@media (max-width:760px) {
.heroAwards { gap:18px; margin-top:34px; }
}
.haRating { display:flex; align-items:center; gap:14px; }
.haRoundel { height:46px; width:auto; display:block; opacity:.95; }
@media (max-width:760px) {
.haRoundel { height:38px; }
}
.haRateBody { display:flex; flex-direction:column; gap:3px; }
.haStars { font-size:15px; letter-spacing:.16em; color:#f5a623; line-height:1; }
.haRateTxt { font-size:14px; font-weight:500; color:rgba(255,255,255,.82); letter-spacing:-.01em; }
.haSep { width:1px; height:52px; background:linear-gradient(180deg,transparent,rgba(255,255,255,.22),transparent); }
@media (max-width:760px) {
.haSep { display:none; }
}
.haBadges { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.haBadges img { height:76px; width:auto; display:block;
  filter:drop-shadow(0 8px 22px rgba(0,0,0,.35));
  transition:transform .4s cubic-bezier(.22,1,.36,1); }
@media (max-width:760px) {
.haBadges img { height:60px; }
}
.haBadges img:hover { transform:translateY(-4px) scale(1.03); }
@media (max-width:1100px) {
.hcRow .hcSep:nth-of-type(3) { display:none; }
}
/* ==========================================================
   Client wall — light panel, full-colour marks (restored).
   Per-brand caps from real aspect ratios so every mark lands
   on the same optical area (~6400px², square marks capped 78px).
   ========================================================== */
.hcPanel { display:flex; align-items:center; justify-content:space-between; gap:0;
  background:#f1f1f3; border-radius:22px; padding:24px 30px; flex-wrap:wrap; row-gap:18px;
  box-shadow:0 26px 60px -40px rgba(0,0,0,.55); }
@media (max-width:900px) {
.hcPanel { padding:22px 18px; justify-content:center; gap:10px 24px; }
}
.hcPanel .hcItem { display:flex; align-items:center; justify-content:center; flex:1 1 auto; min-width:0; padding:0 6px; }
.hcPanel .hcItem img { width:auto; height:auto; object-fit:contain; display:block;
  transition:transform .4s cubic-bezier(.22,1,.36,1); }
.hcPanel .hcItem:hover img { transform:translateY(-3px); }
.hcPanel .hcSep { flex:0 0 1px; width:1px; align-self:stretch; min-height:66px; background:rgba(20,26,46,.13); }
@media (max-width:900px) {
.hcPanel .hcSep { display:none; }
}
.hcPanel .hc-voda img { max-width:161px; max-height:40px; }
.hcPanel .hc-cpax img { max-width:144px; max-height:44px; }
.hcPanel .hc-aster img { max-width:78px; max-height:78px; }
.hcPanel .hc-tna img { max-width:142px; max-height:45px; }
.hcPanel .hc-greyt img { max-width:105px; max-height:61px; }
.hcPanel .hc-ddc img { max-width:113px; max-height:57px; }
@media (max-width:760px) {
.hcPanel .hc-voda img { max-width:126px; max-height:31px; }
.hcPanel .hc-cpax img { max-width:112px; max-height:34px; }
.hcPanel .hc-aster img { max-width:61px; max-height:61px; }
.hcPanel .hc-tna img { max-width:111px; max-height:35px; }
.hcPanel .hc-greyt img { max-width:82px; max-height:48px; }
.hcPanel .hc-ddc img { max-width:88px; max-height:44px; }
}
/* ==========================================================
   Client wall — single-row contract (overrides stale dark-row
   rules; items size to content so space-between sets rhythm)
   ========================================================== */
.heroDark .hcPanel .hcItem, .hcPanel .hcItem {
  flex: 0 0 auto !important;
  padding: 0 4px !important;
  min-width: 0;
}
.hcPanel { padding: 24px 20px !important; flex-wrap: nowrap !important; }
@media (max-width: 900px) {
.hcPanel { flex-wrap: wrap !important; padding: 22px 16px !important; justify-content: center; }
.heroDark .hcPanel .hcItem, .hcPanel .hcItem { flex: 0 0 auto !important; }
}
/* greytHR v2: re-normalised to sibling optical area */
.hcPanel .hc-greyt img { max-width:108px !important; max-height:60px !important; }
/* greytHR v3: cap solved for VISIBLE ink area, not box area */
.hcPanel .hc-greyt img { max-width:206px !important; max-height:98px !important; }
/* single-row refit after greytHR re-normalisation (scale 0.905) */
.hcPanel .hc-voda img { max-width:146px !important; max-height:36px !important; }
.hcPanel .hc-cpax img { max-width:130px !important; max-height:40px !important; }
.hcPanel .hc-aster img { max-width:71px !important; max-height:71px !important; }
.hcPanel .hc-tna img { max-width:129px !important; max-height:41px !important; }
.hcPanel .hc-greyt img { max-width:186px !important; max-height:89px !important; }
.hcPanel .hc-ddc img { max-width:102px !important; max-height:52px !important; }
/* ==========================================================
   Client wall — one optical height band (supersedes the
   area-based caps above; area sizing over-weighted greytHR)
   ========================================================== */
.hcPanel .hc-voda img { max-width:161px !important; max-height:40px !important; }
.hcPanel .hc-cpax img { max-width:131px !important; max-height:40px !important; }
.hcPanel .hc-aster img { max-width:52px !important; max-height:52px !important; }
.hcPanel .hc-tna img { max-width:126px !important; max-height:40px !important; }
.hcPanel .hc-greyt img { max-width:84px !important; max-height:40px !important; }
.hcPanel .hc-ddc img { max-width:79px !important; max-height:40px !important; }
.hcPanel .hcItem img { width:auto; height:auto; object-fit:contain; }
/* Aster badge +50% (circular mark carries the extra weight well) */
.hcPanel .hc-aster img { max-width:78px !important; max-height:78px !important; }

/* ===== ported departments section ===== */
/* ==========================================================
   Departments — folder-tab industry panel (enterprise, dark)
   ========================================================== */
.indSec { position: relative; overflow: hidden; background: #07060d; padding: 100px 0 104px; }
@media (max-width: 760px) {
.indSec { padding: 70px 0 74px; }
}
.indSec::before { content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 58% 54% at 6% -8%, rgba(124,44,230,.30), transparent 62%),
    radial-gradient(ellipse 50% 48% at 100% 106%, rgba(88,36,197,.26), transparent 62%); }
.indSec > .container { position: relative; z-index: 1; }
.indHead { max-width: 900px; margin-bottom: 40px; }
.indTag { display:inline-block; font-family: var(--mono); font-size:10.5px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase; color:#d6c6ff; padding:7px 14px; border-radius:100px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16); margin-bottom:20px; }
.indTitle { font-family: var(--sans); font-weight:700; font-size:clamp(32px,4.6vw,58px);
  line-height:1.04; letter-spacing:-.038em; color:#fff; margin:0; max-width:24ch; }
.indTitle em { font-style:normal; background:linear-gradient(96deg,#c9b8ff 0%,#7c2ce6 98%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
/* folder tabs */
.indTabs { display:flex; gap:6px; padding:0 8px; overflow-x:auto; scrollbar-width:none; }
.indTabs::-webkit-scrollbar { display:none; }
.indTab { position:relative; flex:0 0 auto; border:none; cursor:pointer;
  font-family:var(--sans); font-size:15px; font-weight:600; letter-spacing:-.01em;
  color:rgba(255,255,255,.56); background:rgba(255,255,255,.045);
  padding:15px 26px; border-radius:14px 14px 0 0;
  border-top:2px solid transparent; transition:color .28s, background .28s, border-color .28s; }
.indTab:hover { color:rgba(255,255,255,.85); background:rgba(255,255,255,.07); }
.indTab.isOn { color:#fff; background:rgba(255,255,255,.075); border-top-color:#7c2ce6; }
.indTab.isOn::after { content:''; position:absolute; left:0; right:0; bottom:-1px; height:2px; background:rgba(255,255,255,.075); }
@media (max-width: 620px) {
.indTab { font-size:13.5px; padding:13px 18px; }
}
/* stage */
.indStage { position:relative; background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.11);
  border-radius:0 22px 22px 22px; padding:46px 48px 44px; }
@media (max-width: 760px) {
.indStage { padding:30px 24px 32px; border-radius:0 16px 16px 16px; }
}
.indPanel { display:grid; grid-template-columns:1.08fr .92fr; gap:52px; align-items:center;
  animation: indIn .55s var(--ease) both; }
@media (max-width: 940px) {
.indPanel { grid-template-columns:1fr; gap:30px; }
}
.indPanel[hidden] { display:none; }
.indH { font-family:var(--sans); font-weight:700; font-size:clamp(25px,3.1vw,38px);
  line-height:1.1; letter-spacing:-.035em; color:#fff; margin:0 0 16px; max-width:22ch; }
.indP { font-size:16px; line-height:1.68; color:rgba(255,255,255,.7); margin:0 0 24px; max-width:52ch; }
.indExplore { display:inline-flex; align-items:center; gap:9px; font-size:15px; font-weight:600;
  color:#fff; text-decoration:none; padding-bottom:6px; border-bottom:1px solid rgba(255,255,255,.34);
  transition:gap .3s var(--ease), border-color .3s; }
.indExplore svg { width:19px; height:19px; }
.indExplore:hover { gap:14px; border-bottom-color:#c9b8ff; }
.indTagsWrap { margin-top:38px; }
/* image card + stacked depth */
.indShot { margin:0; position:relative; }
.indBadge { position:absolute; top:24px; right:24px; z-index:2; font-size:11.5px; font-weight:600;
  color:#fff; background:rgba(12,10,31,.62); border:1px solid rgba(255,255,255,.2);
  padding:6px 13px; border-radius:100px; }
.indShot figcaption { margin-top:20px; font-family:var(--sans); font-weight:700; font-size:19px;
  line-height:1.28; letter-spacing:-.025em; color:#fff; max-width:26ch; }
/* dots */
.indDots { position:absolute; right:-26px; top:50%; transform:translateY(-50%);
  display:flex; flex-direction:column; gap:11px; }
@media (max-width: 1120px) {
.indDots { display:none; }
}
.indDot { width:8px; height:8px; border-radius:50%; border:1px solid rgba(255,255,255,.42); transition:all .3s; }
.indDot.isOn { background:#fff; border-color:#fff; }
.indKicker { margin-top:38px; font-size:16px; line-height:1.6; color:rgba(255,255,255,.62);
  max-width:74ch; padding-left:20px; border-left:2px solid rgba(124,44,230,.55); }
/* ==========================================================
   object-fit for images converted from <image-slot>.
   The component fitted internally; plain <img> defaults to
   'fill', which stretches whenever both axes are constrained.
   Photos → cover (crop, never distort). Logos → contain.
   ========================================================== */
.seoIndImg, .c2ph-img, .t2-avatar, .proof-hero-img,
.indShot img, .sol-shot img, .dvFrame img {
  object-fit: cover; object-position: center;
}
/* ==========================================================
   Entry animations — same inversion as .reveal.
   Visible is the default; the from-state exists only when the
   renderer proves it can run frames (html.js-anim, set in rAF).
   animation-fill-mode:both / an in-flight transition on a never-
   started timeline would otherwise pin these at opacity 0.
   ========================================================== */
.indPanel.isOn { opacity: 1; transform: none; }
html.js-anim .indPanel.isOn { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
html.js-anim .indPanel.isOn,
  html.js-anim .intPane { animation: none; opacity: 1; transform: none; }
}
/* ungated defaults must cancel the animation itself — setting opacity alone
   loses to animation-fill-mode:both on a never-started timeline */
.indPanel.isOn, .intPane { animation: none !important; }
html.js-anim .indPanel.isOn { animation: indIn .55s cubic-bezier(.22,1,.36,1) both !important; }

/* ===== ported leadership section ===== */
/* ==========================================================
   Executive leadership — named accountability (E-E-A-T)
   ========================================================== */
.ldSec { background:#fff; padding:96px 0 84px; }
@media (max-width:760px) {
.ldSec { padding:68px 0 60px; }
}
.ldHead { max-width:760px; margin-bottom:52px; }
.ldTag { display:inline-block; font-family:var(--mono); font-size:10.5px; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--violet); padding:7px 14px; border-radius:100px;
  background:rgba(124,44,230,.09); border:1px solid rgba(124,44,230,.2); margin-bottom:20px; }
.ldTitle { font-family:var(--sans); font-weight:700; font-size:clamp(30px,4.2vw,52px); line-height:1.05;
  letter-spacing:-.038em; color:var(--ink); margin:0 0 16px; }
.ldTitle em { font-style:normal; background:linear-gradient(96deg,#7c2ce6,#5824c5);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.ldLede { font-size:16.5px; line-height:1.68; color:var(--ink-soft); margin:0; max-width:62ch; }
.ldGrid { list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(5,1fr); gap:38px 24px; }
@media (max-width:1080px) {
.ldGrid { grid-template-columns:repeat(4,1fr); }
}
@media (max-width:800px) {
.ldGrid { grid-template-columns:repeat(3,1fr); gap:30px 18px; }
}
@media (max-width:520px) {
.ldGrid { grid-template-columns:repeat(2,1fr); }
}
.ldCard { text-align:center; }
.ldRing { position:relative; display:grid; place-items:center; width:132px; height:132px;
  margin:0 auto 16px; border-radius:50%; padding:0; background:none; flex:0 0 auto;
  transition:transform .42s var(--ease), filter .42s var(--ease); }
/* ring drawn as its own layer so it can never clip or offset the photo */
.ldRing::before { content:''; position:absolute; inset:0; border-radius:50%; z-index:0;
  background:conic-gradient(from 210deg, #7c2ce6 0deg, #7c2ce6 200deg, #ede4ff 200deg, #ede4ff 360deg); }
.ldRing::after { content:''; position:absolute; inset:5px; border-radius:50%; background:#f4f2f7; z-index:1; }
.ldCard:hover .ldRing { transform:translateY(-5px) scale(1.03); filter:drop-shadow(0 18px 34px rgba(124,44,230,.32)); }
.ldRing img { width:100%; height:100%; display:block; border-radius:50%; object-fit:cover;
  background:#f4f2f7; filter:grayscale(1) contrast(1.04); transition:filter .42s var(--ease); }
.ldCard:hover .ldRing img { filter:grayscale(0) contrast(1); }
.ldName { display:block; font-family:var(--sans); font-weight:700; font-size:15.5px; letter-spacing:-.022em;
  color:var(--ink); line-height:1.25; }
.ldRole { display:block; font-size:13px; font-weight:600; color:var(--violet); margin-top:5px; line-height:1.4; }
/* photo sits above both ring layers, always a true circle */
.ldRing img { position:relative; z-index:2; width:122px !important; height:122px !important;
  border-radius:50%; object-fit:cover; object-position:50% 50%; display:block;
  background:#f4f2f7; filter:grayscale(1) contrast(1.04); transition:filter .42s var(--ease); }
.ldCard:hover .ldRing img { filter:grayscale(0) contrast(1); }
@media (max-width:520px) {
.ldRing { width:112px; height:112px; }
.ldRing img { width:102px !important; height:102px !important; }
}
.sol-gallery .sol-shot-img.sol-shot-fit { display:block; width:100%; height:460px; object-fit:contain; padding:24px 18px;
  background:linear-gradient(180deg,#23402b 0%,#2f5138 45%,#4a7355 100%); border-bottom:1px solid var(--line); }
@media (max-width:640px){ .sol-gallery .sol-shot-img.sol-shot-fit { height:380px; } }

/* ===== supplier dashboard mock (light analytics UI + motion) ===== */
.supUI { position:relative; overflow:hidden; height:460px; padding:16px; display:flex; flex-direction:column; gap:10px;
  background:linear-gradient(180deg,#eceef1,#f6f7f9); border-bottom:1px solid var(--line); font-family:var(--sans); }
@media (max-width:640px){ .supUI{ height:400px; } }
.supUI > * { background:#fff; border-radius:14px; }
.supTop { display:flex; align-items:center; justify-content:space-between; padding:9px 12px; }
.supBrand { display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:800; letter-spacing:-.02em; color:#14161a; }
.supMark { width:18px; height:18px; border-radius:5px; background:linear-gradient(140deg,#ffb84d,#f08a1c); box-shadow:inset 0 1px 0 rgba(255,255,255,.5); }
.supNav { display:inline-flex; align-items:center; gap:4px; font-size:10.5px; }
.supNav b { background:#14161a; color:#fff; padding:5px 10px; border-radius:8px; font-weight:600; }
.supNav i { font-style:normal; color:#6b7280; padding:5px 8px; }
@media (max-width:520px){ .supNav i:nth-child(n+3){ display:none; } }
.supHead { display:flex; align-items:baseline; justify-content:space-between; padding:10px 14px 8px; background:none; }
.supTitle { font-size:22px; font-weight:800; letter-spacing:-.035em; color:#14161a; }
.supRange { display:inline-flex; align-items:center; gap:6px; font-size:10.5px; font-weight:600; color:#0f6b31;
  background:#e7f7ee; border:1px solid #bde9cf; padding:4px 10px; border-radius:100px; }
.supRange::before { content:''; width:6px; height:6px; border-radius:50%; background:#0f6b31; animation:supPulse 1.8s ease-in-out infinite; }
@keyframes supPulse { 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:.35; transform:scale(1.35);} }
.supBody { display:grid; grid-template-columns:1.55fr 1fr; gap:10px; flex:1; background:none; min-height:0; }
@media (max-width:520px){ .supBody{ grid-template-columns:1fr; } .supSide{ display:none; } }
.supChart { position:relative; background:#fff; border-radius:14px; padding:14px 12px 10px; overflow:hidden; }
.supBars { display:grid; grid-template-columns:repeat(5,1fr); gap:6px; align-items:end; height:100%; }
.supBar { position:relative; display:flex; flex-direction:column; justify-content:flex-end; height:100%; text-align:center; }
.supBar i { display:block; border-radius:6px 6px 0 0; transform-origin:bottom; animation:supGrow 1.1s cubic-bezier(.22,1,.36,1) both;
  background:repeating-linear-gradient(135deg,#cddcfa 0 4px,#e8eefc 4px 8px); }
.supBar.b1 i { height:64%; animation-delay:.05s; }
.supBar.b2 i { height:56%; animation-delay:.15s; }
.supBar.b3 i { height:48%; animation-delay:.25s; background:linear-gradient(180deg,#3b76f6,#1f52d0); }
.supBar.b4 i { height:16%; animation-delay:.35s; background:repeating-linear-gradient(135deg,#f6c9c2 0 4px,#fbe6e2 4px 8px); }
.supBar.b5 i { height:44%; animation-delay:.45s; }
@keyframes supGrow { from{ transform:scaleY(0); opacity:0; } to{ transform:scaleY(1); opacity:1; } }
.supBar em { font-style:normal; font-size:11.5px; font-weight:800; color:#14161a; margin-top:6px; }
.supBar.isOn em { color:#1f52d0; }
.supBar small { font-size:9px; color:#6b7280; }
.supTip { position:absolute; top:16px; right:12px; font-size:9.5px; color:#374151; background:rgba(255,255,255,.94);
  border:1px solid #e3e7ec; border-radius:100px; padding:5px 11px; box-shadow:0 8px 20px -12px rgba(20,22,26,.35);
  animation:supFloat 4.5s ease-in-out infinite; white-space:nowrap; }
.supTip b { color:#1f52d0; }
@media (max-width:640px){ .supTip{ font-size:8.5px; padding:4px 8px; } }
@keyframes supFloat { 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-5px);} }
.supSide { background:#fff; border-radius:14px; padding:14px 14px 12px; display:flex; flex-direction:column; gap:7px; }
.supSideT { font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#6b7280; }
.supMetric { font-size:30px; font-weight:800; letter-spacing:-.04em; color:#14161a; line-height:1; margin-bottom:4px; }
.supCh { display:flex; flex-direction:column; gap:4px; }
.supCh i { font-style:normal; font-size:10.5px; color:#4b5563; }
.supTrack { display:block; height:6px; border-radius:100px; background:#eef1f4; overflow:hidden; }
.supTrack b { display:block; height:100%; border-radius:100px; transform-origin:left;
  animation:supFill 1.2s cubic-bezier(.22,1,.36,1) both; }
.supTrack .c1 { width:74%; background:#22a55c; animation-delay:.3s; }
.supTrack .c2 { width:52%; background:#3b76f6; animation-delay:.45s; }
.supTrack .c3 { width:31%; background:#ec4899; animation-delay:.6s; }
@keyframes supFill { from{ transform:scaleX(0);} to{ transform:scaleX(1);} }
.supDelta { margin-top:auto; font-size:10.5px; font-weight:700; color:#0f6b31; }
.supAsk { padding:9px 11px 10px; background:linear-gradient(180deg,#e8eefc,#fff); border:1px solid #dbe4f8; }
.supAskT { display:flex; align-items:center; gap:7px; font-size:10.5px; font-weight:700; color:#374151; margin-bottom:7px; }
.supSpark { width:12px; height:12px; border-radius:3px; background:conic-gradient(from 0deg,#3b76f6,#a855f7,#3b76f6);
  animation:supSpin 3.4s linear infinite; }
@keyframes supSpin { to{ transform:rotate(360deg);} }
.supField { display:block; background:#fff; border-radius:9px; padding:8px 10px; font-size:10.5px; color:#374151; white-space:nowrap; overflow:hidden; }
.supField b { background:#fdebc8; border-radius:4px; padding:1px 5px; color:#92400e; font-weight:600; }
.supCaret { display:inline-block; width:1.5px; height:11px; background:#14161a; margin-left:3px; vertical-align:-2px;
  animation:supBlink 1s step-end infinite; }
@keyframes supBlink { 0%,100%{ opacity:1;} 50%{ opacity:0;} }
@media (prefers-reduced-motion:reduce){
  .supBar i,.supTrack b { animation:none; transform:none; }
  .supTip,.supSpark,.supCaret,.supRange::before { animation:none; }
}

/* ===== claims card: layered sheets + motion ===== */
.clmUI { position:relative; height:460px; padding:22px 20px 18px; display:flex; flex-direction:column; gap:14px;
  background:linear-gradient(180deg,#eef3fb,#e4ecf8); border-bottom:1px solid var(--line); overflow:hidden; font-family:var(--sans); }
@media (max-width:640px){ .clmUI{ height:400px; padding:18px 16px 14px; } }
.clmStack { position:relative; flex:1; min-height:0; }
.clmSheet { position:absolute; border-radius:14px; background:#fff; }
.clmSheet.s3 { inset:20% 2% 26% 16%; opacity:.45; box-shadow:0 10px 26px -18px rgba(20,40,90,.4); animation:clmDrift 7s ease-in-out infinite; }
.clmSheet.s2 { inset:14% 6% 20% 10%; opacity:.7; box-shadow:0 14px 30px -18px rgba(20,40,90,.45); animation:clmDrift 7s ease-in-out .6s infinite; }
.clmSheet.s1 { inset:4% 12% 22% 4%; padding:14px 14px; display:flex; flex-direction:column; gap:9px;
  box-shadow:0 22px 48px -24px rgba(20,40,90,.45); }
@keyframes clmDrift { 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-5px);} }
.clmRow { display:flex; align-items:center; gap:8px; }
.clmRow.head { margin-bottom:2px; }
.clmBar { display:block; height:8px; border-radius:100px; background:#edf1f7; }
.clmBar.w1 { width:26%; } .clmBar.w2 { width:44%; } .clmBar.w3 { width:34%; } .clmBar.w4 { width:52%; }
.clmTick { position:relative; width:15px; height:15px; border-radius:4px; background:#dbe8fb; flex:0 0 auto; }
.clmTick::after { content:''; position:absolute; left:4px; top:4.5px; width:6px; height:3.5px;
  border-left:1.8px solid #3b76f6; border-bottom:1.8px solid #3b76f6; transform:rotate(-45deg) scale(0);
  transform-origin:center; animation:clmCheck .4s cubic-bezier(.22,1,.36,1) both; }
.clmRow.r1 .clmTick::after { animation-delay:.5s; }
.clmRow.r2 .clmTick::after { animation-delay:1.1s; }
.clmRow.r3 .clmTick::after { animation-delay:1.7s; }
.clmRow.r4 .clmTick::after { animation-delay:2.3s; }
.clmRow.r1 .clmTick,.clmRow.r2 .clmTick,.clmRow.r3 .clmTick,.clmRow.r4 .clmTick { animation:clmTickBg .4s ease both; }
.clmRow.r1 .clmTick { animation-delay:.5s; } .clmRow.r2 .clmTick { animation-delay:1.1s; }
.clmRow.r3 .clmTick { animation-delay:1.7s; } .clmRow.r4 .clmTick { animation-delay:2.3s; }
@keyframes clmCheck { from{ transform:rotate(-45deg) scale(0);} to{ transform:rotate(-45deg) scale(1);} }
@keyframes clmTickBg { from{ background:#eef1f5;} to{ background:#dbe8fb;} }
.clmValue { position:absolute; right:0; top:30%; display:flex; flex-direction:column; gap:2px;
  background:#d7e6fb; border-radius:12px; padding:11px 15px 12px; box-shadow:0 16px 34px -20px rgba(20,40,90,.5);
  animation:clmFloat 5s ease-in-out infinite; }
.clmValue .clmInfo { position:absolute; left:12px; top:12px; width:15px; height:15px; border-radius:50%;
  border:1.4px solid #3b76f6; color:#3b76f6; font-size:9px; font-style:normal; font-weight:700;
  display:flex; align-items:center; justify-content:center; }
.clmValue em { font-style:normal; font-size:10.5px; font-weight:600; color:#4b5563; padding-left:21px; }
.clmValue b { font-size:19px; font-weight:800; letter-spacing:-.03em; color:#14213d; }
@media (max-width:640px){ .clmValue b { font-size:16px; } }
@keyframes clmFloat { 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-6px);} }
.clmBridge { position:absolute; left:0; bottom:6%; display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.86); backdrop-filter:blur(8px); border-radius:14px; padding:9px 13px;
  box-shadow:0 14px 32px -20px rgba(20,40,90,.45); }
.clmApp { width:38px; height:38px; border-radius:10px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(150deg,#4c5b73,#33415a); color:#fff; font-size:11px; font-weight:800; letter-spacing:.02em; }
.clmApp.erp { background:linear-gradient(150deg,#3b76f6,#1f52d0); }
.clmSwap { position:relative; width:22px; height:14px; }
.clmSwap::before,.clmSwap::after { content:''; position:absolute; left:0; width:100%; height:1.6px; background:#5b6b86; border-radius:2px; }
.clmSwap::before { top:2px; animation:clmR 2.4s ease-in-out infinite; }
.clmSwap::after { bottom:2px; animation:clmL 2.4s ease-in-out infinite; }
@keyframes clmR { 0%,100%{ transform:translateX(-3px); opacity:.45;} 50%{ transform:translateX(3px); opacity:1;} }
@keyframes clmL { 0%,100%{ transform:translateX(3px); opacity:1;} 50%{ transform:translateX(-3px); opacity:.45;} }
.clmCaption { background:#fff; border-radius:14px; padding:14px 16px; box-shadow:0 10px 26px -20px rgba(20,40,90,.4); }
.clmCaption strong { display:block; font-size:15px; font-weight:800; letter-spacing:-.03em; color:#14161a; margin-bottom:5px; }
.clmCaption span { font-size:12.5px; line-height:1.5; color:#4b5563; }
@media (prefers-reduced-motion:reduce){
  .clmSheet,.clmValue,.clmSwap::before,.clmSwap::after { animation:none; transform:none; }
  .clmTick::after { animation:none; transform:rotate(-45deg) scale(1); }
}

/* =========================================================
   #departments — authoritative, self-contained (this build has
   no .seoSec base rules, which is why the port rendered unstyled)
   ========================================================= */
#departments { position:relative; overflow:hidden; padding:104px 0 108px; background:#08060e; font-family:var(--sans); }
@media (max-width:760px){ #departments{ padding:72px 0 76px; } }
#departments::before { content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 58% 54% at 6% -8%, rgba(124,44,230,.30), transparent 62%),
             radial-gradient(ellipse 46% 44% at 98% 104%, rgba(88,36,197,.20), transparent 62%); }
#departments > .container { position:relative; z-index:1; max-width:1280px; margin:0 auto; padding:0 32px; }
@media (max-width:640px){ #departments > .container{ padding:0 20px; } }

/* heading */
#departments .indHead { max-width:940px; margin-bottom:34px; }
#departments .indTag { display:inline-block; font-family:var(--mono); font-size:10.5px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase; color:#d6c6ff; padding:7px 14px; border-radius:100px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16); margin-bottom:20px; }
#departments .indTitle { font-weight:800; font-size:clamp(32px,5vw,60px); line-height:1.04;
  letter-spacing:-.042em; color:#fff; margin:0; }
#departments .indTitle em { font-style:normal;
  background:linear-gradient(96deg,#b49bff 0%,#7c2ce6 96%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }

/* folder tabs */
#departments .indWrap { position:relative; }
#departments .indTabs { display:flex; align-items:flex-end; gap:6px; position:relative; z-index:2; }
@media (max-width:900px){ #departments .indTabs{ overflow-x:auto; scrollbar-width:none; padding-bottom:2px; }
  #departments .indTabs::-webkit-scrollbar{ display:none; } }
#departments .indTab { flex:0 0 auto; cursor:pointer; border:none; font-family:var(--sans);
  font-size:14.5px; font-weight:600; letter-spacing:-.015em; color:rgba(255,255,255,.58);
  background:rgba(255,255,255,.05); padding:15px 24px; border-radius:14px 14px 0 0; white-space:nowrap;
  position:relative; transition:color .28s var(--ease), background .28s var(--ease); }
#departments .indTab:hover { color:rgba(255,255,255,.9); background:rgba(255,255,255,.08); }
#departments .indTab.isOn { color:#fff; background:#15131d; }
#departments .indTab.isOn::before { content:''; position:absolute; left:0; right:0; top:0; height:2px;
  border-radius:2px 2px 0 0; background:linear-gradient(90deg,#b49bff,#7c2ce6); }
#departments .indTab:focus-visible { outline:2px solid #b49bff; outline-offset:2px; }

/* stage */
#departments .indStage { position:relative; background:#15131d; border-radius:0 22px 22px 22px;
  padding:44px 48px 46px; }
@media (max-width:900px){ #departments .indStage{ border-radius:0 18px 18px 18px; padding:30px 24px 32px; } }
#departments .indPanel { display:none; }
#departments .indPanel.isOn { display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:start;
  animation:indIn .5s var(--ease) both; }
@media (max-width:900px){ #departments .indPanel.isOn{ grid-template-columns:1fr; gap:28px; } }
@keyframes indIn { from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:none; } }

/* copy column */
#departments .indH { font-weight:800; font-size:clamp(24px,3vw,36px); line-height:1.1; letter-spacing:-.035em;
  color:#fff; margin:0 0 18px; max-width:20ch; }
#departments .indP { font-size:16px; line-height:1.72; color:rgba(255,255,255,.66); margin:0 0 26px; max-width:52ch; }
#departments .indExplore { display:inline-flex; align-items:center; gap:9px; font-size:15px; font-weight:700;
  color:#fff; text-decoration:none; padding-bottom:9px; border-bottom:1px solid rgba(255,255,255,.28);
  transition:gap .3s var(--ease), border-color .3s; }
#departments .indExplore svg { width:19px; height:19px; }
#departments .indExplore:hover { gap:15px; border-bottom-color:#b49bff; }
#departments .indTagsWrap { margin-top:40px; }
#departments .indTagsLabel, #departments .indTagsWrap > span:first-child { display:block; font-size:12.5px;
  color:rgba(255,255,255,.42); margin-bottom:14px; }
#departments .indTags { list-style:none; margin:0; padding:18px; display:flex; flex-wrap:wrap; gap:9px;
  border:1px solid rgba(255,255,255,.10); border-radius:16px; background:rgba(255,255,255,.02); }
#departments .indTags li, #departments .indTag2 { font-size:12.5px; color:rgba(255,255,255,.74);
  padding:9px 15px; border-radius:100px; background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  transition:transform .28s var(--ease), background .28s, color .28s, border-color .28s; }
#departments .indTags li:hover { transform:translateY(-2px); background:rgba(180,155,255,.16);
  border-color:rgba(180,155,255,.42); color:#fff; }

/* figure column */
#departments .indFig, #departments figure { margin:0; }
#departments .indShot { position:relative; border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,.10);
  background:#0f0d16; }
#departments .indShot img { display:block; width:100%; height:340px; object-fit:cover;
  transition:transform .8s var(--ease); }
@media (max-width:640px){ #departments .indShot img{ height:240px; } }
#departments .indShot:hover img { transform:scale(1.04); }
#departments .indBadge { position:absolute; top:14px; right:14px; z-index:2; font-size:11.5px; font-weight:700;
  color:#fff; background:rgba(12,10,22,.72); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.16); padding:7px 13px; border-radius:100px;
  animation:indFloat 5s ease-in-out infinite; }
@keyframes indFloat { 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-4px);} }
#departments figcaption { margin-top:20px; font-weight:800; font-size:clamp(18px,2.2vw,24px);
  line-height:1.2; letter-spacing:-.03em; color:#fff; max-width:24ch; }

/* dot rail */
#departments .indDots { position:absolute; top:50%; right:-30px; transform:translateY(-50%);
  display:flex; flex-direction:column; gap:12px; }
@media (max-width:1180px){ #departments .indDots{ position:static; transform:none; flex-direction:row;
  justify-content:center; margin-top:26px; } }
#departments .indDot { width:9px; height:9px; border-radius:50%; cursor:pointer;
  background:transparent; border:1.5px solid rgba(255,255,255,.34);
  transition:background .3s, border-color .3s, transform .3s var(--ease); }
#departments .indDot:hover { border-color:#b49bff; }
#departments .indDot.isOn { background:#fff; border-color:#fff; transform:scale(1.15); }

/* kicker */
#departments .indKicker { margin:40px 0 0; font-size:16.5px; line-height:1.62; color:rgba(255,255,255,.7);
  padding-left:20px; border-left:2px solid #7c2ce6; max-width:76ch; }

@media (prefers-reduced-motion:reduce){
  #departments .indPanel.isOn,#departments .indBadge,#departments .indShot img { animation:none; transition:none; }
}

/* frame belongs to .indShotFrame — .indShot is the <figure> and holds the caption */
#departments .indShot { border:0; background:none; overflow:visible; border-radius:0; margin:0; }
#departments .indShotFrame { position:relative; border-radius:18px; overflow:hidden;
  border:1px solid rgba(255,255,255,.10); background:#0f0d16;
  box-shadow:0 30px 70px -40px rgba(0,0,0,.7); }
#departments .indShotFrame img { display:block; width:100%; height:340px; object-fit:cover;
  transition:transform .8s var(--ease); }
@media (max-width:640px){ #departments .indShotFrame img{ height:240px; } }
#departments .indShotFrame:hover img { transform:scale(1.04); }
#departments .indCopy { min-width:0; }

/* leads card: video fills the frame edge to edge */
.solVid { height:460px; overflow:hidden; border-bottom:1px solid var(--line); background:#0d0b14; }
.solVid video { display:block; width:100%; height:100%; object-fit:cover; object-position:center; }
@media (max-width:640px){ .solVid{ height:400px; } }
/* booking card: whole handset in frame, plate matched to the shot */
.solPhone { height:460px; display:flex; align-items:center; justify-content:center; padding:16px;
  background:linear-gradient(180deg,#2f5138 0%,#3f6647 55%,#4f7a58 100%); border-bottom:1px solid var(--line); }
.solPhone img { display:block; max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }
@media (max-width:640px){ .solPhone{ height:400px; } }

/* ===== ERP reporting dashboard ===== */
.erpUI { height:460px; display:grid; grid-template-columns:1.5fr 1fr; gap:0; overflow:hidden;
  border-bottom:1px solid var(--line); font-family:var(--sans); }
@media (max-width:640px){ .erpUI{ height:400px; grid-template-columns:1fr; } .erpSide{ display:none !important; } }
.erpMain { background:#f7f8f7; padding:16px 16px 14px; display:flex; flex-direction:column; gap:11px; min-width:0; }
.erpTop { display:flex; align-items:center; justify-content:space-between; }
.erpBrand { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:800; letter-spacing:-.025em; color:#14181a; }
.erpBrand i { width:17px; height:17px; border-radius:5px; background:linear-gradient(140deg,#4ad98a,#16a34a); }
.erpLive { font-size:9.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:#0f6b31;
  background:#e2f7ea; border:1px solid #bfe9cf; padding:4px 9px; border-radius:100px; }
.erpTiles { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.erpTile { background:#fff; border-radius:12px; padding:10px 11px; display:flex; flex-direction:column; gap:2px;
  box-shadow:0 6px 16px -14px rgba(20,24,26,.5); min-width:0; }
.erpTile em { font-style:normal; font-size:9px; color:#6b7280; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.erpTile b { font-size:15px; font-weight:800; letter-spacing:-.03em; color:#14181a; white-space:nowrap; }
.erpUp,.erpDown { font-size:8.5px; font-weight:700; }
.erpUp { color:#0f6b31; } .erpDown { color:#b3541e; }
.erpChart { position:relative; flex:1; min-height:0; background:#fff; border-radius:12px; padding:11px 12px 8px;
  display:flex; flex-direction:column; box-shadow:0 6px 16px -14px rgba(20,24,26,.5); }
.erpChartTop { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:6px; }
.erpChartTop span { font-size:10.5px; color:#6b7280; }
.erpChartTop b { font-size:16px; font-weight:800; letter-spacing:-.03em; color:#14181a; }
.erpChart svg { flex:1; width:100%; min-height:0; }
.erpGrid { stroke:#e8ebe9; stroke-width:1; stroke-dasharray:3 4; fill:none; }
.erpArea { fill:rgba(22,163,74,.10); stroke:none; }
.erpLine { fill:none; stroke:#16a34a; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round;
  stroke-dasharray:600; animation:erpDraw 2.2s cubic-bezier(.22,1,.36,1) both; }
@keyframes erpDraw { from{ stroke-dashoffset:600; } to{ stroke-dashoffset:0; } }
.erpDot { fill:#16a34a; animation:erpPing 2s ease-in-out 2.1s infinite; }
@keyframes erpPing { 0%,100%{ r:4; opacity:1; } 50%{ r:6; opacity:.55; } }
.erpDays { display:flex; justify-content:space-between; font-size:8.5px; color:#9ca3af; margin-top:4px; }
.erpDays i { font-style:normal; }
.erpSide { background:#101211; padding:16px 15px 14px; display:flex; flex-direction:column; gap:9px; color:#fff; min-width:0; }
.erpSideT { font-size:9.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.5); }
.erpRate { font-size:34px; font-weight:800; letter-spacing:-.045em; line-height:1; display:flex; flex-direction:column; gap:3px; }
.erpRate em { font-style:normal; font-size:10px; font-weight:600; letter-spacing:0; color:rgba(255,255,255,.5); }
.erpFunnel { display:flex; flex-direction:column; gap:9px; margin-top:2px; }
.erpStep { display:flex; align-items:center; gap:3px; flex-wrap:wrap; }
.erpStep i { width:5px; height:20px; border-radius:100px; background:rgba(255,255,255,.16);
  transform-origin:bottom; animation:erpBar .6s cubic-bezier(.22,1,.36,1) both; }
.erpStep i.on { background:#4ad98a; }
.erpStep:nth-child(1) i { animation-delay:.1s; } .erpStep:nth-child(2) i { animation-delay:.25s; }
.erpStep:nth-child(3) i { animation-delay:.4s; }  .erpStep:nth-child(4) i { animation-delay:.55s; }
@keyframes erpBar { from{ transform:scaleY(.2); opacity:0; } to{ transform:scaleY(1); opacity:1; } }
.erpStep b { font-size:10.5px; font-weight:700; margin-left:7px; }
.erpStep small { font-size:10px; color:rgba(255,255,255,.5); margin-left:auto; }
.erpFoot { margin-top:auto; font-size:9.5px; color:rgba(255,255,255,.45); }
@media (prefers-reduced-motion:reduce){ .erpLine,.erpDot,.erpStep i { animation:none; stroke-dashoffset:0; transform:none; } }

/* ===== Aster NurseRouster AI card ===== */
.sol-gallery.build-gallery .sol-card.astCard { grid-column: 1 / -1; max-width: 1240px; margin: 0 auto; background: none; border: none; box-shadow: none; padding: 0; }
.astUI { position: relative; width: 100%; aspect-ratio: 1672 / 941; overflow: hidden; border-radius: 28px; background: #0c2247; border: none; box-shadow: 0 26px 70px -34px rgba(12,34,71,.42); }
.astPlate { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.astSheen { position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(112deg, transparent 34%, rgba(255,255,255,.13) 50%, transparent 66%);
  transform: translateX(-120%); }
.astCard:hover .astSheen { transform: translateX(120%); transition: transform 1.05s cubic-bezier(.22,1,.36,1); }
@media (max-width: 640px){ .astUI { border-radius: 18px; } }
@media (prefers-reduced-motion: reduce){ .astSheen { display: none; } }


/* ===== compare column fields (authoritative) ===== */
.compare-grid .compare-col.old { background:#fff !important; border-color:var(--line) !important; }
.compare-grid .compare-col.new { background:linear-gradient(180deg,#f3ecff 0%,#e9dcff 100%) !important; border-color:var(--p-300) !important; }
/* proof frame: plain photo, no text layers */
.proof-hero { position:relative; border-radius:20px; overflow:hidden; box-shadow:0 30px 80px -44px rgba(12,10,31,.42); }
.proof-hero-img { display:block; width:100%; height:auto; }

/* ===== Aster feature: full-bleed, uncropped ===== */
.sol-gallery { align-items: start; }
.sol-gallery .sol-card.astCard { grid-column: 1 / -1; background:none; border:none; box-shadow:none; padding:0; }
.astUI { position:relative; width:100%; aspect-ratio:1672 / 941; overflow:hidden; border-radius:26px;
  background:#0c2247; box-shadow:0 26px 70px -34px rgba(12,34,71,.42); }
.astPlate { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; object-position:center; display:block; }
.astSheen { position:absolute; inset:0; pointer-events:none; border-radius:inherit;
  background:linear-gradient(112deg,transparent 34%,rgba(255,255,255,.13) 50%,transparent 66%);
  transform:translateX(-120%); }
.astCard:hover .astSheen { transform:translateX(120%); transition:transform 1.05s cubic-bezier(.22,1,.36,1); }
@media (max-width:640px){ .astUI { border-radius:16px; } }
@media (prefers-reduced-motion:reduce){ .astSheen { display:none; } }

/* supSpark: 12px chip must not be flex-shrunk to nothing */
.supAsk .supSpark { flex:0 0 12px; width:12px; height:12px; }

/* ===== Aster NurseRouster feature — final ===== */
.work .sol-gallery { align-items: start; }
.work .sol-gallery .sol-card.astCard {
  grid-column: 1 / -1 !important;
  width: 100%; max-width: none; margin: 0 0 4px;
  background: none !important; border: none !important; box-shadow: none !important; padding: 0 !important;
  overflow: visible;
}
.work .sol-gallery .sol-card.astCard:hover { transform: none; }
.astUI {
  position: relative; width: 100%;
  aspect-ratio: 1672 / 941;      /* exact artwork ratio — nothing is cropped */
  height: auto !important; min-height: 0;
  overflow: hidden; border-radius: 26px;
  background: #0b2146;
  box-shadow: 0 30px 78px -38px rgba(11,33,70,.5);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s cubic-bezier(.22,1,.36,1);
}
.astCard:hover .astUI { transform: translateY(-4px); box-shadow: 0 40px 96px -40px rgba(11,33,70,.56); }
.astPlate {
  position: absolute; inset: 0; display: block;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
}
.astSheen {
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(112deg, transparent 34%, rgba(255,255,255,.14) 50%, transparent 66%);
  transform: translateX(-125%);
}
.astCard:hover .astSheen { transform: translateX(125%); transition: transform 1.1s cubic-bezier(.22,1,.36,1); }
@media (max-width: 640px) { .astUI { border-radius: 16px; } }
@media (prefers-reduced-motion: reduce) {
  .astSheen { display: none; }
  .astCard:hover .astUI { transform: none; }
} /* last six: 3 × 4 = 12 */
@media (max-width: 820px) {  /* 3 per row */
}
@media (max-width: 620px) { /* 2 per row */
}

/* ===== Healthcare booking card: full handset, no crop ===== */
.bkShot { height:460px; display:flex; align-items:center; justify-content:center;
  padding:18px 0 0; background:linear-gradient(180deg,#20402c,#38614a); border-bottom:1px solid var(--line); overflow:hidden; }
.bkShot img { display:block; width:auto; height:100%; max-width:100%; object-fit:contain; }
@media (max-width:640px){ .bkShot { height:400px; } }

/* ==========================================================
   Work gallery — uniform 3-column tile grid (authoritative)
   Every card: identical media height + equal-height caption,
   so rows align instead of running ragged.
   ========================================================== */
.work .sol-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
}
@media (max-width: 980px) { .work .sol-gallery { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 640px) { .work .sol-gallery { grid-template-columns: 1fr !important; } }

/* Aster stays the full-width feature above the tiles */
.work .sol-gallery > .sol-card.astCard { grid-column: 1 / -1 !important; }

/* every tile is a flex column of: fixed-height media + growing caption */
.work .sol-gallery > .sol-card:not(.astCard) {
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
}

/* --- media band: one height for all card types --- */
.work .sol-gallery > .sol-card:not(.astCard) > .sol-mock,
.work .sol-gallery > .sol-card:not(.astCard) > .ps,
.work .sol-gallery > .sol-card:not(.astCard) > .bkShot,
.work .sol-gallery > .sol-card:not(.astCard) > .solVid,
.work .sol-gallery > .sol-card:not(.astCard) > .supUI,
.work .sol-gallery > .sol-card:not(.astCard) > .clmUI,
.work .sol-gallery > .sol-card:not(.astCard) > .erpUI {
  height: 320px !important;
  min-height: 320px !important;
  max-height: 320px !important;
  flex: 0 0 320px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  overflow: hidden !important;
  box-sizing: border-box;
}
/* scale the dense dashboards down so their internals still read at 320px */
.work .sol-gallery > .sol-card .supUI,
.work .sol-gallery > .sol-card .clmUI,
.work .sol-gallery > .sol-card .erpUI { padding: 14px 13px 12px !important; }
.work .sol-gallery > .sol-card .supMetric { font-size: 22px; }
.work .sol-gallery > .sol-card .erpRate { font-size: 26px; }
.work .sol-gallery > .sol-card .clmCaption { padding: 10px 12px; }
.work .sol-gallery > .sol-card .clmCaption strong { font-size: 13px; margin-bottom: 3px; }
.work .sol-gallery > .sol-card .clmCaption span { font-size: 11.5px; }

/* video + phone shots fill their band cleanly */
.work .sol-gallery .solVid { display: block; background: #0d1117; }
.work .sol-gallery .solVid video { width: 100%; height: 100%; object-fit: cover; display: block; }
.work .sol-gallery .bkShot { padding: 14px 0 0 !important; }
.work .sol-gallery .ps.ps-phone { display: flex; align-items: center; justify-content: center; background: var(--bg-soft); }
.work .sol-gallery .ps-phone-frame { width: 168px; height: 292px; padding: 8px 7px; }
.work .sol-gallery .ps-phone .ps-app { height: 100%; border-radius: 18px; padding: 13px; overflow: hidden; }

/* --- caption band: equal height across the row --- */
.work .sol-gallery > .sol-card:not(.astCard) > figcaption {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px !important;
  min-height: 132px;
}
.work .sol-gallery .sol-tag { margin-bottom: 8px; }
.work .sol-gallery .sol-title { font-size: 17px !important; line-height: 1.28; margin: 0 0 8px !important; }
.work .sol-gallery .sol-kpi { font-size: 13px; margin-top: auto; }

/* ===== tile grid corrections: true 3-up, no stale spans, equal heights ===== */
.work .sol-gallery > .sol-card:not(.astCard) {
  grid-column: auto !important;   /* kill span rules inherited from earlier layers */
  grid-row: auto !important;
}
/* hold 3 columns down to 860px, then 2, then 1 */
@media (min-width: 861px) { .work .sol-gallery { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 860px) { .work .sol-gallery { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 620px) { .work .sol-gallery { grid-template-columns: 1fr !important; } }
/* caption band: one height for every tile so rows never run ragged */
.work .sol-gallery > .sol-card:not(.astCard) > figcaption {
  min-height: 150px !important;
  justify-content: flex-start;
}
.work .sol-gallery .sol-title { min-height: 2.6em; }

/* ===== tile grid: card 2 is taller (longer title) — normalise the caption ===== */
.work .sol-gallery > .sol-card:not(.astCard) > figcaption { min-height: 190px !important; }
.work .sol-gallery .sol-title { min-height: 0 !important; }
.work .sol-gallery .sol-kpi { margin-top: auto !important; }
/* gallery must not be squeezed by a narrow container */
.work .sol-gallery { width: 100%; }

/* ===== tile grid: hard span + fixed tile box (final) ===== */
.work .sol-gallery > .sol-card:not(.astCard) {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  height: 512px !important;
  min-height: 512px !important;
  max-height: 512px !important;
}
.work .sol-gallery > .sol-card:not(.astCard) > figcaption {
  min-height: 0 !important;
  height: 192px !important;
  flex: 0 0 192px !important;
  overflow: hidden;
}
.work .sol-gallery > .sol-card:not(.astCard) > .bkShot { padding: 0 !important; }

/* ===== tile proportions: taller media, tight caption (final) ===== */
.work .sol-gallery > .sol-card:not(.astCard) {
  height: 560px !important; min-height: 560px !important; max-height: 560px !important;
}
/* media band gets the space back */
.work .sol-gallery > .sol-card:not(.astCard) > .sol-mock,
.work .sol-gallery > .sol-card:not(.astCard) > .ps,
.work .sol-gallery > .sol-card:not(.astCard) > .bkShot,
.work .sol-gallery > .sol-card:not(.astCard) > .solVid,
.work .sol-gallery > .sol-card:not(.astCard) > .supUI,
.work .sol-gallery > .sol-card:not(.astCard) > .clmUI,
.work .sol-gallery > .sol-card:not(.astCard) > .erpUI {
  height: 412px !important; min-height: 412px !important; max-height: 412px !important;
  flex: 0 0 412px !important;
}
/* phone shots use the full band */
.work .sol-gallery .ps-phone-frame { width: 208px; height: 384px; padding: 9px 8px; }
.work .sol-gallery .ps-phone .ps-app { height: 100%; border-radius: 20px; padding: 15px; }
.work .sol-gallery .bkShot img { height: 100%; width: auto; }

/* caption: no dead gap between title and KPI */
.work .sol-gallery > .sol-card:not(.astCard) > figcaption {
  height: 148px !important; flex: 0 0 148px !important;
  padding: 16px 20px 18px !important;
  display: flex !important; flex-direction: column !important;
  justify-content: flex-start !important; gap: 0 !important;
}
.work .sol-gallery .sol-tag { margin: 0 0 7px !important; }
.work .sol-gallery .sol-title { margin: 0 0 8px !important; min-height: 0 !important; line-height: 1.26 !important; }
.work .sol-gallery .sol-kpi { margin: 0 !important; }

/* ===== booking tile: backdrop sampled from the shot so there is no seam ===== */
.work .sol-gallery .bkShot { background: linear-gradient(180deg, #1d3e21 0%, #325537 25%, #4b704e 50%, #628b67 75%, #7aa680 100%) !important; padding: 0 !important; }
.work .sol-gallery .bkShot img { height: 100%; width: auto; max-width: 100%; object-fit: contain; }

/* ===== tiles: larger media so shots read like the reference ===== */
.work .sol-gallery > .sol-card:not(.astCard) {
  height: 640px !important; min-height: 640px !important; max-height: 640px !important;
}
.work .sol-gallery > .sol-card:not(.astCard) > .sol-mock,
.work .sol-gallery > .sol-card:not(.astCard) > .ps,
.work .sol-gallery > .sol-card:not(.astCard) > .bkShot,
.work .sol-gallery > .sol-card:not(.astCard) > .solVid,
.work .sol-gallery > .sol-card:not(.astCard) > .supUI,
.work .sol-gallery > .sol-card:not(.astCard) > .clmUI,
.work .sol-gallery > .sol-card:not(.astCard) > .erpUI {
  height: 486px !important; min-height: 486px !important; max-height: 486px !important;
  flex: 0 0 486px !important;
}
/* phone screenshot fills the tile width like the reference (thin green margins) */
.work .sol-gallery .bkShot { display: flex; align-items: center; justify-content: center; }
.work .sol-gallery .bkShot img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; object-position: 50% 50% !important;
}
/* CSS phone frame scales with the taller band */
.work .sol-gallery .ps-phone-frame { width: 236px; height: 452px; padding: 10px 9px; }
.work .sol-gallery .ps-phone .ps-app { height: 100%; border-radius: 22px; padding: 16px; }
/* dashboards get their breathing room back at the larger height */
.work .sol-gallery > .sol-card .supUI,
.work .sol-gallery > .sol-card .clmUI,
.work .sol-gallery > .sol-card .erpUI { padding: 18px 16px 15px !important; }
.work .sol-gallery > .sol-card .supMetric { font-size: 27px; }
.work .sol-gallery > .sol-card .erpRate { font-size: 31px; }
.work .sol-gallery > .sol-card .clmCaption { padding: 13px 15px; }
.work .sol-gallery > .sol-card .clmCaption strong { font-size: 14px; }
.work .sol-gallery > .sol-card .clmCaption span { font-size: 12px; }
/* caption band unchanged in rhythm */
.work .sol-gallery > .sol-card:not(.astCard) > figcaption {
  height: 154px !important; flex: 0 0 154px !important;
}



.ldSec .ldRing { flex: 0 0 auto; margin: 0 auto 14px !important; }
.ldSec .ldName {
  display: block; width: 100%;
  font-size: 15px !important; line-height: 1.25 !important; font-weight: 700;
  min-height: 2.5em; margin: 0;
}
.ldSec .ldRole {
  display: block; width: 100%;
  font-size: 12.5px !important; line-height: 1.4 !important;
  margin-top: 4px !important; min-height: 2.8em;
  overflow-wrap: break-word;
}

/* ===== Leadership rows: 4 on top, last six as 3 + 3 (restored) ===== */
@media (min-width: 821px) { /* rows 2-3: 3 × 4 */
}



/* ==========================================================
   Tech stack — automated horizontal logo rails
   ========================================================== */
.tsSec { position:relative; overflow:hidden; background:#08060f; padding:96px 0 100px; }
@media (max-width:760px){ .tsSec{ padding:68px 0 72px; } }
.tsSec::before { content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 58% 54% at 6% -6%, rgba(124,44,230,.34), transparent 62%),
             radial-gradient(ellipse 50% 46% at 100% 104%, rgba(18,181,165,.16), transparent 62%); }
.tsSec > * { position:relative; z-index:1; }

.tsHead { max-width:760px; margin-bottom:52px; }
.tsTag { display:inline-block; font-family:var(--mono); font-size:10.5px; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:#d6c6ff; padding:7px 14px; border-radius:100px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16); margin-bottom:20px; }
.tsTitle { font-family:var(--sans); font-weight:700; font-size:clamp(30px,4.3vw,54px); line-height:1.05;
  letter-spacing:-.038em; color:#fff; margin:0 0 18px; }
.tsTitle em { font-style:normal; background:none !important; background-image:linear-gradient(96deg,#7c2ce6,#5824c5) !important; -webkit-background-clip:text !important; background-clip:text !important; -webkit-text-fill-color:transparent !important; color:transparent !important; }
.tsLede { font-size:16.5px; line-height:1.7; color:rgba(255,255,255,.68); margin:0 0 26px; max-width:62ch; }
.tsLede strong { color:#fff; font-weight:700; }
.tsChips { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:10px; }
.tsChips li { display:inline-flex; align-items:center; gap:9px; font-size:13.5px; font-weight:600;
  color:rgba(255,255,255,.86); background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  padding:9px 16px; border-radius:100px; }
.tsChips li::before { content:''; width:6px; height:6px; border-radius:50%; background:#c9b8ff; }

/* rails */
.tsRails { display:flex; flex-direction:column; gap:16px;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.tsRail { overflow:hidden; }
.tsTrack { list-style:none; margin:0; padding:0; display:flex; gap:14px; width:max-content;
  animation:tsScroll 46s linear infinite; }
.tsRail.rev .tsTrack { animation-duration:56s; animation-direction:reverse; }
.tsRail:hover .tsTrack { animation-play-state:paused; }
@keyframes tsScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

.tsItem { flex:0 0 auto; display:inline-flex; align-items:center; gap:12px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.11);
  border-radius:100px; padding:12px 22px 12px 13px;
  transition:background .3s, border-color .3s, transform .3s var(--ease); }
.tsItem:hover { background:rgba(255,255,255,.09); border-color:rgba(201,184,255,.44); transform:translateY(-3px); }
.tsLogo { width:36px; height:36px; flex:0 0 36px; border-radius:11px; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08); }
.tsLogo svg { width:21px; height:21px; display:block; }
.tsLogo img { width:21px; height:21px; object-fit:contain; display:block; }
.tsLogo.t-vi { background:rgba(180,155,255,.16); } .tsLogo.t-bl { background:rgba(120,165,255,.16); }
.tsLogo.t-te { background:rgba(45,212,191,.16); }  .tsLogo.t-am { background:rgba(255,153,0,.16); }
.tsLogo.t-gr { background:rgba(62,207,142,.16); }  .tsLogo.t-pk { background:rgba(234,75,113,.16); }
.tsName { font-family:var(--sans); font-size:15px; font-weight:600; letter-spacing:-.015em; color:#fff; white-space:nowrap; }
@media (max-width:640px){
  .tsItem { padding:10px 18px 10px 11px; gap:10px; }
  .tsLogo { width:32px; height:32px; flex:0 0 32px; border-radius:10px; }
  .tsName { font-size:13.5px; }
}
@media (prefers-reduced-motion: reduce){
  .tsTrack { animation:none !important; }
  .tsRail { overflow-x:auto; }
}




/* ===== booking tile: whole handset in frame (contain, not cover) ===== */
.work .sol-gallery .bkShot img {
  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: 50% 50% !important;
}

/* ===== case-study photos: clean image, no gradient overlay ===== */
.case2-photo { position:relative; overflow:hidden; padding:0 !important; background:none !important; }
.case2-photo::before, .case2-photo::after { content:none !important; display:none !important; }
.case2-photo .c2ph-img { display:block; width:100%; height:100%; min-height:280px;
  object-fit:cover; object-position:50% 50%; }
.c2ph-shade, .c2ph-badge, .c2ph-panel { display:none !important; }

/* ===== Tech stack → light theme, logos unboxed ===== */
.tsSec { background:linear-gradient(180deg,#fbfaff 0%,#f5f2fc 100%) !important; }
.tsSec::before {
  background:radial-gradient(ellipse 56% 52% at 92% 2%, rgba(124,44,230,.09), transparent 62%),
             radial-gradient(ellipse 46% 44% at 2% 100%, rgba(124,44,230,.07), transparent 62%) !important;
}
.tsTag { color:var(--violet) !important; background:rgba(124,44,230,.08) !important;
  border-color:rgba(124,44,230,.2) !important; }
.tsTitle { color:var(--ink) !important; }
.tsTitle em { font-style:normal; background:none !important; background-image:linear-gradient(96deg,#7c2ce6,#5824c5) !important; -webkit-background-clip:text !important; background-clip:text !important; -webkit-text-fill-color:transparent !important; color:transparent !important; }
.tsLede { color:var(--ink-soft) !important; }
.tsLede strong { color:var(--ink) !important; }

/* rails: no pills, no tiles — just the mark and its name */
.tsRails { -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); gap:10px !important; }
.tsTrack { gap:56px !important; align-items:center; }
@media (max-width:640px){ .tsTrack { gap:36px !important; } }
.tsItem {
  background:none !important; border:none !important; border-radius:0 !important;
  padding:14px 0 !important; gap:13px !important;
  opacity:.72; transition:opacity .3s var(--ease), transform .3s var(--ease);
}
.tsItem:hover { opacity:1; transform:translateY(-2px); background:none !important; border:none !important; }
.tsLogo {
  width:auto !important; height:34px !important; flex:0 0 auto !important;
  background:none !important; border-radius:0 !important;
}
.tsLogo svg, .tsLogo img { width:auto !important; height:34px !important; max-height:34px; object-fit:contain; }
/* the two PNG marks are white-on-transparent — invert for the light field */
.tsLogo img { filter:invert(1) brightness(.28) saturate(0); }
.tsName { color:var(--ink) !important; font-size:16px !important; font-weight:700 !important; }
@media (max-width:640px){
  .tsLogo, .tsLogo svg, .tsLogo img { height:28px !important; max-height:28px; }
  .tsName { font-size:14px !important; }
}

/* ==========================================================
   Claims card — motion graphics layer
   6.4s loop: sheets settle → beam scans → ticks land →
   meter fills → status flips → value + bridge pulse
   ========================================================== */
.clmUI { position: relative; }

/* diagonal scan beam sweeping the document stack */
.clmScan {
  position: absolute; inset: 8% 2% 12% 8%; z-index: 3; pointer-events: none; border-radius: 10px;
  background: linear-gradient(100deg, transparent 42%, rgba(59,118,246,.28) 50%, transparent 58%);
  transform: translateX(-130%);
  animation: clmScanSweep 6.4s cubic-bezier(.5,.05,.4,1) infinite;
}
@keyframes clmScanSweep {
  0%, 4%   { transform: translateX(-130%); opacity: 0; }
  10%      { opacity: 1; }
  38%      { transform: translateX(130%); opacity: 1; }
  44%, 100%{ transform: translateX(130%); opacity: 0; }
}

/* progress meter that fills as the four checks complete */
.clmMeter {
  position: relative; height: 4px; margin: 11px 2px 0; border-radius: 100px;
  background: rgba(59,118,246,.16); overflow: hidden;
}
.clmMeterFill {
  position: absolute; inset: 0; transform-origin: left center; border-radius: 100px;
  background: linear-gradient(90deg, #6f9cf9, #3b76f6);
  animation: clmMeterGrow 6.4s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes clmMeterGrow {
  0%, 6%  { transform: scaleX(0); }
  16%     { transform: scaleX(.24); }
  26%     { transform: scaleX(.5); }
  36%     { transform: scaleX(.76); }
  46%     { transform: scaleX(1); }
  92%     { transform: scaleX(1); }
  100%    { transform: scaleX(0); }
}

/* status chip: adjudicating → cleared */
.clmStatus {
  display: inline-flex; align-items: center; gap: 6px; margin: 9px 2px 0;
  font-family: var(--sans); font-size: 10.5px; font-weight: 700; letter-spacing: .02em;
  color: #2f5fd0; animation: clmStatusFlip 6.4s steps(1, end) infinite;
}
.clmStatus i {
  width: 6px; height: 6px; border-radius: 50%; background: #3b76f6;
  animation: clmStatusDot 6.4s ease-in-out infinite;
}
@keyframes clmStatusFlip { 0%,45% { opacity: 1; } 50%,100% { opacity: 1; } }
@keyframes clmStatusDot {
  0%, 44%  { background: #3b76f6; transform: scale(1); box-shadow: 0 0 0 0 rgba(59,118,246,.5); }
  22%      { transform: scale(1.35); box-shadow: 0 0 0 4px rgba(59,118,246,0); }
  50%, 100%{ background: #17a34a; transform: scale(1); box-shadow: 0 0 0 0 rgba(23,163,74,.45); }
}
.clmStatus::after {
  content: 'Cleared for submission'; position: absolute; left: 0; padding-left: 14px;
  opacity: 0; color: #12803b;
  animation: clmStatusSwap 6.4s steps(1, end) infinite;
}
@keyframes clmStatusSwap { 0%, 47% { opacity: 0; } 50%, 94% { opacity: 1; } 97%, 100% { opacity: 0; } }
.clmStatus { position: relative; }

/* value badge lands with a pop once the meter completes */
.clmValue { animation: clmFloat 5s ease-in-out infinite, clmValueLand 6.4s cubic-bezier(.22,1,.36,1) infinite; }
@keyframes clmValueLand {
  0%, 44%  { transform: scale(.94); opacity: .55; }
  52%      { transform: scale(1.04); opacity: 1; }
  58%, 100%{ transform: scale(1); opacity: 1; }
}

/* packet travelling DHA → ERP along the bridge */
.clmBridge { position: relative; overflow: hidden; }
.clmPulse {
  position: absolute; top: 50%; left: 18%; width: 7px; height: 7px; margin-top: -3.5px;
  border-radius: 50%; background: #3b76f6; box-shadow: 0 0 10px 2px rgba(59,118,246,.55);
  animation: clmPacket 6.4s cubic-bezier(.5,0,.5,1) infinite;
}
@keyframes clmPacket {
  0%, 52%  { left: 18%; opacity: 0; transform: scale(.6); }
  58%      { opacity: 1; transform: scale(1); }
  84%      { left: 74%; opacity: 1; transform: scale(1); }
  90%,100% { left: 74%; opacity: 0; transform: scale(.6); }
}

/* sheet stack breathes on the same clock */
.clmSheet.s1 { animation: clmSettle 6.4s cubic-bezier(.22,1,.36,1) infinite; }
@keyframes clmSettle {
  0%      { transform: translateY(5px) scale(.985); }
  12%,100%{ transform: translateY(0) scale(1); }
}

/* rows brighten as their tick lands */
.clmRow.r1, .clmRow.r2, .clmRow.r3, .clmRow.r4 { animation: clmRowLight 6.4s ease both infinite; }
.clmRow.r1 { animation-delay: .5s; } .clmRow.r2 { animation-delay: 1.1s; }
.clmRow.r3 { animation-delay: 1.7s; } .clmRow.r4 { animation-delay: 2.3s; }
@keyframes clmRowLight {
  0%      { opacity: .5; }
  6%, 92% { opacity: 1; }
  100%    { opacity: .5; }
}

@media (prefers-reduced-motion: reduce) {
  .clmScan, .clmPulse { display: none; }
  .clmMeterFill { animation: none; transform: scaleX(1); }
  .clmStatus, .clmStatus i, .clmStatus::after,
  .clmValue, .clmSheet.s1, .clmRow.r1, .clmRow.r2, .clmRow.r3, .clmRow.r4 { animation: none; }
  .clmStatus::after { opacity: 1; }
  .clmValue { opacity: 1; transform: none; }
  .clmRow.r1, .clmRow.r2, .clmRow.r3, .clmRow.r4 { opacity: 1; }
}

/* ===== Aster feature: narrower display box, centred (source resolution untouched) ===== */
.work .sol-gallery > .sol-card.astCard {
  max-width: 800px !important;   /* was ~1000px effective → 20% narrower */
  margin-left: auto !important;
  margin-right: auto !important;
  justify-self: center !important;
}
.work .sol-gallery > .sol-card.astCard .astUI { width: 100% !important; }
@media (max-width: 860px) {
  .work .sol-gallery > .sol-card.astCard { max-width: 100% !important; }
}

/* ==========================================================
   Supplier + ERP dashboards inside tiles — decongested
   ========================================================== */
.work .sol-gallery > .sol-card .supUI,
.work .sol-gallery > .sol-card .erpUI {
  padding: 0 !important;
  gap: 0 !important;
  background: #eef1f6 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* ---------- SUPPLIER ---------- */
/* the brand bar duplicates the section heading — drop it, reclaim ~34px */
.work .sol-gallery > .sol-card .supTop { display: none !important; }
.work .sol-gallery > .sol-card .supHead {
  padding: 16px 16px 12px !important; background: none !important;
}
.work .sol-gallery > .sol-card .supTitle { font-size: 13.5px !important; font-weight: 700 !important; }
.work .sol-gallery > .sol-card .supRange { font-size: 10.5px !important; }
/* single column: chart on top, metrics beneath */
.work .sol-gallery > .sol-card .supBody {
  display: flex !important; flex-direction: column !important;
  gap: 10px !important; padding: 0 12px !important; flex: 1 !important; min-height: 0 !important;
}
.work .sol-gallery > .sol-card .supChart {
  flex: 1 1 auto !important; min-height: 0 !important; padding: 16px 14px 12px !important;
}
.work .sol-gallery > .sol-card .supBars { gap: 12px !important; }
.work .sol-gallery > .sol-card .supBar em { font-size: 11.5px !important; }
.work .sol-gallery > .sol-card .supBar small { font-size: 9.5px !important; }
/* keep the two headline rates, drop the third track so labels can breathe */
.work .sol-gallery > .sol-card .supSide {
  flex: 0 0 auto !important; padding: 14px 15px 13px !important; gap: 8px !important;
}
.work .sol-gallery > .sol-card .supCh i:nth-of-type(3),
.work .sol-gallery > .sol-card .supCh .supTrack:nth-of-type(3) { display: none !important; }
.work .sol-gallery > .sol-card .supCh { gap: 6px !important; }
.work .sol-gallery > .sol-card .supCh i { font-size: 10px !important; }
.work .sol-gallery > .sol-card .supSideT { font-size: 9.5px !important; letter-spacing: .1em !important; }
.work .sol-gallery > .sol-card .supMetric { font-size: 30px !important; margin-bottom: 2px !important; }
.work .sol-gallery > .sol-card .supDelta { font-size: 10px !important; }
.work .sol-gallery > .sol-card .supAsk {
  margin: 10px 12px 12px !important; padding: 11px 13px 12px !important; border-radius: 12px !important;
}
.work .sol-gallery > .sol-card .supAskT { font-size: 9.5px !important; }
.work .sol-gallery > .sol-card .supField { font-size: 10.5px !important; padding: 9px 11px !important; }

/* ---------- ERP ---------- */
/* stack the light and dark panels instead of two narrow columns */
.work .sol-gallery > .sol-card .erpUI { display: flex !important; flex-direction: column !important; }
.work .sol-gallery > .sol-card .erpMain {
  flex: 1 1 auto !important; min-height: 0 !important;
  padding: 16px 16px 12px !important; gap: 12px !important;
}

/* two tiles read cleanly at this width; the third was clipping its value */
.work .sol-gallery > .sol-card .erpTiles { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
.work .sol-gallery > .sol-card .erpTile:nth-child(3) { display: none !important; }
.work .sol-gallery > .sol-card .erpTile { padding: 10px 11px !important; }
.work .sol-gallery > .sol-card .erpTile b { font-size: 16px !important; }
.work .sol-gallery > .sol-card .erpTile em { font-size: 9.5px !important; }
.work .sol-gallery > .sol-card .erpChart { min-height: 96px !important; }
.work .sol-gallery > .sol-card .erpChartTop { font-size: 10.5px !important; }
/* the dark strip carries the headline rate; the pill funnel is too fine at this size */

.work .sol-gallery > .sol-card .erpRate { font-size: 30px !important; }
.work .sol-gallery > .sol-card .erpRate em { font-size: 9.5px !important; }
.work .sol-gallery > .sol-card .erpSideT { font-size: 9.5px !important; }


/* ==========================================================
   Claims dashboard inside tiles — decongested
   ========================================================== */
.work .sol-gallery > .sol-card .clmUI {
  padding: 0 !important; gap: 0 !important;
  background: #eef1f6 !important;
  display: flex !important; flex-direction: column !important;
}

/* --- document stack gets its own breathing room --- */
.work .sol-gallery > .sol-card .clmStack {
  flex: 1 1 auto !important; min-height: 0 !important;
  margin: 14px 14px 0 !important;
}
/* pull the decorative back sheets in so they stop crowding the live sheet */
.work .sol-gallery > .sol-card .clmSheet.s3 { inset: 16% 8% 22% 20% !important; opacity: .3 !important; }
.work .sol-gallery > .sol-card .clmSheet.s2 { inset: 11% 11% 17% 14% !important; opacity: .55 !important; }
.work .sol-gallery > .sol-card .clmSheet.s1 { inset: 5% 14% 11% 8% !important; padding: 15px 15px 13px !important; }

/* rows: fewer, larger, with real spacing (r4 was the one being clipped) */
.work .sol-gallery > .sol-card .clmRow { gap: 9px !important; margin-bottom: 9px !important; }
.work .sol-gallery > .sol-card .clmRow.r4 { display: none !important; }
.work .sol-gallery > .sol-card .clmTick { width: 15px !important; height: 15px !important; flex: 0 0 15px !important; }
.work .sol-gallery > .sol-card .clmBar { height: 7px !important; }

/* meter + status sit under the rows with clear separation */
.work .sol-gallery > .sol-card .clmMeter { margin: 13px 2px 0 !important; height: 5px !important; }
.work .sol-gallery > .sol-card .clmStatus { margin: 10px 2px 0 !important; font-size: 10px !important; }

/* value badge: anchored bottom-right of the stack instead of floating mid-card */
.work .sol-gallery > .sol-card .clmValue {
  top: auto !important; bottom: 6% !important; right: 2% !important;
  padding: 10px 13px 11px !important; border-radius: 11px !important; gap: 1px !important;
}
.work .sol-gallery > .sol-card .clmValue b { font-size: 17px !important; }
.work .sol-gallery > .sol-card .clmValue em { font-size: 9px !important; line-height: 1.35 !important; }
.work .sol-gallery > .sol-card .clmValue .clmInfo { display: none !important; }

/* bridge: compact pill row pinned top-right, clear of the sheets */
.work .sol-gallery > .sol-card .clmBridge {
  top: 5% !important; right: 3% !important; left: auto !important;
  padding: 6px 9px !important; gap: 7px !important; border-radius: 100px !important;
}
.work .sol-gallery > .sol-card .clmApp { font-size: 9.5px !important; padding: 3px 7px !important; }

/* caption: its own band, not overlapping the stack */
.work .sol-gallery > .sol-card .clmCaption {
  flex: 0 0 auto !important;
  margin: 12px 14px 14px !important;
  padding: 13px 14px 14px !important;
  background: #fff !important; border-radius: 12px !important;
}
.work .sol-gallery > .sol-card .clmCaption strong { font-size: 13px !important; margin-bottom: 4px !important; }
.work .sol-gallery > .sol-card .clmCaption span { font-size: 11px !important; line-height: 1.5 !important; }

/* keep the scan beam inside the stack area only */
.work .sol-gallery > .sol-card .clmScan { inset: 5% 14% 11% 8% !important; }

/* ==========================================================
   Claims visual — scaled up to fill the tile (vector, so sharp at any DPI)
   ========================================================== */
/* stack claims more of the band */
.work .sol-gallery > .sol-card .clmStack { margin: 10px 10px 0 !important; }
.work .sol-gallery > .sol-card .clmSheet.s1 { inset: 2% 8% 6% 4% !important; padding: 20px 20px 18px !important; }
.work .sol-gallery > .sol-card .clmSheet.s2 { inset: 8% 6% 12% 9% !important; }
.work .sol-gallery > .sol-card .clmSheet.s3 { inset: 13% 3% 18% 15% !important; }
.work .sol-gallery > .sol-card .clmScan { inset: 2% 8% 6% 4% !important; }

/* larger rows */
.work .sol-gallery > .sol-card .clmRow { gap: 12px !important; margin-bottom: 13px !important; }
.work .sol-gallery > .sol-card .clmTick { width: 20px !important; height: 20px !important; flex: 0 0 20px !important; }
.work .sol-gallery > .sol-card .clmTick::after {
  left: 5.5px !important; top: 6px !important; width: 8px !important; height: 4.5px !important;
  border-left-width: 2.2px !important; border-bottom-width: 2.2px !important;
}
.work .sol-gallery > .sol-card .clmBar { height: 9px !important; border-radius: 100px !important; }

/* meter + status scale with it */
.work .sol-gallery > .sol-card .clmMeter { margin: 17px 2px 0 !important; height: 6px !important; }
.work .sol-gallery > .sol-card .clmStatus { margin: 13px 2px 0 !important; font-size: 11.5px !important; }
.work .sol-gallery > .sol-card .clmStatus i { width: 7px !important; height: 7px !important; }

/* value badge larger and more prominent */
.work .sol-gallery > .sol-card .clmValue {
  bottom: 4% !important; right: 1% !important; padding: 13px 17px 14px !important; border-radius: 14px !important;
}
.work .sol-gallery > .sol-card .clmValue b { font-size: 22px !important; }
.work .sol-gallery > .sol-card .clmValue em { font-size: 10.5px !important; }

/* bridge pill scaled up */
.work .sol-gallery > .sol-card .clmBridge { top: 3% !important; right: 2% !important; padding: 8px 12px !important; gap: 9px !important; }
.work .sol-gallery > .sol-card .clmApp { font-size: 11px !important; padding: 4px 9px !important; }
.work .sol-gallery > .sol-card .clmPulse { width: 8px !important; height: 8px !important; margin-top: -4px !important; }

/* caption keeps proportion */
.work .sol-gallery > .sol-card .clmCaption { margin: 12px 10px 12px !important; padding: 14px 16px 15px !important; }
.work .sol-gallery > .sol-card .clmCaption strong { font-size: 14px !important; }
.work .sol-gallery > .sol-card .clmCaption span { font-size: 11.5px !important; }

/* ==========================================================
   Case-study result copy over the photo
   ========================================================== */
.case2-photo { position: relative; }
.case2-photo .c2res {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 62px 24px 22px;
  background: linear-gradient(180deg, rgba(8,12,28,0) 0%, rgba(8,12,28,.42) 34%, rgba(8,12,28,.82) 100%);
  color: #fff;
}
.case2-photo .c2res-k {
  display: block; font-family: var(--sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.78);
  margin-bottom: 10px;
}
.case2-photo .c2res-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.case2-photo .c2res-list li {
  position: relative; padding-left: 20px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; line-height: 1.38;
  letter-spacing: -.012em; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.case2-photo .c2res-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 9px; height: 5px; border-left: 2px solid #7fe3a6; border-bottom: 2px solid #7fe3a6;
  transform: rotate(-45deg);
}
@media (max-width: 860px) {
  .case2-photo .c2res { padding: 48px 20px 18px; }
  .case2-photo .c2res-list li { font-size: 14px; }
}

/* ==========================================================
   Departments panel — clarity + polish
   ========================================================== */
/* tab rail: clearer active state, smoother travel */
#departments .indTabs { gap: 4px !important; padding: 0 4px 2px !important; }
#departments .indTab {
  border: 1px solid transparent; border-radius: 12px 12px 0 0;
  padding: 12px 16px !important; font-size: 13.5px !important; font-weight: 600 !important;
  color: var(--ink-soft); background: transparent; cursor: pointer;
  transition: background .26s var(--ease), color .26s var(--ease), border-color .26s var(--ease), transform .26s var(--ease);
}
#departments .indTab:hover { color: var(--ink); background: rgba(124,44,230,.06); }
#departments .indTab.isOn {
  color: var(--ink); background: #fff; border-color: var(--line); border-bottom-color: #fff;
  font-weight: 700 !important;
}
#departments .indTab:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }

/* stage: lift it off the page so the active tab reads as connected */
#departments .indStage {
  background: #fff; border: 1px solid var(--line); border-radius: 0 18px 18px 18px;
  box-shadow: 0 26px 64px -44px rgba(70,30,160,.30);
  padding: 34px 34px 32px !important;
}
@media (max-width: 760px) { #departments .indStage { padding: 24px 22px !important; border-radius: 18px; } }

/* panel: two clean columns with a clear reading order */
#departments .indPanel { animation: indFade .45s var(--ease) both; }
@keyframes indFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
#departments .indCopy { display: flex; flex-direction: column; }
#departments .indH {
  font-family: var(--sans); font-weight: 800 !important;
  font-size: clamp(21px, 2.3vw, 27px) !important; line-height: 1.16 !important;
  letter-spacing: -.03em !important; color: var(--ink) !important; margin: 0 0 12px !important;
}
#departments .indP {
  font-size: 15px !important; line-height: 1.68 !important; color: var(--ink-soft) !important;
  margin: 0 0 20px !important; max-width: 46ch;
}
#departments .indExplore {
  align-self: flex-start; margin-top: auto;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 700; color: var(--violet); text-decoration: none;
  padding-bottom: 4px; border-bottom: 1px solid rgba(124,44,230,.34);
  transition: gap .28s var(--ease), border-color .28s;
}
#departments .indExplore:hover { gap: 14px; border-bottom-color: var(--violet); }

/* photo frame: rounded, subtle depth, gentle zoom on hover */
#departments .indShotFrame {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 20px 48px -32px rgba(12,10,31,.34);
  background: var(--bg-soft);
}
#departments .indShotFrame img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.001);
  transition: transform 1.1s var(--ease);
  image-rendering: auto;
}
#departments .indPanel:hover .indShotFrame img { transform: scale(1.045); }

@media (prefers-reduced-motion: reduce) {
  #departments .indPanel { animation: none; }
  #departments .indShotFrame img, #departments .indPanel:hover .indShotFrame img { transform: none; transition: none; }
}

/* ==========================================================
   Layout stability — reveal contract
   Content is visible by default; the hidden state only exists
   once the renderer proves it can run frames (html.js-anim).
   ========================================================== */
.reveal { opacity: 1; transform: none; }
html.js-anim .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
html.js-anim .reveal.in { opacity: 1; transform: none; }
html.js-anim .reveal.d1 { transition-delay: .07s; }
html.js-anim .reveal.d2 { transition-delay: .14s; }
html.js-anim .reveal.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================
   No layout-affecting animation — composite only
   ========================================================== */
/* loops that animated inset/height caused reflow on every frame */
.clmSheet.s3, .clmSheet.s2 { animation: none !important; }
.clmValue { animation: clmFloatT 5s ease-in-out infinite, clmValueLand 6.4s cubic-bezier(.22,1,.36,1) infinite !important; }
@keyframes clmFloatT { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
/* packet travelled via left: — switch to transform */
.clmPulse { left: 18% !important; animation: clmPacketT 6.4s cubic-bezier(.5,0,.5,1) infinite !important; }
@keyframes clmPacketT {
  0%, 52%   { transform: translateX(0) scale(.6); opacity: 0; }
  58%       { transform: translateX(0) scale(1); opacity: 1; }
  84%       { transform: translateX(150px) scale(1); opacity: 1; }
  90%, 100% { transform: translateX(150px) scale(.6); opacity: 0; }
}

/* ==========================================================
   Overflow guards — nothing may widen the viewport
   ========================================================== */
html, body { max-width: 100%; overflow-x: clip; }
img, video, svg, canvas { max-width: 100%; }
.tsRails, .indTabs, .hcRow { max-width: 100%; }

/* ==========================================================
   Difference ledger — paired confrontation, lit right spine
   ========================================================== */
.cmpSec { position:relative; overflow:hidden; background:#fff; padding:104px 0 100px; }
@media (max-width:760px){ .cmpSec{ padding:72px 0 70px; } }
.cmpSec::before { content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 52% 46% at 88% 0%, rgba(124,44,230,.09), transparent 62%); }
.cmpSec > .container { position:relative; z-index:1; }

.cmpHead { max-width:900px; margin:0 auto 52px; text-align:center; }
.cmpTag { display:inline-flex; align-items:center; gap:10px; font-family:var(--mono,ui-monospace);
  font-size:10.5px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:#7c2ce6;
  padding:7px 15px; border-radius:100px; background:rgba(124,44,230,.08);
  border:1px solid rgba(124,44,230,.2); margin-bottom:22px; }
.cmpTitle { font-family:var(--sans,system-ui); font-weight:800; font-size:clamp(30px,4.5vw,56px);
  line-height:1.04; letter-spacing:-.04em; color:#0c0a1f; margin:0 0 18px; }
.cmpTitle em { font-style:normal; background:linear-gradient(96deg,#7c2ce6,#5824c5);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.cmpLede { font-size:17px; line-height:1.66; color:#524d6a; max-width:56ch; margin:0 auto; }

/* ledger: row-gap 0 so the winning column reads as one continuous spine */
.cmpLedger { display:grid; grid-template-columns:minmax(0,1fr) 128px minmax(0,1fr);
  column-gap:0; row-gap:0; align-items:stretch; }
@media (max-width:900px){ .cmpLedger{ grid-template-columns:1fr; } }

/* header row */
.cmpTop { padding:0 0 22px; }
.cmpTopBad, .cmpTopGood { display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
.cmpTopBad { padding-right:30px; }
.cmpTopGood { position:relative; padding:26px 28px 22px; border-radius:20px 20px 0 0;
  background:linear-gradient(180deg,#f3ecff,#f7f2ff); }
.cmpTop strong { font-family:var(--sans,system-ui); font-weight:800; font-size:clamp(19px,2.2vw,24px);
  letter-spacing:-.03em; line-height:1.2; }
.cmpTopBad strong { color:#6a6680; }
.cmpTopGood strong { color:#0c0a1f; }
.cmpChip { font-size:10.5px; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  padding:6px 13px; border-radius:100px; }
.cmpChip.bad { background:#fbe0db; color:#9c3409; }
.cmpChip.good { background:#fff; color:#7c2ce6; border:1px solid rgba(124,44,230,.24); }
.cmpFlag { position:absolute; top:-13px; right:22px; font-size:10px; font-weight:800; letter-spacing:.16em;
  text-transform:uppercase; color:#fff; background:#0c0a1f; padding:6px 13px; border-radius:100px;
  box-shadow:0 8px 20px -10px rgba(12,10,31,.5); }
@media (max-width:900px){
  .cmpTopDim{ display:none; }
  .cmpTopGood{ border-radius:16px; margin-top:26px; }
}

/* dimension spine */
.cmpDim { display:flex; align-items:center; justify-content:center; text-align:center;
  border-top:1px solid #ebe9f2; padding:22px 8px; }
.cmpDim span { font-family:var(--mono,ui-monospace); font-size:10px; font-weight:700; letter-spacing:.16em;
  text-transform:uppercase; color:#6a6680; }
@media (max-width:900px){
  .cmpDim { justify-content:flex-start; text-align:left; padding:26px 0 8px; border-top:1px solid #ebe9f2; }
  .cmpDim span { color:#7c2ce6; }
}

/* cells */
.cmpCell { display:flex; gap:13px; align-items:flex-start; padding:22px 0; border-top:1px solid #ebe9f2; }
.cmpCell p { margin:0; font-size:15px; line-height:1.6; }
.cmpBad { padding-right:30px; }
.cmpBad p { color:#6a6680; }
.cmpBad p strong { color:#6a6680; font-weight:700; }
.cmpGood { padding:22px 28px; background:linear-gradient(180deg,#f7f2ff,#f4edff);
  border-top-color:rgba(124,44,230,.16); }
.cmpGood p { color:#221d3a; }
.cmpGood p strong { color:#0c0a1f; font-weight:800; }
.cmpLedger > .cmpGood:last-child { border-radius:0 0 20px 20px; padding-bottom:28px;
  box-shadow:0 30px 60px -44px rgba(124,44,230,.5); }
@media (max-width:900px){
  .cmpBad { padding:10px 0 16px; border-top:none; }
  .cmpGood { padding:16px 18px; border-top:none; border-radius:14px; margin-bottom:4px; }
  .cmpLedger > .cmpGood:last-child { border-radius:14px; }
}

/* marks */
.cmpMk { flex:0 0 24px; width:24px; height:24px; border-radius:50%; display:flex; align-items:center;
  justify-content:center; margin-top:1px; }
.cmpMk svg { width:13px; height:13px; }
.cmpX { background:#fbe0db; color:#9c3409; }
.cmpV { background:#7c2ce6; color:#fff; box-shadow:0 6px 14px -6px rgba(124,44,230,.6); }

/* staggered entry */
.cmpLedger .cmpDim, .cmpLedger .cmpCell { opacity:1; }
html.js-anim .cmpLedger.reveal .cmpDim,
html.js-anim .cmpLedger.reveal .cmpCell { opacity:0; transform:translateY(14px); }
html.js-anim .cmpLedger.reveal.in .cmpDim,
html.js-anim .cmpLedger.reveal.in .cmpCell {
  opacity:1; transform:none;
  transition:opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
  transition-delay:calc(var(--i,0) * 90ms);
}
html.js-anim .cmpLedger.reveal.in .cmpGood { transition-delay:calc(var(--i,0) * 90ms + 45ms); }

/* closing conversion bar */
.cmpFoot { margin-top:44px; display:flex; align-items:center; justify-content:space-between;
  gap:24px; flex-wrap:wrap; padding:26px 30px; border-radius:20px;
  background:linear-gradient(120deg,#0c0a1f,#241b46); }
.cmpFoot p { margin:0; font-size:16.5px; font-weight:600; line-height:1.5; color:#fff; max-width:52ch; }
@media (max-width:640px){ .cmpFoot{ padding:22px; } .cmpFoot .btn{ width:100%; justify-content:center; } }
@media (prefers-reduced-motion:reduce){
  html.js-anim .cmpLedger.reveal .cmpDim,
  html.js-anim .cmpLedger.reveal .cmpCell { opacity:1; transform:none; }
}

/* ===== leads video: fill the band edge to edge, no empty field ===== */
.work .sol-gallery > .sol-card:not(.astCard) > .solVid {
  display:block !important; position:relative !important;
  background:#0d0b14 !important; padding:0 !important; overflow:hidden !important;
}
.work .sol-gallery .solVid video {
  position:absolute !important; inset:0 !important;
  width:100% !important; height:100% !important;
  min-width:100% !important; min-height:100% !important;
  object-fit:cover !important; object-position:center !important; display:block !important;
}

/* ===== comparison ledger: correct tracks, always visible ===== */
.cmpLedger { grid-template-columns: minmax(0,1fr) 132px minmax(0,1fr) !important; }
@media (max-width:900px){ .cmpLedger { grid-template-columns:1fr !important; } }
/* cells must never be hidden by a reveal that never fires */
.cmpLedger .cmpDim,
.cmpLedger .cmpCell { opacity:1 !important; transform:none !important; }


/* ===== work gallery: release the 480px clamp inherited from .sol-gallery ===== */
.work .sol-gallery { max-width: none !important; margin: 0 !important; width: 100% !important; }
@media (min-width: 861px) { .work .sol-gallery { grid-template-columns: repeat(3, minmax(0,1fr)) !important; } }
@media (max-width: 860px) { .work .sol-gallery { grid-template-columns: repeat(2, minmax(0,1fr)) !important; } }
@media (max-width: 620px) { .work .sol-gallery { grid-template-columns: minmax(0,1fr) !important; max-width: 480px !important; margin: 0 auto !important; } }

/* ===== ERP side rail: keep the authored vertical stack inside the tile ===== */
.work .sol-gallery > .sol-card .erpSide {
  display: flex !important; flex-direction: column !important;
  min-width: 0 !important; gap: 7px !important; padding: 13px 14px !important;
  box-sizing: border-box; overflow: hidden;
}
.work .sol-gallery > .sol-card .erpSideT { font-size: 9px !important; letter-spacing: .1em; }
.work .sol-gallery > .sol-card .erpRate { font-size: 23px !important; line-height: 1; }
.work .sol-gallery > .sol-card .erpRate em { font-size: 9.5px !important; }
/* funnel restored in a compact form so "Pipeline" is not orphaned */
.work .sol-gallery > .sol-card .erpFunnel { display: flex !important; flex-direction: column; gap: 5px; }
.work .sol-gallery > .sol-card .erpStep { display: flex !important; align-items: center; gap: 4px; flex-wrap: nowrap; min-width: 0; }
.work .sol-gallery > .sol-card .erpStep i { flex: 0 0 3px !important; width: 3px !important; height: 13px !important; }
.work .sol-gallery > .sol-card .erpStep b { font-size: 9.5px !important; margin-left: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.work .sol-gallery > .sol-card .erpStep small { font-size: 9px !important; margin-left: auto; flex: 0 0 auto; }
/* caption gets the full column width */
.work .sol-gallery > .sol-card .erpFoot {
  max-width: none !important; font-size: 9.5px !important; line-height: 1.4;
  margin-top: auto !important;
}

/* ===== AUTHORITATIVE leadership grid — 4 / 3 / 3 (single source of truth) ===== */
.ldSec .ldGrid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 34px 20px;
  align-items: start;
  list-style: none; margin: 0; padding: 0;
}
.ldSec .ldGrid > .ldCard {
  grid-column: span 3;                                    /* row 1: 4 x 3 = 12 */
  display: flex; flex-direction: column; align-items: center;
  text-align: center; min-width: 0;
}
.ldSec .ldGrid > .ldCard:nth-child(n+5) { grid-column: span 4; }  /* rows 2-3: 3 x 4 = 12 */
.ldSec .ldRing { flex: 0 0 auto; margin: 0 auto 14px; }
.ldSec .ldName { display: block; width: 100%; font-size: 15px; line-height: 1.25; font-weight: 700; min-height: 2.5em; margin: 0; }
.ldSec .ldRole { display: block; width: 100%; font-size: 12.5px; line-height: 1.4; margin-top: 4px; min-height: 2.8em; overflow-wrap: break-word; }
@media (max-width: 820px) {
  .ldSec .ldGrid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .ldSec .ldGrid > .ldCard,
  .ldSec .ldGrid > .ldCard:nth-child(n+5) { grid-column: span 2; }   /* 3 per row */
}
@media (max-width: 560px) {
  .ldSec .ldGrid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px 14px; }
  .ldSec .ldGrid > .ldCard,
  .ldSec .ldGrid > .ldCard:nth-child(n+5) { grid-column: span 2; }   /* 2 per row */
}

/* ===== ROOT CAUSE 2: .supField content (211px) + 22px padding exceeds the
   218px tile box while white-space:nowrap forbids wrapping, so the tail and
   the caret fall outside the clip box. Let it wrap onto two lines. ===== */
.work .sol-gallery > .sol-card .supField {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip;
  line-height: 1.35;
  font-size: 11px !important;
  padding: 8px 10px !important;
  height: auto !important;
  display: block;
}
.work .sol-gallery > .sol-card .supCaret { display: inline-block; vertical-align: -1px; }

/* ===== departments: inactive tabs need light ink on the dark stage ===== */
#departments .indTab { color: rgba(255,255,255,.74) !important; }
#departments .indTab:hover { color: #fff !important; }
#departments .indTab.isOn { color: #0c0a1f !important; }

/* ===== ERP chart day labels: text-safe grey, legible size ===== */
.work .sol-gallery > .sol-card .erpDays i { color: #6a6680 !important; font-size: 10px !important; }

/* ===== Dubai authority badge: dark scrim, not glass (photo is mid-tone) ===== */
.auth-badge {
  background: rgba(12,10,31,.66) !important;
  border-color: rgba(255,255,255,.22) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  backdrop-filter: blur(10px) saturate(1.1);
}
.auth-badge strong { color: #fff !important; }
.auth-badge span:not(.ab-ic) { color: #fff !important; }
.auth-badge .ab-ic { background: rgba(255,255,255,.16) !important; color: #fff !important; }

/* ===== claims "ERP" badge: start the gradient at its darker stop =====
   white on rgb(59,118,246) = 4.11:1; on rgb(31,82,208) = 6.61:1 */
.work .sol-gallery > .sol-card .clmApp.erp {
  background: linear-gradient(150deg, rgb(31,82,208), rgb(21,58,158)) !important;
  color: #fff !important;
}

/* ===== AUTHORITATIVE reveal contract =====
   Visible by default at .ateam-lp specificity so no ungated hidden rule can win.
   The hidden state — and therefore any transition that could be pinned at
   currentTime:0 — exists only when the renderer proves it can paint frames. */
.ateam-lp .reveal, .reveal { opacity: 1; transform: none; }
html.js-anim .ateam-lp .reveal,
html.js-anim .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
html.js-anim .ateam-lp .reveal.in,
html.js-anim .reveal.in { opacity: 1; transform: none; }
html.js-anim .reveal.d1 { transition-delay: .07s; }
html.js-anim .reveal.d2 { transition-delay: .14s; }
html.js-anim .reveal.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .ateam-lp .reveal,
  html.js-anim .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== footer Dubai address ===== */
.foot-addr { font-style: normal; font-size: 13.5px; line-height: 1.7; color: #6a6680; margin: 0 0 14px; }
.foot-addr strong { display: inline-block; font-weight: 700; color: #0c0a1f; margin-right: 8px;
  font-family: var(--mono, ui-monospace); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; }
.foot-addr a { color: #441a9b; text-decoration: none; border-bottom: 1px solid #d4c2fd; }
.foot-addr a:hover { color: #7c2ce6; border-bottom-color: #7c2ce6; }

/* ===== leads dashboard motion (CSS-only, no media decode) ===== */
.work .sol-gallery > .sol-card > .lg2 { padding: 18px 16px !important; overflow: hidden; }
.lg2f-bar { width: var(--w); transform-origin: left center; animation: lg2Grow 1.1s cubic-bezier(.22,1,.36,1) both; }
.lg2f:nth-child(1) .lg2f-bar { animation-delay: .05s; }
.lg2f:nth-child(2) .lg2f-bar { animation-delay: .18s; }
.lg2f:nth-child(3) .lg2f-bar { animation-delay: .31s; }
.lg2f:nth-child(4) .lg2f-bar { animation-delay: .44s; }
@keyframes lg2Grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.lg2f-bar.win { position: relative; }
.lg2f-bar.win::after { content: ''; position: absolute; inset: 0; border-radius: 7px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-100%); animation: lg2Sheen 2.8s ease-in-out 1.4s infinite; }
@keyframes lg2Sheen { 0% { transform: translateX(-100%); } 55%,100% { transform: translateX(220%); } }
.lg2-count { position: relative; }
.lg2-roas { animation: lg2Pulse 3.2s ease-in-out infinite; }
@keyframes lg2Pulse { 0%,100% { transform: translateY(0); box-shadow: 0 10px 22px -10px rgba(15,107,49,.6); }
  50% { transform: translateY(-2px); box-shadow: 0 16px 28px -10px rgba(15,107,49,.75); } }
.lg2-ch { animation: lg2In .5s cubic-bezier(.22,1,.36,1) both; }
.lg2-ch:nth-child(1) { animation-delay: .1s; }
.lg2-ch:nth-child(2) { animation-delay: .22s; }
.lg2-ch:nth-child(3) { animation-delay: .34s; }
@keyframes lg2In { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.lg2-ch .lg2-dot { animation: lg2Blink 2.4s ease-in-out infinite; }
.lg2-ch:nth-child(2) .lg2-dot { animation-delay: .8s; }
.lg2-ch:nth-child(3) .lg2-dot { animation-delay: 1.6s; }
@keyframes lg2Blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) {
  .lg2f-bar, .lg2-ch, .lg2-roas, .lg2-ch .lg2-dot { animation: none !important; }
  .lg2f-bar.win::after { display: none; }
}

/* ===== comparison ledger: separated sides, unmistakable hierarchy ===== */
.cmpLedger {
  position: relative;
  grid-template-columns: minmax(0,1fr) 148px minmax(0,1fr) !important;
  padding: 6px 0 0;
  isolation: isolate;
}
/* the losing side reads as a flat, receded plate */
.cmpTopBad, .cmpCell.cmpBad {
  background: #f7f7fa !important;
  border-top: 1px solid #ebe9f2 !important;
  padding-left: 26px !important; padding-right: 26px !important;
}
.cmpTopBad { border-radius: 18px 0 0 0 !important; padding-top: 26px !important; }
.cmpLedger > .cmpBad:last-of-type { border-radius: 0 0 18px 0; }
/* the winning side is lifted: white card, violet edge, real elevation */
.cmpTopGood, .cmpCell.cmpGood {
  background: #fff !important;
  border-top: 1px solid rgba(124,44,230,.14) !important;
  border-left: 3px solid #7c2ce6 !important;
  padding-left: 26px !important; padding-right: 26px !important;
  position: relative; z-index: 1;
}
.cmpTopGood {
  border-radius: 0 18px 0 0 !important; padding-top: 26px !important;
  box-shadow: 0 -2px 0 #7c2ce6 inset, 22px 0 44px -30px rgba(124,44,230,.45);
}
.cmpLedger > .cmpGood:last-of-type {
  border-radius: 0 0 18px 0 !important;
  box-shadow: 0 26px 48px -34px rgba(124,44,230,.5);
  padding-bottom: 28px !important;
}
/* centre spine: a literal divider so the two sides never blur together */
.cmpDim, .cmpTopDim { position: relative; background: transparent !important; border-top: none !important; }
.cmpDim::before, .cmpTopDim::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, #ded9ea 12%, #ded9ea 88%, transparent);
  transform: translateX(-.5px);
}
.cmpDim span {
  position: relative; z-index: 1; background: #fff; padding: 6px 12px; border-radius: 100px;
  border: 1px solid #ebe9f2; color: #221d3a !important; font-weight: 700;
}
/* marks scale with the hierarchy */
.cmpMk { flex: 0 0 26px !important; width: 26px !important; height: 26px !important; }
.cmpX { background: #f0edf3 !important; color: #9aa0ab !important; }
.cmpV { background: #7c2ce6 !important; color: #fff !important; box-shadow: 0 6px 16px -6px rgba(124,44,230,.7) !important; }
/* copy weight carries the verdict */
.cmpBad p { color: #6a6680 !important; font-size: 14.5px !important; }
.cmpGood p { color: #0c0a1f !important; font-size: 15.5px !important; font-weight: 500; }
.cmpTopBad strong { color: #8a8698 !important; }
.cmpTopGood strong { color: #0c0a1f !important; }
@media (max-width: 900px) {
  .cmpLedger { grid-template-columns: 1fr !important; }
  .cmpTopBad, .cmpCell.cmpBad, .cmpTopGood, .cmpCell.cmpGood {
    border-radius: 14px !important; border-left-width: 3px !important; margin-bottom: 6px;
    padding-left: 18px !important; padding-right: 18px !important;
  }
  .cmpTopBad, .cmpCell.cmpBad { border-left: 3px solid #ded9ea !important; }
  .cmpDim::before, .cmpTopDim::before { display: none; }
  .cmpDim { padding: 22px 0 8px !important; }
  .cmpDim span { background: transparent; border: none; padding: 0; color: #7c2ce6 !important; }
}

/* ===== two self-contained columns — read either side top to bottom ===== */
.vsWrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0 26px; align-items: start; max-width: 1040px; margin: 0 auto; }
@media (max-width: 900px) { .vsWrap { grid-template-columns: 1fr; gap: 18px; } }
.vsCol { position: relative; border-radius: 22px; padding: 30px 28px 28px; }
.vsLose { background: #f5f5f8; border: 1px solid #e8e6ee; }
.vsWin { background: #fff; border: 2px solid #7c2ce6; box-shadow: 0 30px 70px -34px rgba(124,44,230,.45); }
.vsFlag { position: absolute; top: -13px; left: 28px; font-size: 10px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; background: #7c2ce6; padding: 6px 14px; border-radius: 100px; }
.vsHead { padding-bottom: 20px; margin-bottom: 6px; border-bottom: 1px solid rgba(12,10,31,.09); }
.vsWin .vsHead { border-bottom-color: rgba(124,44,230,.18); }
.vsChip { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; margin-bottom: 14px; }
.vsLose .vsChip { background: #e6e4ec; color: #6a6680; }
.vsWin .vsChip { background: #f3ecff; color: #5824c5; }
.vsHead h3 { font-family: var(--sans, system-ui); font-weight: 800; font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -.032em; line-height: 1.18; margin: 0 0 8px; }
.vsLose .vsHead h3 { color: #8a8698; }
.vsWin .vsHead h3 { color: #0c0a1f; }
.vsVerdict { margin: 0; font-size: 13.5px; line-height: 1.5; }
.vsLose .vsVerdict { color: #6a6680; }
.vsWin .vsVerdict { color: #5824c5; font-weight: 600; }
.vsList { list-style: none; margin: 0; padding: 0; }
.vsItem { padding: 16px 0; border-bottom: 1px solid rgba(12,10,31,.07); }
.vsItem:last-child { border-bottom: none; padding-bottom: 0; }
.vsWin .vsItem { border-bottom-color: rgba(124,44,230,.12); }
.vsDim { display: block; font-family: var(--mono, ui-monospace); font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 7px; }
.vsLose .vsDim { color: #918da0; }
.vsWin .vsDim { color: #7c2ce6; }
.vsRow { display: flex; align-items: flex-start; gap: 11px; }
.vsRow p { margin: 0; line-height: 1.58; }
.vsLose .vsRow p { color: #6a6680; font-size: 14.5px; }
.vsWin .vsRow p { color: #0c0a1f; font-size: 15.5px; font-weight: 500; }
.vsRow p strong { font-weight: 800; }
.vsLose .vsRow p strong { color: #56536b; }
.vsWin .vsRow p strong { color: #0c0a1f; }
.vsMk { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; margin-top: 1px; }
.vsMk svg { width: 12px; height: 12px; }
.vsLose .vsMk { background: #e6e4ec; color: #7d7990; }
.vsWin .vsMk { background: #7c2ce6; color: #fff; box-shadow: 0 6px 14px -6px rgba(124,44,230,.7); }
.vsPivot { align-self: center; width: 46px; height: 46px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; background: #fff; border: 1px solid #e8e6ee;
  font-family: var(--serif, Georgia), serif; font-style: italic; font-size: 16px; color: #6a6680;
  box-shadow: 0 8px 20px -12px rgba(12,10,31,.3); }
@media (max-width: 900px) { .vsPivot { justify-self: center; } }
html.js-anim .vsWrap.reveal .vsItem { opacity: 0; transform: translateY(10px); }
html.js-anim .vsWrap.reveal.in .vsItem { opacity: 1; transform: none;
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(var(--i,0) * 80ms); }
@media (prefers-reduced-motion: reduce) { html.js-anim .vsWrap.reveal .vsItem { opacity: 1; transform: none; } }

/* ===== align paired points across both columns ===== */
@media (min-width: 901px) {
  /* both lists run on the same 5-row track so item N in each column shares a baseline */
  .vsList { display: grid; grid-template-rows: repeat(5, minmax(96px, auto)); }
  .vsItem { display: flex; flex-direction: column; justify-content: flex-start; }
  /* headers must match too, or every row below is offset by the difference */
  .vsHead { min-height: 132px; display: flex; flex-direction: column; }
  .vsHead .vsVerdict { margin-top: auto; }
  /* the winning card carries a 2px border vs 1px, so equalise the inner box */
  .vsLose { padding: 31px 29px 29px; }
}
/* ===== CTA card vs Bootstrap name collisions =====
   .modal and .form-row are Bootstrap-owned. The custom rules set position,
   width and padding but never declared display, so Bootstraps
   .modal{display:none} kept the card hidden at every specificity. */
.modal-overlay > .modal,
.ateam-lp .modal-overlay > .modal {
  display: block !important;
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  overflow: visible !important;
  width: 100% !important;
  max-width: 460px !important;
  height: auto !important;
  margin: 0 !important;
  pointer-events: auto !important;
  outline: 0;
}
.modal-overlay .form-row { display: block; margin-left: 0; margin-right: 0; }
.modal-overlay .form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .modal-overlay .form-row.two { grid-template-columns: 1fr; } }
/* ===== DEFECT 1: .lg2 was never added to the media-band height list ===== */
.work .sol-gallery > .sol-card:not(.astCard) > .lg2 {
  height: 486px !important; min-height: 486px !important; max-height: 486px !important;
  flex: 0 0 486px !important; box-sizing: border-box;
}
/* future-proof: any first child of a tile becomes the media band */
.work .sol-gallery > .sol-card:not(.astCard) > *:first-child {
  flex: 0 0 486px; height: 486px; box-sizing: border-box;
}

/* ===== DEFECT 2: 1fr floors at min-content, so 3 pills cannot fit 238px ===== */
.lg2-channels { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 6px !important; }
.lg2-ch { min-width: 0; padding: 8px 9px !important; font-size: 10.5px !important; gap: 5px !important;
  white-space: nowrap; overflow: hidden; }
.lg2-ch b { margin-left: auto; font-size: 12.5px !important; }

/* ===== DEFECT 3: two independent grids cannot self-align =====
   Pin identical explicit row tracks on BOTH lists so item N shares a baseline. */
@media (min-width: 901px) {
  .vsList { grid-template-rows: 104px 104px 104px 104px 96px !important; }
}
/* ===== Clutch award badges: scale up so the badge text is readable ===== */
.heroAwards .haBadges { gap: 16px !important; }
.heroAwards .haBadges img {
  height: 92px !important; width: auto !important; max-height: none !important;
  image-rendering: -webkit-optimize-contrast;
}
.heroAwards .haRoundel { height: 62px !important; width: auto !important; }
.heroAwards .haRateTxt { font-size: 15.5px !important; }
.heroAwards .haStars { font-size: 17px !important; }
@media (max-width: 760px) {
  .heroAwards .haBadges img { height: 74px !important; }
  .heroAwards .haBadges { gap: 12px !important; }
  .heroAwards .haRoundel { height: 52px !important; }
}
/* ===== Aster feature card: +15% width ===== */
.sol-gallery .sol-card.astCard { max-width: 1426px !important; margin-left: auto; margin-right: auto; }
.astUI { width: 138% !important; max-width: none !important; margin-left: -19% !important; aspect-ratio: 2006 / 1035 !important; }
@media (max-width: 900px) { .astUI { width: 100% !important; margin-left: 0 !important; aspect-ratio: 1672 / 941 !important; } }
/* ===== Omni-channel lead capture — SaaS dashboard (reference styling) ===== */
.work .sol-gallery > .sol-card:not(.astCard) > .lg3 {
  height:486px !important; min-height:486px !important; max-height:486px !important;
  flex:0 0 486px !important; box-sizing:border-box; background:#fbfbfe;
  display:flex; flex-direction:column; gap:9px; padding:12px 12px 11px !important; overflow:hidden;
  border-bottom:1px solid #ebe9f2;
}
.lg3-top { display:flex; align-items:center; gap:7px; }
.lg3-brand { display:flex; align-items:center; gap:5px; font-size:10.5px; font-weight:800; color:#0c0a1f; }
.lg3-brand i { width:16px; height:16px; border-radius:5px; background:linear-gradient(150deg,#7c2ce6,#5824c5); }
.lg3-tabs { display:flex; align-items:center; gap:3px; margin-left:auto; }
.lg3-tabs b, .lg3-tabs s { font-size:8.5px; font-weight:700; padding:4px 7px; border-radius:100px; text-decoration:none; }
.lg3-tabs b { background:#fff; color:#0c0a1f; box-shadow:inset 0 0 0 1px #e4e1ee; }
.lg3-tabs s { color:#9591a4; }
.lg3-av { width:18px; height:18px; border-radius:50%; background:linear-gradient(150deg,#b49bff,#7c2ce6); flex:0 0 18px; }
.lg3-stats { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:6px; }
.lg3-stat { background:#fff; border-radius:11px; padding:8px 9px; box-shadow:inset 0 0 0 1px #eeecf6; min-width:0; }
.lg3-k { display:flex; align-items:center; gap:4px; font-size:8.5px; font-weight:700; color:#6a6680; text-transform:uppercase; letter-spacing:.05em; white-space:nowrap; }
.lg3-k .up { font-style:normal; font-size:8px; font-weight:800; color:#0f6b31; background:#e7f7ee; padding:1.5px 5px; border-radius:100px; margin-left:auto; }
.lg3-stat b { display:block; font-size:19px; font-weight:800; letter-spacing:-.03em; color:#0c0a1f; line-height:1.1; margin-top:3px; }
.lg3-stat small { font-size:8px; color:#9591a4; }
.lg3-body { display:grid; grid-template-columns:minmax(0,1.5fr) minmax(0,1fr); gap:7px; flex:1; min-height:0; }
.lg3-chart { position:relative; background:#fff; border-radius:12px; padding:10px; box-shadow:inset 0 0 0 1px #eeecf6; display:flex; flex-direction:column; min-width:0; }
.lg3-ch-head { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:6px; }
.lg3-ch-head span { font-size:9.5px; font-weight:800; color:#0c0a1f; }
.lg3-ch-head em { font-style:normal; font-size:8px; color:#9591a4; }
.lg3-callout { align-self:flex-start; font-size:8.5px; font-weight:800; color:#fff; background:#7c2ce6; padding:2px 7px; border-radius:100px; margin-bottom:5px; }
.lg3-dots { display:flex; align-items:flex-end; gap:3px; flex:1; min-height:0; }
.lg3-col { display:flex; flex-direction:column-reverse; gap:2px; flex:1; min-width:0; }
.lg3-col i { display:block; width:100%; max-width:7px; aspect-ratio:1; border-radius:50%; background:#c8ecda; margin:0 auto; }
.lg3-col.hi i { background:#7c2ce6; }
.lg3-axis { display:flex; justify-content:space-between; margin-top:6px; font-size:7.5px; color:#9591a4; }
.lg3-rail { background:#f4f1fe; border-radius:12px; padding:10px; display:flex; flex-direction:column; gap:5px; min-width:0; }
.lg3-rail-head { display:flex; align-items:center; justify-content:space-between; font-size:9.5px; font-weight:800; color:#0c0a1f; margin-bottom:1px; }
.lg3-rail-head em { font-style:normal; font-size:7.5px; font-weight:700; color:#0f6b31; background:#e7f7ee; padding:1.5px 6px; border-radius:100px; }
.lg3-task { display:flex; align-items:center; gap:7px; background:#fff; border-radius:9px; padding:7px 8px; min-width:0; }
.lg3-task b { display:block; font-size:9.5px; font-weight:700; color:#0c0a1f; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.lg3-task small { font-size:8px; color:#6a6680; }
.lg3-ic { width:16px; height:16px; border-radius:5px; flex:0 0 16px; }
.lg3-ic.meta { background:#4267f0; } .lg3-ic.goog { background:#ea4335; } .lg3-ic.wa { background:#25a35a; }
.lg3-ask { margin-top:auto; font-size:8.5px; font-weight:600; color:#5824c5; background:#fff; border-radius:9px; padding:7px 8px; text-align:center; }
/* motion */
.lg3-col i { animation:lg3Pop .5s cubic-bezier(.22,1,.36,1) both; }
.lg3-col:nth-child(odd) i { animation-delay:.08s; }
.lg3-col.hi i { animation-delay:.22s; }
@keyframes lg3Pop { from { opacity:0; transform:scale(.4); } to { opacity:1; transform:none; } }
.lg3-callout { animation:lg3Float 3s ease-in-out infinite; }
@keyframes lg3Float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-3px); } }
.lg3-task { animation:lg3In .5s cubic-bezier(.22,1,.36,1) both; }
.lg3-task:nth-child(2) { animation-delay:.1s; } .lg3-task:nth-child(3) { animation-delay:.2s; } .lg3-task:nth-child(4) { animation-delay:.3s; }
@keyframes lg3In { from { opacity:0; transform:translateX(8px); } to { opacity:1; transform:none; } }
@media (prefers-reduced-motion:reduce) { .lg3-col i, .lg3-callout, .lg3-task { animation:none !important; } }

/* ==========================================================
   Departments — clean two-column panel (authoritative)
   ========================================================== */
.indSec .indWrap { max-width: 1100px; margin: 0 auto; }

/* tab rail: even, scrollable, no crowding */
.indSec .indTabs {
  display: flex !important; gap: 8px !important; flex-wrap: nowrap !important;
  overflow-x: auto; scrollbar-width: none; padding: 0 0 4px !important;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.indSec .indTabs::-webkit-scrollbar { display: none; }
.indSec .indTab {
  flex: 0 0 auto; scroll-snap-align: start; white-space: nowrap;
  padding: 11px 18px !important; font-size: 13.5px !important; font-weight: 600;
  border-radius: 12px 12px 0 0; cursor: pointer;
  transition: background .25s, color .25s, box-shadow .25s;
}

/* stage: fixed height kills the tab-switch jump */
.indSec .indStage {
  position: relative;
  min-height: 420px !important;
  border-radius: 0 18px 18px 18px;
  overflow: hidden;
}
@media (max-width: 900px) { .indSec .indStage { min-height: 0 !important; } }

/* panel: copy left, tall photo right */
.indSec .indPanel {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr) !important;
  gap: 40px !important;
  align-items: center !important;
  padding: 34px 36px !important;
  box-sizing: border-box;
}
.indSec .indPanel[hidden] { display: none !important; }
@media (max-width: 900px) {
  .indSec .indPanel { grid-template-columns: 1fr !important; gap: 24px !important; padding: 26px 22px !important; }
}

.indSec .indCopy { min-width: 0; }
.indSec .indH { font-size: clamp(21px, 2.3vw, 27px) !important; line-height: 1.2 !important; margin: 0 0 12px !important; }
.indSec .indP { font-size: 15px !important; line-height: 1.68 !important; margin: 0 0 20px !important; max-width: 44ch; }
.indSec .indExplore { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
.indSec .indExplore svg { width: 18px; height: 18px; transition: transform .28s cubic-bezier(.22,1,.36,1); }
.indSec .indExplore:hover svg { transform: translateX(4px); }

/* photo: portrait-ish frame so the subject reads, not a squashed letterbox */
.indSec .indShot { margin: 0; min-width: 0; }
.indSec .indShotFrame {
  position: relative; overflow: hidden; border-radius: 16px;
  aspect-ratio: 4 / 3; box-shadow: 0 22px 54px -32px rgba(12,10,31,.4);
}
.indSec .indShotFrame img {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  object-fit: cover; object-position: 50% 45%;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.indSec .indPanel:hover .indShotFrame img { transform: scale(1.04); }
#departments .indBadge {
  position: absolute !important; left: 14px !important; right: auto !important;
  top: 14px !important; bottom: auto !important;
  width: max-content !important; max-width: calc(100% - 28px);
  display: inline-flex !important; align-items: center;
  padding: 6px 12px; border-radius: 100px;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.92) !important; color: #14121f !important;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px -8px rgba(12,10,31,.35);
  white-space: nowrap; text-align: left;
}

/* ===== Leadership — authoritative, id-scoped (beats all .ldSec rules) ===== */
#leadership .ldGrid{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:40px 22px;align-items:start}
@media(max-width:900px){#leadership .ldGrid{grid-template-columns:repeat(4,minmax(0,1fr));gap:34px 18px}}
@media(max-width:700px){#leadership .ldGrid{grid-template-columns:repeat(3,minmax(0,1fr));gap:30px 16px}}
@media(max-width:480px){#leadership .ldGrid{grid-template-columns:repeat(2,minmax(0,1fr));gap:26px 14px}}
#leadership .ldGrid>.ldCard{grid-column:auto;min-width:0;display:flex;flex-direction:column;align-items:center;text-align:center}
#leadership .ldRing{position:relative;flex:0 0 auto;width:118px;height:118px;margin:0 0 14px;border-radius:50%;background:none;padding:0;display:block;transition:transform .42s cubic-bezier(.22,1,.36,1),filter .42s cubic-bezier(.22,1,.36,1)}
#leadership .ldRing::before{content:'';position:absolute;inset:0;border-radius:50%;z-index:0;background:conic-gradient(from 210deg,#7c2ce6 0deg,#a970ff 140deg,#e6dcff 250deg,#7c2ce6 360deg)}
#leadership .ldRing::after{content:'';position:absolute;inset:4px;border-radius:50%;background:#fff;z-index:1}
#leadership .ldRing img{position:relative;z-index:2;width:110px!important;height:110px!important;margin:4px;border-radius:50%;object-fit:cover;object-position:50% 22%;display:block;background:#f4f2f7;filter:grayscale(1) contrast(1.04);transition:filter .42s cubic-bezier(.22,1,.36,1)}
#leadership .ldCard:hover .ldRing{transform:translateY(-5px) scale(1.03);filter:drop-shadow(0 16px 30px rgba(124,44,230,.30))}
#leadership .ldCard:hover .ldRing img{filter:grayscale(0) contrast(1)}
#leadership .ldName{display:flex;align-items:flex-start;justify-content:center;width:100%;min-height:2.5em;margin:0;font-family:var(--sans);font-weight:700;font-size:14.5px;line-height:1.25;letter-spacing:-.02em;color:var(--ink);overflow-wrap:break-word}
#leadership .ldRole{display:flex;align-items:flex-start;justify-content:center;width:100%;min-height:2.9em;margin:3px 0 0;font-size:12px;font-weight:600;line-height:1.4;color:var(--violet);overflow-wrap:break-word}
@media(max-width:700px){#leadership .ldRing{width:104px;height:104px}#leadership .ldRing img{width:96px!important;height:96px!important}}

/* ==========================================================
   Departments — dark mode (authoritative, id-scoped)
   ========================================================== */
#departments { background: #07060d !important; position: relative; overflow: hidden; padding: 96px 0 100px !important; }
@media (max-width: 760px) { #departments { padding: 68px 0 72px !important; } }
#departments::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 56% 52% at 6% -6%, rgba(124,44,230,.30), transparent 62%),
    radial-gradient(ellipse 48% 46% at 100% 104%, rgba(88,36,197,.24), transparent 62%);
}
#departments::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 66px 66px;
  -webkit-mask-image: radial-gradient(ellipse 76% 66% at 50% 40%, #000 8%, transparent 78%);
  mask-image: radial-gradient(ellipse 76% 66% at 50% 40%, #000 8%, transparent 78%);
}
#departments > .container { position: relative; z-index: 1; }

/* header */
#departments .indTag {
  color: #d6c6ff !important; background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}
#departments .indTitle { color: #fff !important; }
#departments .indTitle em {
  background-image: linear-gradient(96deg, #c9b8ff 0%, #7c2ce6 98%) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important; color: transparent !important;
}
#departments .indLede { color: rgba(255,255,255,.68) !important; }

/* tab rail */
#departments .indTabs { border-bottom: 1px solid rgba(255,255,255,.10) !important; }
#departments .indTab {
  color: rgba(255,255,255,.62) !important;
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-bottom: none !important;
}
#departments .indTab:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
#departments .indTab.isOn {
  color: #fff !important;
  background: linear-gradient(180deg, rgba(124,44,230,.32), rgba(255,255,255,.06)) !important;
  border-color: rgba(201,184,255,.45) !important;
}

/* stage + panel */
#departments .indStage {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,.8) !important;
}
#departments .indH { color: #fff !important; }
#departments .indP { color: rgba(255,255,255,.70) !important; }
#departments .indExplore { color: #c9b8ff !important; border-bottom-color: rgba(201,184,255,.4) !important; }
#departments .indExplore:hover { color: #fff !important; border-bottom-color: #fff !important; }

/* photo frame + badge */
#departments .indShotFrame {
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 24px 56px -30px rgba(0,0,0,.85) !important;
}
#departments .indBadge {
  right: auto !important; width: max-content !important;
  background: rgba(12,10,31,.72) !important; color: #fff !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}

/* ==========================================================
   Departments — layout optimisation (final, id-scoped)
   Fixes measured at 924px:
     · panel 336px copy / 342px photo → both cramped; photo 4:3 squat
     · stage 428px forces a short frame regardless of content
     · tab rail sits flush to the stage with no breathing room
   ========================================================== */
#departments .indPanel.isOn {
  display: grid !important;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr) !important;
  gap: 40px !important;
  align-items: center !important;
  padding: 34px 36px !important;
}
@media (max-width: 900px) {
  #departments .indPanel.isOn { grid-template-columns: 1fr !important; gap: 26px !important; padding: 26px 24px !important; }
}
#departments .indStage { min-height: 0 !important; padding: 0 !important; border-radius: 20px !important; }
#departments .indCopy { min-width: 0; }
#departments .indH {
  font-size: clamp(21px, 2.5vw, 29px) !important;
  line-height: 1.16 !important; letter-spacing: -.03em !important; margin: 0 0 12px !important;
}
#departments .indP { font-size: 15px !important; line-height: 1.66 !important; margin: 0 0 20px !important; }
#departments .indExplore { font-size: 14px !important; }

/* photo: taller frame so the subject reads instead of letterboxing */
#departments .indShotFrame {
  position: relative; aspect-ratio: 5 / 4 !important; height: auto !important;
  border-radius: 16px !important; overflow: hidden;
}
#departments .indShotFrame img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; object-position: 50% 42% !important; display: block;
}
/* tab rail: separate it from the stage */
#departments .indTabs { margin-bottom: 14px !important; padding-bottom: 0 !important; gap: 8px !important; }
#departments .indTab { border-radius: 12px 12px 0 0 !important; padding: 12px 18px !important; font-size: 14px !important; }

/* ===== testimonial attribution: no avatar, centred name + role ===== */
.t2-attr { display: flex !important; flex-direction: column !important; align-items: center !important;
  gap: 3px !important; text-align: center !important; }
.t2-attr > div { text-align: center !important; }
.t2-name { font-weight: 700; }
.t2-role { opacity: .78; }

/* ===== claims card: stop the animation loop from disturbing the page =====
   The infinite loops repaint a large area continuously and, because the card
   is not layout-isolated, that work lands on the main thread during scroll —
   which reads as jerk/bounce. Three fixes: isolate the box, promote only the
   moving layers, and freeze everything while the card is off-screen. */
.clmUI {
  contain: layout paint style;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.clmUI .clmSheet.s1,
.clmUI .clmValue,
.clmUI .clmPulse,
.clmUI .clmScan,
.clmUI .clmMeterFill {
  will-change: transform, opacity;
  backface-visibility: hidden;
}
/* nothing animates until the card is actually in view */
.clmUI:not(.isLive),
.clmUI:not(.isLive) *,
.clmUI:not(.isLive) *::before,
.clmUI:not(.isLive) *::after { animation-play-state: paused !important; }

@media (prefers-reduced-motion: reduce) {
  .clmUI, .clmUI *, .clmUI *::before, .clmUI *::after { animation: none !important; }
}

/* ===== hero client label: crisp rendering ===== */
.heroDark .hcLabel {
  color: rgba(255,255,255,.82) !important;
  font-size: 11px !important;
  letter-spacing: .14em !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  text-shadow: none !important;
}

/* ==========================================================
   Aster feature card — final geometry (supersedes all earlier
   .astCard/.astUI layers: 33 competing rules had left the card
   left-aligned and letterboxing dead artwork space)
   ========================================================== */
.work .sol-gallery > .sol-card.astCard,
.sol-gallery .sol-card.astCard {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto 6px !important;
  justify-self: center !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.work .sol-gallery > .sol-card.astCard .astUI,
.sol-gallery .sol-card.astCard .astUI {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  aspect-ratio: 1672 / 663 !important;   /* exact cropped-artwork ratio */
  height: auto !important;
  min-height: 0 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: #0b2146 !important;
}
/* ratio now matches the file exactly, so cover fills with zero letterboxing */
.work .sol-gallery > .sol-card.astCard .astPlate,
.sol-gallery .sol-card.astCard .astPlate {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; object-position: center !important;
}
@media (max-width: 640px) {
  .work .sol-gallery > .sol-card.astCard .astUI,
  .sol-gallery .sol-card.astCard .astUI { border-radius: 14px !important; }
}

/* ==========================================================
   AI claims processing — motion removed, final state pinned
   ========================================================== */
.clmUI,
.clmUI *,
.clmUI *::before,
.clmUI *::after {
  animation: none !important;
  transition: none !important;
}
/* hold the artwork at its completed frame rather than the animation's start */
.clmUI .clmSheet { opacity: 1 !important; transform: none !important; }
.clmUI .clmRow { opacity: 1 !important; transform: none !important; }
.clmUI .clmTick { opacity: 1 !important; transform: none !important; }
.clmUI .clmTick::after { opacity: 1 !important; transform: rotate(-45deg) !important; }
.clmUI .clmBar { opacity: 1 !important; transform: none !important; }
.clmUI .clmValue,
.clmUI .clmBridge,
.clmUI .clmApp,
.clmUI .clmSwap,
.clmUI .clmInfo { opacity: 1 !important; transform: none !important; }
/* containment no longer needed for animation cost, kept for paint isolation */
.clmUI { will-change: auto !important; }

/* ==========================================================
   "Regular AI vs Agentic AI" — stop the runtime reflow.
   #scThread is filled by JS at intervals; each appended message
   grew .vs-scene and pushed the page. Reserve the space up front,
   isolate layout, and drop the infinite spinner repaint.
   ========================================================== */
.explain .vs-scene {
  min-height: 268px !important;
  height: 268px !important;
  max-height: 268px !important;
  overflow: hidden !important;
  contain: layout paint style;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}
.explain .sc-thread {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
/* both columns hold one height so the grid never shifts as the scene fills */
.explain .vs-grid { align-items: stretch !important; }
.explain .vs-card { min-height: 430px !important; contain: layout paint style; }
/* spinner: was animation: spin .7s linear infinite → continuous repaint */
.explain .sc-spin { animation: none !important; border-top-color: var(--violet); opacity: .9; }
/* the footer no longer waits 2.3s behind a delayed transition */
.explain .vs-foot.live { opacity: 1 !important; transition: none !important; }
@media (max-width: 820px) {
  .explain .vs-scene { min-height: 240px !important; height: 240px !important; max-height: 240px !important; }
  .explain .vs-card { min-height: 0 !important; }
}

/* ==========================================================
   FOOTER — dark aurora, oversized wordmark, glass CTA
   ========================================================== */
.ateam-lp footer.ftr {
  position: relative; overflow: hidden; isolation: isolate;
  background: #06050c !important;
  border-top: 0 !important;
  padding: 82px 0 26px !important;
  color: #fff;
}
@media (max-width: 760px) { .ateam-lp footer.ftr { padding: 58px 0 22px !important; } }

/* aurora field */
.ftrAura { position: absolute; inset: 0; z-index: 0; pointer-events: none; contain: strict; }
.ftrOrb { position: absolute; border-radius: 50%; filter: blur(88px); will-change: transform; }
.ftrOrb.o1 { width: 620px; height: 620px; top: -300px; left: -140px;
  background: radial-gradient(circle, rgba(124,44,230,.60), rgba(124,44,230,0) 68%);
  animation: ftrDrift 26s ease-in-out infinite alternate; }
.ftrOrb.o2 { width: 520px; height: 520px; bottom: -280px; right: -120px;
  background: radial-gradient(circle, rgba(58,114,224,.42), rgba(58,114,224,0) 68%);
  animation: ftrDrift 32s ease-in-out infinite alternate-reverse; }
@keyframes ftrDrift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(48px,26px,0) scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .ftrOrb { animation: none !important; } }
.ftrMesh { position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.030) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.030) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 78% 70% at 42% 16%, #000 6%, transparent 74%);
  mask-image: radial-gradient(ellipse 78% 70% at 42% 16%, #000 6%, transparent 74%); }
.ftrIn { position: relative; z-index: 1; }

/* top: brand + CTA */
.ftrTop { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(0,.9fr); gap: 56px;
  align-items: start; padding-bottom: 44px; }
@media (max-width: 900px) { .ftrTop { grid-template-columns: 1fr; gap: 34px; padding-bottom: 32px; } }
.ftrLogo { display: inline-flex; align-items: center; padding: 11px 16px; border-radius: 14px;
  background: rgba(255,255,255,.96); box-shadow: 0 18px 44px -22px rgba(124,44,230,.55);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s; }
.ftrLogo:hover { transform: translateY(-3px); box-shadow: 0 24px 54px -22px rgba(124,44,230,.75); }
.ftrLogo img { height: 34px; width: auto; display: block; }
.ftrTag { margin: 20px 0 0; max-width: 46ch; font-size: 15.5px; line-height: 1.66; color: rgba(255,255,255,.66); }
.ftrBadges { margin-top: 20px; }
.ftrPill { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,.86); padding: 8px 15px; border-radius: 100px;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.ftrDot { width: 7px; height: 7px; border-radius: 50%; background: #4ad98a;
  box-shadow: 0 0 0 3px rgba(74,217,138,.20); }

/* glass CTA */
.ftrCta { position: relative; padding: 28px 28px 26px; border-radius: 22px;
  background: linear-gradient(155deg, rgba(124,44,230,.24), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.15);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 34px 74px -40px rgba(124,44,230,.6); }
.ftrCtaK { display: block; font-family: var(--mono, monospace); font-size: 10.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: #cbb6ff; margin-bottom: 12px; }
.ftrCtaH { margin: 0 0 20px; font-size: 21px; line-height: 1.26; font-weight: 700; letter-spacing: -.026em; color: #fff; }
.ftrBtn { display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-size: 14.5px; font-weight: 700; letter-spacing: -.01em; color: #17102b; text-decoration: none;
  padding: 13px 22px; border-radius: 100px; background: #fff;
  box-shadow: 0 16px 34px -18px rgba(0,0,0,.65);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, gap .3s; }
.ftrBtn svg { width: 16px; height: 16px; }
.ftrBtn:hover { transform: translateY(-2px); gap: 15px; box-shadow: 0 22px 44px -18px rgba(0,0,0,.75); }

/* middle columns */
.ftrMid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 34px;
  padding: 34px 0; border-top: 1px solid rgba(255,255,255,.10); border-bottom: 1px solid rgba(255,255,255,.10); }
@media (max-width: 760px) { .ftrMid { grid-template-columns: 1fr; gap: 26px; padding: 26px 0; } }
.ftrCol { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.ftrColK { font-family: var(--mono, monospace); font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.42); }
.ftrAddr { font-style: normal; font-size: 14.5px; line-height: 1.68; color: rgba(255,255,255,.78); margin: 0; }
.ftrLink { font-size: 14.5px; color: rgba(255,255,255,.80); text-decoration: none; width: fit-content;
  border-bottom: 1px solid rgba(255,255,255,.20); padding-bottom: 2px; transition: color .25s, border-color .25s; }
.ftrLink:hover { color: #fff; border-bottom-color: #cbb6ff; }
.ftrGeo { list-style: none; margin: 2px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.ftrGeo li { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.74);
  padding: 7px 14px; border-radius: 100px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10); transition: transform .28s cubic-bezier(.22,1,.36,1), background .28s, border-color .28s, color .28s; }
.ftrGeo li::before { content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: linear-gradient(140deg,#c9b8ff,#7c2ce6); }
.ftrGeo li:hover { transform: translateY(-2px); color: #fff;
  background: rgba(124,44,230,.20); border-color: rgba(201,184,255,.42); }

/* oversized outline wordmark */
.ftrWord { margin: 30px 0 -6px; font-size: clamp(56px, 13vw, 168px); line-height: .82;
  font-weight: 800; letter-spacing: -.055em; text-align: center; user-select: none;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(201,184,255,.16), rgba(255,255,255,0) 78%);
  -webkit-background-clip: text; background-clip: text; }

/* legal bar */
.ftrBar { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px; color: rgba(255,255,255,.46); }
.ftrSep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.26); }

/* ===== claims card: caption replaced by a visual status strip ===== */
.work .sol-gallery .clmCaption {
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  gap: 14px !important; padding: 12px 14px !important;
  background: linear-gradient(100deg, rgba(15,107,49,.10), rgba(255,255,255,0)) !important;
  border: 0 !important; border-top: 1px solid rgba(15,107,49,.20) !important;
  border-radius: 0 !important; min-height: 0 !important;
}
.clmSteps { display: inline-flex; align-items: center; gap: 7px; flex: 1 1 auto; min-width: 0; }
.clmSteps i { flex: 1 1 auto; height: 4px; border-radius: 100px; background: rgba(15,107,49,.16); }
.clmSteps i.on { background: linear-gradient(90deg, #4ad98a, #0f6b31); }
.clmSeal { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #0f6b31; color: #fff; box-shadow: 0 6px 14px -6px rgba(15,107,49,.7); }
.clmSeal svg { width: 14px; height: 14px; }

/* ==========================================================
   IMPACT — editorial portrait cards (kicker / headline / image)
   ========================================================== */
.impactEd { background: #06050c !important; padding: 96px 0 100px !important; }
@media (max-width: 760px) { .impactEd { padding: 66px 0 70px !important; } }

.edHead { max-width: 780px; margin: 0 0 52px; }
.edKicker { display: inline-block; font-family: var(--mono, monospace); font-size: 10.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: #cbb6ff; margin-bottom: 18px; }
.edTitle { margin: 0 0 16px; font-size: clamp(30px, 4.2vw, 52px); line-height: 1.04; font-weight: 800;
  letter-spacing: -.038em; color: #fff; }
.edTitle em { font-style: normal; background: linear-gradient(96deg, #c9b8ff, #7c2ce6);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.edLede { margin: 0; font-size: 16.5px; line-height: 1.68; color: rgba(255,255,255,.60); max-width: 62ch; }

.edGrid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; align-items: stretch; }
@media (max-width: 1000px) { .edGrid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 660px)  { .edGrid { grid-template-columns: 1fr; } }

.edCard { display: flex; flex-direction: column; overflow: hidden; min-width: 0;
  border-radius: 4px; contain: layout paint style;
  transition: transform .42s cubic-bezier(.22,1,.36,1), box-shadow .42s; }
.edCard:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -42px rgba(0,0,0,.85); }
.edCard.lt { background: #f2f1ef; }
.edCard.dk { background: linear-gradient(168deg, #150f33 0%, #0a0820 58%, #1b1046 100%); }

.edCardTop { padding: 30px 28px 24px; }
@media (max-width: 760px) { .edCardTop { padding: 24px 22px 20px; } }
.edCardK { display: block; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 18px; }
.edCard.lt .edCardK { color: #4a4458; }
.edCard.dk .edCardK { color: rgba(255,255,255,.62); }
.edCardH { margin: 0; font-size: clamp(20px, 2.2vw, 25px); line-height: 1.22; font-weight: 700; letter-spacing: -.028em; }
.edCard.lt .edCardH { color: #0d0a1a; }
.edCard.dk .edCardH { color: #fff; }
.edCardMeta { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.edCardMeta li { position: relative; padding-left: 15px; font-size: 13px; line-height: 1.5; }
.edCardMeta li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%;
  background: linear-gradient(140deg, #c9b8ff, #7c2ce6); }
.edCard.lt .edCardMeta li { color: #514b63; }
.edCard.dk .edCardMeta li { color: rgba(255,255,255,.66); }

.edCardShot { margin-top: auto; aspect-ratio: 4 / 3; overflow: hidden; }
.edCardShot img { display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1); }
.edCard:hover .edCardShot img { transform: scale(1.045); }
@media (prefers-reduced-motion: reduce) {
  .edCard, .edCardShot img { transition: none !important; }
  .edCard:hover { transform: none; }
  .edCard:hover .edCardShot img { transform: none; }
}

/* ==========================================================
   Motion for the claims + leads cards.
   Jerk-safe: transform/opacity only, contained boxes, fixed
   geometry, and every animation paused until the card is on
   screen (animation-play-state driven by .reveal.in).
   ========================================================== */
.work .sol-gallery > .sol-card { contain: layout paint style; }

/* ---------- shared: hold motion until visible ---------- */
.work .sol-gallery .clmUI *,
.work .sol-gallery .lg3 * { animation-play-state: paused; }
.work .sol-gallery > .sol-card.in .clmUI *,
.work .sol-gallery > .sol-card.in .lg3 * { animation-play-state: running; }

/* ---------- claims: scan sweep, tick reveal, bridge packet ---------- */
.work .sol-gallery .clmUI { position: relative; }
.work .sol-gallery .clmScan {
  position: absolute; left: 0; right: 0; top: 0; height: 34%;
  background: linear-gradient(180deg, rgba(74,217,138,0) 0%, rgba(74,217,138,.16) 55%, rgba(74,217,138,0) 100%);
  opacity: 0; will-change: transform, opacity;
  animation: clmScanY 4.6s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes clmScanY {
  0%   { transform: translate3d(0,-40%,0); opacity: 0; }
  18%  { opacity: .95; }
  72%  { transform: translate3d(0,240%,0); opacity: .5; }
  100% { transform: translate3d(0,300%,0); opacity: 0; }
}
.work .sol-gallery .clmRow .clmTick { position: relative; }
.work .sol-gallery .clmRow .clmTick::after { opacity: 0; transform: scale(.5); will-change: transform, opacity; }
.work .sol-gallery .clmRow.r1 .clmTick::after { animation: clmPop .5s cubic-bezier(.22,1,.36,1) .5s infinite alternate; }
.work .sol-gallery .clmRow.r2 .clmTick::after { animation: clmPop .5s cubic-bezier(.22,1,.36,1) 1.1s infinite alternate; }
.work .sol-gallery .clmRow.r3 .clmTick::after { animation: clmPop .5s cubic-bezier(.22,1,.36,1) 1.7s infinite alternate; }
.work .sol-gallery .clmRow.r4 .clmTick::after { animation: clmPop .5s cubic-bezier(.22,1,.36,1) 2.3s infinite alternate; }
@keyframes clmPop { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }
.work .sol-gallery .clmMeterFill { will-change: transform; transform-origin: left center;
  animation: clmMeter 4.6s cubic-bezier(.4,0,.2,1) infinite; }
@keyframes clmMeter { 0% { transform: scaleX(.06); } 70% { transform: scaleX(1); } 100% { transform: scaleX(1); } }
.work .sol-gallery .clmStatus i { will-change: opacity; animation: clmBlink 1.5s ease-in-out infinite; }
@keyframes clmBlink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.work .sol-gallery .clmPulse {
  position: absolute; left: 34%; top: 50%; width: 7px; height: 7px; margin-top: -3.5px;
  border-radius: 50%; background: #4ad98a; box-shadow: 0 0 10px rgba(74,217,138,.85);
  opacity: 0; will-change: transform, opacity;
  animation: clmPacket 2.8s cubic-bezier(.5,0,.5,1) infinite;
}
@keyframes clmPacket {
  0%   { transform: translate3d(0,0,0) scale(.6); opacity: 0; }
  15%  { opacity: 1; }
  80%  { transform: translate3d(150%,0,0) scale(1); opacity: 1; }
  100% { transform: translate3d(170%,0,0) scale(.6); opacity: 0; }
}
.work .sol-gallery .clmSteps i.on { will-change: transform; transform-origin: left center; }
.work .sol-gallery > .sol-card.in .clmSteps i.on:nth-child(1) { animation: clmSeg .45s cubic-bezier(.22,1,.36,1) .2s both; }
.work .sol-gallery > .sol-card.in .clmSteps i.on:nth-child(2) { animation: clmSeg .45s cubic-bezier(.22,1,.36,1) .55s both; }
.work .sol-gallery > .sol-card.in .clmSteps i.on:nth-child(3) { animation: clmSeg .45s cubic-bezier(.22,1,.36,1) .9s both; }
.work .sol-gallery > .sol-card.in .clmSteps i.on:nth-child(4) { animation: clmSeg .45s cubic-bezier(.22,1,.36,1) 1.25s both; }
@keyframes clmSeg { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.work .sol-gallery > .sol-card.in .clmSeal { animation: clmSealPop .5s cubic-bezier(.22,1,.36,1) 1.7s both; }
@keyframes clmSealPop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.14); } 100% { transform: scale(1); opacity: 1; } }

/* ---------- leads: column grow, callout float, rail cycle ---------- */
.work .sol-gallery .lg3-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.work .sol-gallery .lg3-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: -.01em; }
.work .sol-gallery .lg3-live { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #4ad98a; }
.work .sol-gallery .lg3-live i { width: 6px; height: 6px; border-radius: 50%; background: #4ad98a;
  will-change: opacity; animation: clmBlink 1.6s ease-in-out infinite; }
.work .sol-gallery .lg3-col { will-change: transform; transform-origin: bottom center; }
.work .sol-gallery > .sol-card.in .lg3-col { animation: lgGrow .62s cubic-bezier(.22,1,.36,1) both; }
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(1){animation-delay:.05s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(2){animation-delay:.10s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(3){animation-delay:.15s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(4){animation-delay:.20s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(5){animation-delay:.25s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(6){animation-delay:.30s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(7){animation-delay:.35s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(8){animation-delay:.40s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(9){animation-delay:.45s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(10){animation-delay:.50s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(11){animation-delay:.55s}
.work .sol-gallery > .sol-card.in .lg3-col:nth-child(12){animation-delay:.60s}
@keyframes lgGrow { from { transform: scaleY(.12); opacity: .35; } to { transform: scaleY(1); opacity: 1; } }
.work .sol-gallery .lg3-callout { will-change: transform; animation: lgFloat 5s ease-in-out infinite; }
@keyframes lgFloat { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-5px,0); } }
.work .sol-gallery .lg3-task { will-change: transform, opacity; }
.work .sol-gallery > .sol-card.in .lg3-task:nth-child(2) { animation: lgTask 5.4s ease-in-out .0s infinite; }
.work .sol-gallery > .sol-card.in .lg3-task:nth-child(3) { animation: lgTask 5.4s ease-in-out 1.8s infinite; }
.work .sol-gallery > .sol-card.in .lg3-task:nth-child(4) { animation: lgTask 5.4s ease-in-out 3.6s infinite; }
@keyframes lgTask {
  0%,66%,100% { transform: translate3d(0,0,0); opacity: .68; }
  12%,44%     { transform: translate3d(4px,0,0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .work .sol-gallery .clmUI *, .work .sol-gallery .lg3 * { animation: none !important; }
  .work .sol-gallery .clmRow .clmTick::after,
  .work .sol-gallery .clmSteps i.on, .work .sol-gallery .clmSeal,
  .work .sol-gallery .lg3-col, .work .sol-gallery .lg3-task {
    opacity: 1 !important; transform: none !important;
  }
  .work .sol-gallery .clmScan, .work .sol-gallery .clmPulse { display: none !important; }
}

/* impact cards: near-square 4K art needs a taller shot box than 4/3 */
.impactEd .edCardShot { aspect-ratio: 1 / 1 !important; }
@media (max-width: 660px) { .impactEd .edCardShot { aspect-ratio: 4 / 3 !important; } }

/* ==========================================================
   IMPACT → DEPARTMENTS seam
   Two dark sections met with a hard edge and a visible border.
   Fix: kill the border, share one continuous field, and hand
   the tone from one to the next with soft bleed gradients.
   ========================================================== */
.impactEd { border: 0 !important; border-bottom: 0 !important; position: relative; }
.impactEd::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 190px;
  pointer-events: none; z-index: 0;
  background: linear-gradient(180deg, rgba(6,5,12,0) 0%, rgba(9,7,20,.55) 46%, #0a0818 100%);
}
.impactEd > .container { position: relative; z-index: 1; }

/* departments picks the seam up and carries it forward */
.indSec, #departments {
  border-top: 0 !important; border-bottom: 0 !important;
  background: #0a0818 !important;
  position: relative; overflow: hidden;
  padding-top: 104px !important;
}
@media (max-width: 760px) { .indSec, #departments { padding-top: 72px !important; } }

/* richer, sleeker gradient field: violet crown, blue counter-light,
   a low warm-violet floor, plus a fine grid to stop the flat black */
#departments::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 58% at 12% -12%, rgba(124,44,230,.42), transparent 64%),
    radial-gradient(ellipse 58% 50% at 92% 8%,  rgba(58,114,224,.26), transparent 62%),
    radial-gradient(ellipse 80% 46% at 50% 112%, rgba(88,36,197,.34), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.028) 0%, rgba(255,255,255,0) 24%);
}
#departments::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(ellipse 76% 66% at 50% 34%, #000 4%, transparent 76%);
  mask-image: radial-gradient(ellipse 76% 66% at 50% 34%, #000 4%, transparent 76%);
}
#departments > .container { position: relative; z-index: 1; }

/* the stage stops reading as a boxed panel on top of the field */
#departments .indStage {
  background: linear-gradient(168deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.018) 58%, rgba(124,44,230,.10) 100%) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 46px 96px -54px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.06) !important;
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
#departments .indTabs { border-bottom: 0 !important; }
#departments .indTab { border-bottom-color: transparent !important; }

/* ==========================================================
   DARK BLOCK SEAMS — three real edges, three real fades
   1. white (#work)      → dark (#impact)      : lead-in
   2. dark  (#impact)     → dark (#departments) : aurora ramp
   3. dark  (#departments)→ white (.authority)  : lead-out
   ========================================================== */

/* --- 1. white → dark lead-in above the impact section --- */
.impactEd { padding-top: 104px !important; }
@media (max-width: 760px) { .impactEd { padding-top: 76px !important; } }
.impactEd::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 104px;
  pointer-events: none; z-index: 0;
  background: linear-gradient(180deg,
    #fff 0%,
    rgba(248,247,252,.96) 26%,
    rgba(196,190,220,.55) 58%,
    rgba(28,22,56,.88) 86%,
    #06050c 100%);
}
@media (max-width: 760px) { .impactEd::before { height: 76px; } }

/* --- 2. impact → departments: carry the violet across the seam --- */
.impactEd::after {
  height: 260px !important;
  background: linear-gradient(180deg,
    rgba(6,5,12,0) 0%,
    rgba(46,20,104,.30) 46%,
    rgba(78,32,168,.46) 78%,
    rgba(10,8,24,1) 100%) !important;
}
/* and ramp the aurora in rather than switching it on at full power */
#departments::before {
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,.55) 96px, #000 208px);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,.55) 96px, #000 208px);
}

/* --- 3. dark → white lead-out below departments --- */
#departments { padding-bottom: 152px !important; }
@media (max-width: 760px) { #departments { padding-bottom: 104px !important; } }
#departments .indSeamOut {
  position: absolute; left: 0; right: 0; bottom: 0; height: 180px;
  pointer-events: none; z-index: 0;
  background: linear-gradient(180deg,
    rgba(10,8,24,0) 0%,
    rgba(48,36,102,.42) 34%,
    rgba(158,148,196,.62) 68%,
    rgba(250,249,252,.96) 90%,
    #fff 100%);
}
@media (max-width: 760px) { #departments .indSeamOut { height: 128px; } }
/* the grid overlay must not paint over the lead-out */
#departments::after {
  -webkit-mask-image: radial-gradient(ellipse 76% 58% at 50% 32%, #000 4%, transparent 72%);
  mask-image: radial-gradient(ellipse 76% 58% at 50% 32%, #000 4%, transparent 72%);
}

/* dark → white handoff: plain edge, no gradient band */
#departments .indSeamOut { display: none !important; }
#departments { padding-bottom: 100px !important; }
@media (max-width: 760px) { #departments { padding-bottom: 72px !important; } }

/* testimonial use-case tag */
.t2-uc { display: inline-block; font-family: var(--mono, monospace); font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--violet, #7c2ce6);
  padding: 7px 14px; border-radius: 100px; background: rgba(124,44,230,.09);
  border: 1px solid rgba(124,44,230,.20); margin-bottom: 22px; }

/* impact top edge: plain, no gradient fade */
.impactEd::before { display: none !important; }
.impactEd { padding-top: 96px !important; }
@media (max-width: 760px) { .impactEd { padding-top: 68px !important; } }

/* ==========================================================
   FOOTER v2 — flat editorial. No plates, pills, cards or
   oversized wordmark. Hairlines and type do the structuring.
   ========================================================== */
.ateam-lp footer.ftr { position: relative; overflow: hidden; isolation: isolate;
  background: #06050c !important; border-top: 0 !important; padding: 88px 0 30px !important; color: #fff; }
@media (max-width: 760px) { .ateam-lp footer.ftr { padding: 60px 0 24px !important; } }

.ftrAura { position: absolute; inset: 0; z-index: 0; pointer-events: none; contain: strict; }
.ftrOrb { position: absolute; border-radius: 50%; filter: blur(92px); will-change: transform; }
.ftrOrb.o1 { width: 600px; height: 600px; top: -310px; left: -150px;
  background: radial-gradient(circle, rgba(124,44,230,.44), rgba(124,44,230,0) 70%);
  animation: ftrDrift 28s ease-in-out infinite alternate; }
.ftrOrb.o2 { width: 460px; height: 460px; bottom: -280px; right: -130px;
  background: radial-gradient(circle, rgba(58,114,224,.26), rgba(58,114,224,0) 70%);
  animation: ftrDrift 34s ease-in-out infinite alternate-reverse; }
@media (prefers-reduced-motion: reduce) { .ftrOrb { animation: none !important; } }
.ftrIn { position: relative; z-index: 1; }

/* brand */
.ftrTop { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); gap: 60px;
  align-items: start; padding-bottom: 52px; }
@media (max-width: 900px) { .ftrTop { grid-template-columns: 1fr; gap: 38px; padding-bottom: 36px; } }
.ftrLogo { display: inline-block; background: none !important; border: 0 !important; box-shadow: none !important;
  padding: 0 !important; border-radius: 0 !important; transition: opacity .3s; }
.ftrLogo:hover { opacity: .74; }
.ftrLogo img { height: 42px; width: auto; display: block; }
.ftrTag { margin: 24px 0 0; max-width: 44ch; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.62); }
.ftrLive { display: flex; align-items: center; gap: 10px; margin: 18px 0 0;
  font-size: 13px; font-weight: 600; letter-spacing: .01em; color: rgba(255,255,255,.72); }
.ftrDot { width: 7px; height: 7px; border-radius: 50%; background: #4ad98a; flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(74,217,138,.16); }

/* next step — type only, no card */
.ftrNext { padding-top: 4px; }
@media (min-width: 901px) { .ftrNext { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.10); } }
.ftrNextK { display: block; font-family: var(--mono, monospace); font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 14px; }
.ftrNextH { margin: 0 0 22px; font-size: clamp(20px, 2.3vw, 26px); line-height: 1.24; font-weight: 700;
  letter-spacing: -.03em; color: #fff; max-width: 22ch; }
.ftrGo { display: inline-flex; align-items: center; gap: 11px; cursor: pointer; text-decoration: none;
  font-size: 15px; font-weight: 700; letter-spacing: -.012em;
  color: #fff !important; -webkit-text-fill-color: #fff;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.30);
  transition: gap .3s cubic-bezier(.22,1,.36,1), border-color .3s, color .3s; }
.ftrGo svg { width: 17px; height: 17px; flex: 0 0 auto; }
.ftrGo:hover { gap: 17px; border-bottom-color: #c9b8ff; color: #e6ddff !important; -webkit-text-fill-color: #e6ddff; }

/* columns */
.ftrMid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 40px;
  padding: 40px 0; border-top: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); }
@media (max-width: 760px) { .ftrMid { grid-template-columns: 1fr; gap: 28px; padding: 28px 0; } }
.ftrCol { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.ftrColK { font-family: var(--mono, monospace); font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.38); }
.ftrAddr { font-style: normal; margin: 0; font-size: 15px; line-height: 1.72; color: rgba(255,255,255,.76); }
.ftrLink { width: fit-content; font-size: 15px; color: rgba(255,255,255,.80); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 3px; transition: color .25s, border-color .25s; }
.ftrLink:hover { color: #fff; border-bottom-color: #c9b8ff; }
.ftrGeo { margin: 0; font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.76); }
.ftrGeo i { font-style: normal; color: rgba(201,184,255,.55); margin: 0 7px; }

/* legal */
.ftrBar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 26px; font-size: 12.5px; color: rgba(255,255,255,.40); }
@media (max-width: 560px) { .ftrBar { justify-content: flex-start; } }
