/* ===========================================================
   IPv4 Lookup — SEOWebChecker.com
   Design system: dark navy palette, Outfit (display) + Inter (body)
   =========================================================== */

:root {
  --bg: #0b1220;
  --bg-elevated: #101a2e;
  --bg-card: #131f38;
  --bg-input: #0d1626;
  --border: #223052;
  --border-soft: #1a2540;
  --text: #eaf0ff;
  --text-dim: #9fb0d0;
  --text-faint: #6c7ea3;
  --accent: #3ea6ff;
  --accent-2: #22d3a7;
  --accent-warn: #ffb454;
  --accent-danger: #ff6b6b;
  --accent-grad: linear-gradient(135deg, #3ea6ff 0%, #22d3a7 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-h: 72px;
}

[data-theme="light"] {
  --bg: #f5f7fc;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-input: #eef1f9;
  --border: #dce3f2;
  --border-soft: #e7ebf5;
  --text: #101a2e;
  --text-dim: #4c5975;
  --text-faint: #8592ac;
  --shadow: 0 10px 30px rgba(20, 30, 60, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #04101f;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-faint);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 34px; }
.topbar-links { display: flex; gap: 16px; }
.topbar-links a:hover { color: var(--accent); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
  height: var(--header-h);
}
[data-theme="light"] .site-header { background: rgba(255, 255, 255, 0.92); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.brand .logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--accent-grad);
  display: flex; align-items: center; justify-content: center;
  color: #04101f; font-size: 15px; font-weight: 800;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px; font-weight: 500;
  color: var(--text-dim);
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--text); background: var(--bg-card); }
.nav-item .chev { width: 10px; height: 10px; transition: transform .18s ease; }
.nav-item[data-open="true"] .chev { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 560px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 20px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 28px;
  z-index: 250;
}
.nav-item[data-open="true"] .mega-menu { display: grid; }
.mega-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.mega-menu a:hover { background: var(--bg-card); color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent-grad); color: #04101f; }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(62, 166, 255, 0.35); }
.btn-primary:disabled { opacity: .6; cursor: not-allowed; box-shadow: none; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: var(--bg-card); color: var(--text-dim); border-color: var(--border); }
.btn-ghost:hover { color: var(--text); }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }
.btn-block { width: 100%; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; }
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text);
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar { border-bottom: 1px solid var(--border-soft); background: var(--bg-elevated); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-faint); padding: 12px 0; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -40% -10% auto -10%;
  height: 480px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(62,166,255,.18), transparent 70%),
              radial-gradient(50% 50% at 80% 10%, rgba(34,211,167,.14), transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent-2);
  background: rgba(34, 211, 167, .1); border: 1px solid rgba(34,211,167,.25);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.08; }
.hero h1 span { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: var(--text-dim); font-size: 17px; max-width: 560px; margin-bottom: 26px; }
.hero-stats { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.hero-stat b { font-family: var(--font-display); font-size: 24px; display: block; }
.hero-stat span { color: var(--text-faint); font-size: 13px; }

.myip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.myip-card .label { font-size: 13px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.myip-address {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  word-break: break-all;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.myip-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.myip-meta .item { background: var(--bg-input); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: 10px 12px; }
.myip-meta .item .k { font-size: 11.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .05em; }
.myip-meta .item .v { font-size: 14px; font-weight: 600; margin-top: 2px; word-break: break-word; }
.icon-btn {
  width: 32px; height: 32px; border-radius: 8px; background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-btn svg { width: 15px; height: 15px; }
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Tool strip (reference tools) ---------- */
.tool-strip { padding: 34px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: var(--bg-elevated); }
.tool-strip .section-head { margin-bottom: 20px; }
.tool-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.tool-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); padding: 12px 14px; font-size: 13.5px; font-weight: 500; color: var(--text-dim);
}
.tool-chip:hover { border-color: var(--accent); color: var(--text); }
.tool-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); flex-shrink: 0; }

/* ---------- Section shell ---------- */
.section { padding: 68px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); }
.section-head p { color: var(--text-dim); font-size: 16px; }
.section-tag {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}

/* ---------- Lookup tool ---------- */
.lookup-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}
.mode-tabs { display: inline-flex; background: var(--bg-input); border: 1px solid var(--border); border-radius: 10px; padding: 4px; margin-bottom: 20px; }
.mode-tab { padding: 9px 18px; border-radius: 7px; font-size: 14px; font-weight: 600; color: var(--text-faint); background: transparent; border: none; }
.mode-tab[aria-selected="true"] { background: var(--accent-grad); color: #04101f; }

.field-label { font-size: 13.5px; font-weight: 600; color: var(--text-dim); margin-bottom: 8px; display: flex; justify-content: space-between; }
.field-hint { font-weight: 400; color: var(--text-faint); font-size: 12.5px; }

.input-row { display: flex; gap: 10px; }
input[type="text"], textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color .15s ease;
}
input[type="text"]:focus, textarea:focus { border-color: var(--accent); }
textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.input-row input { flex: 1; }

.field-error { color: var(--accent-danger); font-size: 13px; margin-top: 8px; display: none; align-items: center; gap: 6px; }
.field-error.show { display: flex; }
.field-valid { color: var(--accent-2); font-size: 13px; margin-top: 8px; display: none; align-items: center; gap: 6px; }
.field-valid.show { display: flex; }

.lookup-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }

.adv-options { margin-top: 18px; border-top: 1px solid var(--border-soft); padding-top: 18px; display: none; gap: 14px; flex-wrap: wrap; }
.adv-options.show { display: flex; }
.chk { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-dim); }
.chk input { accent-color: var(--accent); width: 16px; height: 16px; }

/* ---------- Results ---------- */
#resultsSection { display: none; }
#resultsSection.show { display: block; }
.results-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.results-toolbar .count { font-size: 14px; color: var(--text-dim); }
.results-toolbar .actions { display: flex; gap: 8px; flex-wrap: wrap; }

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 14px;
}
.result-card.is-error { border-color: rgba(255,107,107,.4); background: rgba(255,107,107,.04); }
.result-card .rc-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.result-card .rc-ip { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.result-card .rc-badge { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 4px 10px; border-radius: 999px; background: rgba(34,211,167,.12); color: var(--accent-2); border: 1px solid rgba(34,211,167,.3); }
.result-card .rc-badge.private { background: rgba(255,180,84,.12); color: var(--accent-warn); border-color: rgba(255,180,84,.3); }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.result-grid .r-item { background: var(--bg-input); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: 12px 14px; }
.result-grid .r-item .k { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-faint); margin-bottom: 4px; }
.result-grid .r-item .v { font-size: 14px; font-weight: 600; word-break: break-word; }
.result-card .rc-error-msg { color: var(--accent-danger); font-size: 14px; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius-md);
  padding: 26px; transition: border-color .15s ease, transform .15s ease;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--accent-grad);
  display: flex; align-items: center; justify-content: center; color: #04101f; margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { color: var(--text-dim); font-size: 14.5px; margin: 0; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { text-align: left; position: relative; padding-top: 8px; }
.step-num { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--border); margin-bottom: 6px; }
.step-card h3 { font-size: 16px; }
.step-card p { color: var(--text-dim); font-size: 14px; margin: 0; }

/* ---------- Content / article ---------- */
.article { max-width: 820px; margin: 0 auto; color: var(--text-dim); font-size: 15.5px; }
.article h2 { color: var(--text); margin-top: 34px; }
.article p { margin-bottom: 16px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; color: var(--text);
  font-size: 16px; font-weight: 600; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q .plus { font-size: 20px; color: var(--accent); transition: transform .2s ease; flex-shrink: 0; }
.faq-item[data-open="true"] .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--text-dim); font-size: 14.5px; }
.faq-item[data-open="true"] .faq-a { max-height: 300px; }
.faq-a p { margin: 0 0 18px; }

/* ---------- CTA ---------- */
.cta-section {
  background: var(--accent-grad);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  color: #04101f;
  margin: 0 20px;
  max-width: 1160px;
  margin-inline: auto;
}
.cta-section h2 { color: #04101f; }
.cta-section p { color: rgba(4,16,31,.75); max-width: 520px; margin: 0 auto 26px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-outline { border-color: rgba(4,16,31,.4); color: #04101f; }
.cta-buttons .btn-outline:hover { border-color: #04101f; }
.cta-buttons .btn-solid { background: #04101f; color: #eaf0ff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-elevated); border-top: 1px solid var(--border-soft); padding: 56px 0 24px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-faint); font-size: 13.5px; margin-top: 12px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-faint); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--text-dim); padding: 5px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border-soft); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--text-faint); }
.footer-bottom .links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--accent); }
.disclaimer { font-size: 12px; color: var(--text-faint); margin-top: 16px; line-height: 1.6; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 500;
  max-width: 640px; margin: 0 auto;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 13.5px; color: var(--text-dim); flex: 1; min-width: 220px; }
.cookie-banner a { color: var(--accent); }
.cookie-actions { display: flex; gap: 8px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text);
  padding: 12px 20px; border-radius: 10px; font-size: 14px; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: all .25s ease; z-index: 600;
  display: flex; align-items: center; gap: 8px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Loading ---------- */
.spinner { width: 16px; height: 16px; border: 2px solid rgba(4,16,31,.3); border-top-color: #04101f; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn.loading .spinner { display: inline-block; }
.btn.loading .btn-text { opacity: .7; }
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton { height: 90px; border-radius: var(--radius-md); background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-input) 50%, var(--bg-card) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; margin-bottom: 14px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .result-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .topbar { display: none; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .myip-meta { grid-template-columns: 1fr; }
  .cta-section { padding: 34px 22px; margin: 0 16px; }
  .lookup-panel { padding: 20px; }
  .mega-menu { min-width: unset; width: calc(100vw - 32px); grid-template-columns: 1fr; position: fixed; left: 16px; right: 16px; top: var(--header-h); }
  section.section { padding: 46px 0; }
  .hero { padding: 40px 0 28px; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 300;
  background: var(--bg);
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border-soft); }
.mobile-nav-body { padding: 10px 12px 30px; }
.mobile-acc { border-bottom: 1px solid var(--border-soft); }
.mobile-acc-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; color: var(--text); font-size: 15px; font-weight: 600; padding: 14px 8px; }
.mobile-acc-panel { display: none; padding: 0 8px 14px; }
.mobile-acc[data-open="true"] .mobile-acc-panel { display: block; }
.mobile-acc-panel a { display: block; padding: 9px 6px; font-size: 14px; color: var(--text-dim); }
.mobile-nav-body > a { display: block; padding: 14px 8px; font-weight: 600; border-bottom: 1px solid var(--border-soft); }
