/* ============================================================
   Luke & Ben's Outdoor Services — one hand-written stylesheet.
   Mobile-first. No frameworks, no build step.
   ============================================================ */

:root {
  /* "Electric" theme — deep pine green grounded in cool slate, with a true
     electric-blue accent that ties to the 100%-electric equipment. */
  --green: #12643a;        /* primary — deep pine */
  --green-dark: #0d4d2c;
  --green-soft: #e0ede5;
  --sky: #1489e6;          /* accent — electric blue */
  --sky-soft: #e2eefb;
  --amber: #b45309;
  --amber-soft: #fdf0dd;
  --violet: #6d4fc0;
  --violet-soft: #ede9fb;
  --red: #b3373c;
  --red-soft: #fbe9e9;

  --ink: #0f1c20;          /* slate near-black */
  --ink-soft: #566169;
  --ink-faint: #8a959b;
  --bg: #eef2f1;           /* cool slate-green ground */
  --card: #ffffff;
  --line: #dae2e1;

  --radius: 12px;          /* squarer than before — reads more "pro" */
  --radius-sm: 8px;
  --btn-radius: 10px;      /* buttons are rounded rectangles, not full pills */
  --shadow: 0 1px 2px rgba(15, 35, 45, .06), 0 4px 16px rgba(15, 40, 55, .08);
  --shadow-lift: 0 2px 4px rgba(15, 35, 45, .09), 0 12px 32px rgba(15, 40, 55, .13);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; display: block; }

a { color: var(--green-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--green); }

h1, h2, h3 { line-height: 1.2; letter-spacing: -.01em; margin: 0 0 .5rem; }
h1 { font-size: clamp(1.9rem, 5.5vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 4vw, 1.8rem); font-weight: 750; }
h3 { font-size: 1.1rem; font-weight: 700; }

p { margin: 0 0 1rem; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 1rem; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 1rem; }

.muted { color: var(--ink-soft); }
.small { font-size: .85rem; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }

/* ---------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 46px; padding: .55rem 1.25rem;
  border: 1.5px solid transparent; border-radius: var(--btn-radius);
  font: inherit; font-weight: 650; font-size: 1rem;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .06s ease, box-shadow .15s ease, background .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--green-dark); color: #fff; box-shadow: var(--shadow-lift); }

.btn-ghost { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-ghost:hover { background: var(--green-soft); }

.btn-plain { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn-plain:hover { border-color: var(--ink-faint); }

.btn-danger { background: transparent; color: var(--red); border-color: var(--red); }
.btn-danger:hover { background: var(--red-soft); }

.btn-sm { min-height: 38px; padding: .3rem .9rem; font-size: .9rem; }
.btn-lg { min-height: 54px; padding: .7rem 1.8rem; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }

/* ------------------------------------------------------ chips */

.chip {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .15rem .65rem; border-radius: 7px;
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  white-space: nowrap;
}
.chip-requested { background: var(--amber-soft); color: var(--amber); }
.chip-confirmed { background: var(--sky-soft); color: var(--sky); }
.chip-done      { background: var(--violet-soft); color: var(--violet); }
.chip-paid      { background: var(--green-soft); color: var(--green-dark); }
.chip-cancelled { background: #e4eae9; color: var(--ink-faint); }

.chip-luke { background: var(--sky-soft); color: var(--sky); }
.chip-ben  { background: var(--amber-soft); color: var(--amber); }
.chip-both { background: var(--green-soft); color: var(--green-dark); }

.chip-warn { background: var(--amber-soft); color: var(--amber); }
.chip-demo { background: var(--violet-soft); color: var(--violet); }

/* ------------------------------------------------------ cards */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
}
.card h2:first-child, .card h3:first-child { margin-top: 0; }

.card-link { text-decoration: none; color: inherit; display: block; }
.card-link:hover .card, a.card:hover { box-shadow: var(--shadow-lift); border-color: #cdd6d4; }

.card-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .card-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }

.row-split { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.stack-xs > * + * { margin-top: .35rem; }

/* ------------------------------------------------- public header */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(238, 242, 241, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1rem; min-height: 60px; }

.brand {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: 1.05rem; color: var(--ink);
  text-decoration: none; letter-spacing: -.01em;
}
.brand-dot {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--green) 0%, var(--sky) 120%);
  display: grid; place-items: center; color: #fff; font-size: .95rem;
}

.site-nav { display: none; margin-left: auto; align-items: center; gap: .2rem; }
.site-nav a {
  padding: .45rem .8rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; color: var(--ink-soft); text-decoration: none;
}
.site-nav a:hover { background: var(--green-soft); color: var(--green-dark); }
.site-nav a.active { color: var(--green-dark); background: var(--green-soft); }
.site-nav .btn { margin-left: .4rem; }
/* keep primary buttons readable in nav/menu — beats the a{} color rules above */
.site-nav a.btn-primary,
.mobile-menu a.btn-primary { color: #fff; }
.site-nav a.btn-primary:hover,
.mobile-menu a.btn-primary:hover { color: #fff; background: var(--green-dark); }

.nav-toggle {
  margin-left: auto; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--card); font-size: 1.2rem; cursor: pointer;
}

@media (min-width: 820px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-menu { display: none; border-top: 1px solid var(--line); padding: .5rem 1rem 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: .8rem .6rem; border-radius: var(--radius-sm);
  font-weight: 650; font-size: 1.05rem; color: var(--ink); text-decoration: none;
}
.mobile-menu a:hover { background: var(--green-soft); }
.mobile-menu .btn { margin-top: .5rem; }

/* --------------------------------------------------------- hero */

.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(20, 137, 230, .18), transparent 60%),
    radial-gradient(900px 460px at 10% 0%, rgba(18, 100, 58, .18), transparent 55%),
    var(--bg);
  padding: 3rem 0 2.5rem;
}
.hero h1 { max-width: 620px; }
.hero .lede { font-size: clamp(1.05rem, 2.6vw, 1.25rem); color: var(--ink-soft); max-width: 560px; }
/* tagline now carries the hero on its own (business name lives in the header) */
.hero-tagline {
  font-size: clamp(1.7rem, 4.6vw, 2.6rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -.01em;
  color: var(--ink); max-width: 720px; margin: 0;
}
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin: 1.4rem 0 1rem; }
.hero-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
/* uppercase badge chips — the "serious equipment" cue of the Electric theme */
.hero-badges .chip {
  background: var(--card); color: var(--ink-soft); border: 1px solid var(--line);
  font-weight: 700; padding: .32rem .7rem; border-radius: 6px;
  text-transform: uppercase; letter-spacing: .06em; font-size: .7rem;
}

.section { padding: 2.6rem 0; }
.section-tight { padding: 1.6rem 0; }
.section-alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .75rem;
  font-weight: 800; color: var(--green); margin-bottom: .4rem;
}

/* ------------------------------------------- meet-the-boys avatars */
.avatars { display: flex; justify-content: center; gap: .4rem; }
.avatar { width: 76px; height: 76px; }

/* ------------------------------------------------ before/after */

.pairs { display: grid; gap: 1.2rem; }
@media (min-width: 900px) { .pairs.cols-2 { grid-template-columns: 1fr 1fr; } }

.pair-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.pair {
  display: grid; grid-auto-flow: column; grid-auto-columns: 88%;
  overflow-x: auto; scroll-snap-type: x mandatory; gap: 2px;
  -webkit-overflow-scrolling: touch;
}
.pair::-webkit-scrollbar { display: none; }
.pair figure { margin: 0; position: relative; scroll-snap-align: center; }
.pair img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.pair figcaption {
  position: absolute; top: .6rem; left: .6rem;
  padding: .15rem .6rem; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(29, 42, 34, .78); color: #fff;
}
.pair figure.after figcaption { background: var(--green); }
.pair-caption { padding: .7rem 1rem; font-size: .9rem; color: var(--ink-soft); }
.swipe-hint { display: block; text-align: center; font-size: .78rem; color: var(--ink-faint); padding-bottom: .5rem; }

@media (min-width: 640px) {
  .pair { grid-auto-columns: unset; grid-template-columns: 1fr 1fr; grid-auto-flow: row; overflow: visible; }
  .swipe-hint { display: none; }
}

/* ------------------------------------------------- service list */

.service-card { display: flex; flex-direction: column; gap: .35rem; }
.service-card .price { font-weight: 800; color: var(--green-dark); font-size: 1.02rem; }
.badge-row { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .3rem; }

/* "need something else?" invitation card at the end of the services grid */
.service-card-cta {
  background: var(--green-soft);
  border-color: #c8e2d0; border-style: dashed;
  justify-content: space-between;
}
.service-card-cta .badge-row { margin-top: .6rem; }

.payment-note {
  border-left: 4px solid var(--green);
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; font-weight: 600;
}

/* -------------------------------------------------------- forms */

form { margin: 0; }
.field { margin-bottom: 1.05rem; }
.field label, .field > .label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .3rem; }
.field .hint { font-size: .82rem; color: var(--ink-faint); margin-top: .25rem; }

input[type="text"], input[type="tel"], input[type="email"], input[type="date"],
input[type="time"], input[type="number"], input[type="password"], select, textarea {
  width: 100%;
  font: inherit; font-size: 1rem; /* 16px+ prevents iOS zoom */
  color: var(--ink);
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .65rem .8rem;
  min-height: 46px;
}
textarea { min-height: 96px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(28, 124, 70, .18);
}

.field.error input, .field.error select, .field.error textarea { border-color: var(--red); }
.error-text { color: var(--red); font-size: .85rem; font-weight: 650; margin-top: .3rem; }

.form-row { display: grid; gap: .8rem; grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-row.thirds { grid-template-columns: 1fr 1fr 1fr; }
}

/* Tappable checkbox/radio tiles (service picker, time windows) */
.tile-group { display: grid; gap: .55rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .tile-group { grid-template-columns: 1fr 1fr; } }
.tile { position: relative; }
.tile input { position: absolute; opacity: 0; inset: 0; }
.tile span.tile-body {
  display: block; padding: .7rem .9rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--card); cursor: pointer; transition: border-color .12s, background .12s;
}
.tile .tile-title { font-weight: 700; display: block; }
.tile .tile-sub { font-size: .82rem; color: var(--ink-soft); display: block; }
.tile input:checked + span.tile-body {
  border-color: var(--green); background: var(--green-soft);
  box-shadow: 0 0 0 1px var(--green) inset;
}
.tile input:focus-visible + span.tile-body { box-shadow: 0 0 0 3px rgba(28, 124, 70, .25); }
/* the "Something else" option reads as the odd-one-out */
.tile-custom span.tile-body { border-style: dashed; }

/* ---------------------------------------------------------- FAQ */

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; font-weight: 700; padding: 1rem .2rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--green); flex: none; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer { padding: 0 .2rem 1rem; color: var(--ink-soft); }

/* ------------------------------------------------------- footer */

.site-footer {
  margin-top: 2rem; padding: 2rem 0 2.6rem;
  border-top: 1px solid var(--line);
  background: var(--card);
  color: var(--ink-soft); font-size: .92rem;
}
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: space-between; }
.site-footer a { color: var(--ink-soft); }

/* ============================================================
   HQ
   ============================================================ */

.hq body, body.hq { background: #eef2f1; }

.hq-header {
  position: sticky; top: 0; z-index: 50;
  background: #16281d;
  color: #fff;
}
.hq-header .wrap { display: flex; align-items: center; gap: 1rem; min-height: 56px; }
.hq-header .brand { color: #fff; }
.hq-header .brand .brand-dot { background: linear-gradient(135deg, var(--green), var(--sky)); }
.hq-season { margin-left: auto; font-weight: 800; font-size: .95rem; color: #9fd8b4; }
.hq-logout { background: none; border: none; color: rgba(255,255,255,.65); font: inherit; font-size: .85rem; cursor: pointer; padding: .4rem; }
.hq-logout:hover { color: #fff; }

.hq-nav {
  background: #16281d;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hq-nav::-webkit-scrollbar { display: none; }
.hq-nav .wrap { display: flex; gap: .15rem; padding-bottom: .5rem; }
.hq-nav a {
  flex: none; padding: .4rem .85rem; border-radius: 999px;
  color: rgba(255,255,255,.75); text-decoration: none; font-weight: 650; font-size: .9rem;
}
.hq-nav a.active, .hq-nav a:hover { background: rgba(255,255,255,.14); color: #fff; }
.hq-nav .badge { background: var(--amber); color: #fff; border-radius: 999px; padding: 0 .45rem; font-size: .75rem; margin-left: .25rem; }

.hq-main { padding: 1.2rem 0 6rem; }
@media (min-width: 768px) { .hq-main { padding-bottom: 2.5rem; } }

/* Bottom tab bar — phone only */
.hq-tabbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: .3rem .3rem calc(.3rem + env(safe-area-inset-bottom));
}
.hq-tabbar a {
  display: flex; flex-direction: column; align-items: center; gap: .05rem;
  padding: .35rem 0; border-radius: var(--radius-sm);
  font-size: .68rem; font-weight: 700; color: var(--ink-soft); text-decoration: none;
  position: relative;
}
.hq-tabbar a .ico { font-size: 1.25rem; line-height: 1.2; }
.hq-tabbar a.active { color: var(--green-dark); background: var(--green-soft); }
.hq-tabbar .dot {
  position: absolute; top: 2px; right: 18%;
  min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px;
  background: var(--amber); color: #fff; font-size: .68rem; line-height: 17px; text-align: center;
}
@media (min-width: 768px) { .hq-tabbar { display: none; } }

/* -------------------------------------------------- HQ pieces */

.page-title { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; margin: .2rem 0 1rem; }
.page-title h1 { font-size: 1.5rem; margin: 0; }
.page-title .spacer { flex: 1; }

.banner {
  display: flex; gap: .7rem; align-items: flex-start;
  border-radius: var(--radius-sm); padding: .85rem 1rem; margin-bottom: 1rem;
  font-weight: 600; font-size: .95rem;
}
.banner form { margin-left: auto; flex: none; }
.banner-warn { background: var(--amber-soft); color: var(--amber); border: 1px solid #ecd9b8; }
.banner-info { background: var(--sky-soft); color: var(--sky); border: 1px solid #c9e2f2; }
.banner-ok { background: var(--green-soft); color: var(--green-dark); border: 1px solid #c8e2d0; }
/* for banners that hold a full sentence with inline bold/italic — flex would
   split each <strong>/<em> into its own column, so let the text flow normally */
.banner-block { display: block; }

.toast {
  position: fixed; left: 50%; bottom: 84px; transform: translateX(-50%);
  z-index: 100; max-width: min(92vw, 460px);
  background: #16281d; color: #fff; font-weight: 650; font-size: .92rem;
  padding: .7rem 1.2rem; border-radius: 999px; box-shadow: var(--shadow-lift);
  animation: toast-in .25s ease;
}
@media (min-width: 768px) { .toast { bottom: 30px; } }
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 8px); } }

.job-line {
  display: flex; align-items: center; gap: .7rem; flex-wrap: wrap;
  padding: .75rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--card); margin-bottom: .55rem;
  text-decoration: none; color: inherit;
}
.job-line:hover { border-color: var(--ink-faint); }
.job-line .who { margin-left: auto; display: flex; gap: .35rem; align-items: center; }
.job-line strong { font-weight: 750; }

.day-head {
  display: flex; align-items: baseline; gap: .6rem;
  margin: 1.2rem 0 .5rem; font-weight: 800;
}
.day-head .wx { font-weight: 600; font-size: .85rem; color: var(--ink-soft); }

.stat-row { display: grid; gap: .7rem; grid-template-columns: repeat(2, 1fr); margin-bottom: 1.1rem; }
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .8rem 1rem; box-shadow: var(--shadow);
  text-decoration: none; color: inherit; display: block;
}
.stat .num { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.stat .lbl { display: block; font-size: .8rem; font-weight: 700; color: var(--ink-soft); }
.stat.accent .num { color: var(--green-dark); }

.filter-row { display: flex; gap: .4rem; overflow-x: auto; padding-bottom: .4rem; margin-bottom: .8rem; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-row a {
  flex: none; padding: .35rem .9rem; border-radius: 999px; font-weight: 700; font-size: .88rem;
  text-decoration: none; color: var(--ink-soft); background: var(--card); border: 1px solid var(--line);
}
.filter-row a.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.kv { display: grid; grid-template-columns: auto 1fr; gap: .25rem .9rem; font-size: .95rem; }
.kv dt { font-weight: 700; color: var(--ink-soft); }
.kv dd { margin: 0; overflow-wrap: anywhere; }

table.simple { width: 100%; border-collapse: collapse; font-size: .95rem; }
table.simple th { text-align: left; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); padding: .4rem .5rem; }
table.simple td { padding: .55rem .5rem; border-top: 1px solid var(--line); }
table.simple td.num, table.simple th.num { text-align: right; font-variant-numeric: tabular-nums; }
.table-scroll { overflow-x: auto; }

.bar-row { display: grid; grid-template-columns: 110px 1fr auto; gap: .6rem; align-items: center; margin-bottom: .45rem; font-size: .92rem; }
.bar-track { background: #edece3; border-radius: 999px; height: 14px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--green), #2f9e63); min-width: 4px; }
.bar-row .amt { font-weight: 750; font-variant-numeric: tabular-nums; }

/* photo thumbs */
.thumb-grid { display: grid; gap: .6rem; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.thumb { position: relative; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.thumb .tag {
  position: absolute; top: .4rem; left: .4rem; padding: .05rem .5rem; border-radius: 999px;
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  background: rgba(29,42,34,.78); color: #fff;
}
.thumb .tag.after { background: var(--green); }

/* availability grid */
.week-grid { display: grid; gap: .7rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .week-grid { grid-template-columns: repeat(7, 1fr); } }
.week-day { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .6rem; }
.week-day.today { border-color: var(--green); box-shadow: 0 0 0 1px var(--green) inset; }
.week-day .dh { font-weight: 800; font-size: .85rem; margin-bottom: .4rem; }
.block-pill {
  display: flex; align-items: center; gap: .4rem; justify-content: space-between;
  font-size: .8rem; font-weight: 650;
  background: var(--green-soft); color: var(--green-dark);
  border-radius: 8px; padding: .3rem .5rem; margin-bottom: .3rem;
}
.block-pill.who-luke { background: var(--sky-soft); color: var(--sky); }
.block-pill.who-ben { background: var(--amber-soft); color: var(--amber); }
.block-pill button { background: none; border: none; color: inherit; cursor: pointer; font-size: .95rem; padding: 0 .1rem; line-height: 1; }

/* playbook checklists */
.checklist { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.checklist li { margin-bottom: .45rem; }
.checklist label {
  display: flex; gap: .7rem; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .7rem .85rem; cursor: pointer;
}
.checklist input[type="checkbox"] {
  width: 22px; height: 22px; margin-top: .1rem; flex: none; accent-color: var(--green);
}
.checklist input:checked ~ span { text-decoration: line-through; color: var(--ink-faint); }

.playbook-body h2 { margin-top: 1.6rem; }
.playbook-body h3 { margin-top: 1.4rem; color: var(--green-dark); }

/* text queue */
.msg-preview {
  background: var(--sky-soft); border-radius: 14px 14px 14px 4px;
  padding: .7rem .95rem; font-size: .93rem; margin: .5rem 0 .7rem;
  white-space: pre-wrap; overflow-wrap: anywhere;
}
.queue-actions { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }

/* login */
.login-wrap { min-height: 82vh; display: grid; place-items: center; padding: 1rem; }
.login-card { width: 100%; max-width: 380px; text-align: center; padding: 2rem 1.6rem; }
.pin-input { text-align: center; font-size: 1.6rem !important; letter-spacing: .5em; font-weight: 800; }

/* misc */
.divider { border: 0; border-top: 1px solid var(--line); margin: 1.3rem 0; }
details.tools { margin-top: .6rem; }
details.tools > summary { cursor: pointer; font-weight: 700; color: var(--green-dark); font-size: .92rem; }
.empty {
  text-align: center; color: var(--ink-faint); padding: 2.2rem 1rem;
  border: 1.5px dashed var(--line); border-radius: var(--radius); font-weight: 600;
}
