/* ==========================================================================
   Breezy — Missed-Call Revenue landing page
   Brand extracted from getbreezyapp.com. Signature: "The Leak Meter".
   ========================================================================== */

:root {
  /* Ink / dark surfaces */
  --ink:        #020910;
  --navy-900:   #03101f;
  --navy-800:   #061a30;
  --navy-700:   #0b2742;

  /* Brand accents */
  --cyan:       #41d2f2;
  --cyan-sky:   #67dbf5;
  --teal:       #146a8c;
  --blue:       #0367a6;
  --lime:       #cbff2e;   /* used ONLY for "recovered / booked" success */

  /* Light + text */
  --white:      #ffffff;
  --cloud:      #f3f8fc;   /* light section bg */
  --cloud-2:    #e8f1f8;
  --slate:      #243340;   /* primary text on light */
  --slate-soft: #5a6b78;   /* secondary text on light */
  --line:       #d4dde5;   /* borders on light */
  --line-dark:  rgba(101,219,245,.16); /* hairline on dark */
  --on-dark:    #e7f1f8;   /* body text on dark */
  --on-dark-dim:#9fb4c4;

  /* Type */
  --display: "Roboto Slab", Georgia, serif;
  --body:    "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "Roboto Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Shape */
  --r:    10px;
  --r-lg: 18px;
  --r-pill: 999px;
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Elevation */
  --shadow-card: 0 18px 50px rgba(2,9,16,.10);
  --shadow-pop:  0 30px 80px rgba(2,9,16,.45);
  --glow-cyan:   0 0 0 1px rgba(65,210,242,.35), 0 24px 70px rgba(65,210,242,.18);
}

/* ----- reset ----- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--slate);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input { font: inherit; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }
em { font-style: italic; }

/* ----- shared layout ----- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 116px); position: relative; }
.section--dark  { background: var(--ink); color: var(--on-dark); }
.section--light { background: var(--cloud); color: var(--slate); }
.section--white { background: var(--white); color: var(--slate); }
.signal-bg::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/signal.svg") right top / cover no-repeat;
  opacity: .9; pointer-events: none;
}
.section > .wrap { position: relative; z-index: 1; }

/* ----- eyebrow / labels ----- */
.eyebrow {
  font-family: var(--body); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--cyan);
  display: inline-flex; align-items: center; gap: .55em; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--cyan); opacity: .8; }
.section--light .eyebrow, .section--white .eyebrow { color: var(--teal); }
.section--light .eyebrow::before, .section--white .eyebrow::before { background: var(--teal); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.section-head p { margin-top: 16px; font-size: 1.075rem; color: var(--slate-soft); }
.section--dark .section-head p { color: var(--on-dark-dim); }

/* ----- buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 16px 26px; border-radius: var(--r); border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--cyan); color: #042438; box-shadow: 0 10px 30px rgba(65,210,242,.30); }
.btn--primary:hover { background: var(--cyan-sky); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(65,210,242,.42); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(231,241,248,.28); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--lg { padding: 19px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* phone link inline */
.tel { font-weight: 700; color: var(--cyan); white-space: nowrap; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2,9,16,.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 70px; }
.nav__logo img { height: 26px; width: auto; }
.nav__links { margin-left: auto; display: flex; gap: 30px; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--on-dark-dim);
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--cyan); }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__tel { font-size: .9rem; font-weight: 600; color: var(--on-dark); display: inline-flex; gap: .4em; }
.nav__tel span { color: var(--cyan); }
.nav .btn { padding: 11px 20px; }
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__tel { display: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { background: var(--ink); color: var(--on-dark); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-block: clamp(52px, 7vw, 92px);
}
.hero__copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.05rem); letter-spacing: -.02em;
}
.hero h1 em { color: var(--cyan); font-style: italic; position: relative; white-space: nowrap; }
.hero__sub {
  margin-top: 22px; font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  color: var(--on-dark-dim); max-width: 520px;
}
.hero__sub b { color: var(--on-dark); font-weight: 600; }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: .88rem; color: var(--on-dark-dim);
}
.hero__trust span { display: inline-flex; align-items: center; gap: .5em; }
.hero__trust svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }

/* =========================================================================
   THE LEAK METER (calculator) — the signature element
   ========================================================================= */
.meter {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop); overflow: hidden;
  position: relative;
}
.meter__head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 22px; border-bottom: 1px solid var(--line-dark);
  background: rgba(65,210,242,.05);
}
.meter__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(203,255,46,.16); }
.meter__title {
  font-family: var(--body); font-weight: 700; font-size: .76rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark);
}
.meter__live { margin-left: auto; font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; color: var(--cyan); text-transform: uppercase; }
.meter__body { padding: 26px 22px 22px; }

/* inputs */
.field { margin-bottom: 22px; }
.field__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.field__label { font-size: .82rem; font-weight: 600; color: var(--on-dark-dim); letter-spacing: .01em; }
.field__val {
  font-family: var(--mono); font-weight: 600; font-size: 1.18rem; color: var(--white);
  background: rgba(65,210,242,.10); border: 1px solid var(--line-dark);
  border-radius: 7px; padding: 4px 12px; min-width: 92px; text-align: right;
  font-variant-numeric: tabular-nums;
}
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: 6px; background: var(--navy-700); outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan); border: 3px solid #08243a; cursor: grab;
  box-shadow: 0 0 0 5px rgba(65,210,242,.18), 0 4px 12px rgba(0,0,0,.4);
}
input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--cyan);
  border: 3px solid #08243a; cursor: grab; box-shadow: 0 0 0 5px rgba(65,210,242,.18);
}
.field__hint { margin-top: 8px; font-size: .74rem; color: var(--on-dark-dim); opacity: .8; }

/* readout */
.readout { margin-top: 6px; border-top: 1px dashed var(--line-dark); padding-top: 22px; }
.readout__lead { font-size: .82rem; color: var(--on-dark-dim); margin-bottom: 4px; }
.odometer {
  font-family: var(--mono); font-weight: 700; font-variant-numeric: tabular-nums;
  font-size: clamp(2.6rem, 7vw, 3.5rem); line-height: 1; letter-spacing: -.02em;
  color: var(--white); display: flex; align-items: baseline; gap: .12em;
}
.odometer .cur { color: var(--cyan); }
.readout__unit { font-family: var(--body); font-size: .9rem; font-weight: 600; color: var(--on-dark-dim); margin-top: 8px; }
.readout__split {
  margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.stat-chip {
  background: rgba(65,210,242,.06); border: 1px solid var(--line-dark);
  border-radius: var(--r); padding: 13px 14px;
}
.stat-chip--win { background: rgba(203,255,46,.08); border-color: rgba(203,255,46,.30); }
.stat-chip__num { font-family: var(--mono); font-weight: 700; font-size: 1.32rem; color: var(--white); font-variant-numeric: tabular-nums; }
.stat-chip--win .stat-chip__num { color: var(--lime); }
.stat-chip__lbl { font-size: .72rem; color: var(--on-dark-dim); margin-top: 3px; line-height: 1.35; }
.meter .btn { margin-top: 20px; }

/* assumptions disclosure */
.assump { margin-top: 16px; border-top: 1px solid var(--line-dark); }
.assump summary {
  list-style: none; cursor: pointer; padding-top: 14px;
  font-size: .76rem; font-weight: 600; letter-spacing: .04em;
  color: var(--cyan); display: flex; align-items: center; gap: 8px;
}
.assump summary::-webkit-details-marker { display: none; }
.assump summary::before { content: "▸"; transition: transform .15s ease; }
.assump[open] summary::before { transform: rotate(90deg); }
.assump__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 14px 0 6px;
}
.assump__cell { text-align: center; background: var(--navy-900); border: 1px solid var(--line-dark); border-radius: 8px; padding: 9px 6px; }
.assump__cell b { display: block; font-family: var(--mono); color: var(--white); font-size: .98rem; }
.assump__cell span { font-size: .62rem; color: var(--on-dark-dim); text-transform: uppercase; letter-spacing: .04em; }
.assump__note { font-size: .68rem; color: var(--on-dark-dim); opacity: .8; line-height: 1.45; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 64px; }
  .hero__copy { max-width: none; }
}

/* =========================================================================
   PROOF BAR
   ========================================================================= */
.proof { background: var(--navy-900); border-block: 1px solid var(--line-dark); padding-block: 30px; }
.proof__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; }
.proof__intro { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--on-dark-dim); max-width: 210px; }
.proof__stats { display: flex; flex-wrap: wrap; gap: 16px 40px; }
.proof__stat strong {
  font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--cyan); display: block; line-height: 1;
}
.proof__stat span { font-size: .78rem; color: var(--on-dark-dim); }

/* =========================================================================
   PAIN
   ========================================================================= */
.pain__lead { max-width: 680px; font-size: 1.12rem; color: var(--on-dark-dim); }
.pain__lead strong { color: var(--white); font-weight: 600; }
.pain__cards { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain-card {
  background: var(--navy-800); border: 1px solid var(--line-dark);
  border-radius: var(--r-lg); padding: 26px 24px; position: relative;
}
.pain-card__stat { font-family: var(--display); font-weight: 700; font-size: 2.5rem; color: var(--cyan); line-height: 1; }
.pain-card h3 { font-family: var(--body); font-weight: 700; font-size: 1.04rem; margin-top: 14px; color: var(--white); letter-spacing: 0; }
.pain-card p { margin-top: 8px; font-size: .92rem; color: var(--on-dark-dim); }
.pain-card cite { display: block; margin-top: 14px; font-size: .72rem; font-style: normal; color: var(--on-dark-dim); opacity: .7; }
.pain__after { margin-top: 30px; font-family: var(--display); font-weight: 600; font-style: italic; font-size: 1.25rem; color: var(--cyan); }

/* =========================================================================
   BENEFITS
   ========================================================================= */
.benefits__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.benefit {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-card);
}
.benefit__ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan-sky), var(--blue)); color: #04263a; margin-bottom: 18px;
}
.benefit__ico svg { width: 24px; height: 24px; }
.benefit h3 { font-family: var(--body); font-weight: 700; font-size: 1.16rem; color: var(--slate); }
.benefit p { margin-top: 10px; color: var(--slate-soft); font-size: .96rem; }
.benefits__cta { margin-top: 34px; }

/* =========================================================================
   STEPS (real 3-step sequence → numbering justified)
   ========================================================================= */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 10px; }
.step { position: relative; padding: 0 26px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 22px; right: -1px; width: 1px; height: calc(100% - 22px);
  background: var(--line);
}
.step__n {
  font-family: var(--mono); font-weight: 700; font-size: .9rem; color: #04263a;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cyan); margin-bottom: 20px;
}
.step h3 { font-family: var(--body); font-weight: 700; font-size: 1.12rem; color: var(--slate); }
.step p { margin-top: 10px; color: var(--slate-soft); font-size: .95rem; }
.steps__foot { margin-top: 40px; font-size: .95rem; color: var(--slate-soft); display: inline-flex; align-items: center; gap: 10px; }
.steps__foot b { color: var(--teal); }
@media (max-width: 820px) {
  .steps__grid { grid-template-columns: 1fr; gap: 32px; }
  .step { padding: 0; }
  .step:not(:last-child)::after { display: none; }
}

/* =========================================================================
   SKEPTIC — disarm + "call & hear it" device
   ========================================================================= */
.skeptic__grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.skeptic h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.skeptic h2 em { color: var(--cyan); }
.skeptic__body { margin-top: 18px; color: var(--on-dark-dim); font-size: 1.06rem; }
.skeptic__chips { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.chip { display: flex; align-items: center; gap: 12px; font-size: .96rem; color: var(--on-dark); }
.chip svg { width: 22px; height: 22px; color: var(--cyan); flex: none; }

.hearit {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  padding: 34px 32px; text-align: center; box-shadow: var(--shadow-pop);
}
.hearit__eyebrow { font-family: var(--display); font-weight: 700; font-style: italic; font-size: 1.5rem; color: var(--white); }
.hearit__eyebrow b { color: var(--lime); font-style: normal; }
.hearit p { margin-top: 12px; color: var(--on-dark-dim); font-size: .95rem; }
.hearit__phone {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-weight: 700; font-size: clamp(1.5rem, 4vw, 2rem); color: var(--cyan);
  border: 1px dashed rgba(65,210,242,.4); border-radius: var(--r); padding: 14px 24px;
  transition: background .15s ease, transform .15s ease;
}
.hearit__phone:hover { background: rgba(65,210,242,.08); transform: translateY(-2px); }
.hearit__phone svg { width: 26px; height: 26px; }
.hearit__sub { margin-top: 14px; font-size: .8rem; color: var(--on-dark-dim); }
@media (max-width: 860px) { .skeptic__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   DIFFERENTIATION
   ========================================================================= */
.diff__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
.diff-row {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 22px;
}
.diff-row__check {
  flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center;
  background: var(--teal); color: var(--white);
}
.diff-row__check svg { width: 16px; height: 16px; }
.diff-row h3 { font-family: var(--body); font-weight: 700; font-size: 1rem; color: var(--slate); }
.diff-row p { margin-top: 5px; font-size: .9rem; color: var(--slate-soft); }
.diff-row p em { color: var(--teal); font-style: italic; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.tst__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.tst {
  background: var(--navy-800); border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  padding: 30px 28px; display: flex; flex-direction: column;
}
.tst__stat { font-family: var(--display); font-weight: 700; font-size: 1.9rem; color: var(--lime); line-height: 1; margin-bottom: 16px; }
.tst blockquote { font-size: 1.02rem; color: var(--on-dark); line-height: 1.55; }
.tst figcaption { margin-top: 18px; font-size: .85rem; color: var(--on-dark-dim); }
.tst figcaption b { color: var(--white); font-weight: 600; }
.tst__rating {
  grid-column: 1 / -1; text-align: center; margin-top: 8px;
  font-size: 1rem; color: var(--on-dark-dim);
}
.tst__rating b { color: var(--cyan); font-family: var(--display); }
@media (max-width: 760px) { .tst__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq__list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--slate);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 18px; font-family: var(--body);
  font-size: 1.6rem; font-weight: 400; color: var(--teal); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 44px 24px 0; color: var(--slate-soft); font-size: .98rem; }

/* =========================================================================
   FINAL CTA (cyan band — the single loudest moment)
   ========================================================================= */
.final { background: linear-gradient(135deg, var(--cyan-sky) 0%, var(--cyan) 45%, var(--teal) 100%); color: #042438; text-align: center; overflow: hidden; position: relative; }
.final::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/signal.svg") center / cover no-repeat; opacity: .35; mix-blend-mode: soft-light;
}
.final .wrap { position: relative; z-index: 1; }
.final h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: #042438; }
.final h2 em { font-style: italic; }
.final p { margin: 18px auto 0; max-width: 560px; font-size: 1.1rem; color: #093750; }
.final__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.final__cta .btn--dark { box-shadow: 0 16px 40px rgba(2,9,16,.3); }
.final__phone { display: inline-flex; align-items: center; gap: 10px; padding: 19px 30px; border-radius: var(--r); border: 1px solid rgba(4,36,56,.35); font-weight: 700; color: #042438; }
.final__phone:hover { background: rgba(255,255,255,.25); }
.final__re { margin-top: 22px; font-size: .86rem; font-weight: 600; color: #0a3b55; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ink); color: var(--on-dark-dim); padding-block: 54px 40px; border-top: 1px solid var(--line-dark); }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: flex-start; }
.footer__brand img { height: 26px; margin-bottom: 14px; }
.footer__brand p { max-width: 300px; font-size: .9rem; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a { font-size: .9rem; }
.footer__links a:hover { color: var(--cyan); }
.footer__legal { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .78rem; opacity: .8; }
.footer__legal .disc { max-width: 640px; }

/* =========================================================================
   responsive collapses
   ========================================================================= */
@media (max-width: 880px) {
  .pain__cards { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .diff__list { grid-template-columns: 1fr; }
}

/* =========================================================================
   reveal-on-scroll + reduced motion
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
