:root {
  --navy:       #0f172a;
  --navy-soft:  #1e293b;
  --blue:       #2563eb;
  --blue-light: #3b82f6;
  --blue-bg:    #eff6ff;
  --gold:       #d97706;
  --gray:       #64748b;
  --gray-light: #f1f5f9;
  --border:     #e2e8f0;
  --white:      #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

/* ── Nav ─────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav .logo img { height: 46px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }
.nav-login { color: var(--navy); font-weight: 600; }
.nav-login.is-disabled { color: #cbd5e1; cursor: not-allowed; pointer-events: none; }
.form-actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.contact .section-head strong { color: var(--blue); }

.btn-nav {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem !important;
}

.btn-nav:hover { background: var(--blue-light) !important; }

/* ── Shared ──────────────────────────────────────── */

.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

.btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.8rem 1.7rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,99,235,0.25); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border: 1px solid #bfdbfe;
  box-shadow: none;
}
.btn-outline:hover { background: var(--blue-bg); color: var(--blue); box-shadow: none; }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 2.2rem; }
.section-head h2 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 0.6rem;
}
.section-head p { color: var(--gray); font-size: 1.05rem; text-wrap: balance; }
.contact .section-head { max-width: 860px; }

/* ── Hero ────────────────────────────────────────── */

.hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 78%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--blue-bg);
  color: var(--blue);
  border: 1px solid #bfdbfe;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 1.3rem;
  color: var(--navy);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--gray);
  margin-bottom: 0.9rem;
  line-height: 1.65;
}
.hero-sub em { font-style: normal; color: var(--navy); font-weight: 600; }

.hero-note { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.6rem; }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 24px 50px rgba(15,23,42,0.18); }
.hero-float {
  position: absolute; left: -16px; bottom: -16px;
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.14); padding: 0.65rem 0.9rem;
}
.hf-icon { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: var(--blue-bg); border-radius: 10px; }
.hf-icon svg { width: 18px; height: 18px; }
.hf-title { font-size: 0.85rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.hf-sub { font-size: 0.74rem; color: var(--gray); }

.audience { text-align: center; color: var(--gray); font-size: 0.9rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }

/* trust strip */
.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.92rem;
}
.trust strong { color: var(--navy); font-weight: 700; }
.trust .dot { width: 4px; height: 4px; border-radius: 50%; background: #cbd5e1; }

/* ── Products ────────────────────────────────────── */

/* ── Solutions (tabs) ────────────────────────────── */

.solutions { padding: 3.25rem 0 4rem; background: linear-gradient(180deg, #eef5ff 0%, #ffffff 55%); }
.solutions-intro { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: center; max-width: 980px; margin: 0 auto 1.75rem; }
.si-left .badge { margin-bottom: 0.9rem; }
.solutions-intro h1 { font-size: 2.4rem; font-weight: 800; letter-spacing: -1px; line-height: 1.12; color: var(--navy); }
.grounding { background: var(--blue-bg); border: 1px solid #dbeafe; color: var(--navy); font-size: 0.95rem; line-height: 1.55; padding: 1rem 1.2rem; border-radius: 12px; }
.grounding strong { display: inline-block; margin-bottom: 0.3rem; font-size: 1.02rem; color: var(--navy); }

/* underline tabs */
.tabs { max-width: 980px; margin: 0 auto; }
.tab-btns { display: flex; gap: 0.3rem; flex-wrap: wrap; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.tab-btn {
  background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px;
  padding: 0.75rem 1.1rem; font-family: inherit; font-size: 0.95rem; font-weight: 600;
  color: var(--gray); cursor: pointer; transition: color .18s, border-color .18s;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }

.tab-panel { display: none; }
.tab-panel.active {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 2.5rem; box-shadow: 0 16px 44px rgba(15,23,42,0.08);
}
.tp-aud { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.7rem; }
.tp-left h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 0.9rem; }
.tp-left > p { color: var(--gray); font-size: 1.02rem; line-height: 1.65; margin-bottom: 1.5rem; }
.tp-left > p em { font-style: normal; color: var(--navy); font-weight: 600; }

/* how-it-works stepper diagram */
.howcard { background: var(--gray-light); border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem 1.75rem; }
.howcard .flow { width: 100%; height: auto; display: block; }

/* synthetic SEC-style table */
.sec-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 10.5px; line-height: 1.25; color: #0f172a; font-variant-numeric: tabular-nums; }
.sec-table caption { caption-side: top; text-align: left; font-weight: 700; padding: 8px 10px 4px; }
.sec-table caption span { display: block; font-weight: 400; font-size: 9px; color: #64748b; margin-top: 1px; }
.sec-table th { font-size: 9px; font-weight: 700; text-align: right; color: #64748b; border-bottom: 1px solid #cbd5e1; padding: 3px 10px; }
.sec-table th:first-child { text-align: left; }
.sec-table td { padding: 2.5px 10px; text-align: right; white-space: nowrap; }
.sec-table td:first-child { text-align: left; }
.sec-table tr.grp td { font-style: italic; color: #475569; padding-top: 5px; }
.sec-table td.ind { padding-left: 22px; }
.sec-table tr.sub td { border-top: 1px solid #cbd5e1; font-weight: 700; }
.sec-table tr.tot td { border-top: 2px solid #94a3b8; border-bottom: 3px double #94a3b8; }
.sec-table td.hl { background: #fef3c7; box-shadow: inset 0 0 0 2px #f59e0b; font-weight: 700; }
.sec-table sup { font-size: 8.5px; color: #b45309; font-weight: 700; }
.fn-callout { margin-top: 9px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 8px 11px; }
.fn-tag { display: inline-block; font-size: 8.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #b45309; margin-bottom: 3px; }
.fn-text { font-size: 11px; line-height: 1.4; color: #0f172a; }
.fn-text sup { font-size: 8.5px; color: #b45309; font-weight: 700; }
.ex-engine { margin-top: 12px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 600; text-align: center; padding: 8px; border-radius: 8px; }
.ex-arrow { text-align: center; color: #94a3b8; font-size: 15px; line-height: 1.3; }
.ex-out { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.eo { font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 7px; }
.eo.anomaly { background: #fef3c7; color: #b45309; }
.eo.trend { background: #dbeafe; color: #2563eb; }
.eo.needle { background: #fdebc8; color: #b8720a; }

/* Verishri-generated annotations (the output: notes the company didn't write) */
.anno-head { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: #475569; margin: 6px 0 10px; }
.hc-illus { color: #94a3b8; font-weight: 600; text-transform: none; letter-spacing: 0; }
.anno-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.anno-list li { display: flex; gap: 9px; align-items: flex-start; background: #fff; border: 1px solid #e2e8f0; border-radius: 9px; padding: 9px 11px; font-size: 11.5px; line-height: 1.42; color: #0f172a; }
.anno-list li strong { color: #b45309; }
.anno-list li em { font-style: normal; font-weight: 700; }
.anno-tag { flex: 0 0 auto; font-size: 9px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 7px; border-radius: 5px; white-space: nowrap; }
.anno-tag.gap { background: #fef3c7; color: #b45309; }
.anno-tag.trend { background: #dbeafe; color: #2563eb; }
.anno-tag.anomaly { background: #f3e8ff; color: #7c3aed; }

/* filing-automation flow */
.f2-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.f2-doc { font-size: 11px; font-weight: 700; padding: 9px 16px; border-radius: 9px; border: 1px solid; }
.f2-doc.word { background: #eff4ff; color: #2563eb; border-color: #bfdbfe; }
.f2-doc.excel { background: #ecfdf3; color: #15803d; border-color: #bbf7d0; }
.f2-file { font-size: 10.5px; font-weight: 600; padding: 8px 13px; border-radius: 8px; background: #fff; border: 1px solid #e2e8f0; color: #0f172a; }
.f2-end { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 2px; }
.f2-check { font-size: 11px; font-weight: 700; color: #15803d; background: #ecfdf3; border: 1px solid #bbf7d0; padding: 6px 13px; border-radius: 8px; }
.f2-deliver { font-size: 10.5px; color: #64748b; text-align: center; }
.howcard-title { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gray); margin-bottom: 1.25rem; }
.stepper { list-style: none; }
.stepper li { display: flex; gap: 1rem; padding-bottom: 1.4rem; position: relative; }
.stepper li:last-child { padding-bottom: 0; }
.stepper li::before { content: ''; position: absolute; left: 17px; top: 40px; bottom: -2px; width: 2px; background: #d7e0ec; }
.stepper li:last-child::before { display: none; }
.st-node { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.88rem; z-index: 1; }
.st-text strong { display: block; font-size: 0.98rem; color: var(--navy); margin-bottom: 0.2rem; }
.st-text p { color: var(--gray); font-size: 0.9rem; line-height: 1.5; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: 0 12px 36px rgba(15,23,42,0.09);
  transform: translateY(-4px);
  border-color: #cdddff;
}

.card-soon { opacity: 0.92; }

.card-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-bg);
  color: var(--blue);
  border-radius: 11px;
  margin-bottom: 1rem;
}
.card-icon svg { width: 22px; height: 22px; }
.card-soon .card-icon { background: #fef3c7; color: #b45309; }

.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { color: var(--gray); font-size: 0.9rem; line-height: 1.55; margin-bottom: 1rem; }

.tag {
  display: inline-block;
  padding: 0.22rem 0.7rem;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  background: #dcfce7;
  color: #15803d;
}
.tag-soon { background: #fef3c7; color: #b45309; }

/* ── How it works ────────────────────────────────── */

.how { padding: 4rem 0; background: var(--gray-light); }

.steps { display: flex; align-items: stretch; justify-content: center; gap: 0.5rem; }

.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
  text-align: center;
  position: relative;
}

.step-icon {
  width: 54px; height: 54px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-bg);
  color: var(--blue);
  border-radius: 50%;
}
.step-icon svg { width: 26px; height: 26px; }

.step-num { font-size: 0.78rem; font-weight: 800; color: var(--gold); letter-spacing: 1px; margin-bottom: 0.35rem; }
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

.step-arrow { display: flex; align-items: center; flex: 0 0 40px; }
.step-arrow svg { width: 40px; height: 24px; }

/* product preview */
.preview {
  margin-top: 3.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.08);
  overflow: hidden;
}
.preview-head {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.preview-dot { width: 11px; height: 11px; border-radius: 50%; background: #e2e8f0; }
.preview-title { margin-left: 0.6rem; font-size: 0.85rem; font-weight: 600; color: var(--gray); }

.preview-body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; padding: 1.75rem; }

.preview-doc { display: flex; flex-direction: column; gap: 0.85rem; }
.pd-line { height: 11px; border-radius: 5.5px; background: #eef2f7; }
.pd-line.short { width: 70%; }
.pd-line.flagged { height: 16px; background: #dbeafe; border-left: 3px solid var(--blue); }

.preview-flag {
  background: var(--blue-bg);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 1.25rem;
}
.pf-pill {
  display: inline-block;
  background: var(--blue); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem; border-radius: 6px; margin-bottom: 0.7rem;
}
.preview-flag h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.preview-flag > p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.9rem; }
.pf-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.74rem; color: #94a3b8; }
.pf-illus { font-style: italic; }

/* ── About ───────────────────────────────────────── */

.about { padding: 4rem 0; }
.about-text .badge { margin-bottom: 1rem; }
.about h2 { font-size: 2.3rem; font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 1.2rem; }
.about h2 .grad { background: linear-gradient(90deg, var(--blue), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
.about-lede { color: var(--gray); font-size: 1.1rem; line-height: 1.7; }
.about-lede em { font-style: normal; color: var(--navy); font-weight: 600; }
.about-visual img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 20px 44px rgba(15,23,42,0.16); }

.who-head { text-align: center; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #94a3b8; margin: 3rem 0 1.5rem; }

/* ── STANDARD PATTERN: compact icon row ───────────────────────────────
   Small icon box on the LEFT, title + text BESIDE it, rows STACKED.
   Use this for feature / stakeholder / step / benefit lists.
   Do NOT use big vertical padded cards for these — they waste space. */
.feature-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.4rem; }
.feature-row { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.65rem 0; }
.fr-ic { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.fr-ic svg { width: 21px; height: 21px; }
.fr-ic.co  { background: #eff6ff; color: #2563eb; }
.fr-ic.inv { background: #ecfdf3; color: #15803d; }
.fr-ic.aud { background: #f3e8ff; color: #7c3aed; }
.fr-ic.gov { background: #fef3c7; color: #b8720a; }
.fr-text h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.15rem; }
.fr-text p { font-size: 0.92rem; color: var(--gray); line-height: 1.5; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; margin-top: 1.75rem; }
.stat { background: var(--blue-bg); border: 1px solid #dbeafe; border-radius: 12px; padding: 1.15rem 0.75rem; text-align: center; }
.stat-num { font-size: 1.45rem; font-weight: 800; color: var(--blue); margin-bottom: 0.2rem; }
.stat-label { font-size: 0.72rem; color: var(--gray); font-weight: 600; }

/* ── Contact ─────────────────────────────────────── */

.contact { padding: 3.5rem 0; background: var(--gray-light); }
.contact-open-wrap { text-align: center; }
.is-collapsed { display: none; }
form { max-width: 720px; margin: 1.25rem auto 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 0.6rem; }

label { font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.req { color: var(--blue); }

input, textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
input::placeholder, textarea::placeholder { color: #94a3b8; }
input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
textarea { resize: vertical; }

#form-status { margin-top: 1rem; padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.9rem; display: none; }
#form-status.success { display: block; background: #dcfce7; color: #15803d; }
#form-status.error   { display: block; background: #fee2e2; color: #dc2626; }

/* ── Footer ──────────────────────────────────────── */

footer { background: var(--navy); padding: 2.25rem 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
footer .logo { color: var(--white); font-weight: 800; font-size: 1.05rem; }
.footer-inner .ai-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.6em;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 5px;
  margin-left: 5px;
  vertical-align: middle;
}
footer span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ── Mobile ──────────────────────────────────────── */

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .hero h1 { font-size: 2.5rem; letter-spacing: -1px; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .solutions-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .solutions-intro h1 { font-size: 1.9rem; }
  .tab-panel.active { grid-template-columns: 1fr; gap: 1.75rem; padding: 1.75rem; }
  .preview-body { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about h2 { font-size: 1.9rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav-links a:not(.btn-nav) { display: none; }
}
