/* ============ BASE ============ */
:root {
  --accent-hue: 220;
  --gloss: 0.18;
  --ink: #e8edf2;
  --ink-soft: #a8b3bf;
  --ink-mute: #6c7682;
  --glass-stroke: rgba(255,255,255,0.10);
  --glass-stroke-bright: rgba(255,255,255,0.18);
  --glass-shadow: 0 18px 50px -18px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.4);
  --accent: oklch(0.70 0.08 var(--accent-hue));
  --accent-soft: oklch(0.55 0.06 var(--accent-hue));
  --accent-deep: oklch(0.78 0.07 var(--accent-hue));
  --gloss-top: rgba(255,255,255, calc(var(--gloss) * 0.9));
  --gloss-mid: rgba(255,255,255, calc(var(--gloss) * 0.25));
  --surface: rgba(255,255,255,0.04);
  --surface-bright: rgba(255,255,255,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", "Segoe UI Variable", Calibri, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  background: #06080b;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: "SF Mono", "Consolas", "Monaco", monospace; }
button { font-family: inherit; cursor: pointer; }
em { font-style: italic; font-family: Calibri, "Segoe UI", sans-serif; }
a.aero-btn,
a.nav-pill,
a.brand { text-decoration: none; }
a.brand { color: var(--ink); }
a.nav-pill { display: inline-block; }

/* ============ BACKGROUND ============ */
.aero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.aero-grain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.025), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,0.5), transparent 60%);
  pointer-events: none;
}

.glass-orbs {
  position: absolute; inset: 0;
  pointer-events: none;
}
[data-orbs="false"] .glass-orbs { display: none; }

.glass-orb {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.14), rgba(255,255,255,0.03) 40%, transparent 65%),
    radial-gradient(circle at 70% 78%, oklch(0.48 0.07 calc(var(--accent-hue) + var(--tint, 0))) 0%, oklch(0.28 0.05 var(--accent-hue)) 50%, transparent 78%);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.14),
    inset 0 0 120px rgba(255,255,255,0.04),
    inset 0 -60px 160px rgba(0,0,0,0.25),
    0 40px 120px -30px rgba(0,0,0,0.4);
  filter: blur(0.5px);
  opacity: 0.82;
  animation: orb-drift linear infinite;
  will-change: transform;
}
@keyframes orb-drift {
  0%   { transform: translate3d(0, 0, 0); }
  25%  { transform: translate3d(4vw, -3vh, 0); }
  50%  { transform: translate3d(1.5vw, 4vh, 0); }
  75%  { transform: translate3d(-3.5vw, 1vh, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
.glass-orb::before {
  content: '';
  position: absolute;
  top: 8%; left: 14%;
  width: 42%; height: 22%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.20), transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
}
.glass-orb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
}

/* ============ APP SHELL ============ */
.app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
.page {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 40px 80px;
}

/* ============ GLASS ============ */
.glass {
  background:
    linear-gradient(180deg, var(--gloss-top) 0%, rgba(255,255,255,0.03) 40%, rgba(255,255,255,0.06) 100%),
    rgba(14,18,24,0.55);
  border: 1px solid var(--glass-stroke);
  border-top-color: var(--glass-stroke-bright);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    var(--glass-shadow);
  border-radius: 14px;
}

.glass-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #b8e8a4, #4a9a3a);
  box-shadow: 0 0 8px rgba(78,175,42,0.6);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 4px rgba(78,175,42,0.4); }
  50%     { box-shadow: 0 0 10px rgba(78,175,42,0.8); }
}

/* ============ NAV ============ */
.nav-shell {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 24px;
  margin-bottom: 8px;
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border-radius: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: 10px;
}
.brand:hover { background: rgba(255,255,255,0.05); }
.brand-orb {
  width: 26px; height: 26px; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.5), rgba(255,255,255,0.1) 35%, transparent 60%),
    radial-gradient(circle at 70% 75%, oklch(0.55 0.08 var(--accent-hue)), oklch(0.28 0.06 var(--accent-hue)));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.15),
    inset 0 -3px 8px rgba(0,0,0,0.4),
    0 2px 8px rgba(0,0,0,0.5);
}
.brand-orb.sm { width: 20px; height: 20px; }
.brand-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-name em {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-mute);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.nav-items {
  display: flex;
  gap: 4px;
  margin-left: 18px;
  flex: 1;
}
.nav-pill {
  background: none;
  border: 1px solid transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.18s;
}
.nav-pill:hover {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
}
.nav-pill.active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

/* ============ AERO BUTTONS ============ */
.aero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid;
  transition: all 0.18s;
  white-space: nowrap;
  overflow: hidden;
}
.aero-btn.lg { padding: 13px 26px; font-size: 15px; border-radius: 12px; }
.aero-btn.sm { padding: 6px 12px; font-size: 12.5px; border-radius: 8px; }

.aero-btn.primary {
  color: #f0f4f8;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(180deg, oklch(0.42 0.08 var(--accent-hue)), oklch(0.26 0.06 var(--accent-hue)));
  border-color: oklch(0.18 0.04 var(--accent-hue));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -2px 4px rgba(0,0,0,0.3),
    0 4px 12px rgba(0,0,0,0.5);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
}
.aero-btn.primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  border-radius: 10px 10px 0 0;
  pointer-events: none;
}
.aero-btn.primary:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}
.aero-btn.primary:active { transform: translateY(0); filter: brightness(0.95); }

.aero-btn.ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}
.aero-btn.ghost:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-1px);
}

/* ============ TYPE ============ */
.display {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 18px 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.display em {
  color: var(--accent-deep);
  font-weight: 500;
}
.shine {
  background: linear-gradient(180deg,
    oklch(0.88 0.04 var(--accent-hue)),
    oklch(0.62 0.06 var(--accent-hue)));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  font-style: italic;
  font-family: Calibri, "Segoe UI", sans-serif;
  font-weight: 500;
}
.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
  text-wrap: pretty;
}
.eyebrow {
  margin-bottom: 6px;
}
.section-head {
  margin: 80px 0 28px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.section-head h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.section-head p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 15px;
}

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 32px 0 16px;
  min-height: 540px;
}
.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  font-size: 13px;
  color: var(--ink-mute);
}
.trust-row > span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.logos {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.logos span {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: -0.01em;
  opacity: 0.55;
}
.logos span:nth-child(2) { font-family: Calibri, serif; font-style: italic; }
.logos span:nth-child(3) { font-family: "Consolas", monospace; }

/* ============ HERO ART ============ */
.hero-art {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.big-orb {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.3), rgba(255,255,255,0.04) 32%, transparent 58%),
    radial-gradient(circle at 65% 75%, oklch(0.42 0.08 calc(var(--accent-hue) + 10)), oklch(0.18 0.05 var(--accent-hue)) 75%);
  box-shadow:
    inset 0 -20px 60px rgba(0,0,0,0.55),
    inset 0 12px 40px rgba(255,255,255,0.1),
    0 30px 60px -10px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bob 8s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.orb-shine {
  position: absolute;
  top: 8%; left: 18%;
  width: 40%; height: 22%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(2px);
}
.orb-inner {
  position: relative;
  width: 75%;
}
.code-glass {
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
  transform: rotate(-2deg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 100%),
    rgba(10,14,20,0.7) !important;
  border-color: rgba(255,255,255,0.12) !important;
}
.code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  color: var(--ink-soft);
}
.code-bar i {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.code-bar i:nth-child(1) { background: radial-gradient(circle at 30% 30%, #ff8a8a, #7a2828); }
.code-bar i:nth-child(2) { background: radial-gradient(circle at 30% 30%, #ffd88a, #7a5a28); }
.code-bar i:nth-child(3) { background: radial-gradient(circle at 30% 30%, #b3f08a, #3a6a28); }
.code-bar span { margin-left: 6px; font-family: Consolas, monospace; }
.code-glass pre {
  margin: 0;
  padding: 14px 16px;
  font-family: Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.6;
  color: #d4dce4;
  background: transparent;
}
.kw { color: #7ab8e8; font-weight: 600; }
.at { color: #c89adf; }
.str { color: #e8a878; }

.floater {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.32), rgba(255,255,255,0.05) 38%, transparent 62%),
    radial-gradient(circle at 70% 70%, oklch(0.42 0.06 var(--accent-hue)), oklch(0.22 0.05 var(--accent-hue)));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.10),
    0 12px 30px -6px rgba(0,0,0,0.6);
}
.floater.f1 { width: 64px; height: 64px; top: 8%; right: 4%; animation: bob 6s ease-in-out infinite reverse; }
.floater.f2 { width: 42px; height: 42px; bottom: 12%; left: 0; animation: bob 7s ease-in-out infinite; }
.floater.f3 { width: 26px; height: 26px; top: 50%; right: -2%; animation: bob 5s ease-in-out infinite reverse; }

/* ============ SERVICES ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: rgba(255,255,255,0.92);
  filter: saturate(0.55) brightness(0.85);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -2px 4px rgba(0,0,0,0.3),
    0 2px 8px rgba(0,0,0,0.4);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}
.service-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  flex: 1;
}
.service-from {
  font-size: 12px;
  color: var(--ink-mute);
  font-family: Consolas, monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============ PROCESS ============ */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  padding: 22px;
  position: relative;
}
.step-num {
  font-family: Consolas, monospace;
  font-size: 13px;
  color: var(--accent-deep);
  letter-spacing: 0.06em;
}
.step h4 {
  margin: 6px 0 8px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============ PORTFOLIO ============ */
.page-head {
  padding: 32px 0 24px;
  max-width: 760px;
}
.filter-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.18s;
}
.filter-pill:hover { transform: translateY(-1px); color: var(--ink); background: rgba(255,255,255,0.07); }
.filter-pill.active {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, oklch(0.40 0.07 var(--accent-hue)), oklch(0.24 0.05 var(--accent-hue)));
  color: var(--ink);
  border-color: rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}
.filter-pill .count {
  font-size: 11px;
  background: rgba(255,255,255,0.08);
  padding: 1px 7px;
  border-radius: 999px;
  color: var(--ink-soft);
}
.filter-pill.active .count {
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.85);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.project-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.22s;
}
.project-card:hover { transform: translateY(-3px); }
.project-card.big { grid-column: span 2; flex-direction: row; }
.project-card.big .project-img { width: 58%; min-height: 380px; }
.project-card.big .project-meta { flex: 1; padding: 18px 18px 12px; }

.project-img {
  position: relative;
  border-radius: 10px;
  min-height: 240px;
  overflow: hidden;
  filter: saturate(0.6) brightness(0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -2px 4px rgba(0,0,0,0.3);
}
.img-label {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.5);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}
.img-gloss {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}
.project-meta {
  padding: 4px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.meta-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.meta-tag {
  color: var(--accent-deep);
  font-weight: 600;
}
.project-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.project-card.big h3 { font-size: 30px; }
.project-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
}
.meta-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat strong {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
}
.stat span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}

/* ============ CONTACT ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding: 32px 0 24px;
  align-items: start;
}
.contact-intro .display { margin-top: 14px; }
.contact-channels {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s;
}
a.channel:hover { transform: translateX(3px); }
.ch-glyph {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, oklch(0.42 0.07 var(--accent-hue)), oklch(0.24 0.05 var(--accent-hue)));
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -2px 4px rgba(0,0,0,0.3),
    0 2px 6px rgba(0,0,0,0.4);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}
.channel strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.channel em {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}

.contact-form {
  padding: 28px 30px;
}
.contact-form h3 {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field-label {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.3);
  color: var(--ink);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.18s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: oklch(0.55 0.08 var(--accent-hue));
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.3),
    0 0 0 3px oklch(0.40 0.06 var(--accent-hue) / 0.35);
  background: rgba(0,0,0,0.45);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); opacity: 0.7; }

.seg {
  display: flex;
  gap: 6px;
  background: rgba(0,0,0,0.25);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  flex-wrap: wrap;
}
.seg-btn {
  flex: 1;
  background: transparent;
  border: 1px solid transparent;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.15s;
}
.seg-btn:hover { color: var(--ink); }
.seg-btn.on {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  border-color: rgba(255,255,255,0.14);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 1px 3px rgba(0,0,0,0.4);
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.form-note {
  font-size: 12px;
  color: var(--ink-mute);
  max-width: 260px;
  line-height: 1.45;
}

.sent-state {
  text-align: center;
  padding: 30px 20px 20px;
}
.sent-orb {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.4), rgba(255,255,255,0.05) 40%, transparent 65%),
    radial-gradient(circle at 70% 75%, oklch(0.55 0.10 145), oklch(0.30 0.08 145));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.18),
    0 12px 30px -6px rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
  color: white;
  font-size: 38px;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  0%   { transform: scale(0.3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.sent-state h3 { font-size: 28px; margin: 0 0 8px; }
.sent-state p { color: var(--ink-soft); margin: 0 0 22px; }

/* ============ FOOTER ============ */
.site-foot {
  margin-top: 72px;
  padding: 22px 28px;
  border-radius: 14px;
}
.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-brand strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink); }
.foot-brand em { display: block; font-size: 12px; color: var(--ink-mute); }
.foot-links {
  display: flex;
  gap: 6px;
}
.foot-links a,
.foot-links button {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
.foot-links a:hover,
.foot-links button:hover { background: rgba(255,255,255,0.06); color: var(--ink); }
.foot-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 12px;
  color: var(--ink-mute);
}

/* ============ HONEYPOT (Netlify Forms) ============ */
.hp-field { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  cursor: pointer;
}
.privacy-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.privacy-check span {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.privacy-check a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============ LANGUAGE BAR ============ */
.lang-bar {
  position: relative;
  z-index: 60;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 10px 32px 0;
  pointer-events: none;
}
.lang-switch {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lang-label {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0 8px 0 6px;
}
.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  transition: all 0.18s;
  text-decoration: none;
}
.lang-btn:hover {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
}
.lang-btn.active {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, oklch(0.40 0.07 var(--accent-hue)), oklch(0.24 0.05 var(--accent-hue)));
  color: var(--ink);
  border-color: rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}

/* ============ SERVICE "FROM" → CONTACT LINK ============ */
.service-from {
  cursor: pointer;
}
a.service-from {
  text-decoration: none;
  color: var(--accent-deep);
  transition: filter 0.18s, transform 0.18s;
}
a.service-from:hover {
  filter: brightness(1.15);
}

/* ============ EMPTY PORTFOLIO ============ */
.empty-state {
  margin: 28px 0 0;
  padding: 60px 32px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.empty-state .empty-orb {
  width: 96px; height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.35), rgba(255,255,255,0.04) 38%, transparent 62%),
    radial-gradient(circle at 70% 70%, oklch(0.42 0.07 var(--accent-hue)), oklch(0.20 0.05 var(--accent-hue)));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.10),
    0 12px 30px -6px rgba(0,0,0,0.6);
  animation: bob 8s ease-in-out infinite;
  margin-bottom: 8px;
}
.empty-state h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}
.empty-state p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
}
.empty-state .aero-btn { margin-top: 12px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { height: 360px; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr; }
  .project-card.big { flex-direction: column; grid-column: span 1; }
  .project-card.big .project-img { width: 100%; min-height: 240px; }
  .lang-bar { padding: 8px 16px 0; }
}
@media (max-width: 640px) {
  .nav-inner { flex-wrap: wrap; }
  .nav-items { order: 3; margin-left: 0; width: 100%; justify-content: center; }
  .service-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .submit-row { flex-direction: column; align-items: stretch; }
}

/* ============ SERVICES PAGE ============ */
.services-page { max-width: 900px; }
.section-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 48px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.section-label:first-of-type { margin-top: 0; }
.sc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.sc {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s;
}
.sc:hover { transform: translateY(-3px); }
.sc-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 2px;
  letter-spacing: -0.005em;
}
.sc-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 2px 0 6px;
  letter-spacing: -0.02em;
}
.sc-desc {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.b-gray   { background: rgba(255,255,255,0.07); color: var(--ink-soft); border: 1px solid rgba(255,255,255,0.10); }
.b-teal   { background: rgba(29,158,117,0.15);  color: #5dd8a8;         border: 1px solid rgba(29,158,117,0.25); }
.b-purple { background: rgba(127,119,221,0.15); color: #a89cf0;         border: 1px solid rgba(127,119,221,0.25); }
.b-amber  { background: rgba(186,117,23,0.15);  color: #f0b85a;         border: 1px solid rgba(186,117,23,0.25); }
.b-blue   { background: rgba(55,138,221,0.15);  color: #7ab8e8;         border: 1px solid rgba(55,138,221,0.25); }
.b-coral  { background: rgba(216,90,48,0.15);   color: #f09070;         border: 1px solid rgba(216,90,48,0.25); }
.services-note {
  margin-top: 36px;
  padding: 18px 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-left: 2px solid oklch(0.48 0.07 220);
}
.services-note strong { color: var(--ink); }
@media (max-width: 640px) {
  .sc-grid { grid-template-columns: 1fr; }
}
