/* =========================================
   GRV LLC — Computer Systems Design & Technical Services
   Dark Theme | Violet / Emerald / Amber Palette
   ========================================= */

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

:root {
  --bg-deep: #07020e;
  --bg-body: #0b0418;
  --bg-surface: #100823;
  --bg-card: #180f30;
  --bg-card-hover: #1f1440;
  --bg-elevated: #281b50;
  --text-primary: #e8e0f0;
  --text-secondary: #8b7fa8;
  --text-muted: #5c4e7a;
  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.15);
  --amber: #f59e0b;
  --violet: #7c3aed;
  --violet-dim: rgba(124, 58, 237, 0.08);
  --border: #20173a;
  --border-light: #2d2150;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --f-display: 'Outfit', sans-serif;
  --f-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.emerald {
  background: linear-gradient(135deg, var(--emerald), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.amber {
  background: linear-gradient(135deg, var(--amber), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: #050210;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--f-body);
  transition: var(--transition);
}
.pill-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(16,185,129,0.25); }

.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: #050210;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--f-body);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-pri:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--emerald-glow); }
.btn-pri.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-sec {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--f-body);
  transition: var(--transition);
}
.btn-sec:hover { border-color: var(--emerald); color: var(--emerald); transform: translateY(-2px); }

/* ---------- Section Shared ---------- */
.section { padding: 100px 0; position: relative; }
.section-mid { background: var(--bg-surface); }

.sec-head { text-align: center; margin-bottom: 56px; }
.sec-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.sec-head h2 {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.sec-head p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(7,2,14,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { color: var(--emerald); width: 32px; height: 32px; }
.brand-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
}
.brand-sm { font-weight: 400; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; }

.nav-items { display: flex; align-items: center; gap: 24px; }
.nav-items a:not(.pill-btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}
.nav-items a:not(.pill-btn)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--emerald);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-items a:not(.pill-btn):hover,
.nav-items a:not(.pill-btn).active { color: var(--text-primary); }
.nav-items a:not(.pill-btn):hover::after,
.nav-items a:not(.pill-btn).active::after { width: 100%; }

.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.geo-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.geo-blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.1; }
.blob-a { width: 500px; height: 500px; background: var(--violet); top: -150px; right: -100px; animation: driftA 25s ease-in-out infinite; }
.blob-b { width: 350px; height: 350px; background: var(--emerald); bottom: -100px; left: -80px; animation: driftB 20s ease-in-out infinite reverse; }
@keyframes driftA {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-40px) scale(1.1); }
}
@keyframes driftB {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px,30px) scale(1.15); }
}
.geo-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(124,58,237,0.03) 80px, rgba(124,58,237,0.03) 81px);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); animation: throb 2s ease-in-out infinite; }
@keyframes throb { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero h1 {
  font-family: var(--f-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.h-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: baseline;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.h-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-3px);
}
.h-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0;
  transition: var(--transition);
}
.h-card:hover::before { opacity: 0.5; }
.hc-icon { width: 100%; color: var(--emerald); margin-bottom: 6px; opacity: 0.6; }
.hc-num {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
}
.hc-plus, .hc-pct {
  font-size: 1rem;
  font-weight: 700;
  color: var(--emerald);
}
.hc-lbl { display: block; width: 100%; font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Focus Cards ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.focus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.focus-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.fc-num {
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.focus-card h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.focus-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.fc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.fc-tags span {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--violet-dim);
  color: var(--text-secondary);
  border: 1px solid rgba(124,58,237,0.15);
}

/* ---------- Approach ---------- */
.approach-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.approach-text .sec-tag { margin-bottom: 16px; }
.approach-text h2 {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.approach-text > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.approach-list { display: flex; flex-direction: column; gap: 20px; }
.ap-item { display: flex; gap: 14px; align-items: flex-start; }
.ap-bullet {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 12px var(--emerald-glow);
}
.ap-item strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.ap-item p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

/* ---------- Hex Grid ---------- */
.hex-grid {
  position: relative;
  width: 280px;
  height: 320px;
  margin: 0 auto;
}
.hex {
  position: absolute;
  width: 72px;
  height: auto;
  color: var(--border-light);
  transition: var(--transition);
  text-align: center;
}
.hex svg { width: 100%; height: auto; display: block; }
.hex span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hex:hover { color: var(--emerald); }
.hex:hover span { color: var(--emerald); }
.hex-1 { top: 0; left: 50%; transform: translateX(-50%); }
.hex-2 { top: 50px; left: 10px; }
.hex-3 { top: 50px; right: 10px; left: auto; }
.hex-4 { top: 100px; left: 50%; transform: translateX(-50%); }
.hex-5 { top: 150px; left: 10px; }
.hex-6 { top: 150px; right: 10px; left: auto; }
.hex-7 { top: 200px; left: 50%; transform: translateX(-50%); }

/* ---------- CTA Box ---------- */
.cta-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 250px;
  background: radial-gradient(ellipse, rgba(16,185,129,0.07), transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.cta-box p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1rem;
  position: relative;
}
.cta-box .btn-pri { position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 60px 0 0; }
.fw { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.brand-col p { color: var(--text-muted); font-size: 0.9rem; margin: 16px 0; max-width: 280px; line-height: 1.7; }
.fc-contact { display: flex; flex-direction: column; gap: 4px; font-size: 0.85rem; color: var(--text-secondary); }
.fc h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.fl { display: flex; flex-direction: column; gap: 10px; }
.fl a { font-size: 0.9rem; color: var(--text-secondary); }
.fl a:hover { color: var(--emerald); }
.fb {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.fb-links { display: flex; gap: 20px; }
.fb-links a:hover { color: var(--emerald); }

/* ---------- Back to Top ---------- */
.btt-btn {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition); z-index: 999;
}
.btt-btn.visible { opacity: 1; transform: translateY(0); }
.btt-btn:hover { border-color: var(--emerald); color: var(--emerald); transform: translateY(-3px); }

/* ---------- Page Header ---------- */
.page-header {
  padding: 140px 0 60px; text-align: center;
  background: var(--bg-surface); border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--f-display);
  font-size: 2.6rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em;
}
.page-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---------- Services ---------- */
.svc-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.svc-lead h2 { font-family: var(--f-display); font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.svc-lead p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.svc-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-metric { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; text-align: center; }
.svc-metric-num { font-family: var(--f-display); font-size: 1.6rem; font-weight: 800; }
.svc-metric-lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.svc-rows { display: flex; flex-direction: column; gap: 14px; }
.svc-row {
  display: grid; grid-template-columns: 48px 1fr 60px; gap: 18px;
  align-items: center; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px 24px;
  transition: var(--transition);
}
.svc-row:hover { background: var(--bg-card-hover); border-color: var(--border-light); transform: translateX(4px); }
.svc-ri { width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--emerald); }
.svc-row h3 { font-family: var(--f-display); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.svc-row p { font-size: 0.85rem; color: var(--text-secondary); }
.svc-ra { font-size: 0.75rem; color: var(--emerald); text-align: right; opacity: 0; transition: var(--transition); }
.svc-row:hover .svc-ra { opacity: 1; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.about-grid h2 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; }
.about-grid p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-val { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.about-val h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.about-val p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; }
.about-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.about-tags span { font-size: 0.78rem; padding: 5px 12px; border-radius: 16px; border: 1px solid var(--border); color: var(--text-secondary); transition: var(--transition); }
.about-tags span:hover { border-color: var(--emerald); color: var(--emerald); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--text-secondary); }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 12px 14px; background: var(--bg-deep);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text-primary); font-family: var(--f-body); font-size: 0.9rem;
  transition: var(--transition); outline: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px var(--emerald-glow); }
.fg textarea { min-height: 110px; resize: vertical; }
.fg select { cursor: pointer; }

.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-cards h2 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.contact-cards > p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.cc { display: flex; gap: 14px; align-items: flex-start; }
.cci { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-sm); background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--emerald); }
.cc h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.cc p, .cc a { font-size: 0.9rem; color: var(--text-secondary); }
.cc a:hover { color: var(--emerald); }

/* ---------- Legal ---------- */
.legal-b { max-width: 800px; margin: 0 auto; padding: 40px 0 80px; }
.legal-b h2 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; margin: 36px 0 12px; }
.legal-b h3 { font-size: 1.1rem; font-weight: 600; margin: 28px 0 10px; color: var(--emerald); }
.legal-b p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 16px; font-size: 0.95rem; }
.legal-b ul, .legal-b ol { margin: 12px 0 20px; padding-left: 24px; color: var(--text-secondary); }
.legal-b li { margin-bottom: 8px; line-height: 1.7; }
.legal-b strong { color: var(--text-primary); }
.legal-b a { color: var(--emerald); }
.legal-b a:hover { text-decoration: underline; }
.legal-m { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }

/* ---------- 404 ---------- */
.p404 { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 80vh; text-align: center; padding: 40px 24px; }
.p404 h1 { font-size: 7rem; font-weight: 900; background: linear-gradient(135deg, var(--violet), var(--emerald), var(--amber)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; }
.p404 h2 { font-family: var(--f-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.p404 p { color: var(--text-secondary); margin-bottom: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-cards { max-width: 400px; margin: 0 auto; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-wrap { grid-template-columns: 1fr; }
  .fw { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .svc-lead { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .sec-head h2 { font-size: 1.8rem; }
  .hero h1 { font-size: 2.2rem; }
  .focus-grid { grid-template-columns: 1fr; }
  .fw { grid-template-columns: 1fr; }
  .about-vals { grid-template-columns: 1fr; }
  .svc-metrics { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 10px; text-align: center; }
  .svc-ri { margin: 0 auto; }
  .svc-ra { text-align: center; opacity: 1; }
  .fb { flex-direction: column; gap: 12px; text-align: center; }
  .page-header h1 { font-size: 2rem; }
  .cta-box { padding: 36px 20px; }
  .cta-box h2 { font-size: 1.5rem; }
  .approach-graphic { display: none; }

  .nav-items {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bg-body); flex-direction: column;
    padding: 80px 28px 28px; transition: var(--transition);
    border-left: 1px solid var(--border); align-items: flex-start; gap: 20px;
  }
  .nav-items.open { right: 0; }
  .menu-btn { display: flex; }
  .nav-items .pill-btn { display: none; }
}
