/* =========================================================
   RoberOnix — Career Intelligence
   Brand system (LOCKED — do not change these values or roles)
   - Teal        #123230 / #17403D   primary surface
   - Accent teal #3CA89C              interactive / accent
   - Copper      #C47A45              TRUST SIGNALS ONLY
                                      (ATS badges, checkmarks, verified stats)
   - Off-white   #F5EFE6 / #FBF8F2    content section backgrounds
   - Ink         #0C2422              body text
   Type: Inter (body/UI) + Fraunces (display headlines only), Google Fonts
   ========================================================= */

:root {
  --teal-900: #0c2422;
  --teal-800: #123230;
  --teal-700: #17403d;
  --teal-600: #1d4f4b;
  --teal-500: #2a6560;
  --accent:   #3ca89c;
  --accent-bright: #4fc3b6;
  --copper:   #c47a45;   /* trust only */
  --copper-soft: #d9a074; /* trust only */

  --paper:    #fbf8f2;
  --paper-2:  #f5efe6;
  --paper-3:  #efe7d9;
  --ink:      #0c2422;
  --ink-soft: #3f524f;

  --white:    #ffffff;

  --line-ink:  rgba(12, 36, 34, .14);
  --line-pale: rgba(245, 239, 230, .16);

  --maxw: 1180px;
  --pad: clamp(1.15rem, 5vw, 2.5rem);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(8, 26, 25, .06), 0 6px 20px rgba(8, 26, 25, .05);
  --shadow-md: 0 14px 40px rgba(8, 26, 25, .13);
  --shadow-lg: 0 34px 80px rgba(8, 26, 25, .28);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino,
          Georgia, "Times New Roman", serif;

  --header-h: 66px;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.12; font-weight: 600; }

/* display face — headlines only, used sparingly */
h1, h2, .display, .stat__num, .card__name {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.06;
}
h1 { font-size: clamp(2.4rem, 6.2vw, 4rem); }
h2 { font-size: clamp(1.85rem, 4.4vw, 2.85rem); }
h3 { font-size: clamp(1.12rem, 2.4vw, 1.32rem); font-weight: 600; letter-spacing: -0.01em; }
p  { margin: 0 0 1rem; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
strong { font-weight: 600; }

.eyebrow {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
}
section .eyebrow { color: var(--teal-600); }
.section--teal .eyebrow,
.hero .eyebrow,
.tpl-hero .eyebrow { color: var(--accent-bright); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.75rem, 9vw, 7rem); }
.section--paper  { background: var(--paper); }
.section--paper2 { background: var(--paper-2); }
.section--teal   { background: var(--teal-800); color: var(--paper-2); }
.section--teal h2, .section--teal h3 { color: var(--white); }
.section-head { max-width: 42rem; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.lede { font-size: clamp(1.03rem, 2.2vw, 1.22rem); color: var(--ink-soft); }
.section--teal .lede { color: rgba(245, 239, 230, .78); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #04211e;
  display: inline-flex; align-items: center; gap: .55em;
  padding: .9em 1.5em;
  font: inherit; font-weight: 600; font-size: .98rem;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1px solid transparent; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(60, 168, 156, .35); background: var(--accent-bright); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--paper-2);
  border-color: rgba(245, 239, 230, .35);
}
.btn--ghost:hover { background: rgba(245, 239, 230, .08); box-shadow: none; }
.btn--on-paper.btn--ghost { --btn-fg: var(--teal-700); border-color: rgba(18, 50, 48, .28); }
.btn--on-paper.btn--ghost:hover { background: rgba(18, 50, 48, .05); }
.btn--lg { padding: 1.05em 1.9em; font-size: 1.05rem; }
.btn--sm { padding: .58em 1.05em; font-size: .84rem; }
.btn .ext { width: 1em; height: 1em; flex: none; }

/* CTA pulse — subtle, 5s interval, motion-safe only */
@media (prefers-reduced-motion: no-preference) {
  .btn--pulse { animation: ctaPulse 5s var(--ease) infinite; }
  @keyframes ctaPulse {
    0%, 86%, 100% { transform: translateY(0) scale(1); box-shadow: 0 8px 20px rgba(60,168,156,.28); }
    91% { transform: translateY(-1px) scale(1.035); box-shadow: 0 14px 34px rgba(79,195,182,.5); }
  }
  .btn--pulse:hover { animation-play-state: paused; }
}

/* ---------- focus ---------- */
:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--teal :focus-visible, .hero :focus-visible { outline-color: var(--accent-bright); }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--white); color: var(--ink);
  padding: .6em 1em; border-radius: 8px; z-index: 200;
  transition: top .15s;
}
.skip-link:focus { top: 12px; }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  min-height: var(--header-h);
  background: rgba(18, 50, 48, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 239, 230, .1);
}
.site-header__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: .6rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--paper-2);
  font-weight: 700; letter-spacing: .05em; font-size: 1rem;
}
.brand img { width: 28px; height: 28px; }
.brand span small {
  display: block; font-size: .56rem; letter-spacing: .22em;
  font-weight: 500; color: var(--accent); text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  text-decoration: none; color: rgba(245, 239, 230, .8);
  font-size: .92rem; font-weight: 500;
  padding: .4rem 0; position: relative;
}
.nav a:hover { color: var(--white); }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--accent); transition: right .25s var(--ease);
}
.nav a:not(.btn):hover::after { right: 0; }
.nav .btn { color: #04211e; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer; padding: .4rem;
  color: var(--paper-2);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--teal-800);
    border-bottom: 1px solid rgba(245, 239, 230, .12);
    padding: .5rem var(--pad) 1.25rem;
    transform: translateY(-120%);
    transition: transform .3s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .9rem 0; border-bottom: 1px solid rgba(245, 239, 230, .08); font-size: 1rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 1rem; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .nav { transition: none; }
}

/* =========================================================
   Motion primitives — gated behind .js so no-JS visitors
   always see fully-rendered content.
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .js .reveal.in { opacity: 1; transform: none; }
  .js .reveal[data-delay="1"] { transition-delay: .08s; }
  .js .reveal[data-delay="2"] { transition-delay: .16s; }
  .js .reveal[data-delay="3"] { transition-delay: .24s; }
  .js .reveal[data-delay="4"] { transition-delay: .32s; }
  .js .reveal[data-delay="5"] { transition-delay: .40s; }

  /* hero entrance — pure-CSS, runs the instant the stylesheet applies
     (no JS gate, no long stagger) so the card is never seen half-empty */
  .js .hero__card   { animation: heroRise .7s var(--ease) both; }
  .js .hero__figure { animation: heroRise .7s var(--ease) .12s both; }
  @keyframes heroRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
  }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  contain: paint;
  background: radial-gradient(circle at 26% 32%, var(--teal-700) 0%, var(--teal-800) 34%, var(--teal-900) 72%, #081a19 100%);
  color: var(--paper-2);
  overflow: hidden;
  isolation: isolate;
}
.hero__net {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: -1; opacity: .5; pointer-events: none;
}
.hero__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: clamp(3.5rem, 11vw, 6.75rem) var(--pad) clamp(3rem, 9vw, 5.5rem);
  display: grid; gap: clamp(2.25rem, 6vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
.hero__inner > * { min-width: 0; }
@media (min-width: 940px) {
  .hero__inner { grid-template-columns: 1.02fr .98fr; }
}

.hero__card {
  background: linear-gradient(180deg, rgba(12, 36, 34, .5), rgba(12, 36, 34, .62));
  border: 1px solid rgba(245, 239, 230, .13);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 4vw, 2.75rem);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero h1 {
  color: var(--white);
  margin-bottom: .5em;
  font-size: clamp(2.35rem, 5.6vw, 3.7rem);
  overflow-wrap: break-word;
}
.hero h1 .accent { color: var(--accent-bright); font-style: normal; white-space: nowrap; }

.hero__sub {
  font-size: clamp(1.02rem, 2.2vw, 1.16rem);
  color: rgba(245, 239, 230, .82);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.5rem; }
.hero__trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: .55rem .75rem;
  font-size: .85rem; color: rgba(245, 239, 230, .68);
}

.hero__figure { position: relative; }
.hero__figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(245, 239, 230, .1);
}
.hero__figure figcaption {
  margin-top: .85rem; font-size: .8rem; letter-spacing: .02em;
  color: rgba(245, 239, 230, .6); text-align: right;
}

/* trust badge — copper reserved for validation signals */
.trust-badge {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .4em .85em;
  font-size: .76rem; font-weight: 600; letter-spacing: .05em;
  color: var(--copper);
  background: rgba(196, 122, 69, .12);
  border: 1px solid rgba(196, 122, 69, .42);
  border-radius: 999px;
}
.trust-badge svg { width: 1.05em; height: 1.05em; flex: none; }
.trust-badge--solid { background: var(--copper); color: #24140a; border-color: transparent; }

/* =========================================================
   Why RoberOnix — feature index (editorial, not cards)
   ========================================================= */
.feature-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature {
  padding-top: clamp(1.25rem, 2.5vw, 1.6rem);
  border-top: 1px solid var(--ink);
}
.feature__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: .95rem; color: var(--accent); letter-spacing: 0;
}
.feature__icon {
  margin: .7rem 0 .9rem;
  color: var(--teal-600);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: .4em; }
.feature p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.feature code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .88em; background: var(--paper-3); padding: .05em .35em; border-radius: 4px;
}
/* trust-flavoured feature — copper is a legitimate validation signal here */
.feature--trust .feature__num { color: var(--copper); }
.feature--trust .feature__icon { color: var(--copper); border-color: rgba(196, 122, 69, .4); }

/* =========================================================
   How it works — asymmetric, sticky left rail
   ========================================================= */
.how-grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .how-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(3rem, 6vw, 5rem); }
  .how-aside { position: sticky; top: calc(var(--header-h) + 2.5rem); align-self: start; }
}
.how-aside .lede { margin-bottom: 1.5rem; }
/* trust note — copper reserved for validation signals */
.trust-note {
  display: flex; align-items: flex-start; gap: .55em;
  margin: 0; font-size: .88rem; font-weight: 500;
  color: var(--copper-soft);
}
.trust-note svg { width: 1.15em; height: 1.15em; flex: none; margin-top: .15em; color: var(--copper); }

.steps {
  position: relative; display: grid; gap: clamp(1.9rem, 4vw, 2.75rem);
  padding-left: 3.25rem;
}
.steps__track {
  position: absolute; left: 21px; top: .5rem; bottom: .5rem; width: 2px;
  background: rgba(245, 239, 230, .16); overflow: hidden;
}
.steps__track::after {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: var(--draw, 0%);
  background: linear-gradient(var(--accent), var(--accent-bright));
  transition: height .2s linear;
}
@media (prefers-reduced-motion: reduce) {
  .steps__track::after { height: 100%; transition: none; }
}
.step { position: relative; }
.step__num {
  position: absolute; left: -3.25rem; top: -0.1rem;
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  background: var(--teal-700); color: var(--white);
  border: 2px solid var(--accent); z-index: 1;
}
.step h3 { color: var(--white); margin-bottom: .35em; }
.step p { margin: 0; color: rgba(245, 239, 230, .76); font-size: .97rem; }

/* =========================================================
   Social proof — bordered ledger, no card chrome
   ========================================================= */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-ink);
  border: 1px solid var(--line-ink);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 2.4rem) clamp(1rem, 3vw, 1.6rem);
}
.stat__num {
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  color: var(--teal-700);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat--trust .stat__num { color: var(--copper); }
.stat__label { margin-top: .6rem; font-size: .85rem; color: var(--ink-soft); font-weight: 500; }

/* =========================================================
   Catalog — a real index, framed like the Etsy listing tiles
   ========================================================= */
.catalog {
  display: grid; gap: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .catalog { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .catalog { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  padding-top: 1rem;
  border-top: 1px solid var(--ink);
}
.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--teal-800);
  border: 1px solid var(--line-ink);
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.card__media::after {
  content: ""; position: absolute; inset: 0;
  border: 2px solid transparent;
  transition: border-color .25s var(--ease);
}
.card__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: .75rem;
  margin: .9rem 0 .1rem;
}
.card__name { font-size: 1.22rem; }
.card__index {
  font-family: var(--font-display); font-weight: 500;
  font-size: .9rem; color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.card__tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--teal-600);
}
.card p { margin: .15rem 0 .9rem; font-size: .92rem; color: var(--ink-soft); flex: 1; }
.card__cta {
  font-size: .82rem; font-weight: 600; letter-spacing: .02em; color: var(--accent);
  display: inline-flex; align-items: center; gap: .4em;
  transition: gap .2s var(--ease);
}
.card__cta svg { transition: transform .2s var(--ease); }

.card:hover .card__media img,
.card:focus-visible .card__media img { transform: scale(1.04); }
.card:hover .card__media::after,
.card:focus-visible .card__media::after { border-color: var(--accent); }
.card:hover .card__index,
.card:focus-visible .card__index { color: var(--accent); }
.card:hover .card__cta,
.card:focus-visible .card__cta { gap: .7em; }
.card:focus-visible { outline: none; }
.card:focus-visible .card__name { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   CTA band — full-bleed confidence
   ========================================================= */
.cta-band {
  position: relative;
  text-align: center;
  background: radial-gradient(circle at 50% -10%, var(--teal-600), var(--teal-800) 55%, var(--teal-900));
  color: var(--paper-2);
  border-radius: var(--radius-lg);
  padding: clamp(2.75rem, 8vw, 4.5rem) var(--pad);
  overflow: hidden;
}
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 34rem; margin-inline: auto; color: rgba(245, 239, 230, .8); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--teal-900); color: rgba(245, 239, 230, .72);
  padding-block: clamp(2.5rem, 6vw, 3.5rem);
  font-size: .9rem;
}
.site-footer__grid {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad);
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer h4 { color: var(--white); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font); font-weight: 600; }
.site-footer a { color: rgba(245, 239, 230, .72); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer__brand p { max-width: 26rem; }
.site-footer .brand { margin-bottom: .9rem; }
.site-footer__bottom {
  max-width: var(--maxw); margin: 2rem auto 0; padding: 1.5rem var(--pad) 0;
  border-top: 1px solid rgba(245, 239, 230, .12);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: rgba(245, 239, 230, .55);
}

/* =========================================================
   Template detail pages
   ========================================================= */
.tpl-hero {
  position: relative;
  background: radial-gradient(circle at 28% 18%, var(--teal-700), var(--teal-800) 55%, var(--teal-900));
  color: var(--paper-2);
}
.tpl-hero__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 4.5rem) var(--pad);
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .tpl-hero__inner { grid-template-columns: 1fr 1fr; } }
.tpl-hero h1 { color: var(--white); }
.tpl-hero__sub { color: rgba(245, 239, 230, .82); font-size: 1.1rem; max-width: 32rem; }
.breadcrumb { font-size: .82rem; color: rgba(245, 239, 230, .6); margin-bottom: 1.25rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.tpl-hero__meta { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0; }
.chip {
  font-size: .8rem; padding: .4em .8em; border-radius: 999px;
  background: rgba(245, 239, 230, .1); border: 1px solid rgba(245, 239, 230, .18);
}
.tpl-hero__figure img { border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid rgba(245,239,230,.12); }

.gallery { display: grid; gap: clamp(1.25rem, 3vw, 1.75rem); grid-template-columns: 1fr; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery figure {
  margin: 0; overflow: hidden;
  border: 1px solid var(--line-ink); border-radius: var(--radius);
  background: var(--white);
}
.gallery img { width: 100%; background: var(--teal-800); }
.gallery figcaption {
  padding: .8rem 1.1rem; font-size: .82rem; color: var(--ink-soft);
  border-top: 1px solid var(--line-ink);
}
.gallery figure.wide { grid-column: 1 / -1; }

.tpl-cta { margin-top: clamp(2.5rem, 6vw, 4rem); }

/* utilities */
.center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
.nowrap { white-space: nowrap; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
