/* Med Claims Pro — design system v2.
   Palette: deep clinical navy + vivid medical teal→cyan, warm neutrals, generous air.
   No frameworks, no webfonts (system stack = instant paint). */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #0c2237;        /* deep navy text */
  --ink-soft: #4c6172;
  --line: #dde6ec;
  --teal: #0d9488;       /* primary action */
  --teal-dark: #0b7c72;
  --cyan: #0284c7;
  --grad: linear-gradient(135deg, #0d9488, #0284c7);
  --teal-soft: #e6f7f5;
  --cyan-soft: #eaf5fc;
  --bg: #ffffff;
  --bg-alt: #f5f9fa;
  --navy: #0b2237;
  --good: #16803c; --good-soft: #e8f6ed;
  --warn: #92610a; --warn-soft: #fdf4e0;
  --bad: #b3312c;  --bad-soft: #fbedec;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(11,34,55,.06), 0 10px 34px rgba(11,34,55,.08);
  --shadow-lg: 0 2px 6px rgba(11,34,55,.08), 0 24px 60px rgba(11,34,55,.14);
}
html { scroll-behavior: smooth; }
body { font-family: "Segoe UI", system-ui, -apple-system, sans-serif; color: var(--ink);
  background: var(--bg); font-size: 16.5px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: var(--cyan); }

/* ── nav ── */
header { position: sticky; top: 0; background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); z-index: 50; }
.nav { display: flex; align-items: center; gap: 26px; min-height: 68px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 17.5px;
  color: var(--ink); text-decoration: none; letter-spacing: -.2px; flex-shrink: 0; }
.logo svg { display: block; }
.navlinks { display: flex; align-items: center; gap: 26px; }
.nav a.item { color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500;
  white-space: nowrap; }
.nav a.item:hover { color: var(--teal-dark); }
.nav .btn { white-space: nowrap; }
.nav .spacer { flex: 1; }
/* hamburger toggle — hidden on desktop, shown on mobile via media query */
.navtoggle { display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer; flex-shrink: 0; }
.navtoggle span { display: block; width: 21px; height: 2px; border-radius: 2px; margin: 0 auto;
  background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.navtoggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle.open span:nth-child(2) { opacity: 0; }
.navtoggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn { display: inline-block; padding: 11px 22px; border-radius: 9px; font-weight: 600;
  font-size: 15.5px; text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(13,148,136,.28); }
.btn-primary:hover { box-shadow: 0 9px 24px rgba(13,148,136,.36); }
.btn-ghost { border-color: #c6d4dd; color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-big { padding: 15px 32px; font-size: 17px; border-radius: 11px; }

/* ── hero ── */
.hero { padding: 88px 0 64px; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(720px 340px at 18% -10%, rgba(13,148,136,.10), transparent 60%),
    radial-gradient(720px 340px at 82% -10%, rgba(2,132,199,.10), transparent 60%),
    linear-gradient(#fbfdfe, #ffffff); }
/* fluid hero size — scales smoothly from phone to desktop; inline overrides are
   removed sitewide so this single rule governs every hero (and !important guards
   against any that slip back in). */
.hero h1 { font-size: clamp(29px, 6vw, 48px) !important; line-height: 1.14; letter-spacing: -1px;
  font-weight: 800; max-width: 860px; margin: 0 auto 22px; overflow-wrap: break-word; }
.hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; }
.hero p.sub { font-size: 19.5px; color: var(--ink-soft); max-width: 680px; margin: 0 auto 34px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .note { margin-top: 16px; font-size: 14.5px; color: var(--ink-soft); }
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 16px;
  border: 1px solid rgba(13,148,136,.35); border-radius: 999px; font-size: 13px;
  color: var(--teal-dark); background: #fff; margin-bottom: 24px; font-weight: 700;
  letter-spacing: .6px; }
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.18); }
/* home hero badge — prominent on desktop */
.badge-hero { font-size: 15px; padding: 9px 22px; }

/* ── app mockup (homepage) ── */
.mock { max-width: 900px; margin: 56px auto 0; border-radius: 14px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden; text-align: left; }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 11px 16px;
  background: #f2f6f8; border-bottom: 1px solid var(--line); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d5dfe6; }
.mock-bar i:first-child { background: #f0a9a4; } .mock-bar i:nth-child(2) { background: #f3d49a; }
.mock-bar i:nth-child(3) { background: #a8d8b4; }
.mock-bar span { margin-left: 10px; font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.mock-body { display: flex; min-height: 300px; }
.mock-side { width: 168px; background: var(--navy); color: #b8c9d8; padding: 14px 0;
  font-size: 12.5px; flex-shrink: 0; }
.mock-side div { padding: 8px 18px; }
.mock-side .on { background: rgba(13,148,136,.25); color: #fff; border-left: 3px solid #2dd4bf; font-weight: 600; }
.mock-main { flex: 1; padding: 18px 20px; overflow-x: auto; }
.mock-main h4 { font-size: 14px; margin-bottom: 12px; }
.mock table { width: 100%; border-collapse: collapse; font-size: 12px; min-width: 520px; }
.mock th { text-align: left; padding: 7px 9px; background: #f5f5f5; border: 1px solid #e2e8ed;
  font-weight: 600; color: var(--ink-soft); }
.mock td { padding: 7px 9px; border: 1px solid #e9eef2; }
.mock .ok { color: var(--good); font-weight: 700; font-size: 11px; }
.mock .money { text-align: right; font-variant-numeric: tabular-nums; }

/* ── sections ── */
section { padding: 76px 0; }
section.alt { background: var(--bg-alt); }
.kicker { text-transform: uppercase; letter-spacing: 1.6px; font-size: 12.5px; font-weight: 800;
  color: var(--teal-dark); margin-bottom: 12px; }
h2 { font-size: 34px; letter-spacing: -.6px; margin-bottom: 14px; font-weight: 800; }
.lede { color: var(--ink-soft); font-size: 17.5px; max-width: 740px; margin-bottom: 42px; }
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease; }
.grid3 .card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 18.5px; margin-bottom: 9px; letter-spacing: -.2px; }
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a:hover { color: var(--teal-dark); }
.card p { color: var(--ink-soft); font-size: 15.5px; }
.card .icon { width: 46px; height: 46px; border-radius: 11px; background: var(--teal-soft);
  color: var(--teal-dark); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; }
.card .icon svg { width: 24px; height: 24px; }
.stepnum { font-weight: 800; font-size: 20px; }

/* ── privacy/dark band ── */
.privacy { background: linear-gradient(160deg, #0b2237 0%, #0e3049 100%); color: #d7e3ed; }
.privacy h2 { color: #fff; }
.privacy .kicker { color: #5eead4; }
.privacy .lede { color: #9db4c6; }
.privacy .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); box-shadow: none; }
.privacy .card h3 { color: #fff; }
.privacy .card p { color: #9db4c6; }
.privacy .card .icon { background: rgba(94,234,212,.12); color: #5eead4; }

/* ── pricing ── */
.toggle-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 8px 0 40px;
  flex-wrap: wrap; }
.toggle-row .lbl { font-weight: 600; font-size: 15.5px; color: var(--ink-soft);
  cursor: pointer; padding: 9px 4px; user-select: none; }
.toggle-row .lbl.on { color: var(--ink); }
.switch { position: relative; width: 54px; height: 29px; background: var(--grad); border-radius: 999px;
  border: none; cursor: pointer; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 23px; height: 23px;
  background: #fff; border-radius: 50%; transition: transform .18s; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.switch.yearly::after { transform: translateX(25px); }
.save-badge { background: var(--good-soft); color: var(--good); font-size: 13px; font-weight: 800;
  padding: 4px 12px; border-radius: 999px; }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 26px; align-items: stretch; }
.tier { display: flex; flex-direction: column; position: relative; }
.tier.popular { border: 2px solid transparent; background:
  linear-gradient(#fff,#fff) padding-box, var(--grad) border-box; box-shadow: var(--shadow-lg); }
.grid3 .tier.popular:hover, .tiers .tier.popular:hover { transform: none; }
.pop-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 12.5px; font-weight: 800;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap; letter-spacing: .5px; }
.tier h3 { font-size: 21px; }
.tier .for { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.price { font-size: 42px; font-weight: 800; letter-spacing: -1.5px; }
.price .unit { font-size: 15.5px; font-weight: 500; color: var(--ink-soft); letter-spacing: 0; }
.price-note { font-size: 14px; color: var(--ink-soft); min-height: 22px; margin-bottom: 6px; }
.was { text-decoration: line-through; color: #9fb0bd; font-weight: 500; font-size: 22px; margin-right: 6px; }
.seat-row { margin: 14px 0 4px; }
.seat-row label { font-size: 14px; font-weight: 600; display: flex; justify-content: space-between; }
.seat-row input[type=range] { width: 100%; accent-color: var(--teal); }
.total { font-size: 15px; font-weight: 700; color: var(--teal-dark); min-height: 24px; }
.tier ul { list-style: none; margin: 18px 0 26px; flex: 1; }
.tier li { padding: 7px 0 7px 30px; position: relative; font-size: 15px; }
.tier li::before { content: "✓"; position: absolute; left: 4px; color: var(--teal);
  font-weight: 800; }
.tier li.no { color: #9fb0bd; }
.tier li.no::before { content: "—"; color: #c9d4dc; }
.tier .btn { text-align: center; }

/* ── faq ── */
.faq details { border-bottom: 1px solid var(--line); padding: 19px 4px; }
.faq summary { font-weight: 650; font-size: 16.5px; cursor: pointer; }
.faq summary:hover { color: var(--teal-dark); }
.faq p { color: var(--ink-soft); margin-top: 10px; font-size: 15.5px; }

/* ── data tables ── */
table.data { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.data th { text-align: left; padding: 12px 10px; border-bottom: 2px solid var(--line);
  font-size: 13px; text-transform: uppercase; letter-spacing: .6px; color: var(--ink-soft); }
table.data td { padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }

/* ── footer ── */
footer { background: var(--navy); color: #9db4c6; padding: 54px 0 40px; font-size: 14.5px; }
footer b { color: #fff; display: inline-block; margin-bottom: 10px; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px; }
footer a { color: #9db4c6; text-decoration: none; line-height: 2; }
footer a:hover { color: #5eead4; }
.foot { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.foot .logo { color: #fff; }
.foot .spacer { flex: 1; }
.footgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px; margin-bottom: 34px; }
.footline { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; }

/* larger tap targets everywhere (WCAG-friendly on touch) */
.nav a.item { padding: 10px 2px; }
.faq summary { padding: 4px 0; }

@media (max-width: 860px) {
  .hero { padding: 60px 0 44px; }
  section { padding: 52px 0; }
  .lede { font-size: 16.5px; margin-bottom: 30px; }
  .split { gap: 26px; }
  /* mobile header: hamburger + full-width dropdown drawer. Replaces the desktop
     inline nav so it can never wrap and overlap the hero (the bug this fixes). */
  .nav { min-height: 58px; }
  .navtoggle { display: flex; }
  .navlinks { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); padding: 6px 0 12px; display: none; }
  .navlinks.open { display: flex; }
  .navlinks a.item { padding: 15px 24px; font-size: 16px; border-top: 1px solid var(--bg-alt); }
  .navlinks a.item:first-child { border-top: none; }
  .navlinks .btn { margin: 14px 20px 4px; text-align: center; border-radius: 10px;
    padding: 14px 20px; font-size: 16px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .hero p.sub { font-size: 16.5px; }
  h2 { font-size: 25px; letter-spacing: -.3px; }
  .card { padding: 22px; }
  /* hero badge: smaller + graceful centered wrap (no awkward 2-line pill) on phones */
  .badge-hero { font-size: 12px; padding: 7px 15px; white-space: normal; text-align: center;
    line-height: 1.45; max-width: 100%; }
  /* card grids: minmax() floors (310px/300px) would overflow phones — force single column */
  .tiers, .grid3 { grid-template-columns: 1fr; }
  .btn-big { padding: 14px 24px; font-size: 16px; }
  /* interactive tour: sidebar → horizontal, scrollable tab strip (stays usable on phones) */
  .mock-body { flex-direction: column; }
  .mock-side { width: auto; display: flex; gap: 6px; padding: 8px; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .mock-side::-webkit-scrollbar { display: none; }
  .mock-side div { padding: 11px 14px; white-space: nowrap; border-radius: 8px; font-size: 13px; }
  .mock-hint { display: none; }
  .mock-side .on { border-left: none; background: rgba(13,148,136,.35); color: #fff; }
  .mock-main { padding: 14px; }
  .mock { margin-top: 38px; }
  /* stacked form grids: no cramped 2-column inputs on phones */
  .fg2 { grid-template-columns: 1fr !important; }
  /* journey timeline: tighter on mobile */
  .jstep { padding-left: 30px; gap: 14px; }
  .jstep::before { width: 36px; height: 36px; font-size: 15px; left: -19px; }
  /* interactive tools: 16px font stops iOS focus-zoom; bigger tap target */
  .card input[type=number], .card input[type=text], .card input[type=email], .card select {
    font-size: 16px !important; padding: 11px 12px !important; }
  .card input.b, .card input.p { width: 46% !important; min-width: 128px; }
}

/* ── v2.1: wordmark ── */
.logo .wm { font-weight: 800; letter-spacing: -.7px; font-size: 19px;
  font-family: "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif; }
.logo .wm .pro { background: var(--grad); -webkit-background-clip: text;
  background-clip: text; color: transparent; font-weight: 800; }
footer .logo .wm { color: #fff; }
footer .logo .wm .pro { background: linear-gradient(135deg,#2dd4bf,#38bdf8);
  -webkit-background-clip: text; background-clip: text; }

/* ── v2.1: interactive product tour ── */
.mock-tabs { display: flex; gap: 4px; padding: 10px 12px 0; background: #f2f6f8;
  border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.mock-tabs button { font: inherit; font-size: 13px; font-weight: 600; padding: 8px 14px;
  border: 1px solid transparent; border-bottom: none; background: transparent;
  color: var(--ink-soft); cursor: pointer; border-radius: 8px 8px 0 0; }
.mock-tabs button.on { background: #fff; border-color: var(--line); color: var(--teal-dark); }
.mock-view { display: none; } .mock-view.on { display: block; }
.mock .pill { display: inline-block; padding: 2px 9px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; }
.mock .pill.g { background: var(--good-soft); color: var(--good); }
.mock .pill.a { background: var(--warn-soft); color: var(--warn); }
.mock .pill.r { background: var(--bad-soft); color: var(--bad); }
.mock .pill.b { background: var(--cyan-soft); color: var(--cyan); }
.mock .mbtn { display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 10px;
  border: 1px solid #c9d6de; border-radius: 6px; color: var(--ink); background: #fff; }
.mock .mbtn.p { background: var(--teal); border-color: var(--teal); color: #fff; }
.mock .statrow { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.mock .stat { border: 1px solid var(--line); border-radius: 9px; padding: 10px 16px; min-width: 128px; }
.mock .stat b { display: block; font-size: 17px; }
.mock .stat span { font-size: 11px; color: var(--ink-soft); }
.mock .bar { height: 9px; border-radius: 5px; background: var(--grad); }

/* ── v2.1: billing journey ── */
.journey { counter-reset: step; max-width: 880px; margin: 0 auto; }
.jstep { display: flex; gap: 22px; padding: 26px 0; border-left: 2px solid var(--line);
  margin-left: 21px; position: relative; padding-left: 38px; }
.jstep:last-child { border-left-color: transparent; }
.jstep::before { counter-increment: step; content: counter(step);
  position: absolute; left: -22px; top: 22px; width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad); color: #fff; font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px #fff, 0 4px 12px rgba(13,148,136,.3); }
.jstep h3 { font-size: 19px; margin-bottom: 6px; }
.jstep p { color: var(--ink-soft); font-size: 15.5px; }
.jstep .jtag { font-size: 12px; font-weight: 700; color: var(--teal-dark);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }

/* ── v2.1: document mocks ── */
.docmock { border: 1px solid var(--line); border-radius: 10px; background: #fff;
  box-shadow: var(--shadow); overflow: hidden; font-size: 11.5px; }
.docmock .dhead { padding: 8px 14px; font-weight: 700; font-size: 12px;
  border-bottom: 1px solid var(--line); background: #f7fafb; display: flex; gap: 8px; align-items: center; }
.docmock .dbody { padding: 14px; }
.cmsmock .dhead { background: #fdf0ef; color: #8c2f28; }
.cmsmock .cmsgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.cmsmock .cbox { border: 1px solid #e3b7b3; border-radius: 3px; padding: 4px 6px; min-height: 30px; }
.cmsmock .cbox i { display: block; font-style: normal; font-size: 8.5px; color: #a5605b;
  text-transform: uppercase; letter-spacing: .4px; }
.wordmock .dhead { background: #eef3fb; color: #1a4d8f; }
.xlmock .dhead { background: #e9f5ee; color: #1e6e42; }
.faxmock .dhead { background: #f3f0fa; color: #5b3fa8; }
.filerow { display: flex; gap: 14px; flex-wrap: wrap; }
.filerow .docmock { flex: 1; min-width: 240px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── v3: app ⟷ computer ⟷ file correlation ── */
/* generic window chrome */
.win { border: 1px solid var(--line); border-radius: 10px; background: #fff;
  box-shadow: var(--shadow); overflow: hidden; font-size: 11.5px; }
.win-bar { display: flex; align-items: center; gap: 6px; padding: 8px 12px;
  background: #eef3f6; border-bottom: 1px solid var(--line); }
.win-bar i { width: 10px; height: 10px; border-radius: 50%; background: #cfdae1; }
.win-bar i:nth-child(1) { background: #f0a9a4; } .win-bar i:nth-child(2) { background: #f3d49a; }
.win-bar i:nth-child(3) { background: #a8d8b4; }
.win-bar span { margin-left: 8px; font-weight: 600; font-size: 11.5px; color: var(--ink-soft); }
.win-body { padding: 12px 14px; }

/* the 3-panel bridge */
.bridge { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0; margin-top: 26px; }
.bframe { flex: 1 1 260px; min-width: 0; display: flex; flex-direction: column; }
.bframe .step-tag { font-size: 12px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 8px; }
.bframe .step-tag b { display: inline-flex; width: 20px; height: 20px; margin-right: 7px; border-radius: 50%;
  background: var(--grad); color: #fff; align-items: center; justify-content: center; font-size: 11px; }
.bframe .win { flex: 1; min-width: 0; }  /* allow the scroll containers inside to actually scroll */
.bframe .cap { font-size: 12.5px; color: var(--ink-soft); margin-top: 8px; }
.bconnect { display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 6px; min-width: 62px; color: var(--teal); }
.bconnect .arw { font-size: 26px; line-height: 1; font-weight: 700; }
.bconnect span { font-size: 10.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .5px;
  margin-top: 3px; text-align: center; }
@media (max-width: 820px) {
  .bridge { flex-direction: column; }
  .bframe { width: 100%; }  /* definite width so the inner Excel/Explorer scroll containers engage */
  .bconnect { flex-direction: row; min-width: 0; padding: 8px 0; gap: 8px; }
  .bconnect .arw { transform: rotate(90deg); font-size: 22px; }
}

/* Windows Explorer look */
.exp .win-body { padding: 0; overflow-x: auto; }  /* long folder names scroll, never overflow the page */
.exp .exp-crumb { padding: 7px 12px; background: #f7fafb; border-bottom: 1px solid var(--line);
  font-size: 11px; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; }
.exp .row { display: flex; align-items: center; gap: 6px; padding: 5px 10px; white-space: nowrap;
  border-bottom: 1px solid #f1f5f7; font-variant-numeric: tabular-nums; }
.exp .row.sel { background: var(--accent-soft); }
.exp .row.sel .nm { color: var(--teal-dark); font-weight: 700; }
.exp .row .chev { color: #9db0bc; width: 10px; display: inline-block; }
.exp .row .ic { width: 16px; text-align: center; }
.exp .row .nm { flex: 1; overflow: hidden; text-overflow: ellipsis; }
.exp .row .meta { color: #9aabb5; font-size: 10px; }
.exp .indent-1 { padding-left: 22px; } .exp .indent-2 { padding-left: 40px; }
.exp .indent-3 { padding-left: 58px; }
.exp .folder .nm { font-weight: 600; }

/* Excel / spreadsheet grid with column letters + row numbers */
.xls { --xls-line: #d6ded9; }
.xls .win-bar { background: #217346; } /* Excel green */
.xls .win-bar i { display: none; }
.xls .win-bar span { color: #fff; margin-left: 0; }
.xls .win-body { padding: 0; overflow-x: auto; }
.xls table { border-collapse: collapse; font-size: 10.5px; min-width: 520px; width: 100%; }
.xls th, .xls td { border: 1px solid var(--xls-line); padding: 3px 7px; text-align: left; white-space: nowrap; }
.xls thead th, .xls .rownum { background: #f2f5f3; color: #6a7d72; font-weight: 600; text-align: center; }
.xls .rownum { width: 22px; }
.xls td.money { text-align: right; font-variant-numeric: tabular-nums; }
.xls .formula { color: #217346; }
.xls .ditto { color: #9aabb5; text-align: center; }
.xls-tabs { display: flex; gap: 2px; padding: 5px 8px; background: #f2f5f3; border-top: 1px solid var(--xls-line); }
.xls-tabs .tab { font-size: 10.5px; padding: 3px 12px; border-radius: 5px 5px 0 0; color: var(--ink-soft); }
.xls-tabs .tab.on { background: #fff; border: 1px solid var(--xls-line); border-bottom: none; color: #217346; font-weight: 700; }

/* CMS-1500 form facsimile */
.cmsform { padding: 14px; background: #fff; overflow-x: auto; }
.cmsrow { display: flex; gap: 6px; margin-bottom: 6px; flex-wrap: wrap; }
.cbx { flex: 1; min-width: 130px; border: 1px solid #e3b7b3; border-radius: 4px; padding: 5px 9px; font-size: 12px; }
.cbx i { display: block; font-style: normal; font-size: 8.5px; color: #a5605b; text-transform: uppercase;
  letter-spacing: .3px; margin-bottom: 2px; }
.cms24head { background: #fdf0ef; color: #8c2f28; font-weight: 700; font-size: 11px; padding: 5px 9px;
  border-radius: 4px 4px 0 0; margin-top: 4px; }
.cms24 { width: 100%; border-collapse: collapse; font-size: 11px; min-width: 440px; }
.cms24 th, .cms24 td { border: 1px solid #e3b7b3; padding: 4px 8px; text-align: left; white-space: nowrap; }
.cms24 th { background: #fdf6f5; color: #a5605b; font-size: 9.5px; text-transform: uppercase; letter-spacing: .3px; }
.cms24 .money { text-align: right; font-variant-numeric: tabular-nums; }
.cms24 .cmsnote { background: #fdf6f5; color: #8c2f28; font-style: italic; text-align: center; white-space: normal; }
