:root {
  --ink: #f4f6fa;
  --ink-2: #e8ecf4;
  --ink-3: #dce2ee;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: rgba(15, 23, 42, 0.08);
  --line-light: rgba(15, 23, 42, 0.06);
  --accent: #4f6ef7;
  --accent-2: #7c3aed;
  --accent-glow: rgba(79, 110, 247, 0.12);
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #f1f5f9;
  --white: #0f172a;
  --white-dim: #475569;
  --code-bg: #1e2433;
  --code-surface: #252d3d;
  --grad: linear-gradient(135deg, #4f6ef7 0%, #7c3aed 100%);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #f7f8fc;
}

body {
  background: #f7f8fc;
  background: var(--ink);
  color: #0f172a;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* --- HEADER / NAV --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
  transition: padding 0.3s ease;
}

.nav-drawer {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.logo-icon--footer {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.logo-text span { display: block; font-size: 11px; font-weight: 400; color: var(--muted-2); letter-spacing: 0.06em; text-transform: uppercase; }

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--grad);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* --- HERO --- */
#hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 5rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--ink) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 80%);
  opacity: 0.5;
}

.hero-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  top: -100px; right: -150px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  bottom: 0; left: -80px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,110,247,0.1);
  border: 1px solid rgba(79,110,247,0.25);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 12.5px;
  color: #4338ca;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #4f6ef7;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 26rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 1.875rem;
    max-width: 28rem;
  }
}
.hero-title .accent-word {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
  font-weight: 600;
}

.hero-sub {
  font-size: 17px;
  color: var(--white-dim);
  max-width: 520px;
  margin-top: 1.25rem;
  font-weight: 400;
  line-height: 1.75;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(79,110,247,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,110,247,0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white-dim);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: rgba(79, 110, 247, 0.35);
  color: var(--white);
  background: rgba(79, 110, 247, 0.04);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-item {}
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.stat-num span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

/* Hero visual */
.hero-visual {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  animation: fadeUp 0.9s 0.35s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- SECTIONS COMMON --- */
section {
  padding: 6rem 4rem;
  position: relative;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4f6ef7;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 16.5px;
  color: var(--white-dim);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.8;
}

/* --- ABOUT --- */
#about { background: var(--surface); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.feature-chip {
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.feature-chip-icon {
  width: 32px; height: 32px;
  background: rgba(79,110,247,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.feature-chip-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.feature-chip-text strong { display: block; color: var(--white); font-size: 13.5px; font-weight: 500; margin-bottom: 2px; }

.about-visual {
  position: relative;
}
.globe-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}
.globe-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(79,110,247,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.globe-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.location-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.location-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.875rem 1rem;
  background: var(--surface-3);
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}
.location-item:hover { border-color: rgba(79,110,247,0.3); }
.loc-flag { font-size: 24px; line-height: 1; }
.loc-info { flex: 1; }
.loc-name { font-size: 14px; font-weight: 500; color: var(--white); }
.loc-role { font-size: 12px; color: var(--muted); margin-top: 1px; }
.loc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}

/* --- SERVICES --- */
#services { background: var(--ink); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}
.service-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover { background: var(--surface-2); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(79,110,247,0.15);
}
.service-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.25rem;
}
.tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(79,110,247,0.1);
  color: #4338ca;
  border: 1px solid rgba(79, 110, 247, 0.2);
  letter-spacing: 0.03em;
}

/* --- HOW WE WORK --- */
#process { background: var(--surface); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--muted-2);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.process-step:hover .step-num {
  background: rgba(79, 110, 247, 0.1);
  color: #4338ca;
  border-color: rgba(79, 110, 247, 0.35);
}
.step-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
.step-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* --- TECHNOLOGIES --- */
#tech { background: var(--ink); overflow: hidden; }
.tech-track-wrap {
  margin-top: 3rem;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.tech-track-wrap.is-dragging {
  cursor: grabbing;
}
.tech-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}
.tech-track.is-css-scroll {
  animation: scroll-left 28s linear infinite;
}
.tech-track-wrap:hover .tech-track.is-css-scroll,
.tech-track-wrap.is-dragging .tech-track.is-css-scroll,
.tech-track-wrap.is-interactive .tech-track.is-css-scroll {
  animation-play-state: paused;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.6rem 1.25rem;
  font-size: 13.5px;
  color: var(--muted);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.tech-pill:hover { border-color: rgba(79,110,247,0.35); color: var(--white); }
.tech-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* --- TEAM / CONTACT --- */
#contact { background: var(--surface); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(79,110,247,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.contact-detail-text {}
.contact-detail-label { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-detail-val { font-size: 15px; color: var(--white); margin-top: 2px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.team-card {
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.team-card:hover { border-color: rgba(79,110,247,0.3); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #a5b4fc;
  position: relative;
  overflow: hidden;
}
.team-avatar-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79,110,247,0.2), rgba(124,58,237,0.2));
}
.team-name {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.team-role { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(79,110,247,0.08);
  border: 1px solid rgba(79,110,247,0.15);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11.5px;
  color: #a5b4fc;
  font-weight: 500;
  margin-top: 4px;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(79,110,247,0.5); }
.form-group select option { background: var(--surface-3); color: var(--white); }

/* --- FOOTER --- */
footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 3rem 4rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
}
.footer-copy { font-size: 12.5px; color: var(--muted); }
.footer-socials { display: flex; gap: 1rem; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  color: var(--muted);
}
.social-icon:hover { background: rgba(79, 110, 247, 0.1); border-color: rgba(79, 110, 247, 0.3); color: #4338ca; }

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- DIVIDER --- */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* --- HERO SVG CODE CARD --- */
.code-card {
  background: var(--code-bg);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
  font-size: 12.5px;
  font-family: 'Courier New', monospace;
  line-height: 1.6;
}
.code-card-header {
  background: var(--code-surface);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #28ca41; }
.code-file { font-size: 11.5px; color: #94a3b8; margin-left: 6px; }
.code-body { padding: 1.25rem 1.5rem; }
.code-line { display: flex; gap: 10px; margin: 1px 0; }
.line-num { color: var(--muted-2); opacity: 0.4; min-width: 18px; text-align: right; user-select: none; }
.kw { color: #a78bfa; }
.fn { color: #38bdf8; }
.str { color: #86efac; }
.cm { color: #4b5563; }
.op { color: #f9a8d4; }
.ident { color: #fde68a; }
.num-c { color: #fb923c; }

/* Typing animation */
.typing-cursor::after {
  content: '|';
  animation: blink-cursor 1s step-end infinite;
  color: #4f6ef7;
}
@keyframes blink-cursor {
  0%,100% { opacity: 1; } 50% { opacity: 0; }
}

/* Status bar */
.status-bar {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.status-bar-left { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.status-badge {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11.5px;
  color: #86efac;
  font-weight: 500;
}
.deploy-bar {
  height: 4px;
  background: var(--surface-3);
  border-radius: 2px;
  margin-top: 0.75rem;
  overflow: hidden;
}
.deploy-bar-fill {
  height: 100%;
  width: 78%;
  background: var(--grad);
  border-radius: 2px;
  animation: deploy-progress 3s ease infinite;
}
@keyframes deploy-progress {
  0% { width: 60%; }
  50% { width: 90%; }
  100% { width: 60%; }
}

/* Notification pop */
.notif-pop {
  background: var(--surface);
  border: 1px solid rgba(79, 110, 247, 0.2);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  animation: float-notif 3s ease-in-out infinite;
}
@keyframes float-notif {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.notif-icon { font-size: 18px; }
.notif-text { font-size: 12.5px; color: var(--white-dim); }
.notif-text strong { color: var(--white); font-weight: 500; }

/* Metric badge */
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
.metric-badge {
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
}
.metric-val {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.metric-val .accent-small {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-label-sm { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Values section */
#values { background: var(--ink); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(79,110,247,0.25); }
.value-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 1rem;
}
.value-name { font-family: var(--font-head); font-size: 15.5px; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.value-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* --- LAYOUT --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 4rem;
  align-items: center;
}

.hero-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.section-tech {
  padding: 4rem 4rem;
}

.section-tech .section-label,
.section-tech .section-title,
.section-tech .section-sub {
  text-align: center;
}

.section-tech .section-title {
  margin-left: auto;
  margin-right: auto;
}

.section-tech .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.contact-form-card {
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
}

.contact-form-card > p:first-child {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-form-card > p:nth-child(2) {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.btn-submit {
  background: var(--grad);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
  width: 100%;
}

.btn-submit:hover {
  opacity: 0.88;
}

/* --- MOBILE NAV --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  z-index: 1004;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .site-header {
    padding: 1rem 2rem;
  }

  section {
    padding: 5rem 2rem;
  }

  .section-tech {
    padding: 4rem 2rem;
  }

  #hero {
    padding: 5rem 2rem 3.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.875rem 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(20rem, 88vw);
    height: 100dvh;
    height: 100svh;
    display: block;
    background: #ffffff;
    border-left: 1px solid var(--line);
    box-shadow: -16px 0 48px rgba(15, 23, 42, 0.14);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5.75rem 1.5rem 2rem;
  }

  .nav-drawer.is-open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--line-light);
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 0.75rem;
  }

  .nav-links a {
    display: block;
    padding: 0.95rem 0;
    font-size: 16px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: block;
    text-align: center;
    padding: 0.85rem 1.25rem !important;
  }

  section {
    padding: 3.25rem 1.25rem;
  }

  .section-tech {
    padding: 3rem 1.25rem;
  }

  #hero {
    padding: 6rem 1.25rem 2.75rem;
  }

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

  .section-sub {
    font-size: 15px;
    line-height: 1.65;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .services-header .section-sub {
    max-width: none !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 2rem;
  }

  .globe-card {
    padding: 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .process-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 1rem;
    row-gap: 0.35rem;
    text-align: left;
    align-items: start;
    padding: 1rem 1.125rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .step-num {
    width: 44px;
    height: 44px;
    font-size: 16px;
    margin-bottom: 0;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .step-title {
    margin-bottom: 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .value-card {
    padding: 1.5rem 1.25rem;
  }

  .value-num {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 1.75rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 1.25rem;
    margin-top: 2.25rem;
    flex-wrap: wrap;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .hero-badge {
    font-size: 11.5px;
    margin-bottom: 1.25rem;
  }

  .code-card {
    font-size: 11px;
  }

  .code-body {
    padding: 1rem 0.875rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .code-line {
    min-width: max-content;
  }

  .status-bar {
    flex-wrap: wrap;
    gap: 0.625rem;
  }

  .status-bar-left {
    flex-wrap: wrap;
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-copy {
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-orb-1 {
    width: 280px;
    height: 280px;
    top: -40px;
    right: -80px;
  }

  .hero-orb-2 {
    width: 220px;
    height: 220px;
  }

  .metric-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .metric-badge {
    padding: 0.625rem 0.375rem;
  }

  .metric-val {
    font-size: 15px;
  }

  .metric-label-sm {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 15px;
  }

  .logo-text span {
    font-size: 9px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .stat-label {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .notif-pop {
    flex-wrap: wrap;
  }
}
