/* ============================================================
   WORKZONE — FUTURISTIC variant
   Dark sci-fi / HUD / glassmorphism / emerald-cyan neon
   ============================================================ */

:root {
  --bg-0: #070b14;
  --bg-1: #0a0f1a;
  --bg-2: #0d1424;
  --panel: rgba(18, 28, 46, 0.55);
  --panel-solid: #111a2c;
  --border: rgba(52, 245, 197, 0.18);
  --border-strong: rgba(52, 245, 197, 0.42);
  --text: #e6f0f5;
  --text-dim: #9fb2c4;
  --text-faint: #5f7488;
  --neon: #34f5c5;
  --neon-2: #2dd4bf;
  --neon-3: #22c55e;
  --cyan: #38e1ff;
  --glow: 0 0 24px rgba(52, 245, 197, 0.35);
  --glow-soft: 0 0 40px rgba(52, 245, 197, 0.18);
  --radius: 16px;
  --mono: ui-monospace, "SFMono-Regular", "JetBrains Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  --sans: "Pretendard", "Pretendard Variable", system-ui, -apple-system, "Segoe UI", sans-serif;
  --maxw: 1180px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.mono { font-family: var(--mono); letter-spacing: 0.08em; }

/* ---------- Animated background layers ---------- */
#bg-canvas {
  position: fixed; inset: 0; z-index: -3;
  width: 100%; height: 100%;
  background:
    radial-gradient(1200px 700px at 75% -10%, rgba(34, 197, 94, 0.10), transparent 60%),
    radial-gradient(1000px 800px at 10% 110%, rgba(56, 225, 255, 0.07), transparent 55%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
}
.bg-aurora {
  position: fixed; inset: -20%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(40% 40% at 20% 30%, rgba(45, 212, 191, 0.10), transparent 70%),
    radial-gradient(35% 35% at 80% 70%, rgba(34, 197, 94, 0.08), transparent 70%);
  filter: blur(40px);
  animation: aurora 22s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(4%, -3%, 0) scale(1.12); }
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(52, 245, 197, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 245, 197, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}

/* ============================================================
   LOGO (HTML/CSS/SVG wordmark)
   ============================================================ */
.wz-logo { display: inline-flex; flex-direction: column; gap: 2px; line-height: 1; }
.wz-mark {
  display: inline-flex; align-items: center; gap: 1px;
  font-family: var(--mono);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.wz-mark .wz-ring {
  display: inline-flex; vertical-align: middle;
  width: 1.18em; height: 1.18em; margin: 0 0.02em;
  filter: drop-shadow(0 0 6px rgba(52, 245, 197, 0.65));
}
.wz-mark .wz-ring svg { width: 100%; height: 100%; }
.wz-ring .ring-circle { animation: ringspin 8s linear infinite; transform-origin: 50% 50%; }
@keyframes ringspin { to { stroke-dashoffset: -200; } }
.wz-tagline {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--neon-2);
  opacity: 0.85;
}

/* ============================================================
   HEADER + NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 11, 20, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled {
  background: rgba(7, 11, 20, 0.82);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.logo { display: inline-flex; }

/* desktop nav */
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 10px;
  font-size: 0.94rem; font-weight: 600; color: var(--text-dim);
  cursor: pointer; transition: color .2s, background .2s;
}
.nav-link:hover, .nav-item.active > .nav-link { color: var(--neon); }
.nav-item.has-children > .nav-link::after {
  content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px);
  opacity: 0.7; transition: transform .25s;
}
.nav-item.has-children:hover > .nav-link::after { transform: rotate(225deg) translateY(2px); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 180px; padding: 8px;
  background: rgba(13, 20, 36, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--glow-soft), 0 18px 40px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-item.has-children:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 9px;
  font-size: 0.88rem; color: var(--text-dim); cursor: pointer; transition: .18s;
}
.dropdown a:hover { background: rgba(52, 245, 197, 0.10); color: var(--neon); }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; padding: 10px; border: 1px solid var(--border);
  border-radius: 10px; background: rgba(255,255,255,0.02); cursor: pointer;
}
.hamburger span { display: block; height: 2px; background: var(--neon); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.nav-mobile {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  max-height: 0; overflow: hidden;
  background: rgba(7, 11, 20, 0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: max-height .4s ease;
  z-index: 99;
}
.nav-mobile.open { max-height: 80vh; overflow-y: auto; }
.nav-mobile .m-group { border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-mobile .m-top {
  display: block; padding: 16px 24px; font-weight: 700; font-size: 1rem; color: var(--text);
  cursor: pointer;
}
.nav-mobile .m-sub a {
  display: block; padding: 12px 24px 12px 40px; font-size: 0.92rem;
  color: var(--text-dim); cursor: pointer;
}
.nav-mobile .m-sub a:hover, .nav-mobile .m-top:hover { color: var(--neon); }

/* ============================================================
   LAYOUT / SECTIONS
   ============================================================ */
.page { display: none; }
.page.active { display: block; animation: pageIn .55s cubic-bezier(.2,.7,.2,1); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px) scale(.995); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}

.section { max-width: var(--maxw); margin: 0 auto; padding: 84px 22px; }
.pad-top { padding-top: 120px; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-weight: 700; }

.eyebrow {
  display: inline-block; font-size: 0.78rem; color: var(--neon);
  text-transform: uppercase; margin-bottom: 14px;
  text-shadow: 0 0 16px rgba(52, 245, 197, 0.4);
}
.section-head, .page-head { max-width: 720px; margin-bottom: 48px; }
.section-head { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub, .lead { color: var(--text-dim); font-size: 1.05rem; margin-top: 14px; }
.note { margin-top: 26px; font-size: 0.85rem; color: var(--text-faint); }

/* glass card base */
.glass {
  background: var(--panel);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 30px rgba(0,0,0,.35);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h));
  display: flex; flex-direction: column; justify-content: center;
  max-width: var(--maxw); margin: 0 auto; padding: 60px 22px 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../../img/hero.jpg") center/cover no-repeat;
  opacity: 0.42; filter: saturate(1.1) contrast(1.05);
  mask-image: radial-gradient(120% 100% at 70% 40%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 40%, #000 25%, transparent 80%);
  animation: heroFloat 18s ease-in-out infinite alternate;
}
@keyframes heroFloat { to { transform: scale(1.07) translateY(-1%); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, var(--bg-0) 8%, rgba(7,11,20,0.4) 45%, transparent 75%),
    linear-gradient(0deg, var(--bg-0) 0%, transparent 35%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-title {
  font-size: clamp(2.1rem, 6.2vw, 4rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
  margin: 8px 0 20px; white-space: pre-line;
}
.hero-title .hl {
  background: linear-gradient(120deg, var(--neon), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 40px rgba(52, 245, 197, 0.25);
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.18rem); color: var(--text-dim); max-width: 600px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* stagger reveal for hero children */
.reveal-host > * { opacity: 0; transform: translateY(18px); filter: blur(8px); }
.reveal-host.in > * { animation: staggerIn .8s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal-host.in > *:nth-child(1) { animation-delay: .05s; }
.reveal-host.in > *:nth-child(2) { animation-delay: .18s; }
.reveal-host.in > *:nth-child(3) { animation-delay: .32s; }
.reveal-host.in > *:nth-child(4) { animation-delay: .46s; }
@keyframes staggerIn { to { opacity: 1; transform: none; filter: none; } }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px;
  font-weight: 700; font-size: 0.96rem; cursor: pointer;
  border: 1px solid var(--border-strong); background: rgba(52,245,197,0.04);
  color: var(--text); transition: .25s; position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); border-color: var(--neon); box-shadow: var(--glow); color: var(--neon); }
.btn.primary {
  background: linear-gradient(120deg, var(--neon-3), var(--neon-2));
  color: #04140d; border-color: transparent; box-shadow: 0 0 28px rgba(52,245,197,0.35);
}
.btn.primary:hover { color: #04140d; box-shadow: 0 0 42px rgba(52,245,197,0.6); transform: translateY(-2px); }
.btn::after { content: "→"; font-family: var(--mono); }

/* hero stats */
.hero-stats {
  position: relative; z-index: 2; margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat { padding: 22px 18px; border-radius: 14px; }
.stat .n {
  font-family: var(--mono); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
  color: var(--neon); text-shadow: 0 0 22px rgba(52,245,197,0.35); line-height: 1;
}
.stat .l { margin-top: 8px; font-size: 0.82rem; color: var(--text-dim); }

.scroll-cue { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-cue span {
  display: block; width: 22px; height: 36px; border: 2px solid var(--border-strong); border-radius: 12px;
  position: relative;
}
.scroll-cue span::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: var(--neon);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100%{ opacity:0; top:6px; } 50%{ opacity:1; top:16px; } }

/* ============================================================
   SERVICES
   ============================================================ */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  padding: 28px 24px; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: .3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(52,245,197,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--glow-soft); border-color: var(--border-strong); }
.service-card:hover::before { opacity: 1; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(52,245,197,0.08); border: 1px solid var(--border);
  margin-bottom: 18px; color: var(--neon);
  box-shadow: inset 0 0 18px rgba(52,245,197,0.12);
}
.svc-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--text-dim); }

/* ============================================================
   ABOUT / OVERVIEW
   ============================================================ */
.overview-body { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: start; }
.overview-desc { font-size: 1.05rem; color: var(--text-dim); line-height: 1.9; }
.facts { padding: 26px 28px; }
.facts .fact { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.facts .fact:last-child { border-bottom: none; }
.facts .fact .k { font-family: var(--mono); font-size: 0.8rem; color: var(--neon-2); white-space: nowrap; }
.facts .fact .v { text-align: right; font-size: 0.92rem; color: var(--text); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.value-card { padding: 26px 24px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--panel); transition: .3s; }
.value-card:hover { border-color: var(--border-strong); box-shadow: var(--glow-soft); transform: translateY(-4px); }
.value-card h3 { color: var(--neon); font-size: 1.1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.value-card h3::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px var(--neon); }
.value-card p { color: var(--text-dim); font-size: 0.92rem; }

/* ============================================================
   GREETING
   ============================================================ */
.greeting { padding: 44px clamp(24px, 5vw, 56px); max-width: 860px; }
.greeting-lead { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; color: var(--text); margin-bottom: 28px; line-height: 1.4; }
.greeting-body p { color: var(--text-dim); font-size: 1.02rem; line-height: 1.95; margin-bottom: 18px; }
.greeting-sign { margin-top: 24px; font-family: var(--mono); color: var(--neon); letter-spacing: 0.05em; }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.client-group { padding: 26px 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--panel); transition: .3s; }
.client-group:hover { border-color: var(--border-strong); box-shadow: var(--glow-soft); }
.client-group h3 { font-family: var(--mono); font-size: 0.92rem; color: var(--neon-2); margin-bottom: 18px; letter-spacing: 0.05em; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 16px; border-radius: 999px; font-size: 0.88rem; color: var(--text);
  background: rgba(52,245,197,0.06); border: 1px solid var(--border); transition: .25s;
}
.chip:hover { background: rgba(52,245,197,0.14); border-color: var(--neon); box-shadow: 0 0 16px rgba(52,245,197,0.3); transform: translateY(-2px); }

/* ============================================================
   LOCATION
   ============================================================ */
.location-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 22px; }
.location-info { padding: 30px 30px; }
.location-info .row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.location-info .row:last-child { border-bottom: none; }
.location-info .k { font-family: var(--mono); font-size: 0.8rem; color: var(--neon-2); min-width: 56px; padding-top: 2px; }
.location-info .v { color: var(--text-dim); font-size: 0.95rem; }
.location-map { padding: 8px; overflow: hidden; }
.location-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; border-radius: 12px; filter: invert(0.92) hue-rotate(180deg) saturate(0.7); }

/* ============================================================
   CAREERS
   ============================================================ */
.careers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.career-card { padding: 28px 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--panel); transition: .3s; position: relative; }
.career-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--glow-soft); }
.career-card .tag {
  display: inline-block; font-family: var(--mono); font-size: 0.72rem; padding: 5px 12px; border-radius: 999px;
  background: rgba(34,197,94,0.12); color: var(--neon); border: 1px solid var(--border); margin-bottom: 16px;
}
.career-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.career-card p { color: var(--text-dim); font-size: 0.94rem; margin-bottom: 16px; }
.career-card .meta { font-family: var(--mono); font-size: 0.8rem; color: var(--text-faint); }

.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
.perk { padding: 22px 20px; border-radius: 14px; border: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.perk h4 { color: var(--neon); font-size: 0.98rem; margin-bottom: 8px; }
.perk p { color: var(--text-dim); font-size: 0.86rem; }

.careers-cta {
  margin-top: 32px; padding: 40px; text-align: center;
  background: linear-gradient(120deg, rgba(34,197,94,0.10), rgba(56,225,255,0.06));
}
.careers-cta h3 { font-size: 1.5rem; margin-bottom: 10px; }
.careers-cta p { color: var(--text-dim); margin-bottom: 24px; }

/* ============================================================
   NOTICES
   ============================================================ */
.notices-wrap { min-height: 200px; }
.notice-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--panel); backdrop-filter: blur(12px); }
.notice-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 18px; align-items: center;
  padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: .2s;
}
.notice-row:last-child { border-bottom: none; }
.notice-row:hover { background: rgba(52,245,197,0.06); }
.notice-row .nt { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text); min-width: 0; }
.notice-row .nt .t { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pin {
  font-family: var(--mono); font-size: 0.68rem; padding: 3px 9px; border-radius: 6px; flex: none;
  background: rgba(56,225,255,0.14); color: var(--cyan); border: 1px solid rgba(56,225,255,0.3);
}
.notice-row .date { font-family: var(--mono); font-size: 0.82rem; color: var(--text-faint); }
.notice-row .views { font-family: var(--mono); font-size: 0.82rem; color: var(--text-faint); min-width: 64px; text-align: right; }

.notice-detail { padding: 0; }
.notice-detail .nd-head { padding: 26px 28px; border-bottom: 1px solid var(--border); }
.notice-detail h3 { font-size: 1.4rem; margin-bottom: 12px; }
.notice-detail .nd-meta { display: flex; gap: 18px; font-family: var(--mono); font-size: 0.82rem; color: var(--text-faint); }
.notice-detail .nd-body { padding: 28px; color: var(--text-dim); line-height: 1.9; white-space: pre-wrap; }
.btn-back {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 10px; border: 1px solid var(--border); background: rgba(255,255,255,0.02);
  color: var(--text-dim); cursor: pointer; font-weight: 600; transition: .25s; font-family: var(--mono); font-size: .85rem;
}
.btn-back:hover { color: var(--neon); border-color: var(--neon); }
.btn-back::before { content: "←"; }

.state { text-align: center; padding: 60px 20px; color: var(--text-faint); }
.spinner {
  width: 38px; height: 38px; margin: 0 auto 16px; border-radius: 50%;
  border: 3px solid rgba(52,245,197,0.2); border-top-color: var(--neon);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   INQUIRY FORM
   ============================================================ */
.inquiry-wrap { padding: 38px clamp(22px, 4vw, 44px); max-width: 760px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 0.8rem; color: var(--neon-2); letter-spacing: 0.04em; }
.field label .req { color: var(--cyan); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px;
  background: rgba(7,11,20,0.6); border: 1px solid var(--border); color: var(--text);
  font-family: var(--sans); font-size: 0.95rem; transition: .2s; outline: none;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--neon); box-shadow: 0 0 0 3px rgba(52,245,197,0.12);
}
.field select { appearance: none; cursor: pointer; background-image:
  linear-gradient(45deg, transparent 50%, var(--neon) 50%), linear-gradient(135deg, var(--neon) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field select option { background: var(--panel-solid); color: var(--text); }
.form-actions { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.form-msg { font-size: 0.9rem; }
.form-msg.ok { color: var(--neon); }
.form-msg.err { color: #ff6b8a; }
.field-error { font-size: 0.78rem; color: #ff6b8a; min-height: 1em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: 60px; border-top: 1px solid var(--border);
  background: rgba(7,11,20,0.6); backdrop-filter: blur(10px);
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 52px 22px 34px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.footer-inner .f-brand .wz-logo { margin-bottom: 16px; }
.footer-inner .f-brand p { color: var(--text-dim); font-size: 0.92rem; max-width: 360px; }
.f-info { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; align-self: center; }
.f-info .row { font-size: 0.86rem; color: var(--text-dim); }
.f-info .row .k { font-family: var(--mono); color: var(--text-faint); font-size: 0.74rem; display: block; margin-bottom: 2px; }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 22px 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom .cr { font-size: 0.8rem; color: var(--text-faint); }
.footer-bottom .admin { font-family: var(--mono); font-size: 0.78rem; color: var(--text-faint); border: 1px solid var(--border); padding: 6px 14px; border-radius: 8px; transition: .25s; }
.footer-bottom .admin:hover { color: var(--neon); border-color: var(--neon); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); filter: blur(8px); transition: opacity .8s, transform .8s, filter .8s; }
.reveal.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-host > * { opacity: 1 !important; transform: none !important; filter: none !important; }
  .bg-aurora, .hero-bg, .ring-circle, .scroll-cue span::after { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .service-grid, .perks { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .overview-body, .location-wrap, .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .section { padding: 60px 18px; }
  .pad-top { padding-top: 96px; }
  .service-grid, .values-grid, .clients-grid, .careers-grid, .perks, .form-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .f-info { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .notice-row { grid-template-columns: 1fr auto; }
  .notice-row .views { display: none; }
}
