@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap');

:root {
  --bg: #03050c;
  --bg-soft: #070b1a;
  --panel: rgba(8, 12, 28, 0.7);
  --panel-strong: #0a0f24;
  --line: rgba(99, 102, 241, 0.08);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --dim: #64748b;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --green: #10b981;
  --purple: #8b5cf6;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --surface: rgba(4, 6, 15, 0.6);
  --surface-strong: rgba(7, 10, 24, 0.85);
  --surface-glow: rgba(99, 102, 241, 0.15);
  --soft-line: rgba(255, 255, 255, 0.04);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  --radius: 12px;
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  background: 
    radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.12), transparent 45rem),
    radial-gradient(circle at 90% 15%, rgba(6, 182, 212, 0.06), transparent 40rem),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.08), transparent 50rem),
    #02040a;
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
  opacity: 0.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  font: inherit;
}

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

/* Custom Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 32rem;
  height: 32rem;
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 35%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
  filter: blur(15px);
  opacity: 0.45;
}

.site-shell {
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow-x: hidden;
}

/* Header & Nav */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: center;
  padding: 0 max(24px, calc((100% - 1200px) / 2));
  transform: none;
  border-radius: 0;
  background: rgba(3, 5, 12, 0.4);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  top: 0;
  height: 64px;
  background: rgba(3, 5, 12, 0.8);
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.9;
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.4));
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navigation-panel {
  display: contents;
}

.main-nav a {
  position: relative;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a.is-active {
  color: var(--cyan);
}

.header-actions,
.lang-switch,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.lang-switch button {
  width: 32px;
  height: 26px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch button:hover {
  color: #fff;
}

.lang-switch button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Premium Buttons */
.header-cta,
.primary-btn,
.secondary-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-cta {
  min-height: 38px;
  height: 38px;
  padding: 0 16px;
  color: #03050c;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

.header-cta:hover {
  transform: none;
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.primary-btn {
  padding: 0 24px;
  color: #030611;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.secondary-btn {
  padding: 0 24px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.primary-btn:hover .btn-icon {
  transform: translate(2px, -2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: 56px;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 140px 0 32px;
}

.hero > * {
  min-width: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.mesh-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.15) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, black 15%, transparent 70%);
  animation: gridDrift 30s linear infinite;
}

.signal, .orbit {
  position: absolute;
  border-radius: 50%;
}

.signal {
  width: 8px;
  height: 8px;
  opacity: 0.7;
}

.signal-a { left: 15%; top: 25%; background: var(--green); box-shadow: 0 0 20px var(--green); animation: signalPulse 4s infinite; }
.signal-b { left: 55%; top: 15%; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); animation: signalPulse 4s infinite 1.5s; }
.signal-c { left: 78%; top: 60%; background: var(--purple); box-shadow: 0 0 20px var(--purple); animation: signalPulse 4s infinite 3s; }

.orbit {
  border: 1px solid rgba(99, 102, 241, 0.08);
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.02);
  animation: rotateOrbit 30s linear infinite;
}

.orbit-one { width: 600px; height: 600px; right: -150px; top: 100px; }
.orbit-two { width: 400px; height: 400px; left: -100px; bottom: -50px; animation-duration: 40s; animation-direction: reverse; }

/* Hero Text & Slider */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  text-transform: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-title {
  max-width: 660px;
}

.hero-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-proof {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.proof-item {
  position: relative;
  min-height: 108px;
  padding: 18px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(8, 12, 28, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.proof-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.35);
}

.proof-item strong {
  display: block;
  margin-top: 22px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-slider {
  width: 100%;
  max-width: 680px;
  min-width: 0;
  min-height: 230px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}

.hero-actions {
  margin-top: 28px;
}

.slider-kicker {
  display: inline-flex;
  grid-row: 1;
  grid-column: 1;
  justify-self: start;
  align-self: start;
  margin: 0 0 20px;
  padding: 6px 14px;
  border-radius: 99px;
  color: var(--text);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
  background: linear-gradient(135deg, #fff 40%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider-content-wrap h2 {
  max-width: 620px;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-slider p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

#slideKicker {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: 
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-content-wrap,
.slider-stats-wrap {
  grid-row: 2;
  grid-column: 1;
  width: 100%;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  filter: blur(8px);
  visibility: hidden;
  pointer-events: none;
  transition: 
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active State Styles */
.hero-slider:not([data-active-slide="3"]) .slider-content-wrap,
.hero-slider[data-active-slide="3"] .slider-stats-wrap {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  visibility: visible;
  pointer-events: auto;
}

/* Switching Transitions override */
.hero-slider.is-switching #slideKicker {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(6px);
  transition: 
    opacity 0.28s ease-in,
    transform 0.28s ease-in,
    filter 0.28s ease-in;
}

.hero-slider.is-switching .slider-content-wrap,
.hero-slider.is-switching .slider-stats-wrap {
  opacity: 0 !important;
  transform: translateY(12px) scale(0.985) !important;
  filter: blur(6px) !important;
  transition: 
    opacity 0.28s ease-in,
    transform 0.28s ease-in,
    filter 0.28s ease-in;
}

.slider-stats-wrap {
  margin-top: 24px;
}

.stats-description {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(99, 102, 241, 0.15);
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(99, 102, 241, 0.05);
}

.stat-item strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #fff 40%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 11px;
  font-weight: 700;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}


.slide-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.slide-dots button {
  width: 32px;
  height: 6px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-dots button.is-active {
  width: 54px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

/* Hero Console Terminal */
.hero-console {
  position: relative;
  align-self: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-radius: var(--radius);
  background: rgba(8, 12, 28, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 50px rgba(99, 102, 241, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  overflow: hidden;
  animation: consoleFloat 8s ease-in-out infinite;
}

.console-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  background: rgba(4, 6, 15, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--dim);
  font-size: 12px;
  font-weight: 600;
  font-family: monospace;
}

.console-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.console-bar span:nth-child(1) { background: var(--rose); }
.console-bar span:nth-child(2) { background: var(--amber); }
.console-bar span:nth-child(3) { background: var(--green); }
.console-bar strong {
  margin-left: auto;
  letter-spacing: 0.05em;
}

.console-body {
  position: relative;
  min-height: 440px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}

.console-logs {
  position: absolute;
  inset: 20px 20px 220px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  color: rgba(6, 182, 212, 0.5);
  pointer-events: none;
}

.log-line {
  opacity: 0;
  transform: translateY(10px);
  animation: logEnter 0.4s forwards ease;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.log-line.success { color: rgba(16, 185, 129, 0.65); }
.log-line.warn { color: rgba(245, 158, 11, 0.65); }

.live-card {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  background: rgba(4, 6, 15, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.live-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-card strong {
  display: block;
  margin-top: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-one {
  width: 85%;
  padding: 16px 20px;
  animation: cardDrift 8s ease-in-out infinite;
}

.card-two {
  width: 75%;
  margin-left: auto;
  padding: 16px;
  animation: cardDrift 8s ease-in-out infinite reverse;
}

.progress-line {
  height: 6px;
  margin-top: 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.progress-line span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  animation: progressPulse 3s ease-in-out infinite;
}

.card-two ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.card-two li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-two li span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.node-map {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.node-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 20px var(--blue);
}

.node-map span::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.3);
  animation: nodePulse 2s infinite ease-out;
}

.node-map span:nth-child(2n) { background: var(--green); box-shadow: 0 0 20px var(--green); }
.node-map span:nth-child(2n)::after { border-color: rgba(16, 185, 129, 0.3); animation-delay: 0.5s; }
.node-map span:nth-child(3n) { background: var(--purple); box-shadow: 0 0 20px var(--purple); }
.node-map span:nth-child(3n)::after { border-color: rgba(139, 92, 246, 0.3); animation-delay: 1s; }

/* Experience Slider Focus Strip */
.hero-focus-strip {
  grid-column: 1 / -1;
  margin-top: 40px;
}

.focus-title {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.focus-track {
  position: relative;
  min-height: 420px;
  display: block;
  padding: 28px 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
}

.focus-track::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(560px, 54vw);
  height: min(250px, 50%);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.15), transparent 46%),
    conic-gradient(from 20deg, transparent 0 14%, rgba(94, 234, 212, 0.34) 20%, transparent 31% 56%, rgba(99, 102, 241, 0.26) 66%, transparent 76% 100%);
  filter: blur(0.5px);
  opacity: 0.56;
  clip-path: ellipse(48% 46% at 50% 50%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 54%, transparent 74%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 54%, transparent 74%);
  pointer-events: none;
  z-index: 1;
  animation: focusOrbitSpin 16s linear infinite;
}

.focus-track::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 48vw);
  height: min(250px, 56%);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(94, 234, 212, 0.18);
  box-shadow:
    0 0 70px rgba(6, 182, 212, 0.12),
    inset 0 0 60px rgba(99, 102, 241, 0.055);
  pointer-events: none;
  z-index: 2;
}

.focus-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(250px, 23vw);
  border: 0;
  outline: none;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(8, 12, 28, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  cursor: pointer;
  transform-origin: center center;
  will-change: transform, opacity, filter;
  backdrop-filter: blur(18px);
  transition:
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.55s ease,
    background 0.55s ease,
    box-shadow 0.55s ease;
}

.focus-item.is-active {
  width: min(520px, 46vw);
  min-height: 270px;
  padding: 34px;
  background:
    radial-gradient(circle at 80% 0%, rgba(94, 234, 212, 0.22), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(9, 14, 32, 0.82);
  border-color: rgba(94, 234, 212, 0.36);
  box-shadow: 
    0 40px 110px rgba(0, 0, 0, 0.58),
    0 0 70px rgba(6, 182, 212, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
  z-index: 5;
}

.focus-item.is-active::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(94, 234, 212, 0.18) 42%, transparent 58%);
  opacity: 0.82;
  pointer-events: none;
  animation: focusSheen 4.2s ease-in-out infinite;
}

.focus-item.is-near {
  opacity: 0.78;
  z-index: 3;
}

.focus-item.is-edge {
  opacity: 0.44;
  z-index: 2;
}

.focus-item.is-left-near {
  transform: translate(calc(-50% - 335px), calc(-50% + 76px)) scale(0.92);
  filter: blur(0);
}

.focus-item.is-right-near {
  transform: translate(calc(-50% + 335px), calc(-50% - 72px)) scale(0.92);
  filter: blur(0);
}

.focus-item.is-left-edge {
  transform: translate(calc(-50% - 500px), calc(-50% - 34px)) scale(0.78);
  filter: none;
}

.focus-item.is-right-edge {
  transform: translate(calc(-50% + 500px), calc(-50% + 76px)) scale(0.78);
  filter: none;
}

.focus-name {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--muted);
  line-height: 1.3;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.focus-item.is-active .focus-name {
  font-size: 32px;
  color: #fff;
  margin-bottom: 14px;
}

.focus-copy {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 8px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.focus-track.is-updating .focus-name,
.focus-track.is-updating .focus-copy {
  opacity: 0;
  transform: translateY(6px);
}

.focus-item:not(.is-active) .focus-copy {
  display: none;
}

@keyframes focusOrbitSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes focusSheen {
  0%, 45% { transform: translateX(-110%); opacity: 0; }
  65% { opacity: 0.7; }
  100% { transform: translateX(110%); opacity: 0; }
}

/* Sections General */
.section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0;
}

.services {
  padding-top: 40px;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  margin: 12px 0 0;
  background: linear-gradient(135deg, #fff 60%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Services section */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--local-m-x, 50%) var(--local-m-y, 0), rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(99, 102, 241, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #030611;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
  margin-bottom: 40px;
}

.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Projects section */
.projects {
  background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.05), transparent 40rem);
}

.project-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 0;
}

.project-card.large {
  grid-row: span 2;
}

.project-card.wide {
  grid-column: span 2;
}

@media (min-width: 981px) {
  .project-card.wide {
    flex-direction: row;
  }
  .project-card.wide .project-media {
    width: 50%;
    min-height: 380px;
    flex: 1 1 auto;
  }
  .project-card.wide .project-info {
    width: 50%;
    flex: 1 1 auto;
    justify-content: center;
  }
}

.project-card:hover {
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(99, 102, 241, 0.06);
}

.project-media {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: 
    radial-gradient(circle at var(--local-m-x, 50%) var(--local-m-y, 50%), rgba(99, 102, 241, 0.15), transparent 18rem),
    rgba(6, 8, 20, 0.7);
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
}

.project-card.large .project-media {
  min-height: 480px;
}

/* Mockups Styling */
.mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: var(--radius);
  background: rgba(8, 12, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: perspective(1000px) rotateX(2deg) rotateY(-3deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 0;
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}


.project-card:hover .mockup {
  transform: perspective(1000px) rotateX(0) rotateY(0) translateY(-5px);
  border-color: rgba(255, 255, 255, 0.12);
}

.mockup-top {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: rgba(4, 6, 15, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-top .circles {
  display: flex;
  gap: 6px;
}

.mockup-top .circles span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.status-indicator.live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.status-indicator.live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: signalPulse 2s infinite;
}

/* Onkasan Dashboard Mockup */
.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 16px 8px;
}

.stat-card {
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.stat-label {
  display: block;
  font-size: 10px;
  color: var(--dim);
  text-transform: uppercase;
}

.stat-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.stat-value small {
  font-size: 10px;
  font-weight: 600;
}

.stat-value small.trend.up { color: var(--green); }
.stat-value small.status.ok {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
  padding: 2px 4px;
  border-radius: 4px;
}

.sensor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 8px 16px;
}

.sensor-node {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.sensor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.node-id {
  font-family: monospace;
  font-size: 9px;
  color: var(--dim);
}

.sensor-node .badge {
  font-size: 8px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
}

.sensor-node.normal .badge { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.sensor-node.alert .badge { background: rgba(245, 158, 11, 0.1); color: var(--amber); }
.sensor-node.critical .badge { background: rgba(244, 63, 94, 0.1); color: var(--rose); }

.read-value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.read-value small {
  font-size: 11px;
  color: var(--muted);
}

.read-label {
  display: block;
  font-size: 10px;
  color: var(--dim);
}

.mockup-chart-container {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 9px;
  color: var(--dim);
  height: 60px;
}

.mockup-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 60px;
  padding-bottom: 2px;
}

.mockup-chart .bar {
  width: 12%;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.mockup-chart .bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  transform-origin: bottom;
  animation: barWave 3s ease-in-out infinite;
}

/* LogisticHub Map Mockup */
.map-overlay {
  position: relative;
  height: 220px;
  background: 
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08) 5rem, transparent 15rem),
    rgba(5, 7, 16, 0.6);
  padding: 16px;
}

.route-line-glowing {
  position: absolute;
  inset: 0;
}

.map-svg {
  width: 100%;
  height: 100%;
}

.active-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: pathDraw 6s linear infinite;
}

.map-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-pin.start { background: var(--green); box-shadow: 0 0 10px var(--green); }
.map-pin.end { background: var(--rose); box-shadow: 0 0 10px var(--rose); }
.map-pin.current {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.map-pin.current .ping {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  animation: nodePulse 1.8s infinite ease-out;
}

.shipment-cards-container {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

.shipment-cards-container .shipment-card {
  flex: 1;
  background: rgba(4, 6, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.shipment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shipment-header strong {
  font-size: 13px;
  color: #fff;
}

.shipment-card .badge {
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
}
.shipment-card .badge.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.shipment-card .badge.blue { background: rgba(59, 130, 246, 0.1); color: var(--blue); }

.shipment-card small {
  display: block;
  font-size: 9px;
  color: var(--dim);
  margin-top: 4px;
}

.progress-bar-small {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  margin-top: 6px;
  overflow: hidden;
}

.progress-bar-small span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

/* Megaman Mobile app mockup */
.phone-frame {
  width: 200px;
  margin: 0 auto;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #03050c;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 12px;
  border-radius: 99px;
  background: #000;
  z-index: 10;
}

.phone-content {
  padding: 16px 10px 10px;
  background: #040714;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 10px;
  color: var(--dim);
}

.phone-header strong {
  font-size: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--muted);
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.phone-stat {
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.phone-stat .val {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.phone-stat .lbl {
  display: block;
  font-size: 8px;
  color: var(--dim);
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.task-item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 800;
}

.task-item.checked .checkbox {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.task-item.active .checkbox.spinner {
  border: 1px solid var(--cyan);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinnerRotate 1s linear infinite;
}

.task-item.pending .checkbox.empty {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.task-desc {
  flex: 1;
  min-width: 0;
}

.task-title {
  display: block;
  font-size: 9px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-meta {
  display: block;
  font-size: 7px;
  color: var(--dim);
}

.team-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 8px;
}

.team-avatars {
  display: flex;
  align-items: center;
}

.team-avatars .avatar,
.team-avatars .avatar-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 6px;
  font-weight: 700;
  border: 1px solid #040714;
  margin-right: -4px;
}

.team-avatars .avatar-more {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.circular-progress-mini {
  width: 22px;
  height: 22px;
}

.circular-chart {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.circular-chart .circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 3.8;
}

.circular-chart .circle {
  fill: none;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke: var(--cyan);
}

/* Info container under mockups */
.project-info {
  padding: 24px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}

.project-info span[data-i18n] {
  display: inline-flex;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.project-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 10px;
}

.project-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.project-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
  margin: 24px 0 0;
  margin-top: auto;
}

.project-info li {
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: var(--muted);
}

/* Process Timeline Section */
.process-panel {
  position: relative;
  border-radius: 24px;
  background: rgba(8, 12, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: 50px;
  overflow: hidden;
}

.process-panel::before {
  content: "";
  position: absolute;
  inset: -100px 0 auto;
  height: 250px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.05), transparent 70%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
}

.timeline::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.timeline article {
  position: relative;
  z-index: 2;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.timeline article:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(99, 102, 241, 0.15);
}

.timeline span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-family: monospace;
  font-size: 12px;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  margin-bottom: 24px;
}

.timeline h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px;
}

.timeline p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Stack strip */
.stack {
  padding-top: 0;
}

.tech-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  /* Mask gradient for smooth fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent, #fff 15%, #fff 85%, transparent);
  mask-image: linear-gradient(to right, transparent, #fff 15%, #fff 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.tech-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  user-select: none;
}

.tech-pill:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.tech-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}

.tech-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: inherit;
  filter: blur(4px);
  opacity: 0.7;
}

.tech-dot.flutter { background: #02acf5; }
.tech-dot.firebase { background: #ffca28; }
.tech-dot.node { background: #43a047; }
.tech-dot.esp { background: #e73c30; }
.tech-dot.react { background: #00d8ff; }
.tech-dot.postgres { background: #2f6792; }
.tech-dot.cpp { background: #00599c; }
.tech-dot.docker { background: #2496ed; }
.tech-dot.websockets { background: #ff4081; }
.tech-dot.rest { background: #ff9800; }
.tech-dot.ios { background: #ffffff; }

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

/* Blog section */
.blog-section {
  padding-top: 40px;
}

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

.blog-card {
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.blog-card span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  margin: 16px 0 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.blog-card a {
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  padding-top: 28px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.blog-card a::after {
  content: "↗";
  margin-left: 8px;
  color: var(--cyan);
}

/* Article pages */
.article-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 96px;
}

.article-hero {
  max-width: 880px;
  margin-bottom: 56px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.article-back:hover {
  color: #fff;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.article-meta li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 99px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 700;
}

.article-hero h1 {
  max-width: 860px;
  font-size: 54px;
}

.article-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.article-content {
  min-width: 0;
  padding: 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.article-content h2 {
  margin: 38px 0 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.article-content ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.article-content li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.article-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.28);
}

.article-note {
  margin: 34px 0;
  padding: 22px;
  border-left: 3px solid var(--cyan);
  border-radius: 10px;
  color: #dce7f5;
  background: rgba(6, 182, 212, 0.055);
}

.article-note p {
  margin: 0;
  color: #dce7f5;
}

.article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.aside-panel,
.article-cta {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.aside-panel strong,
.article-cta strong {
  display: block;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
}

.aside-panel a {
  display: block;
  padding: 11px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.aside-panel a:hover {
  color: #fff;
}

.article-cta p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.article-cta .primary-btn {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}


/* Contact section */
.contact {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 100px;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 40px;
  padding: 50px;
  border-radius: 20px;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 88% 22%, rgba(6, 182, 212, 0.12), transparent 18rem),
    radial-gradient(circle at 12% 85%, rgba(16, 185, 129, 0.08), transparent 20rem),
    rgba(8, 12, 28, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(30px);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 50px;
  width: 90px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.28);
}

.contact-card h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.contact-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.contact-actions .primary-btn,
.contact-actions .secondary-btn {
  width: 100%;
  min-height: 62px;
  justify-content: center;
  border-radius: 10px;
  font-size: 15px;
}

.contact-actions .secondary-btn {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Footer */
.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  font-size: 20px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer a {
  transition: color 0.2s ease;
}

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

/* Reveal entry/exit transition animations */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition: 
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Keyframes */
@keyframes gridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(64px, 64px, 0); }
}

@keyframes signalPulse {
  0% { transform: scale(1); opacity: 0.5; box-shadow: 0 0 10px currentColor; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 25px currentColor; }
  100% { transform: scale(1); opacity: 0.5; box-shadow: 0 0 10px currentColor; }
}

@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes consoleFloat {
  0%, 100% { transform: translateY(0) rotateX(1deg) rotateY(-1deg); }
  50% { transform: translateY(-8px) rotateX(2deg) rotateY(1deg); }
}

@keyframes cardDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -6px, 0); }
}

@keyframes progressPulse {
  0%, 100% { width: 70%; }
  50% { width: 85%; }
}

@keyframes nodePulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes barWave {
  0%, 100% { transform: scaleY(0.75); }
  50% { transform: scaleY(1); }
}

@keyframes pathDraw {
  0% { stroke-dashoffset: 400; }
  70%, 100% { stroke-dashoffset: 0; }
}

@keyframes spinnerRotate {
  to { transform: rotate(360deg); }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Responsiveness Media Queries */
@media (max-width: 980px) {
  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    grid-template-columns: auto auto;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0 20px;
    transform: none;
    background: rgba(3, 5, 12, 0.6);
  }

  .site-header::before {
    content: "";
    position: fixed;
    z-index: 52;
    inset: 64px 0 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 0, rgba(6, 182, 212, 0.12), transparent 28rem),
      rgba(2, 4, 10, 0.88);
    opacity: 0;
    backdrop-filter: blur(0);
    transition: opacity 0.24s ease, backdrop-filter 0.24s ease;
  }

  .menu-open .site-header::before {
    opacity: 1;
    backdrop-filter: blur(12px);
  }

  .site-header.is-scrolled {
    top: 0;
    height: 56px;
    background: rgba(3, 5, 12, 0.85);
  }

  .brand {
    z-index: 62;
  }

  .menu-toggle {
    display: block;
    z-index: 62;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .navigation-panel {
    position: fixed;
    z-index: 60;
    top: 80px;
    left: clamp(18px, 5vw, 28px);
    right: clamp(18px, 5vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: calc(100svh - 104px);
    padding: 18px;
    overflow-y: auto;
    background:
      linear-gradient(145deg, rgba(12, 16, 34, 0.98), rgba(4, 7, 17, 0.96)),
      rgba(5, 8, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    box-shadow:
      0 34px 80px rgba(0, 0, 0, 0.78),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .menu-open .navigation-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .navigation-panel .main-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .navigation-panel .main-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    color: #d8e2f0;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.035);
  }

  .navigation-panel .main-nav a:hover,
  .navigation-panel .main-nav a.is-active {
    color: #ffffff;
    background: rgba(6, 182, 212, 0.11);
    border-color: rgba(6, 182, 212, 0.22);
  }

  .navigation-panel .header-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .navigation-panel .header-cta {
    min-height: 48px;
    height: 48px;
    padding: 0 18px;
  }

  .navigation-panel .header-cta:only-child {
    width: 100%;
  }

  .navigation-panel .lang-switch {
    min-height: 48px;
    padding: 4px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 130px;
    text-align: center;
    gap: 32px;
  }

  h1 {
    font-size: 52px;
  }

  .section-head h2 {
    font-size: 40px;
  }

  .contact-card h2 {
    font-size: 36px;
  }

  .hero-copy {
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slider {
    max-width: 680px;
    min-height: 240px;
  }

  .slider-kicker {
    justify-self: center;
  }

  .slide-dots {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 16px;
    width: 100%;
  }

  .hero-console {
    max-width: 500px;
    width: 100%;
  }

  .hero-focus-strip,
  .service-grid,
  .timeline,
  .project-showcase,
  .blog-grid,
  .article-layout,
  .contact-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .article-shell {
    padding-top: 116px;
  }

  .article-aside {
    position: static;
  }

  .project-card.wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
  }

  .site-footer {
    text-align: center;
    gap: 16px;
  }
  
  .site-footer div {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-gutter: clamp(22px, 6.4vw, 30px);
  }

  .cursor-glow,
  .orbit {
    display: none;
  }

  .site-header {
    top: 0;
    width: 100%;
    height: 64px;
    padding: 0 var(--mobile-gutter);
    border-radius: 0;
  }

  .brand {
    gap: 8px;
    font-size: 19px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

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

  .hero {
    width: calc(100% - (var(--mobile-gutter) * 2));
    padding-top: 110px;
    gap: 28px;
    overflow: hidden;
  }

  .hero-title,
  .hero-lead,
  .hero-proof {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 38px;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .proof-item {
    min-height: 78px;
    padding: 14px 12px;
    text-align: center;
  }

  .proof-item:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 72px;
  }

  .proof-item::before {
    left: 50%;
    top: 12px;
    width: 24px;
    transform: translateX(-50%);
  }

  .proof-item strong {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.2;
  }

  .proof-item span {
    display: none;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .contact-card h2 {
    font-size: 30px;
  }

  .hero-slider {
    min-height: 260px;
  }

  .slider-content-wrap h2 {
    font-size: 24px;
  }

  .hero-slider p:last-child,
  .stats-description {
    font-size: 15px;
  }

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

  .stat-item {
    padding: 12px 16px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .stat-item strong {
    margin-bottom: 0;
    font-size: 26px;
  }

  .stat-item span {
    font-size: 11px;
    text-align: right;
  }

  .hero-actions, .contact-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-console {
    width: 100%;
    max-width: 100%;
    animation: none;
    border-radius: 16px;
  }

  .console-body {
    min-height: 360px;
    padding: 18px;
  }

  .console-logs {
    inset: 18px 18px 190px;
  }

  .card-one,
  .card-two {
    width: 100%;
    margin-left: 0;
    animation: none;
  }

  .card-two ul {
    grid-template-columns: 1fr;
  }

  .focus-track {
    min-height: 360px;
    overflow: hidden;
    padding: 12px 0 18px;
    border-radius: 20px;
  }

  .focus-track::before {
    top: 51%;
    width: 82%;
    height: 50%;
    border-radius: 999px;
  }

  .focus-track::after {
    width: 76%;
    height: 58%;
  }

  .focus-item {
    width: 42%;
    min-height: 94px;
    padding: 12px;
    border-radius: 12px;
  }

  .focus-item.is-active {
    width: 78%;
    min-height: 190px;
    padding: 22px 18px;
    transform: translate(-50%, -50%) scale(1);
  }

  .focus-item.is-near {
    width: 42%;
    opacity: 0.7;
  }

  .focus-item.is-edge {
    display: flex;
    width: 34%;
    opacity: 0.28;
  }

  .focus-item.is-left-near {
    transform: translate(calc(-50% - 108px), calc(-50% - 116px)) scale(0.82);
  }

  .focus-item.is-right-near {
    transform: translate(calc(-50% + 108px), calc(-50% + 116px)) scale(0.82);
  }

  .focus-item.is-left-edge {
    transform: translate(calc(-50% - 132px), calc(-50% + 86px)) scale(0.74);
    filter: none;
  }

  .focus-item.is-right-edge {
    transform: translate(calc(-50% + 132px), calc(-50% - 86px)) scale(0.74);
    filter: none;
  }

  .focus-name,
  .focus-item.is-active .focus-name {
    font-size: 16px;
  }

  .focus-copy {
    font-size: 12px;
  }

  .section, .contact, .site-footer {
    width: calc(100% - (var(--mobile-gutter) * 2));
    padding: 60px 0;
  }

  .article-shell {
    width: calc(100% - (var(--mobile-gutter) * 2));
    padding: 104px 0 64px;
  }

  .article-hero {
    margin-bottom: 32px;
  }

  .article-hero h1 {
    font-size: 34px;
  }

  .article-lead {
    font-size: 16px;
  }

  .article-content {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .article-content h2 {
    font-size: 23px;
  }

  .service-card {
    min-height: 260px;
    padding: 24px;
  }

  .service-icon {
    margin-bottom: 24px;
  }

  .project-media,
  .project-card.large .project-media {
    min-height: 240px;
    padding: 20px;
  }

  .mockup {
    transform: none;
  }

  .dashboard-stats,
  .sensor-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: 170px;
  }

  .timeline::after {
    display: none;
  }

  .timeline article {
    padding: 16px;
  }

  .timeline span {
    margin-bottom: 12px;
  }

  .process-panel, .contact-card {
    padding: 24px;
  }

  .blog-card {
    min-height: 0;
    padding: 24px;
  }

  .blog-card h3 {
    font-size: 20px;
  }
}

/* DepGroup Scaffold Calculator Mockup */
.mockup-depgroup {
  background: rgba(12, 18, 38, 0.9);
  border-color: rgba(99, 102, 241, 0.15);
}

.calculator-panel {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.calc-header {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.calc-row {
  display: flex;
  gap: 10px;
}

.calc-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 6px 10px;
}

.calc-input.full {
  width: 100%;
}

.calc-input small {
  display: block;
  font-size: 8px;
  color: var(--dim);
  text-transform: uppercase;
}

.calc-input strong {
  display: block;
  font-size: 12px;
  color: var(--cyan);
  margin-top: 2px;
}

.calc-result {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-result small {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
}

.calc-result strong {
  font-size: 16px;
  color: var(--green);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}

.calc-btn {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #030611;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.calc-btn:hover {
  opacity: 0.9;
}

/* Pol-Global Construction Mockup */
.mockup-polglobal {
  background: rgba(15, 15, 25, 0.9);
  border-color: rgba(244, 63, 94, 0.15);
}

/* Yılmaz Oto Mockup */
.mockup-yilmazoto {
  background: rgba(6, 8, 20, 0.95);
  border-color: rgba(59, 130, 246, 0.15);
}


.contracts-panel {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.contracts-panel .contract-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 10px 12px;
}

.contracts-panel .contract-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.contracts-panel .contract-header strong {
  font-size: 11px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.contracts-panel .badge {
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
}

.contracts-panel .badge.completed {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.contracts-panel .badge.active {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
}

.contract-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.contract-metrics .metric {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
}

.contract-metrics .m-val {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--rose);
}

.contract-metrics .m-lbl {
  display: block;
  font-size: 8px;
  color: var(--dim);
}
