.elementor-549 .elementor-element.elementor-element-2818d4e{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */@import url("https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Cabinet+Grotesk:wght@300;400;500;700;800&display=swap");

/* ============================================================
   IMPERIAL ENGINEERS — DATA ANNOTATION PAGE v2
   Design language: High-trust B2B tech. Monochromatic base 
   (near-black) with electric teal accent. Editorial typesetting.
   Inspired by Scale AI / iMerit / Keymakr but distinctly owned.
   ============================================================ */

:root {
  --bg:        #080C10;
  --bg2:       #0D1219;
  --bg3:       #111820;
  --surface:   #161E28;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(0,210,150,0.18);
  --teal:      #00D296;
  --teal-dim:  rgba(0,210,150,0.12);
  --teal-glow: rgba(0,210,150,0.06);
  --white:     #FFFFFF;
  --white80:   rgba(255,255,255,0.80);
  --white50:   rgba(255,255,255,0.50);
  --white25:   rgba(255,255,255,0.25);
  --white10:   rgba(255,255,255,0.08);
  --amber:     #F5A623;
  --red-dim:   rgba(239,68,68,0.12);
  --red:       #EF4444;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white80);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY SCALE ---- */
.display {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 600;
  line-height: 1.00;
  letter-spacing: -0.035em;
  color: var(--white);
}

.heading-xl {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.15;
}

.heading-lg {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
}

.heading-md {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.body-lg { font-size: 18px; font-weight: 400; line-height: 1.75; }
.body-md { font-size: 16px; font-weight: 400; line-height: 1.70; }
.body-sm { font-size: 14px; line-height: 1.65; }
.label   { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- LAYOUT ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ---- EYEBROW PILL ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  background: var(--teal-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
}

.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2.5s ease infinite;
}

@keyframes blink {
  0%,100% { opacity:1; }
  50%      { opacity:0.3; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: #080C10;
  padding: 14px 28px;
}
.btn-primary:hover {
  background: #00F0AF;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0,210,150,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white80);
  padding: 13px 24px;
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  background: var(--white10);
}

.btn-arrow::after { content: ' →'; }

/* ---- SECTION SPACING ---- */
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  padding: 130px 0 100px;
  overflow: hidden;
}

/* Radial glow behind headline */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(0,210,150,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Dot-grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
}

.hero-left { }

.hero-pill { margin-bottom: 32px; }

.hero-headline { margin-bottom: 28px; }

.teal { color: var(--teal); }

.hero-sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white50);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-sub strong { color: var(--white80); font-weight: 500; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.proof-stat { }
.proof-number {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-label { font-size: 12px; color: var(--white50); margin-top: 3px; }

.proof-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* Hero right: annotation demo card */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hero-card-header {
  background: var(--bg3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.card-dots {
  display: flex; gap: 6px;
}
.card-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.card-dot:nth-child(1) { background: #FF5F57; }
.card-dot:nth-child(2) { background: #FFBD2E; }
.card-dot:nth-child(3) { background: #28CA41; }

.card-title {
  font-size: 12px;
  color: var(--white50);
  margin-left: 6px;
  font-family: 'Cabinet Grotesk', monospace;
}

.hero-card-body { padding: 24px; }

/* Simulated annotation viewport */
.annotation-viewport {
  background: #0A1520;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 20px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

/* Simulated street scene with annotation boxes */
.scene-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #1a2a3a 0%, #0d1a24 40%, #1a1a0d 100%);
}

/* Road */
.road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: #1a1a1a;
}
.road-line {
  position: absolute;
  top: 50%; left: 10%; right: 10%;
  height: 3px;
  background: repeating-linear-gradient(90deg, #f5a623 0px, #f5a623 20px, transparent 20px, transparent 40px);
}

/* Sky + buildings silhouette */
.buildings {
  position: absolute;
  bottom: 35%; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

/* Annotation boxes */
.anno-box {
  position: absolute;
  border: 2px solid;
  border-radius: 2px;
  display: flex;
  align-items: flex-start;
}

.anno-label-tag {
  position: absolute;
  top: -22px; left: -1px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 3px 3px 0 0;
  white-space: nowrap;
  font-family: monospace;
}

/* Box instances */
.anno-car1    { border-color:#00D296; top:38%; left:12%; width:22%; height:25%; }
.anno-car1 .anno-label-tag { background:#00D296; color:#080C10; }

.anno-car2    { border-color:#00D296; top:42%; left:58%; width:18%; height:22%; }
.anno-car2 .anno-label-tag { background:#00D296; color:#080C10; }

.anno-person1 { border-color:#60A5FA; top:28%; left:40%; width:8%; height:30%; }
.anno-person1 .anno-label-tag { background:#60A5FA; color:#080C10; }

.anno-sign    { border-color:#F5A623; top:18%; left:72%; width:10%; height:18%; }
.anno-sign .anno-label-tag { background:#F5A623; color:#080C10; }

/* Corner handles on first box to show detail */
.corner {
  position: absolute;
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 1px;
}
.corner.tl { top:-3px; left:-3px; }
.corner.tr { top:-3px; right:-3px; }
.corner.bl { bottom:-3px; left:-3px; }
.corner.br { bottom:-3px; right:-3px; }

/* Stats row under viewport */
.anno-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.anno-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.anno-stat-val {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}

.anno-stat-key {
  font-size: 10px;
  color: var(--white50);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* ======================================================
   TRUST BAR
   ====================================================== */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white25);
  white-space: nowrap;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white50);
  transition: color 0.2s;
}
.trust-item:hover { color: var(--white80); }

.trust-icon {
  width: 32px; height: 32px;
  background: var(--white10);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* ======================================================
   SERVICES GRID
   ====================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 60px;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-tile {
  background: var(--surface);
  padding: 32px 28px;
  position: relative;
  transition: background 0.25s;
  cursor: default;
}
.service-tile:hover {
  background: var(--bg3);
}

.service-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 1px;
  background: var(--border);
}

.service-icon-wrap {
  width: 44px; height: 44px;
  background: var(--teal-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid var(--border2);
  transition: all 0.25s;
}
.service-tile:hover .service-icon-wrap {
  background: rgba(0,210,150,0.2);
  transform: scale(1.05);
}

.service-tile h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-tile p {
  font-size: 14px;
  color: var(--white50);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--white10);
  color: var(--white50);
  border: 1px solid var(--border);
}

/* ======================================================
   WHY US — TWO COLUMN DEEP
   ====================================================== */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .why-layout { grid-template-columns: 1fr; gap: 50px; }
}

.why-left { }

.why-metric-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 40px;
}

.why-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}
.why-metric:first-child { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.why-metric:last-child  { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.why-metric + .why-metric { margin-top: -1px; }
.why-metric:hover { border-color: var(--border2); }

.metric-label { font-size: 15px; font-weight: 500; color: var(--white80); }
.metric-val {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.why-right { }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.why-point {
  display: flex;
  gap: 18px;
}

.why-check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--teal-dim);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--teal);
  margin-top: 2px;
}

.why-point-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.why-point-content p {
  font-size: 14px;
  color: var(--white50);
  line-height: 1.65;
}

/* ======================================================
   PROCESS — HORIZONTAL STEPS
   ====================================================== */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 60px;
}

@media (max-width: 800px) {
  .process-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .process-row { grid-template-columns: 1fr; }
}

.process-step {
  background: var(--surface);
  padding: 32px 24px;
  position: relative;
}

.step-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--white10);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.process-step h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--white50);
  line-height: 1.6;
}

/* ======================================================
   INDUSTRY VERTICALS — PILL CLOUD
   ====================================================== */
.verticals-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.vertical-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--white80);
  transition: all 0.2s;
  cursor: default;
}
.vertical-pill:hover {
  background: var(--bg3);
  border-color: var(--border2);
  color: var(--white);
}

.vertical-pill span:first-child { font-size: 16px; }

/* ======================================================
   FORMATS SUPPORTED — CODE-STYLE BLOCK
   ====================================================== */
.formats-block {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 60px;
}

.formats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.format-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white25);
  margin-bottom: 12px;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 700px) {
  .formats-grid { grid-template-columns: 1fr 1fr; }
}

.format-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.format-item {
  font-family: 'Cabinet Grotesk', monospace;
  font-size: 13px;
  color: var(--white50);
  display: flex;
  align-items: center;
  gap: 8px;
}

.format-item::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ======================================================
   COMPARISON TABLE
   ====================================================== */
.comparison-wrap {
  margin-top: 60px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table thead th {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--white50);
}

.comparison-table thead th.highlight {
  background: var(--teal-dim);
  color: var(--teal);
  border-color: var(--border2);
  border-radius: 10px 10px 0 0;
}

.comparison-table tbody tr { transition: background 0.15s; }
.comparison-table tbody tr:hover { background: var(--bg3); }

.comparison-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--white50);
  border-bottom: 1px solid var(--border);
}

.comparison-table td.row-label {
  font-weight: 600;
  color: var(--white80);
}

.comparison-table td.highlight {
  background: rgba(0,210,150,0.04);
  color: var(--teal);
  font-weight: 600;
  border-left: 1px solid var(--border2);
  border-right: 1px solid var(--border2);
}

.check-yes { color: var(--teal); }
.check-no  { color: var(--white25); }

/* ======================================================
   CTA SECTION
   ====================================================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(0,210,150,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.cta-border {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 72px 80px;
  text-align: center;
  overflow: hidden;
}

.cta-border::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.5;
}

.cta-headline {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-sub {
  font-size: 18px;
  color: var(--white50);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-reassurance {
  font-size: 13px;
  color: var(--white25);
}

/* ======================================================
   SECTION HEADERS
   ====================================================== */
.section-header { margin-bottom: 0; }
.section-header .pill { margin-bottom: 20px; }
.section-header .heading-xl { margin-bottom: 16px; }
.section-header .body-lg { color: var(--white50); max-width: 560px; }

/* ======================================================
   DIVIDER
   ====================================================== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ======================================================
   ANIMATIONS
   ====================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-pill     { animation: fadeUp 0.5s ease 0.0s both; }
.hero-headline { animation: fadeUp 0.5s ease 0.1s both; }
.hero-sub      { animation: fadeUp 0.5s ease 0.2s both; }
.hero-ctas     { animation: fadeUp 0.5s ease 0.3s both; }
.hero-proof    { animation: fadeUp 0.5s ease 0.4s both; }
.hero-card     { animation: fadeUp 0.55s ease 0.2s both; }/* End custom CSS */