/* =========================================================
   LCD Screen Wholesale — Static Stylesheet
   Palette: White, Soft Slate, Steel Grey, Soft Teal, Charcoal
   ========================================================= */

:root {
  --white: #ffffff;
  --slate-50: #f5f7f9;
  --slate-100: #eef1f5;
  --slate-200: #e2e7ec;
  --steel-300: #c5cdd6;
  --steel-400: #9aa6b2;
  --steel-500: #6b7785;
  --teal-50:  #e9f6f5;
  --teal-100: #cdebe8;
  --teal-400: #3bbab1;
  --teal-500: #2ba39c;
  --teal-600: #1f8a83;
  --teal-700: #146e68;
  --charcoal: #1f2a33;
  --charcoal-soft: #2a3742;
  --text: #1f2a33;
  --text-muted: #5a6773;
  --border: #e2e7ec;
  --shadow-sm: 0 1px 2px rgba(31,42,51,.04), 0 1px 1px rgba(31,42,51,.03);
  --shadow-md: 0 6px 18px rgba(31,42,51,.06), 0 2px 6px rgba(31,42,51,.04);
  --shadow-lg: 0 18px 40px rgba(31,42,51,.10), 0 4px 12px rgba(31,42,51,.05);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1180px;
  --pad-x: clamp(18px, 4vw, 40px);

  --ff-head: "Work Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-body: "IBM Plex Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; object-fit: contain; }
a { color: var(--teal-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-700); }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--charcoal);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.125rem; }
p  { margin: 0 0 1em; color: var(--text-muted); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.container.narrow { max-width: 880px; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--slate-50); }

.section-head { max-width: 720px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head p { font-size: 1.0625rem; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-600);
  font-weight: 600;
  padding: 6px 12px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 999px;
}
.eyebrow.light {
  color: var(--teal-100);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: .98rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}
.btn-sm  { padding: 10px 16px; font-size: .9rem; }
.btn-lg  { padding: 16px 26px; font-size: 1.02rem; }
.btn-primary {
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 6px 18px rgba(31,42,51,.22);
}
.btn-primary:hover {
  background: var(--teal-600);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(43,163,156,.28);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--steel-300);
}
.btn-ghost:hover { border-color: var(--teal-500); color: var(--teal-700); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
}
.brand:hover { color: var(--charcoal); }
.brand-mark { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--ff-head); font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; }
.brand-text em { font-style: normal; font-size: .75rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-600); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: .94rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .18s ease, color .18s ease;
}
.nav-links a:hover { background: var(--slate-100); color: var(--teal-700); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px; height: 42px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px var(--pad-x) 18px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 500;
  background: var(--slate-50);
}
.mobile-menu a.btn { justify-content: center; background: var(--charcoal); color: #fff; margin-top: 6px; }
.mobile-menu.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 104px);
  background:
    radial-gradient(circle at 90% 0%, var(--teal-50) 0%, transparent 55%),
    linear-gradient(180deg, var(--white), var(--slate-50));
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-copy h1 { margin-top: 14px; }
.hero-copy .lede {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.trust-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  color: var(--charcoal-soft);
  font-weight: 500;
}
.trust-row .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px var(--teal-50);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-stack {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 4/5;
}
.phone {
  position: absolute;
  width: 62%;
  aspect-ratio: 9/19;
  border-radius: 32px;
  background: var(--charcoal);
  box-shadow: var(--shadow-lg);
  border: 1px solid #0e161d;
  padding: 10px;
}
.phone-back {
  top: 6%;
  left: 6%;
  transform: rotate(-9deg);
  background: linear-gradient(160deg, #2a3742 0%, #1f2a33 100%);
}
.phone-back .screen {
  width: 100%; height: 100%;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--steel-500), var(--charcoal-soft));
  position: relative;
  overflow: hidden;
}
.phone-back .screen-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 16px 16px;
}
.phone-front {
  bottom: 0;
  right: 0;
  transform: rotate(6deg);
}
.phone-front .screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 22px;
  background: linear-gradient(160deg, #0d1418 0%, #182229 100%);
  overflow: hidden;
  padding: 18px 14px;
}
.notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 16px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.display-test {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 70%;
  margin-top: 22px;
}
.display-test .bar { border-radius: 6px; }
.b1 { background: linear-gradient(180deg, #2ba39c, #146e68); }
.b2 { background: linear-gradient(180deg, #3bbab1, #2ba39c); }
.b3 { background: linear-gradient(180deg, #cdebe8, #3bbab1); }
.b4 { background: linear-gradient(180deg, #9aa6b2, #6b7785); }
.b5 { background: linear-gradient(180deg, #e2e7ec, #9aa6b2); }
.b6 { background: linear-gradient(180deg, #2a3742, #1f2a33); }
.screen-meta {
  position: absolute;
  bottom: 16px; left: 14px; right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cdebe8;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--ff-head);
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 0 rgba(59,186,177,.6);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(59,186,177,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(59,186,177,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,186,177,0); }
}
.home-indicator {
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 4px;
  background: rgba(255,255,255,.4);
  border-radius: 4px;
}

.spec-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
}
.spec-chip strong { color: var(--teal-600); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.spec-chip span { color: var(--charcoal); font-size: .85rem; font-weight: 600; }
.chip-1 { top: 4%; right: -2%; }
.chip-2 { bottom: 18%; left: -4%; }
.chip-3 { bottom: -4%; right: 12%; }

/* ---------- Cards / Grids ---------- */
.cards { display: grid; gap: clamp(16px, 2.4vw, 22px); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 28px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }

/* category card */
.cat-card { display: flex; flex-direction: column; gap: 4px; }
.cat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--teal-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-50);
  padding: 5px 10px;
  border-radius: 999px;
  align-self: flex-start;
  font-weight: 600;
  border: 1px solid var(--teal-100);
}

/* reason cards */
.reason-card .reason-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--steel-400);
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.reason-card .reason-num.teal { color: var(--teal-600); }
.reason-card.highlight {
  background: linear-gradient(160deg, #fff, var(--teal-50));
  border-color: var(--teal-100);
}

/* spec card */
.spec-card { display: flex; flex-direction: column; gap: 6px; }
.spec-card .check {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}

/* order card */
.order-card { text-align: left; }
.order-card .order-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

/* ---------- Recommended source ---------- */
.source-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.source-copy h2 { margin-top: 14px; }
.bullets { list-style: none; padding: 0; margin: 8px 0 22px; display: grid; gap: 10px; }
.bullets li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px 12px 38px;
  color: var(--charcoal-soft);
  position: relative;
  font-size: .96rem;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px var(--teal-50);
}
.bullets li strong { color: var(--charcoal); font-weight: 700; }

.source-visual { display: flex; justify-content: center; }
.inventory-board {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.board-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 14px;
}
.board-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal-500); box-shadow: 0 0 0 4px var(--teal-50);
}
.board-title { font-family: var(--ff-head); font-weight: 700; color: var(--charcoal); flex: 1; }
.board-status {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-50); padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--teal-100); font-weight: 600;
}
.board-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.board-list li {
  display: grid;
  grid-template-columns: 110px 1fr 32px;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
}
.board-list .b-name { color: var(--charcoal); font-weight: 600; font-family: var(--ff-head); }
.board-list .b-bar {
  height: 8px; border-radius: 999px; background: var(--slate-100); overflow: hidden;
}
.board-list .b-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-600));
  border-radius: 999px;
}
.board-list .b-val {
  font-family: var(--ff-head); color: var(--charcoal-soft); font-weight: 700; text-align: right; font-size: .82rem;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--teal-100); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--ff-head);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  position: relative;
}
.faq-item summary .icon::before,
.faq-item summary .icon::after {
  content: "";
  position: absolute;
  background: var(--teal-600);
  border-radius: 2px;
  transition: transform .25s ease;
}
.faq-item summary .icon::before { top: 50%; left: 25%; right: 25%; height: 2px; transform: translateY(-50%); }
.faq-item summary .icon::after  { top: 25%; bottom: 25%; left: 50%; width: 2px; transform: translateX(-50%); }
.faq-item[open] summary .icon::after { transform: translateX(-50%) scaleY(0); }
.faq-body { padding: 0 22px 18px; color: var(--text-muted); }
.faq-body p { margin: 0; }

/* ---------- CTA section ---------- */
.cta-section { padding-top: 0; padding-bottom: clamp(56px, 8vw, 96px); }
.cta-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(59,186,177,.25), transparent 50%),
    linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.06), transparent 50%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
}
.cta-card h2 { color: #fff; margin-top: 14px; }
.cta-card p { color: rgba(255,255,255,.78); margin-bottom: 0; }
.cta-action { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-card .btn-primary {
  background: var(--teal-500);
  color: #fff;
}
.cta-card .btn-primary:hover { background: var(--teal-400); color: var(--charcoal); }
.cta-note { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-100); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.72);
  padding: clamp(48px, 6vw, 72px) 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
}
.foot-col h4 {
  color: #fff;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-col a {
  color: rgba(255,255,255,.7);
  font-size: .94rem;
}
.foot-col a:hover { color: var(--teal-400); }
.foot-logo { color: #fff; }
.foot-logo .brand-text strong { color: #fff; }
.foot-logo .brand-text em { color: var(--teal-400); }
.foot-desc { color: rgba(255,255,255,.6); font-size: .94rem; max-width: 320px; margin-top: 14px; }
.seo-tags { display: flex !important; flex-wrap: wrap; gap: 8px; }
.seo-tags li {
  font-size: .78rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.7);
}
.foot-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.foot-bottom p { margin: 0; font-size: .86rem; color: rgba(255,255,255,.55); }
.foot-source a { color: var(--teal-400); }
.foot-source a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { padding-top: clamp(28px, 6vw, 64px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 2; max-width: 360px; margin: 8px auto 0; width: 100%; }
  .source-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .hide-sm { display: none !important; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 12px 18px; }
  .trust-row li { font-size: .86rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-action { align-items: stretch; width: 100%; }
  .cta-action .btn { width: 100%; justify-content: center; }
  .hero-visual { max-width: 300px; }
  .phone-stack { aspect-ratio: 5/6; }
  /* Hide floating spec chips on small phones to avoid overlapping the heading */
  .spec-chip { display: none; }
  .board-list li { grid-template-columns: 92px 1fr 30px; font-size: .82rem; }
  .brand-text strong { font-size: .98rem; }
  .brand-text em { font-size: .7rem; letter-spacing: .18em; }
}
@media (max-width: 380px) {
  h1 { font-size: 1.85rem; }
  .btn { padding: 13px 18px; font-size: .94rem; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Selection */
::selection { background: var(--teal-100); color: var(--charcoal); }
