/* ============================================================
   ביובית בדרום — Landing Page Styles
   Mobile-first, no external framework, minimal footprint.
   ============================================================ */

:root {
  --navy-900: #071a33;
  --navy-800: #0b2545;
  --navy-700: #123a6b;
  --cyan-500: #00b4d8;
  --cyan-400: #3fc7e6;
  --cyan-100: #e5f8fc;
  --white: #ffffff;
  --offwhite: #f6f9fc;
  --ink: #0f2138;
  --muted: #55677f;
  --border: #e2e8f0;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea952;
  --cta: #ff6a1a;
  --cta-dark: #e2570f;
  --danger-bg: #1a2740;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 20px 48px rgba(11, 37, 69, 0.18);
  --container: 1180px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.75rem;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: "Heebo", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 96px; /* keep page content clear of the floating buttons */
}

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; }
h1, h2, h3, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: var(--space-5) 0; }
.section--tight { padding: var(--space-4) 0; }
.section--navy { background: var(--navy-800); color: var(--white); }
.section--offwhite { background: var(--offwhite); }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-500);
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}

h2.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  max-width: 42rem;
}
.section-title--center { max-width: none; text-align: center; margin: 0 auto; }

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  margin-top: 0.75rem;
}
.section--navy .section-lead { color: #c7d6ea; }
.section-lead--center { margin-inline: auto; text-align: center; }

/* ---------------- Reveal-on-scroll ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--call {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 106, 26, 0.35);
}
.btn--call:hover { background: var(--cta-dark); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); }

.icon-wa { width: 1.05em; height: 1.05em; vertical-align: -0.15em; color: currentColor; }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.08); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: var(--space-3);
}
@media (min-width: 560px) {
  .cta-row { flex-direction: row; }
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 26, 51, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan-500), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.header-actions { display: none; gap: 0.6rem; }
@media (min-width: 760px) {
  .header-actions { display: flex; }
}
.header-actions .btn { padding: 0.65rem 1.15rem; font-size: 0.92rem; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 15% 0%, var(--navy-700) 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  color: var(--white);
  overflow: hidden;
  padding: var(--space-5) 0 var(--space-4);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(0, 180, 216, 0.25), transparent 45%),
    radial-gradient(circle at 100% 90%, rgba(0, 180, 216, 0.15), transparent 40%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--space-5); }
}
.hero__grid--center {
  grid-template-columns: 1fr;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 960px) {
  .hero__grid--center { grid-template-columns: 1fr; }
}
.hero__grid--center .hero__sub { margin-inline: auto; }
.hero__grid--center .cta-row { justify-content: center; }
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  color: var(--navy-800);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
}
.price-badge strong { color: var(--cta); font-size: 1.05em; }

.hero h1 {
  font-size: clamp(1.9rem, 5.2vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--cyan-400); }
.hero__sub {
  margin-top: var(--space-2);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: #cfe0f2;
  max-width: 34rem;
}
.hero__checks {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
@media (min-width: 500px) {
  .hero__checks { grid-template-columns: 1fr 1fr; }
}
.hero__checks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: #e7f1fb;
}
.hero__checks li::before {
  content: "✓";
  color: var(--cyan-400);
  font-weight: 900;
}
/* ---------------- Trust bar ---------------- */
.trust-bar {
  background: var(--navy-900);
  color: #d9e6f5;
  padding: 1.1rem 0;
}
.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}
.trust-bar__list li { display: flex; align-items: center; gap: 0.5rem; }
.trust-bar__list li::before { content: "✓"; color: var(--cyan-400); }

/* ---------------- Cards grid ---------------- */
.cards-grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cards-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon { font-size: 1.9rem; margin-bottom: 0.7rem; }
.card__title { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.4rem; }
.card__text { color: var(--muted); font-size: 0.95rem; }

.signs-cta { margin-top: var(--space-4); text-align: center; }
.signs-cta a {
  font-weight: 800;
  color: var(--navy-800);
  border-bottom: 2px solid var(--cyan-500);
  padding-bottom: 2px;
  font-size: 1.05rem;
}

/* ---------------- Why us ---------------- */
.why-grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
@media (min-width: 720px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-item { display: flex; gap: 1rem; }
.why-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.why-item__title { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.3rem; }
.why-item__text { color: var(--muted); font-size: 0.96rem; }

/* ---------------- Comparison ---------------- */
.table-scroll { overflow-x: auto; margin-top: var(--space-4); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--white); }
.compare-table th, .compare-table td {
  padding: 1rem 1.1rem;
  text-align: right;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.compare-table thead th {
  background: var(--navy-800);
  color: var(--white);
  font-weight: 800;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td.col-us {
  background: var(--cyan-100);
  font-weight: 700;
  color: var(--navy-800);
}
.compare-table td.col-market { color: var(--muted); }
.compare-table td:first-child { font-weight: 700; }
.compare-note { margin-top: 0.8rem; font-size: 0.85rem; color: var(--muted); text-align: center; }

/* ---------------- Urgency / psychology section ---------------- */
.urgency {
  background: linear-gradient(135deg, var(--danger-bg), var(--navy-900));
  color: var(--white);
  text-align: center;
}
.urgency h2 { font-size: clamp(1.5rem, 4.5vw, 2.3rem); font-weight: 800; max-width: 40rem; margin: 0 auto; }
.urgency p { color: #cfe0f2; max-width: 36rem; margin: 1rem auto 0; }
.urgency .cta-row { justify-content: center; }
.urgency .btn { margin: 0 auto; }

/* ---------------- How it works ---------------- */
.steps {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; text-align: center; padding: 1.75rem 1.25rem; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.step__num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-800); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin: 0 auto 0.9rem;
}
.step__title { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.4rem; }
.step__text { color: var(--muted); font-size: 0.94rem; }

/* ---------------- WhatsApp mock ---------------- */
.wa-mock {
  max-width: 30rem;
  margin: var(--space-4) auto 0;
  background: #e9ecec;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}
.wa-bubble {
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.8rem;
  max-width: 88%;
  font-size: 0.96rem;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-bubble--in {
  background: var(--white);
  border-top-right-radius: 3px;
  margin-inline-start: auto;
}
.wa-bubble--out {
  background: #d9fdd3;
  border-top-left-radius: 3px;
}

/* ---------------- Service area ---------------- */
.areas-list {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.areas-list li {
  background: var(--cyan-100);
  color: var(--navy-800);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
}
.areas-fallback { margin-top: var(--space-2); color: var(--muted); }

/* ---------------- Service area: map + list layout ---------------- */
.area-layout {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 860px) {
  .area-layout { grid-template-columns: 1.1fr 0.9fr; }
}
.area-map__frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.area-map__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.area-map__link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-800);
}
.area-list-wrap .areas-list { margin-top: 0; }

/* ---------------- Reviews ---------------- */
.reviews-grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  text-align: center;
  color: var(--muted);
}
.review-card__stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.6rem; }
.review-card__note { font-size: 0.88rem; margin-top: 0.6rem; }
.reviews-cta { text-align: center; margin-top: var(--space-3); }

/* ---------------- FAQ ---------------- */
.faq-list { margin-top: var(--space-4); max-width: 46rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: var(--white);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--cyan-500);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.3rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------------- Contact form ---------------- */
.form-card {
  max-width: 34rem;
  margin: var(--space-4) auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.4rem; }
.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--cyan-500); }
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.7rem; text-align: center; }
.form-success { display: none; background: var(--cyan-100); color: var(--navy-800); border-radius: var(--radius-sm); padding: 1rem; font-weight: 700; text-align: center; margin-top: 1rem; }
.form-success.is-visible { display: block; }

/* ---------------- Final CTA ---------------- */
.final-cta {
  background: radial-gradient(120% 140% at 50% 0%, var(--navy-700), var(--navy-900));
  color: var(--white);
  text-align: center;
}
.final-cta h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); font-weight: 800; }
.final-cta p { color: #d9e6f5; max-width: 34rem; margin: 1rem auto 0; }
.final-cta .cta-row { justify-content: center; margin-top: var(--space-3); }
.final-cta__strip { margin-top: var(--space-3); color: #9fb6d3; font-size: 0.9rem; font-weight: 600; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--navy-900);
  color: #9fb6d3;
  padding: var(--space-4) 0 var(--space-3);
  font-size: 0.88rem;
}
.site-footer a { color: #cfe0f2; }
.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-footer__brand { font-weight: 800; color: var(--white); font-size: 1.05rem; margin-bottom: 0.5rem; }
.site-footer hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: var(--space-3) 0; }

/* ---------------- Floating quick-contact buttons ---------------- */
.floating-cta {
  position: fixed;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 1rem;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.floating-cta__btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease;
}
.floating-cta__btn:hover { transform: scale(1.07); }
.floating-cta__btn:active { transform: scale(0.97); }
.floating-cta__btn--call { background: var(--cta); }
.floating-cta__btn--whatsapp { background: var(--whatsapp); }
.floating-cta__btn--assistant { background: var(--navy-700); border: 2px solid var(--cyan-400); cursor: pointer; }
.floating-cta__btn--whatsapp::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0.55;
  animation: floating-pulse 2.6s ease-out infinite;
}
@keyframes floating-pulse {
  0% { transform: scale(0.92); opacity: 0.55; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .floating-cta__btn--whatsapp::after { animation: none; display: none; }
}
@media (max-width: 420px) {
  .floating-cta__btn { width: 50px; height: 50px; font-size: 1.3rem; }
}

/* ---------------- Virtual assistant panel ---------------- */
.assistant-panel {
  position: fixed;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 1rem;
  z-index: 56;
  width: min(22rem, calc(100vw - 2rem));
  max-height: min(32rem, calc(100vh - 2rem));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.assistant-panel[hidden] { display: none; }
.assistant-panel__header {
  background: var(--navy-800);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.assistant-panel__close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.05rem;
  padding: 0.2rem 0.4rem;
}
.assistant-panel__body {
  padding: 0.9rem 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  min-height: 8rem;
}
.assistant-msg {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  max-width: 88%;
}
.assistant-msg--bot { background: var(--cyan-100); color: var(--navy-800); border-top-left-radius: 3px; align-self: flex-start; }
.assistant-msg--user { background: var(--navy-800); color: var(--white); border-top-right-radius: 3px; align-self: flex-end; }
.assistant-panel__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 0.9rem;
}
.assistant-panel__quick button {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-800);
}
.assistant-panel__quick button:hover { background: var(--cyan-100); }
.assistant-panel__footer {
  border-top: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.assistant-panel__footer-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.55rem;
}
.assistant-panel__footer-actions .btn { flex: 1; padding: 0.55rem 0.5rem; font-size: 0.82rem; }

/* ---------------- Reviews quote mark ---------------- */
.review-card { position: relative; }
.review-card__quote {
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  font-size: 2.5rem;
  font-family: Georgia, serif;
  color: var(--border);
  line-height: 1;
}

/* ---------------- Utilities ---------------- */
.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;
}
.skip-link {
  position: absolute; right: 1rem; top: -50px;
  background: var(--white); color: var(--navy-800);
  padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  transition: top 0.2s ease; z-index: 100; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ---------------- Focus visibility (keyboard users) ---------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 2px;
}
