:root {
  --bg: #0a0d12;
  --bg-2: #0f141b;
  --bg-3: #141a23;
  --fg: #e8edf3;
  --muted: #8a96a8;
  --line: #1f2733;
  --accent: #ff6a2c;
  --accent-2: #ffb066;
  --accent-glow: rgba(255, 106, 44, 0.35);
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.accent { color: var(--accent); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 13, 18, 0.65);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: 0.06em;
  font-size: 15px;
}
.logo-mark {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 4px;
  box-shadow: 0 0 20px var(--accent-glow);
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid var(--bg);
  border-radius: 1px;
}
.nav nav {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; font-weight: 500;
}
.nav nav a { color: var(--muted); transition: color .2s; }
.nav nav a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent);
  color: #0a0d12 !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--accent-glow);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 106, 44, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(255, 106, 44, 0.08), transparent 60%),
    var(--bg);
}
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 80%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-content {
  max-width: 980px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid rgba(255, 106, 44, 0.3);
  border-radius: 999px;
  background: rgba(255, 106, 44, 0.08);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(38px, 6.4vw, 78px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 40px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn.primary {
  background: var(--accent);
  color: #0a0d12;
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--accent-glow); }
.btn.ghost {
  border: 1px solid var(--line);
  color: var(--fg);
}
.btn.ghost:hover { background: var(--bg-2); border-color: var(--muted); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.hero-stats > div {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 20, 27, 0.6);
}
.hero-stats strong {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--fg);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.02em;
}
.hero-stats span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 120px 32px;
  position: relative;
}
.section.dark { background: var(--bg-2); }
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 800px;
}
.section-lede {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 64px;
}
.section-lede.big { font-size: clamp(17px, 1.3vw, 20px); }

/* ---------- CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-3);
  transition: transform .25s, border-color .25s, background .25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 44, 0.4);
  background: #181f2a;
}
.card-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p {
  color: var(--muted);
  font-size: 15px;
}

/* ---------- SPECS ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.spec {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .2s;
}
.spec:hover { background: var(--bg-3); }
.spec-key {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}
.spec-val {
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* ---------- LOCATION ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.location-list {
  margin-top: 8px;
}
.location-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 18px;
  font-size: 15px;
  color: var(--muted);
}
.location-list li span {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  min-width: 110px;
  font-weight: 600;
}
.map-card {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(0.95);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.map-pin .dot {
  position: absolute; inset: 0;
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--accent), 0 6px 18px rgba(0,0,0,0.5), 0 0 30px var(--accent-glow);
}
.map-pin .pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: map-pulse 2s ease-out infinite;
}
@keyframes map-pulse {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}
.map-open {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 7px 12px;
  background: rgba(10, 13, 18, 0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color .2s, color .2s;
}
.map-open:hover { border-color: var(--accent); color: var(--accent); }
.map-coords {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg);
  letter-spacing: 0.05em;
  background: rgba(10, 13, 18, 0.85);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.map-label {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--fg);
  background: rgba(10, 13, 18, 0.85);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

/* ---------- CONTACT ---------- */
.section.contact {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 106, 44, 0.18), transparent 70%),
    var(--bg);
  text-align: center;
}
.contact-inner { max-width: 880px; }
.contact-inner .section-lede { margin-left: auto; margin-right: auto; }

.email-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 32px;
  border: 1px solid rgba(255, 106, 44, 0.4);
  border-radius: 999px;
  background: rgba(255, 106, 44, 0.06);
  margin: 16px 0 56px;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
}
.email-cta:hover {
  transform: translateY(-3px);
  background: rgba(255, 106, 44, 0.14);
  border-color: var(--accent);
  box-shadow: 0 14px 50px var(--accent-glow);
}
.email-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
}
.email-addr {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.email-arrow {
  color: var(--accent);
  font-size: 22px;
  transition: transform .2s;
}
.email-cta:hover .email-arrow { transform: translateX(6px); }

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.contact-meta > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-2);
  font-size: 15px;
  font-weight: 500;
}
.contact-meta span {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px;
  background: var(--bg);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-meta {
  font-size: 13px;
  color: var(--muted);
  display: flex; gap: 10px; flex-wrap: wrap;
}
.footer-meta a:hover { color: var(--accent); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
  .nav-inner { padding: 14px 20px; }
  .nav nav { gap: 16px; font-size: 13px; }
  .nav nav a:not(.nav-cta) { display: none; }
  .hero { padding: 110px 20px 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 20px; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-card { max-width: 420px; margin: 0 auto; width: 100%; }
  .contact-meta { grid-template-columns: 1fr; }
}
