/* ─── Cipherc · Blue × Red-Orange Design System ─── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg:           #050508;
  --surface:      #0a0a12;
  --surface-2:    #10101a;
  --surface-3:    #17172280;
  --border:       #1e1e30;
  --border-strong:#2c2c44;
  --text:         #F0F0F8;
  --text-muted:   #8080A0;
  --cyan:         #FF8C00;   /* electric orange */
  --emerald:      #FF8C00;   /* deep orange     — secondary */
  --violet:       #FF5A1F;   /* red-orange    — action    */
  --amber:        #FF8C00;   /* warm orange               */
  --rose:         #FF3333;   /* danger                    */
  --glow-cyan:    rgba(0, 170, 255, 0.22);
  --nav-height:   64px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; min-height: 100vh; }

/* ─── Background ─── */
.bg {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background: var(--bg);
}
.grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ─── Container ─── */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-height);
  background: rgba(8, 8, 14, 0.9);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.navbar-inner {
  position: relative; z-index: 2;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.navbar-logo { display: flex; align-items: center; text-decoration: none; }
.navbar-logo img {
  height: 44px; width: auto; display: block;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.navbar-logo img:hover {
  filter: brightness(1.2);
  transform: scale(1.04);
}
.navbar-links { display: flex; align-items: center; gap: 2px; }
.navbar-links a {
  padding: 7px 13px; font-size: 13px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; border-radius: 0; transition: all 0.18s;
  font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.05em;
}
.navbar-links a:hover { color: var(--amber); background: rgba(255,140,0,0.05); box-shadow: inset 2px 0 0 var(--amber); }
.navbar-links a.active { color: var(--text); background: var(--surface-2); border: 1px solid var(--border-strong); }
.navbar-right { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative; background: transparent; border: 1px solid var(--border-strong);
  color: var(--text); padding: 8px 16px; border-radius: 0; cursor: pointer;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; gap: 8px; transition: all 0.2s; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.cart-btn:hover { background: var(--amber); border-color: var(--amber); color: #000; box-shadow: none; }
.cart-badge {
  position: absolute; top: -7px; right: -7px;
  min-width: 18px; height: 18px; border-radius: 100px; padding: 0 5px;
  background: linear-gradient(135deg, #FF5A1F, #FF8C00);
  color: #fff; font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0; transform: scale(0.6); transition: all 0.2s cubic-bezier(0.175,0.885,0.32,1.275);
}
.cart-badge.visible { opacity: 1; transform: scale(1); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all 0.2s; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.06em; border-radius: 0; border: 1px solid transparent;
  cursor: pointer; transition: all 0.2s cubic-bezier(0.175,0.885,0.32,1.275);
}
.btn-primary { 
  background: var(--amber); color: #000; border: 1px solid var(--amber);
}
.btn-primary:hover { 
  background: transparent; color: var(--amber); box-shadow: inset 0 0 15px rgba(255,140,0,0.2); 
}
.btn-secondary { background: var(--surface-2); color: var(--text); border: 1px solid var(--border-strong); }
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); background: rgba(255,140,0,0.05); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); color: var(--amber); border-color: var(--amber); }

/* ─── Cyber Decor ─── */
.crosshair { position: relative; }
.crosshair::before, .crosshair::after { content: '+'; position: absolute; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--border-strong); pointer-events: none; }
.crosshair::before { top: -6px; left: -4px; }
.crosshair::after { bottom: -6px; right: -4px; }
/* Violet — deeper red-orange for bundles */
.btn-violet {
  background: linear-gradient(135deg, #FF4500, #CC2200);
  color: #fff; box-shadow: 0 4px 24px rgba(255,69,0,0.35);
}
.btn-violet:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,69,0,0.55); }
.btn-sm { padding: 8px 16px; font-size: 10px; }
.btn-lg { padding: 15px 32px; font-size: 13px; }

/* ─── Badges ─── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--text-muted); white-space: nowrap;
}
.badge-dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; box-shadow: 0 0 8px var(--amber); animation: pulse 2s infinite; }
.badge-cyan    { color: #FF8C00; border-color: rgba(255,140,0,0.3);  background: rgba(255,140,0,0.06); }
.badge-emerald { color: #FF8C00; border-color: rgba(255,140,0,0.3);  background: rgba(255,140,0,0.06); }
.badge-violet  { color: #FF5A1F; border-color: rgba(255,90,31,0.3);  background: rgba(255,90,31,0.06); }
.badge-amber   { color: #FF8C00; border-color: rgba(255,140,0,0.3);  background: rgba(255,140,0,0.06); }
.badge-rose    { color: #FF3333; border-color: rgba(255,51,51,0.3);  background: rgba(255,51,51,0.06); }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ─── Page header ─── */
.page-header { padding: calc(var(--nav-height) + 64px) 0 44px; text-align: center; }
.page-header .eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--amber);
  display: block; margin-bottom: 12px;
}
.page-header h1 { font-size: clamp(28px,4vw,50px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 12px; }
.page-header h1 .grad {
  background: linear-gradient(135deg, #FF8C00, #FF4500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-header p { color: var(--text-muted); font-size: 15px; max-width: 480px; margin: 0 auto; }

/* ─── Section titles ─── */
.section-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--amber);
  display: block; margin-bottom: 8px;
}
.section-title { font-size: clamp(20px,2.5vw,30px); font-weight: 700; letter-spacing: -0.025em; }
.section-sub   { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* ─── Filter bar ─── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 7px 16px; background: transparent; border: 1px solid var(--border-strong);
  border-radius: 0; color: var(--text-muted); font-size: 11px; font-weight: 700;
  font-family: 'JetBrains Mono', monospace; cursor: pointer; transition: all 0.18s;
  text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}
.filter-btn:hover  { border-color: var(--amber); color: var(--amber); }
.filter-btn.active { border-color: var(--amber); color: #000; background: var(--amber); }

/* ─── Product grid ─── */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--border); }
.products-grid > .product-card { border: none; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ─── Product card ─── */
.product-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 0;
  padding: 24px; display: flex; flex-direction: column;
  transition: all 0.1s ease; position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,140,0,0.03) 10px, rgba(255,140,0,0.03) 20px);
  opacity: 0; transition: opacity 0.1s;
}
.product-card:hover { border-color: var(--amber); box-shadow: inset 0 0 0 1px var(--amber); background: var(--surface-2); transform: none; z-index: 2; }
.product-card:hover::before { opacity: 1; }

.card-top  { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.card-icon { width: 46px; height: 46px; border-radius: 0; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; background: var(--bg); }
.card-badges { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.card-name { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.card-pack { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 10px; }
.card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.card-price { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 800; color: #10b981; line-height: 1; }
.card-price sub { font-size: 11px; color: var(--text-muted); font-weight: 400; vertical-align: baseline; margin-left: 3px; }
.card-meta-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.card-count { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted); }

/* ─── Stats ─── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); }
.stat-card { text-align: center; padding: 28px 16px; background: var(--surface); border-right: 1px solid var(--border); border-radius: 0; transition: background 0.1s; }
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--amber); }
.stat-num  { font-family: 'JetBrains Mono', monospace; font-size: 36px; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 6px; }
.stat-label{ font-size: 12px; color: var(--text-muted); }

/* ─── Team cards ─── */
/* ─── Team cards ─── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--border); }
.team-card { background: var(--surface); border-right: 1px solid var(--border); border-radius: 0; padding: 32px 24px; text-align: center; transition: all 0.1s; }
.team-card:last-child { border-right: none; }
.team-card:hover { background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--amber); transform: none; }
.team-avatar { width: 72px; height: 72px; border-radius: 0; border: 1px solid var(--border-strong); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 800; color: #fff; background: var(--bg); }
.team-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--amber); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.team-bio  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── Docs ─── */
/* ─── Docs ─── */
.docs-layout { display: grid; grid-template-columns: 230px 1fr; gap: 32px; align-items: start; padding-top: calc(var(--nav-height) + 40px); padding-bottom: 60px; }
.docs-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); }
.docs-nav { background: var(--bg); border: 1px solid var(--border); border-radius: 0; padding: 16px; }
.docs-nav-section { margin-bottom: 18px; }
.docs-nav-section:last-child { margin-bottom: 0; }
.docs-nav-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); padding: 0 10px; margin-bottom: 6px; display: block; }
.docs-nav a { display: block; padding: 7px 10px; font-size: 13px; color: var(--text-muted); text-decoration: none; border-radius: 0; transition: all 0.15s; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; }
.docs-nav a:hover  { color: var(--amber); background: rgba(255,140,0,0.05); box-shadow: inset 2px 0 0 var(--amber); }
.docs-nav a.active { color: var(--text); background: var(--surface-2); border: 1px solid var(--border-strong); }

.docs-content section { padding: 0 0 48px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.docs-content section:last-child { border-bottom: none; margin-bottom: 0; }
.docs-h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 12px; }
.docs-h3 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; }
.docs-p  { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin-bottom: 14px; }
.docs-code {
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: 0;
  padding: 16px 20px; font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--amber); overflow-x: auto; margin: 14px 0; line-height: 1.7;
}
.docs-tip { background: rgba(255,140,0,0.02); border: 1px solid rgba(255,140,0,0.4); border-left: 4px solid var(--amber); border-radius: 0; padding: 14px 18px; margin: 16px 0; font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.docs-tip strong { color: var(--amber); }
.docs-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 16px 0; }
.docs-table th { text-align: left; padding: 10px 14px; background: var(--surface-2); border: 1px solid var(--border); font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.docs-table td { padding: 10px 14px; border: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
.docs-table td:first-child { font-family: 'JetBrains Mono', monospace; color: var(--amber); }

/* ─── Featured / CTA ─── */
.featured-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--border); }
.featured-grid > .product-card { border: none; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-strip { background: var(--bg); border: 1px solid var(--border-strong); border-radius: 0; padding: 48px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,140,0,0.03) 10px, rgba(255,140,0,0.03) 20px); pointer-events: none; }
.cta-strip h2 { font-size: clamp(22px,3vw,32px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 8px; }
.cta-strip p  { color: var(--text-muted); font-size: 14px; }
.cta-strip-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── Gradients ─── */
.grad {
  background: linear-gradient(135deg, #FF8C00, #FF4500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-v {
  background: linear-gradient(135deg, #FF5A1F, #FF8C00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
section.sect { padding: 60px 0; }

/* ─── Inline code ─── */
code { font-family: 'JetBrains Mono', monospace; font-size: 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 5px; padding: 1px 7px; color: var(--amber); }

/* ─── Step blocks ─── */
.steps { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.step  { display: flex; gap: 18px; padding: 20px; background: var(--surface); border-bottom: 1px solid var(--border); border-radius: 0; align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step-num { width: 32px; height: 32px; border-radius: 0; border: 1px solid var(--amber); flex-shrink: 0; background: rgba(255,140,0,0.1); color: var(--amber); font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.step-body p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── Model guide rows ─── */
.model-rows { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.model-row  { display: flex; align-items: flex-start; gap: 16px; padding: 18px; background: var(--surface); border-bottom: 1px solid var(--border); border-radius: 0; transition: background 0.2s; }
.model-row:last-child { border-bottom: none; }
.model-row:hover { background: var(--surface-2); box-shadow: inset 4px 0 0 var(--amber); }
.model-row-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.model-row h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.model-row p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── FAQ ─── */
.faq-list  { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.faq-item  { border-bottom: 1px solid var(--border); border-radius: 0; overflow: hidden; }
.faq-item:last-child { border-bottom: none; }
.faq-q     { width: 100%; background: var(--surface-2); border: none; color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; padding: 18px 20px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background 0.15s; }
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q .chevron { color: var(--text-muted); font-size: 12px; transition: transform 0.2s; flex-shrink: 0; }
.faq-q.open .chevron { transform: rotate(180deg); color: var(--amber); }
.faq-a      { display: none; padding: 0 20px 18px; font-size: 13px; color: var(--text-muted); line-height: 1.75; background: var(--surface-2); }
.faq-a.open { display: block; }

/* ─── Prompt library ─── */
.prompt-cats { display: flex; flex-direction: column; gap: 20px; }
.prompt-cat-section h4 { font-size: 13px; font-weight: 700; margin-bottom: 10px; font-family: 'JetBrains Mono', monospace; color: var(--amber); text-transform: uppercase; letter-spacing: 0.08em; }
.prompt-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.prompt-item { padding: 12px 16px; background: var(--surface); border-bottom: 1px solid var(--border); border-radius: 0; transition: background 0.1s; }
.prompt-item:last-child { border-bottom: none; }
.prompt-item:hover { background: var(--surface-2); box-shadow: inset 4px 0 0 var(--amber); }
.prompt-item h5 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.prompt-item p  { font-size: 12px; color: var(--text-muted); }

/* ─── Toast ─── */
.toast { position: fixed; bottom: 28px; right: 28px; z-index: 9999; background: var(--bg); border: 1px solid var(--amber); border-radius: 0; padding: 14px 20px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--amber); box-shadow: 4px 4px 0 rgba(255,140,0,0.2); transform: translateY(80px); opacity: 0; transition: all 0.2s; pointer-events: none; display: flex; align-items: center; gap: 10px; text-transform: uppercase; }
.toast.show { transform: translateY(0) scale(1); opacity: 1; }

/* ─── Footer ─── */
footer { padding: 32px 0; border-top: 1px solid var(--border); text-align: center; color: var(--text-muted); font-size: 12px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; }
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--amber); }

/* ─── Icons ─── */
.lucide {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.25em;
  display: inline-block;
}
.cart-icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.2em;
  margin-right: 4px;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .products-grid,.featured-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid  { grid-template-columns: repeat(2,1fr); }
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; }
  .cta-strip { flex-direction: column; text-align: center; }
  .cta-strip-actions { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
  .products-grid,.featured-grid,.team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 20px;
  color: var(--text);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}
.mobile-menu a:last-child {
  border-bottom: none;
}
