/* ============================================================================
   FUTURISTIC HUD THEME — guts.uz  (Alisher Muhammadaliyev)
   Dark navy, monospace HUD accents, 3D orb, gradient headings.
   ========================================================================== */
:root {
  --acc: #4f7cff;
  --acc2: #8fb0ff;
  --accDim: rgba(79, 124, 255, .16);
  --bg: #05060a;
  --panel: linear-gradient(180deg, rgba(20, 28, 52, .42), rgba(8, 12, 26, .42));
  --panel-strong: linear-gradient(165deg, rgba(22, 30, 56, .5), rgba(8, 12, 26, .55));
  --text: #e6ebff;
  --muted: #9aa3c8;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --sans: 'Space Grotesk', system-ui, sans-serif;
  --maxw: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(79, 124, 255, .35); color: #fff; }
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--bg); }
body::-webkit-scrollbar-thumb { background: rgba(79, 124, 255, .32); border-radius: 6px; }

/* ---- keyframes ---- */
@keyframes gridDrift { to { background-position: 64px 64px, 64px 64px; } }
@keyframes scanMove { 0% { transform: translateY(-20%); } 100% { transform: translateY(120%); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floaty2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes pulseGlow { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes blink { 0%, 48% { opacity: 1; } 50%, 100% { opacity: .12; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- fixed background layers ---- */
.fx-grid, .fx-glow, .fx-scan { position: fixed; inset: 0; pointer-events: none; }
.fx-grid {
  z-index: 0;
  background-image:
    linear-gradient(rgba(79, 124, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 124, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 14s linear infinite;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 30%, transparent 100%);
}
.fx-glow {
  z-index: 0;
  background:
    radial-gradient(60% 50% at 78% 18%, rgba(79, 124, 255, .20), transparent 70%),
    radial-gradient(55% 45% at 12% 85%, rgba(79, 124, 255, .12), transparent 70%),
    radial-gradient(40% 35% at 50% 50%, rgba(20, 30, 70, .25), transparent 70%);
}
.fx-scan {
  z-index: 60; mix-blend-mode: overlay;
  background: repeating-linear-gradient(0deg, rgba(140, 170, 255, .05) 0, rgba(140, 170, 255, .05) 1px, transparent 2px, transparent 4px);
}
.fx-scan::after {
  content: ""; position: absolute; left: 0; right: 0; height: 160px;
  background: linear-gradient(180deg, transparent, rgba(120, 160, 255, .07), transparent);
  animation: scanMove 7s linear infinite;
}

/* ---- layout helpers ---- */
.wrap { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.wrap-sm { max-width: 1100px; }
.section { position: relative; z-index: 1; padding: 90px 0; }
main { position: relative; z-index: 1; }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .22em;
  color: var(--acc2); margin-bottom: 16px; text-transform: uppercase;
}
.eyebrow .bar { width: 38px; height: 1px; background: var(--acc); }
h1, h2, h3 { font-weight: 600; letter-spacing: -.02em; margin: 0; }
.h-grad {
  background: linear-gradient(120deg, #fff, var(--acc2) 60%, var(--acc));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--muted); font-size: 16px; line-height: 1.7; }

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px; margin-bottom: 48px;
}
.section-head h2 { font-size: 44px; }
.link-more {
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: #8089b0;
  border-bottom: 1px solid var(--accDim); padding-bottom: 4px; transition: .25s;
}
.link-more:hover { color: #fff; border-color: var(--acc); }

/* ---- nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 34px; backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(5, 7, 14, .86), rgba(5, 7, 14, .35));
  border-bottom: 1px solid var(--accDim);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 30px; height: 30px; display: grid; place-items: center; overflow: hidden;
  border: 1px solid var(--acc); border-radius: 7px; font-family: var(--mono);
  font-weight: 600; color: var(--acc2); box-shadow: 0 0 18px var(--accDim);
}
.brand .mark img { width: 100%; height: 100%; object-fit: cover; }
.brand .name { font-family: var(--mono); font-size: 12.5px; letter-spacing: .18em; color: #aeb8e0; white-space: nowrap; }
.brand .name i { color: var(--acc2); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 30px; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; }
.nav-links a { color: #7f89b3; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta {
  display: flex; align-items: center; gap: 8px; font-family: var(--mono);
  font-size: 11.5px; letter-spacing: .14em; color: #cdd6f5; padding: 9px 16px;
  border: 1px solid var(--acc); border-radius: 8px; background: var(--accDim); transition: .25s;
}
.nav-cta:hover { background: var(--acc); color: #05060a; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #4ee39a; box-shadow: 0 0 10px #4ee39a; }
.dot.pulse { animation: pulseGlow 1.6s infinite; }
.nav-burger { display: none; background: none; border: 0; color: #cdd6f5; font-size: 20px; cursor: pointer; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px;
  border-radius: 10px; font-size: 14.5px; font-weight: 600; transition: .25s; cursor: pointer;
}
.btn-primary { background: var(--acc); color: #05060a; box-shadow: 0 8px 30px var(--accDim); border: 1px solid var(--acc); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(79, 124, 255, .4); }
.btn-ghost { border: 1px solid var(--accDim); color: #cdd6f5; font-family: var(--mono); letter-spacing: .04em; font-weight: 500; background: transparent; }
.btn-ghost:hover { border-color: var(--acc); background: var(--accDim); }

/* ---- hero ---- */
.hero {
  display: grid; grid-template-columns: 1.04fr .96fr; gap: 48px; align-items: center;
  min-height: 100vh; padding: 130px 0 70px;
}
.hero h1 { font-size: 64px; line-height: 1.02; }
.hero-type { height: 42px; margin: 18px 0 8px; display: flex; align-items: center; gap: 12px; }
.hero-type .prompt { font-family: var(--mono); color: #5a648e; font-size: 15px; }
.hero-type .prof { font-family: var(--mono); font-size: 19px; color: #dfe6ff; }
.hero-type .caret { width: 9px; height: 21px; background: var(--acc); animation: blink 1s steps(1) infinite; }
.hero p.lead { max-width: 480px; margin: 18px 0 30px; }
.hero p.lead b { color: #cfd7f5; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.stats { display: flex; gap: 34px; flex-wrap: wrap; }
.stat .num { font-size: 30px; font-weight: 600; color: #fff; }
.stat .lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; color: #6b76a0; text-transform: uppercase; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--accDim);
  border-radius: 10px; color: #9aa3c8; font-size: 15px; transition: .25s;
}
.socials a:hover { color: #fff; border-color: var(--acc); background: var(--accDim); transform: translateY(-3px); }

/* ---- orb / hud ---- */
.orb-wrap { position: relative; height: 580px; }
.orb-wrap.sm { height: 420px; }
hud-orb { position: absolute; inset: 0; display: block; }
.hud-corner { position: absolute; width: 34px; height: 34px; opacity: .7; }
.hud-corner.tl { top: 10px; left: 10px; border-left: 1.5px solid var(--acc); border-top: 1.5px solid var(--acc); }
.hud-corner.tr { top: 10px; right: 10px; border-right: 1.5px solid var(--acc); border-top: 1.5px solid var(--acc); }
.hud-corner.bl { bottom: 10px; left: 10px; border-left: 1.5px solid var(--acc); border-bottom: 1.5px solid var(--acc); }
.hud-corner.br { bottom: 10px; right: 10px; border-right: 1.5px solid var(--acc); border-bottom: 1.5px solid var(--acc); }
.hud-label { position: absolute; font-family: var(--mono); font-size: 10px; color: #5a648e; }
.hud-label.top { top: 24px; left: 50%; transform: translateX(-50%); letter-spacing: .3em; }
.hud-label.bot { bottom: 26px; left: 50%; transform: translateX(-50%); letter-spacing: .24em; }
.hud-label.left { left: 18px; top: 46%; animation: floaty 6s ease-in-out infinite; }
.hud-label.right { right: 18px; top: 38%; text-align: right; animation: floaty2 5s ease-in-out infinite; }
.hud-label b { color: var(--acc2); font-weight: 400; }

/* ---- marquee ---- */
.marquee {
  position: relative; z-index: 1; border-top: 1px solid var(--accDim); border-bottom: 1px solid var(--accDim);
  padding: 18px 0; overflow: hidden; background: rgba(8, 11, 24, .5);
}
.marquee-track {
  display: flex; gap: 56px; width: max-content; animation: marquee 26s linear infinite;
  font-family: var(--mono); font-size: 14px; letter-spacing: .12em; color: #8089b0;
}
.marquee-track span { display: flex; align-items: center; gap: 12px; }
.marquee-track span i { color: var(--acc); font-style: normal; }

/* ---- panels / cards ---- */
.panel {
  position: relative; padding: 26px; border: 1px solid var(--accDim); border-radius: 16px;
  background: var(--panel); backdrop-filter: blur(10px); overflow: hidden;
}
.panel.topline::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent); opacity: .5;
}
.icon-box {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px;
  background: var(--accDim); color: var(--acc2); font-size: 16px; flex: none;
}
.icon-box.lg { width: 44px; height: 44px; border-radius: 11px; font-size: 18px; }

/* skill cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.skill-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.skill-head .t { font-size: 17px; font-weight: 600; color: #eef1ff; }
.skill-head .code { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; color: #5e6890; }
.skill-row { margin-bottom: 16px; }
.skill-row:last-child { margin-bottom: 0; }
.skill-row .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.skill-row .nm { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #c7cef0; }
.skill-row .nm i { color: var(--acc2); width: 16px; font-size: 13px; text-align: center; }
.skill-row .pct { font-family: var(--mono); font-size: 11px; color: #7a84ac; }
.bar { height: 5px; border-radius: 4px; background: rgba(120, 140, 200, .12); overflow: hidden; }
.bar > span {
  display: block; height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--acc), var(--acc2)); box-shadow: 0 0 12px var(--accDim);
  transition: width 1.3s cubic-bezier(.2, .8, .2, 1);
}

/* work cards */
.work-card {
  display: block; position: relative; height: 100%; padding: 30px; border: 1px solid var(--accDim);
  border-radius: 18px; background: var(--panel-strong); backdrop-filter: blur(12px); overflow: hidden;
  transition: transform .25s ease, box-shadow .3s, border-color .3s;
}
.work-card:hover { border-color: rgba(79, 124, 255, .5); box-shadow: 0 26px 60px -20px rgba(79, 124, 255, .4); }
.work-card .num {
  position: absolute; top: -40px; right: -30px; font-family: var(--mono); font-size: 130px;
  font-weight: 600; color: rgba(79, 124, 255, .06); line-height: 1; pointer-events: none;
}
.work-card .row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.kind {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; color: #6b76a0;
  text-transform: uppercase; padding: 5px 10px; border: 1px solid var(--accDim); border-radius: 20px;
}
.work-card h3 { font-size: 23px; color: #f1f3ff; margin-bottom: 10px; }
.work-card p { margin: 0 0 22px; color: #99a2c6; font-size: 14.5px; line-height: 1.65; }
.work-thumb { border-radius: 12px; border: 1px solid var(--accDim); margin-bottom: 18px; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; color: #9aa3c8;
  padding: 5px 10px; border-radius: 6px; background: rgba(120, 140, 200, .08);
}
.view-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--acc2); }

/* timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--acc), transparent); }
.tl-item { position: relative; margin-bottom: 34px; padding: 26px; border: 1px solid var(--accDim); border-radius: 16px; background: var(--panel); backdrop-filter: blur(10px); }
.tl-item:last-child { margin-bottom: 0; }
.tl-item .knob { position: absolute; left: -35px; top: 30px; width: 14px; height: 14px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 0 5px rgba(79, 124, 255, .15), 0 0 18px var(--acc); }
.tl-item .top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 10px; }
.tl-item h3 { font-size: 20px; color: #f1f3ff; }
.pill { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--acc2); padding: 5px 11px; border: 1px solid var(--accDim); border-radius: 20px; }
.tl-item .co { font-family: var(--mono); font-size: 13px; color: #8089b0; margin-bottom: 12px; }
.tl-item p { margin: 0; color: #99a2c6; font-size: 14.5px; line-height: 1.65; }

/* blog cards */
.blog-card { display: block; padding: 30px; border: 1px solid var(--accDim); border-radius: 18px; background: var(--panel-strong); backdrop-filter: blur(12px); transition: .3s; }
.blog-card:hover { border-color: rgba(79, 124, 255, .5); transform: translateY(-5px); }
.blog-meta { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: #7a84ac; margin-bottom: 16px; }
.blog-meta .cat { color: var(--acc2); padding: 4px 9px; border: 1px solid var(--accDim); border-radius: 16px; }
.blog-card h3 { font-size: 21px; color: #f1f3ff; line-height: 1.3; margin-bottom: 12px; }
.blog-card p { margin: 0 0 18px; color: #99a2c6; font-size: 14px; line-height: 1.65; }

/* services */
.svc .feats { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.svc .feats li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #c7cef0; }
.svc .feats li i { color: var(--acc); font-size: 11px; }

/* ---- page hero (inner pages) ---- */
.page-hero { padding: 130px 0 50px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.page-hero.solo { grid-template-columns: 1fr; }
.crumbs { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: #5a648e; margin-bottom: 22px; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: var(--accDim); }
.crumbs .cur { color: var(--acc2); }
.page-hero h1 { font-size: 60px; line-height: 1.05; }
.page-hero p.lead { max-width: 520px; margin-top: 20px; }

/* ---- info cards (about) ---- */
.info-card { display: flex; align-items: center; gap: 14px; padding: 20px 22px; border: 1px solid var(--accDim); border-radius: 14px; background: var(--panel); }
.info-card .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; color: #6b76a0; text-transform: uppercase; }
.info-card .v { font-size: 15px; color: #eef1ff; margin-top: 3px; }

/* ---- CTA ---- */
.cta { position: relative; overflow: hidden; padding: 60px 50px; border: 1px solid var(--accDim); border-radius: 22px; background: linear-gradient(160deg, rgba(22, 30, 56, .6), rgba(8, 12, 26, .6)); backdrop-filter: blur(12px); text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(79, 124, 255, .18), transparent 70%); pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { font-size: 46px; margin-bottom: 16px; }
.cta p { max-width: 520px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- forms (contact) ---- */
.form { display: flex; flex-direction: column; gap: 16px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: #7a84ac; margin-bottom: 8px; text-transform: uppercase; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--accDim);
  background: rgba(8, 12, 26, .6); color: var(--text); font-family: var(--sans); font-size: 15px; transition: .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px var(--accDim); }
.field textarea { resize: vertical; min-height: 140px; }

/* ---- article body (blog detail) ---- */
.article-body { color: #c2cae8; font-size: 16px; line-height: 1.8; max-width: 760px; }
.article-body h1, .article-body h2, .article-body h3 { color: #f1f3ff; margin: 32px 0 14px; }
.article-body h2 { font-size: 28px; } .article-body h3 { font-size: 21px; }
.article-body p { margin: 0 0 18px; }
.article-body a { color: var(--acc2); border-bottom: 1px solid var(--accDim); }
.article-body code { font-family: var(--mono); background: rgba(120, 140, 200, .1); padding: 2px 6px; border-radius: 5px; font-size: .9em; }
.article-body pre { background: rgba(8, 12, 26, .8); border: 1px solid var(--accDim); border-radius: 12px; padding: 20px; overflow-x: auto; }
.article-body pre code { background: none; padding: 0; }
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 18px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid var(--acc); margin: 0 0 18px; padding: 4px 0 4px 18px; color: var(--muted); }

/* ---- footer ---- */
.footer {
  position: relative; z-index: 1; border-top: 1px solid var(--accDim); margin-top: 40px;
  padding: 34px 40px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; max-width: var(--maxw); margin-left: auto; margin-right: auto;
  font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: #5e6890;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a:hover { color: #fff; }
.footer .ops { display: flex; align-items: center; gap: 8px; }

/* ---- pagination ---- */
.pager { display: flex; justify-content: center; gap: 10px; margin-top: 50px; font-family: var(--mono); font-size: 13px; }
.pager a, .pager span { padding: 9px 15px; border: 1px solid var(--accDim); border-radius: 8px; color: #9aa3c8; transition: .2s; }
.pager a:hover { border-color: var(--acc); color: #fff; }
.pager .on { background: var(--acc); color: #05060a; border-color: var(--acc); }

/* ---- filter tabs ---- */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tab { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: #9aa3c8; padding: 9px 16px; border: 1px solid var(--accDim); border-radius: 20px; cursor: pointer; transition: .2s; }
.tab:hover { color: #fff; border-color: var(--acc); }
.tab.on { background: var(--acc); color: #05060a; border-color: var(--acc); }

/* ---- reveal animation ---- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1); }
.rv.in { opacity: 1; transform: none; }

/* ---- messages / toast ---- */
.messages-container { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.alert { padding: 14px 18px; border-radius: 10px; font-size: 14px; border: 1px solid var(--accDim); background: rgba(8, 12, 26, .92); color: #e6ebff; backdrop-filter: blur(8px); }
.alert-success { border-color: rgba(78, 227, 154, .5); }
.alert-error { border-color: rgba(255, 90, 90, .5); }

/* ---- empty ---- */
.empty { text-align: center; color: var(--muted); padding: 60px 0; font-family: var(--mono); letter-spacing: .1em; }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 980px) {
  .wrap { padding: 0 22px; }
  .hero { grid-template-columns: 1fr; padding: 110px 0 50px; min-height: auto; }
  .hero h1 { font-size: 48px; }
  .orb-wrap { height: 380px; order: -1; }
  .page-hero { grid-template-columns: 1fr; padding: 110px 0 40px; }
  .page-hero .orb-wrap { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section-head h2, .cta h2 { font-size: 32px; }
  .page-hero h1 { font-size: 40px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5, 7, 14, .97); padding: 20px 34px; gap: 18px; border-bottom: 1px solid var(--accDim);
  }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 38px; }
  .nav-cta span:not(.dot) { display: none; }
  .footer { flex-direction: column; text-align: center; }
}
