/* marketing.pizza design system
   Palette from the two references: bright cyan, pale aqua and warm/bright orange
   from the swatch strip, deep slate teal and rust from the blurred strip. Cool
   whites throughout, no beige. Hairline borders and soft shadows, no heavy rules.

   Type is a three-family system:
     Bricolage Grotesque  display   headlines, prices, the wordmark
     Instrument Sans      text      body copy and UI
     JetBrains Mono       accent    kickers, labels, counters, tags
*/

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('/fonts/bricolage.woff2') format('woff2-variations');
  font-weight: 200 800; font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('/fonts/instrument.woff2') format('woff2-variations');
  font-weight: 400 700; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/fonts/jetbrains.woff2') format('woff2-variations');
  font-weight: 400 800; font-display: swap;
}

:root {
  /* ink */
  --ink:        #12262B;
  --ink-soft:   #3A5359;
  --muted:      #6E878D;
  --faint:      #9DB3B8;

  /* surfaces */
  --bg:         #FFFFFF;
  --tint:       #F4FAFB;
  --tint-2:     #E9F6F9;
  --deep:       #23383B;
  --deep-2:     #2E474A;

  /* lines */
  --line:       #E4EEF0;
  --line-2:     #D4E5E8;

  /* brand */
  --orange:     #FA6A00;
  --orange-2:   #F28730;
  --orange-dk:  #C64E00;
  --orange-wash:#FFF1E6;
  --cyan:       #68D3E8;
  --aqua:       #A7DCDA;
  --cyan-wash:  #E6F8FC;
  --sage:       #E0E4CD;
  --ok:         #2F8F6B;
  --flag:       #E0451F;

  --display: 'Bricolage Grotesque', 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --text:    'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --sh-1: 0 1px 2px rgba(18,38,43,.05);
  --sh-2: 0 1px 2px rgba(18,38,43,.05), 0 6px 20px rgba(18,38,43,.06);
  --sh-3: 0 2px 4px rgba(18,38,43,.05), 0 14px 44px rgba(18,38,43,.09);
  --r:  14px;
  --r2: 20px;
  --wrap: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--text); color: var(--ink); background: var(--bg);
  font-size: 16.5px; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: var(--orange-dk); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
img, svg { max-width: 100%; height: auto; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--display); font-optical-sizing: auto;
  line-height: 1.08; letter-spacing: -.022em; font-weight: 600;
}
h1 { font-size: clamp(34px, 5.2vw, 56px); letter-spacing: -.032em; }
h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.026em; }
h3 { font-size: 19px; letter-spacing: -.014em; font-weight: 600; }
.kicker {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.kicker.slate { color: var(--muted); }
.lede { font-size: 19px; line-height: 1.55; color: var(--ink-soft); max-width: 62ch; font-weight: 400; }
.sub { color: var(--muted); }
.stencil { font-family: var(--mono); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: 11px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 14px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.logo {
  display: flex; align-items: center; gap: 10px; color: var(--ink);
  font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -.03em;
}
.logo:hover { text-decoration: none; }
.logo-mark { width: 26px; height: 26px; flex: none; }
.logo-dot { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a.on { color: var(--ink); }
.nav-btn {
  background: var(--orange); color: #fff !important; padding: 9px 17px;
  border-radius: 9px; font-weight: 600; box-shadow: var(--sh-1);
  transition: background .15s, transform .12s;
}
.nav-btn:hover { background: var(--orange-dk); text-decoration: none !important; transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2); border-radius: 9px;
  padding: 6px 10px; font-size: 15px; cursor: pointer; color: var(--ink);
}
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    padding: 6px 26px 18px; box-shadow: var(--sh-2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-btn { text-align: center; margin-top: 14px; border-bottom: 0 !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--text); font-weight: 600; font-size: 15.5px;
  padding: 13px 26px; border: 1px solid transparent; border-radius: 11px;
  background: var(--orange); color: #fff; cursor: pointer;
  box-shadow: var(--sh-1); transition: background .15s, transform .12s, box-shadow .15s;
}
.btn:hover { background: var(--orange-dk); text-decoration: none; transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(0); }
.btn.ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn.ghost:hover { background: var(--tint); border-color: var(--faint); }
.btn.slate { background: var(--deep); color: #fff; }
.btn.slate:hover { background: var(--ink); }
.btn.sm { padding: 9px 17px; font-size: 14px; border-radius: 9px; }

/* ---------- hero ---------- */
.hero {
  padding: 84px 0 76px; position: relative; overflow: hidden;
  background:
    radial-gradient(58% 78% at 88% 8%, var(--cyan-wash) 0%, rgba(230,248,252,0) 62%),
    radial-gradient(42% 60% at 96% 62%, rgba(250,106,0,.07) 0%, rgba(250,106,0,0) 70%),
    var(--bg);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line);
}
.hero-inner { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.hero-copy { flex: 1 1 440px; }
.hero .lede { margin-top: 20px; font-size: 19.5px; }
.hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-art { flex: 1 1 400px; position: relative; }
.hero-art img { display: block; width: 100%; }
.hero-note { margin-top: 24px; font-size: 14px; color: var(--muted); }
@media (max-width: 760px) { .hero { padding: 52px 0 54px; } }

/* ---------- surfaces ---------- */
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r2);
  box-shadow: var(--sh-2); padding: 26px;
}
.panel.flat { box-shadow: none; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 23px; box-shadow: var(--sh-1);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.card h3 { font-size: 18px; }
.card p { font-size: 14.8px; color: var(--muted); line-height: 1.55; }
.card .num {
  font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--orange);
  letter-spacing: .14em; text-transform: uppercase;
}
a.card { color: inherit; }
a.card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--sh-3); border-color: var(--line-2); }
a.card h3 { color: var(--ink); }
.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

/* ---------- sections ---------- */
section { padding: 82px 0; }
section.alt { background: var(--tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.ink { background: var(--deep); color: #D7E5E7; border: 0; }
section.ink h2, section.ink h3 { color: #fff; }
section.ink .kicker { color: var(--cyan); }
section.ink p { color: #A9C2C6; }
section.ink .lede { color: #C3D6D9; }
section.ink .card { background: var(--deep-2); border-color: rgba(255,255,255,.09); box-shadow: none; }
section.ink .card h3 { color: #fff; }
section.ink .card p { color: #9FB8BC; }
section.ink .checks li { color: #C3D6D9; }
section.ink .checks li::before { background: var(--cyan); }
.sec-head { max-width: 720px; margin-bottom: 40px; }
.sec-head p { margin-top: 14px; color: var(--muted); font-size: 17.5px; }
section.ink .sec-head p { color: #A9C2C6; }

/* ---------- rows ---------- */
.row { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.row.rev { flex-direction: row-reverse; }
.row-text { flex: 1 1 400px; }
.row-text p { margin-top: 15px; color: var(--muted); }
.row-art { flex: 1 1 380px; }

/* ---------- tags ---------- */
.tick {
  display: inline-flex; align-items: center; gap: 7px; background: var(--orange-wash);
  color: var(--orange-dk); border: 1px solid rgba(250,106,0,.16); border-radius: 999px;
  padding: 5px 13px; font-family: var(--mono); font-size: 11.5px; font-weight: 500;
}
.tick.slate { background: var(--cyan-wash); color: #1D6070; border-color: rgba(104,211,232,.3); }
a.tick:hover { text-decoration: none; background: var(--orange); color: #fff; border-color: var(--orange); }
.ticks { display: flex; flex-wrap: wrap; gap: 9px; }

/* ---------- lists ---------- */
.checks { list-style: none; display: grid; gap: 12px; margin-top: 20px; }
.checks li { position: relative; padding-left: 28px; color: var(--ink-soft); font-size: 15.8px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px;
  border-radius: 5px; background: var(--orange);
}
.prose { max-width: 72ch; }
.prose h2 { margin: 52px 0 16px; font-size: 27px; }
.prose h3 { margin: 34px 0 10px; font-size: 19px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); }
.prose ul, .prose ol { margin: 0 0 20px 22px; }
.prose li { margin-bottom: 9px; color: var(--ink-soft); }
.prose blockquote {
  border-left: 3px solid var(--orange); background: var(--tint); padding: 18px 22px;
  margin: 26px 0; border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--display); font-size: 19px; line-height: 1.35; letter-spacing: -.015em;
  color: var(--ink); font-weight: 500;
}
.prose blockquote p { margin-bottom: 0; color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14.6px; }
.prose th, .prose td { border-bottom: 1px solid var(--line); padding: 11px 13px; text-align: left; vertical-align: top; }
.prose th {
  background: var(--tint); font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
  border-bottom: 1px solid var(--line-2);
}
.prose tr:last-child td { border-bottom: 0; }

/* ---------- breadcrumb ---------- */
.crumb { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-bottom: 18px; letter-spacing: .04em; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--orange); }
.crumb span { margin: 0 8px; opacity: .45; }

/* ---------- article header ---------- */
.art-head {
  padding: 56px 0 42px; border-bottom: 1px solid var(--line);
  background: radial-gradient(56% 80% at 82% 0%, var(--cyan-wash) 0%, rgba(230,248,252,0) 66%), var(--tint);
}
.art-head h1 { font-size: clamp(30px, 4.2vw, 44px); max-width: 20ch; }
.art-head .lede { margin-top: 18px; }
.art-meta { margin-top: 22px; display: flex; gap: 9px; flex-wrap: wrap; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary {
  cursor: pointer; font-family: var(--display); font-weight: 600; font-size: 17.5px;
  letter-spacing: -.015em; list-style: none;
  display: flex; justify-content: space-between; gap: 18px; align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 21px; line-height: 1; flex: none; font-family: var(--text); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin-top: 12px; color: var(--muted); font-size: 15.6px; max-width: 76ch; }

/* ---------- cta band ---------- */
.band {
  padding: 68px 0;
  background:
    radial-gradient(50% 120% at 12% 50%, rgba(104,211,232,.18) 0%, rgba(104,211,232,0) 70%),
    var(--deep);
}
.band h2 { color: #fff; }
.band p { color: #A9C2C6; margin-top: 14px; font-size: 17.5px; max-width: 58ch; }
.band .btn { background: var(--orange); color: #fff; }
.band .btn:hover { background: var(--orange-2); }
.band .btn.ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.band .btn.ghost:hover { background: rgba(255,255,255,.16); }
.band-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.foot { background: #fff; border-top: 1px solid var(--line); color: var(--muted); padding: 58px 0 34px; font-size: 14.5px; }
.foot a { color: var(--muted); }
.foot a:hover { color: var(--orange); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot h4 {
  color: var(--ink); font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 16px; font-weight: 600;
}
.foot ul { list-style: none; display: grid; gap: 10px; }
.foot-brand { font-family: var(--display); font-weight: 600; font-size: 20px; color: var(--ink); letter-spacing: -.03em; }
.foot-bot {
  margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px;
}

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
@media (max-width: 920px) { .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r2); padding: 30px 27px; box-shadow: var(--sh-2); }
.plan.best { background: var(--deep); color: #C3D6D9; border-color: var(--deep); box-shadow: var(--sh-3); }
.plan.best h3, .plan.best .price { color: #fff; }
.plan.best .sub { color: #A9C2C6; }
.plan.best .checks li { color: #C3D6D9; }
.plan.best .checks li::before { background: var(--cyan); }
.plan.best .tick { background: var(--orange); color: #fff; border-color: var(--orange); }
.price {
  font-family: var(--display); font-size: 46px; font-weight: 600; letter-spacing: -.04em;
  margin: 16px 0 2px; line-height: 1;
}
.price small { font-family: var(--text); font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan .btn { width: 100%; text-align: center; margin-top: 26px; }

/* ---------- login ---------- */
.login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px;
  background:
    radial-gradient(46% 46% at 50% 0%, var(--cyan-wash) 0%, rgba(230,248,252,0) 70%),
    radial-gradient(40% 40% at 84% 96%, rgba(250,106,0,.07) 0%, rgba(250,106,0,0) 70%),
    var(--bg);
}
.login-card { width: 100%; max-width: 404px; background: #fff; border: 1px solid var(--line); border-radius: var(--r2); box-shadow: var(--sh-3); padding: 36px; }
.login-card h1 { font-size: 28px; margin-top: 6px; }
.login-sub { color: var(--muted); font-size: 14.5px; margin-top: 9px; }
.login-card label {
  display: block; margin-top: 20px; font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.login-card input {
  width: 100%; margin-top: 8px; padding: 12px 14px; font-size: 15.5px; font-family: var(--text);
  border: 1px solid var(--line-2); border-radius: 10px; background: #fff; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.login-card input:focus { outline: 0; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(250,106,0,.14); }
.login-card .btn { width: 100%; margin-top: 24px; text-align: center; }
.login-foot { margin-top: 22px; font-size: 13.5px; text-align: center; color: var(--muted); }
.alert {
  margin-top: 18px; padding: 12px 15px; border: 1px solid rgba(224,69,31,.24); background: #FEF1ED;
  border-radius: 10px; font-size: 14px; color: #9A2E12; font-weight: 500;
}
.alert.ok { border-color: rgba(47,143,107,.24); background: #EDF8F3; color: #1F6B4E; }

/* ---------- account ---------- */
.acct { padding: 52px 0 84px; }
.acct-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 22px; flex-wrap: wrap; margin-bottom: 30px; }
.kv { display: grid; gap: 0; }
.kv-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.kv-row:last-child { border-bottom: 0; }
.kv-row span { color: var(--muted); font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.kv-row b { font-weight: 600; }
code, .code {
  font-family: var(--mono); font-size: 13px; background: var(--tint); border: 1px solid var(--line);
  padding: 2px 7px; border-radius: 6px; color: var(--ink-soft);
}
pre.code { display: block; padding: 15px 17px; overflow-x: auto; line-height: 1.6; border-radius: 10px; }

/* ---------- index list ---------- */
.idx { display: grid; gap: 10px; }
.idx-item {
  display: flex; gap: 18px; align-items: baseline; padding: 17px 20px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; color: inherit; box-shadow: var(--sh-1);
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.idx-item:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.idx-item .n { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--orange); flex: none; width: 30px; letter-spacing: .08em; }
.idx-item b { font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: -.015em; }
.idx-item em { font-style: normal; color: var(--muted); font-size: 14.6px; display: block; margin-top: 3px; }

.scroll-x { overflow-x: auto; }
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.center { text-align: center; }
.mt24 { margin-top: 24px; } .mt32 { margin-top: 32px; } .mt40 { margin-top: 40px; }

/* htmx indicator */
.htmx-indicator { opacity: 0; transition: opacity .15s; }
.htmx-request .htmx-indicator, .htmx-request.htmx-indicator { opacity: 1; }

/* ---------- illustrations ----------
   Transparent, fine-line artwork. It carries no frame: images sit on a soft
   cyan tint rather than inside a border. */
.cat-head { display: flex; gap: 34px; align-items: center; margin-bottom: 38px; flex-wrap: wrap; }
.cat-head .sec-head { flex: 1 1 380px; }
.cat-art { flex: 0 1 290px; width: 290px; display: block; }
@media (max-width: 780px) { .cat-art { width: 74%; max-width: 300px; flex-basis: 100%; margin: 0 auto; } }

.art-hero { background: var(--tint); border-bottom: 1px solid var(--line); padding: 26px 0 16px; }
.art-hero img { display: block; width: 100%; max-width: 420px; margin: 0 auto; }

.card.art { padding: 0; overflow: hidden; gap: 0; }
.card.art img { display: block; width: 100%; background: var(--tint); border-bottom: 1px solid var(--line); }
.card.art .num { padding: 17px 22px 0; }
.card.art h3 { padding: 6px 22px 0; }
.card.art p { padding: 0 22px 20px; }

.wide-art { display: block; width: 100%; max-width: 580px; margin: 0 auto 34px; }

/* ---------- template gallery ---------- */
.tgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.tcard {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh-1); color: inherit;
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.tcard:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--sh-3); border-color: var(--line-2); }
/* A picture of the real email, painted on this machine from the email itself.
   Keyed on the email's content, so it repaints when the email changes. */
.tprev { position: relative; height: 260px; overflow: hidden; background: var(--tint); border-bottom: 1px solid var(--line); }
.tmeta { padding: 13px 15px 15px; }
.tmeta b { font-family: var(--display); font-size: 15.5px; font-weight: 600; letter-spacing: -.015em; display: block; }
.tmeta em { font-style: normal; color: var(--muted); font-size: 12.8px; display: block; margin-top: 3px; }
.tmeta .tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.tmeta code { font-size: 10px; padding: 2px 6px; background: var(--cyan-wash); border-color: transparent; color: #1D6070; }
.tfull { width: 100%; height: 760px; border: 0; display: block; background: #fff; }
@media (max-width: 900px) { .grid.g2[style] { grid-template-columns: 1fr !important; } }

/* ---------- console shell ---------- */
.cshell { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; background: var(--tint); }
.cmain { min-width: 0; padding: 0 0 60px; }
.cbar {
  position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 16px;
  padding: 16px 30px; background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.cbar h1 { font-size: 21px; letter-spacing: -.025em; }
.cbar .spacer { margin-left: auto; }
.cbody { padding: 26px 30px 0; }

.cnav {
  display: flex; flex-direction: column; background: #fff; border-right: 1px solid var(--line);
  position: sticky; top: 0; height: 100vh;
}
/* The merchant's mark leads; ours sits beside it, smaller, as the way home. */
.cnav-top { display: flex; align-items: center; gap: 10px; padding: 16px 16px 10px; }
.cnav-logo { height: 30px; width: auto; max-width: 140px; object-fit: contain; display: block; }
.cnav-logo-none { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: -.02em; }
.cnav-mark { margin-left: auto; display: block; opacity: .55; flex: none; }
.cnav-mark:hover { opacity: 1; }
.cnav-mark .logo-mark { width: 20px; height: 20px; display: block; }
.cnav-merchant {
  margin: 0 12px 12px; padding: 9px 12px; background: var(--tint); border: 1px solid var(--line);
  border-radius: 10px; display: flex; flex-direction: column; gap: 5px;
}
.cnav-merchant b { font-size: 13px; font-weight: 600; }
/* Both numbers, always on screen, so a mismatch is noticed rather than reported. */
.cnav-vers { display: flex; align-items: baseline; gap: 5px; font-family: var(--mono); font-size: 9.5px; }
.cnav-vers i { font-style: normal; color: var(--faint); letter-spacing: .1em; text-transform: uppercase; }
.cnav-vers b { font-weight: 600; font-size: 10px; color: var(--ink-soft); }
.cnav-vers s { flex: none; width: 1px; height: 9px; background: var(--line-2); text-decoration: none; margin: 0 3px; }
.cnav-vers.stale { color: var(--orange-dk); }
.cnav-vers.stale #cv-ext { color: var(--orange-dk); }
.cnav-vers.bad #cv-ext { color: var(--flag); }

.cnav-scroll { flex: 1; overflow-y: auto; padding: 0 10px 14px; }
.cnav-sec {
  font-family: var(--mono); font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--faint); font-weight: 600; padding: 14px 8px 6px;
}
.cnav-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 9px;
  color: var(--ink-soft); font-size: 14px; font-weight: 500;
}
.cnav-item:hover { background: var(--tint); text-decoration: none; color: var(--ink); }
.cnav-item.on { background: var(--orange-wash); color: var(--orange-dk); font-weight: 600; }
.cnav-item.on .cnav-ic { color: var(--orange); }
.cnav-ic { width: 18px; height: 18px; flex: none; color: var(--faint); display: block; }
.cnav-ic svg { width: 18px; height: 18px; display: block; }
.cnav-item.soon { color: var(--faint); }
.cnav-soon {
  margin-left: auto; font-family: var(--mono); font-size: 8.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); border: 1px solid var(--line);
  border-radius: 5px; padding: 1px 5px;
}
.cnav-kids { display: grid; gap: 1px; padding: 2px 0 6px 38px; }
.cnav-kid { font-size: 13px; color: var(--muted); padding: 5px 8px; border-radius: 7px; }
.cnav-kid:hover { background: var(--tint); color: var(--ink); text-decoration: none; }
.cnav-kid.on { color: var(--orange-dk); font-weight: 600; }
.cnav-kid.soon { color: var(--faint); }

.cnav-foot { border-top: 1px solid var(--line); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.cnav-who { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.cnav-who b { font-size: 13px; font-weight: 600; }
.cnav-who span { font-size: 11px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; }
.cnav-out {
  margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 8px;
  padding: 5px 10px; font-family: var(--text); font-size: 11.5px; color: var(--muted); cursor: pointer;
}
.cnav-out:hover { border-color: var(--line-2); color: var(--ink); }

@media (max-width: 900px) {
  .cshell { grid-template-columns: 1fr; }
  .cnav { position: relative; height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .cnav-scroll { display: flex; flex-wrap: wrap; gap: 4px; }
  .cnav-sec, .cnav-kids { display: none; }
  .cbody, .cbar { padding-left: 18px; padding-right: 18px; }
}

/* ---------- console content ---------- */
.csync { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .04em; }
.cempty { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px; text-align: center; }
.cempty b { display: block; font-family: var(--display); font-size: 18px; margin-bottom: 6px; }
.cempty span { color: var(--muted); font-size: 13.5px; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 32px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; }
.stat-card span { font-family: var(--mono); font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.stat-card b { display: block; font-family: var(--display); font-size: 30px; font-weight: 600; letter-spacing: -.03em; margin: 6px 0 2px; }
.stat-card em { font-style: normal; font-size: 11.5px; color: var(--faint); }

.csec { margin-bottom: 34px; }
.csec-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.csec-head h2 { font-size: 18px; letter-spacing: -.02em; }
.csec-head a { font-size: 13px; font-weight: 600; }

.ctabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.ctab {
  padding: 7px 13px; border-radius: 9px; font-size: 13.5px; font-weight: 500; color: var(--muted);
  border: 1px solid transparent;
}
.ctab span { font-family: var(--mono); font-size: 10.5px; opacity: .7; margin-left: 3px; }
.ctab:hover { background: #fff; text-decoration: none; color: var(--ink); }
.ctab.on { background: #fff; border-color: var(--line); color: var(--ink); font-weight: 600; }

.ctable-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.ctable { width: 100%; border-collapse: collapse; font-size: 14px; }
.ctable th {
  text-align: left; padding: 11px 16px; font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 600;
  background: var(--tint); border-bottom: 1px solid var(--line); white-space: nowrap;
}
.ctable td { padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.ctable tr:last-child td { border-bottom: 0; }
.ctable tbody tr:hover { background: var(--tint); }
.ctable tr.sched td:first-child { box-shadow: inset 3px 0 0 var(--orange); }
.ctable td b { font-weight: 600; display: block; }
.ctable td em { font-style: normal; font-size: 11.5px; color: var(--faint); display: block; margin-top: 1px; }
.ctable .dim { color: var(--muted); }
.dot-sched { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); margin-left: 7px; vertical-align: middle; }

.chip {
  display: inline-block; padding: 2px 8px; border-radius: 999px; font-family: var(--mono);
  font-size: 10px; font-weight: 600; letter-spacing: .06em; background: var(--tint-2); color: #1D6070;
}
.chip.email { background: var(--cyan-wash); color: #1D6070; }
.chip.sms { background: var(--orange-wash); color: var(--orange-dk); }
.chip.both { background: #EFE7FB; color: #5B3A9E; }
.chip.none, .chip.draft { background: var(--line); color: var(--muted); }
.chip.ok { background: #EDF8F3; color: #1F6B4E; }
.cnote { margin-top: 14px; font-size: 12.5px; color: var(--muted); max-width: 78ch; }

/* template cards inside the console */
.cmain .tcard { display: flex; flex-direction: column; }
.cmain .tprev {
  display: block; position: relative; height: 300px; overflow: hidden;
  background: var(--tint); border-bottom: 1px solid var(--line);
}
/* A picture of the email, painted once on this machine and kept here. */
.cmain .tprev img, .tprev img {
  position: absolute; top: 0; left: 0; width: 100%; height: auto; display: block;
}
.tprev-wait { position: absolute; inset: 0; background:
  linear-gradient(100deg, var(--tint) 30%, #fff 50%, var(--tint) 70%) 0 0 / 300% 100%;
  animation: tshim 1.2s linear infinite; }
@keyframes tshim { to { background-position: -300% 0; } }
.tprev-fail { position: absolute; inset: 0; display: grid; place-items: center; padding: 20px;
  text-align: center; font-size: 12px; color: var(--muted); }
.trow { display: flex; gap: 7px; align-items: center; margin-top: 11px; }
.tbtn {
  padding: 6px 13px; border-radius: 8px; background: var(--orange); color: #fff;
  font-size: 12.5px; font-weight: 600;
}
.tbtn:hover { background: var(--orange-dk); text-decoration: none; }
.tbtn.ghost { background: #fff; color: var(--ink); border: 1px solid var(--line-2); }
.tbtn.ghost:hover { background: var(--tint); }
.cback { font-size: 13px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.cback:hover { color: var(--orange); text-decoration: none; }
.chip.sched-chip { background: var(--orange-wash); color: var(--orange-dk); }
.cbar h1 { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- admin data catalogue ---------- */
.notice { border-radius: var(--r); padding: 14px 16px; margin-bottom: 22px; font-size: 13.5px; }
.notice.bad { background: #FEF1ED; border: 1px solid rgba(224,69,31,.28); color: #9A2E12; }
.notice b { display: block; margin-bottom: 6px; }
.notice ul { margin: 0 0 0 18px; }
.notice li { margin-bottom: 4px; }

.dstack { display: grid; gap: 12px; }
.dsrc { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; }
.dsrc.gone { background: var(--tint); border-style: dashed; }
.dsrc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.dsrc-head > div:first-child { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dsrc-head b { font-family: var(--display); font-size: 16px; font-weight: 600; letter-spacing: -.015em; }
.dsrc-state { text-align: right; line-height: 1.3; }
.dsrc-state b { font-family: var(--text); font-size: 12.5px; font-weight: 600; display: block; }
.dsrc-state em { font-style: normal; font-family: var(--mono); font-size: 10.5px; color: var(--faint); }
.dsrc-state .ok { color: var(--ok); }
.dsrc-state .failed { color: var(--flag); }
.dsrc-state .never { color: var(--faint); font-weight: 500; }
.dsrc-what { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.dsrc-how {
  display: block; font-family: var(--mono); font-size: 11.5px; padding: 8px 11px;
  background: var(--tint); border: 1px solid var(--line); border-radius: 8px;
  color: var(--ink-soft); overflow-x: auto; white-space: pre; margin-bottom: 8px;
}
.dsrc-note { font-size: 12.8px; color: var(--muted); line-height: 1.55; margin-top: 6px; }
.dsrc-gap { font-size: 12.8px; color: #9A2E12; background: #FEF1ED; border-radius: 8px; padding: 9px 11px; margin-top: 8px; }
.chip.bad-chip { background: #FEF1ED; color: #9A2E12; }
.chip.m-rest { background: var(--cyan-wash); color: #1D6070; }
.chip.m-sql { background: #EFE7FB; color: #5B3A9E; }
.chip.m-public { background: #EDF8F3; color: #1F6B4E; }
.chip.m-local { background: var(--line); color: var(--muted); }
.cstatus { font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; padding: 4px 10px; border-radius: 999px; }
.cstatus.wait { background: var(--tint-2); color: var(--muted); }
.cstatus.ok { background: #EDF8F3; color: #1F6B4E; }
.cstatus.bad { background: #FEF1ED; color: #9A2E12; }
.dsrc-local { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.dstate { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; padding: 3px 9px; border-radius: 999px; }
.dstate.ok { background: #EDF8F3; color: #1F6B4E; }
.dstate.failed { background: #FEF1ED; color: #9A2E12; }
.dstate.never { background: var(--line); color: var(--muted); }
.dmeta { font-family: var(--mono); font-size: 10.5px; color: var(--faint); }
.dwarn { font-size: 11.5px; color: #9A2E12; flex-basis: 100%; }
.notice:not(.bad) { background: var(--cyan-wash); border: 1px solid rgba(104,211,232,.35); color: #1D6070; }

/* extension version banner */
.extbar {
  display: flex; align-items: center; gap: 12px; padding: 10px 30px;
  background: var(--cyan-wash); border-bottom: 1px solid rgba(104,211,232,.4);
  color: #1D6070; font-size: 13.5px;
}
.extbar.must { background: #FEF1ED; border-bottom-color: rgba(224,69,31,.3); color: #9A2E12; }
.extbar-msg { flex: 1; min-width: 0; }
.extbar-btn {
  border: 0; border-radius: 8px; padding: 7px 14px; font-family: var(--text);
  font-size: 12.5px; font-weight: 600; cursor: pointer; background: var(--orange); color: #fff;
}
.extbar-btn:hover:not(:disabled) { background: var(--orange-dk); }
.extbar-btn:disabled { opacity: .6; cursor: not-allowed; }
.extbar-x { background: none; border: 0; font-size: 20px; line-height: 1; cursor: pointer; color: inherit; opacity: .5; }
.extbar-x:hover { opacity: 1; }

/* ---------- campaigns ---------- */
.cfilters { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.cfind {
  flex: 0 1 280px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 9px;
  font: inherit; font-size: 13.5px; background: #fff; color: inherit;
}
.cfind:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-wash); }
.cchips { display: flex; gap: 6px; flex-wrap: wrap; }
.cchip {
  padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff;
  font: inherit; font-size: 12.8px; font-weight: 600; color: var(--muted); cursor: pointer;
  transition: border-color .14s, color .14s, background .14s;
}
.cchip:hover { border-color: var(--line-2); color: var(--ink); }
.cchip.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.cchip b { font-weight: 700; opacity: .55; margin-left: 3px; }

.cband {
  font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .02em;
  text-transform: uppercase; color: var(--muted); margin: 30px 0 13px;
  display: flex; align-items: center; gap: 9px;
}
.cband:first-child { margin-top: 0; }
.cband span {
  font-size: 11.5px; font-weight: 700; padding: 1px 7px; border-radius: 999px;
  background: var(--tint); color: var(--muted); letter-spacing: 0;
}

.cgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.ccard {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-1); color: inherit;
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.ccard:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--sh-3); border-color: var(--line-2); }
.ccard.draft { border-style: dashed; }
/* The real email, scaled into the card. Nothing pre-rendered, nothing stored. */
.ccard-prev { position: relative; height: 260px; overflow: hidden; background: var(--tint); border-bottom: 1px solid var(--line); }
.ccard-prev img { position: absolute; top: 0; left: 0; width: 100%; height: auto; display: block; }
.ccard-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 7px; }
.ccard-top { display: flex; gap: 5px; flex-wrap: wrap; }
.ccard h3 {
  font-family: var(--display); font-size: 15px; font-weight: 600; letter-spacing: -.015em;
  margin: 0; line-height: 1.25;
}
.ccard-when b { display: block; font-size: 12.8px; font-weight: 600; }
.ccard-when em { display: block; font-style: normal; font-size: 12px; color: var(--muted); margin-top: 2px; }
.ccard-type { font-size: 11.5px; color: var(--muted); }
.chip.push { background: #F3EEFB; color: #57398C; }

/* ---------- the database model ---------- */
.dbgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 14px; margin-bottom: 26px; }
.dbcard {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--line-2);
  border-radius: var(--r); padding: 14px 16px 15px;
}
.dbcard.sz-huge { border-left-color: #E0451F; }
.dbcard.sz-large { border-left-color: #D98A2B; }
.dbcard.sz-medium { border-left-color: var(--cyan); }
.dbcard.sz-small { border-left-color: #57A87B; }
.dbcard-top { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-bottom: 7px; }
.dbcard-top b { font-family: var(--mono); font-size: 13px; letter-spacing: -.01em; }
.chip.sz-huge { background: #FEF1ED; color: #9A2E12; }
.chip.sz-large { background: #FDF4E7; color: #7A4B10; }
.chip.sz-medium { background: var(--cyan-wash); color: #1D6070; }
.chip.sz-small { background: #EDF8F3; color: #1F6B4E; }
.dbholds { font-size: 13px; color: var(--ink); margin: 0 0 8px; line-height: 1.45; }
.dbline { font-size: 12.2px; color: var(--muted); margin: 0 0 4px; line-height: 1.5; }
.dbline em { font-style: normal; font-weight: 600; color: var(--ink); margin-right: 5px; }
.dbcols { margin-top: 8px; }
.dbcols summary { font-size: 12.2px; color: var(--muted); cursor: pointer; }
.dbcols p { margin: 7px 0 0; line-height: 2; }
.dbcols code, .dbline code { font-size: 10.5px; padding: 1px 5px; background: var(--tint); border-radius: 4px; }
.dbcareful {
  font-size: 12.2px; color: #9A2E12; background: #FEF1ED; border-radius: 7px;
  padding: 8px 10px; margin: 9px 0 0; line-height: 1.5;
}
.crudcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px 6px; margin-bottom: 16px; }
.crudcard h3 { font-family: var(--display); font-size: 16px; font-weight: 600; margin: 0 0 4px; }
.crudcard .ctable code { font-size: 11px; white-space: normal; }
.crudcard .ctable td { vertical-align: top; }
.crudcard tr.unverified { background: #FFFCF5; }
.crudcard .dbcareful { margin: 0; background: none; padding: 0; color: #9A2E12; }

/* ---------- what the machine is doing ---------- */
.vstat {
  position: fixed; right: 16px; bottom: 16px; z-index: 60;
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 8px 7px 13px; box-shadow: var(--sh-3);
  font-size: 12.5px; color: var(--muted); max-width: min(520px, calc(100vw - 32px));
}
.vstat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); flex: none; }
.vstat.ok .vstat-dot { background: #3E9A6B; }
.vstat.bad .vstat-dot { background: #E0451F; }
.vstat.busy .vstat-dot { background: var(--cyan); animation: vpulse 1.1s ease-in-out infinite; }
@keyframes vpulse { 50% { opacity: .3; } }
.vstat-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vstat.bad .vstat-text { color: #9A2E12; }
.vstat-bar { width: 70px; height: 4px; border-radius: 2px; background: var(--tint); overflow: hidden; flex: none; }
.vstat-bar i { display: block; height: 100%; background: var(--cyan); transition: width .3s; }
.vstat-x {
  width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--muted); font-size: 11px; font-style: italic;
  cursor: pointer; flex: none; line-height: 1;
}
.vstat-x:hover { border-color: var(--line-2); color: var(--ink); }
.vstat-panel {
  position: fixed; inset: 0; z-index: 70; background: rgba(20,32,36,.4);
  display: grid; place-items: center; padding: 24px;
}
.vstat-panel-in {
  background: #fff; border-radius: var(--r); padding: 22px 24px; max-width: 720px;
  width: 100%; max-height: 80vh; overflow: auto; box-shadow: var(--sh-3);
}
.vstat-panel-in h3 { font-family: var(--display); font-size: 17px; margin: 0 0 14px; }
.vstat-panel-in .ctable tr.bad td { color: #9A2E12; }
.vstat-panel-in .btn { margin-top: 14px; }

/* ---------- one campaign, and segments ---------- */
.cgrid2 { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: 20px; align-items: start; }
/* Two lists side by side get equal halves. minmax(0,1fr) not 1fr: a plain 1fr
   has an auto minimum, so the wider table pushes its column out and the split
   drifts, which is what a table with a long campaign name in it will always do. */
.cols2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.cols2 > * { min-width: 0; }
@media (max-width: 1000px) { .cgrid2, .cols2 { grid-template-columns: minmax(0, 1fr); } }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px 18px; margin-bottom: 16px; }
.panel h2 {
  font-family: var(--display); font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 12px;
}
.fields { margin: 0; }
.frow { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding: 6px 0; border-top: 1px solid var(--line); }
.frow:first-child { border-top: 0; padding-top: 0; }
.frow dt { font-size: 12.5px; color: var(--muted); margin: 0; }
.frow dd { font-size: 13.5px; margin: 0; word-break: break-word; }
.smsbody {
  background: var(--tint); border-radius: 10px; padding: 13px 15px; font: inherit; font-size: 14px;
  white-space: pre-wrap; margin: 0 0 10px; line-height: 1.5;
}
.clauses { margin: 8px 0 0; padding-left: 18px; }
.clauses li { font-size: 13px; margin-bottom: 5px; line-height: 1.5; }
.clauses code { font-size: 11px; padding: 1px 5px; background: var(--tint); border-radius: 4px; }
.warn { font-size: 13px; color: #9A2E12; background: #FEF1ED; border-radius: 8px; padding: 9px 11px; margin: 8px 0 0; }
#camp-prev { height: auto; max-height: 900px; }
#camp-prev img { position: static; width: 100%; height: auto; display: block; }

.editform label { display: block; margin-bottom: 13px; font-size: 12.5px; color: var(--muted); }
.editform input[type=text], .editform input:not([type]), .editform input[type=number], .editform textarea {
  display: block; width: 100%; margin-top: 5px; padding: 9px 12px; border: 1px solid var(--line);
  border-radius: 9px; font: inherit; font-size: 14px; color: var(--ink); background: #fff;
}
.editform textarea { resize: vertical; line-height: 1.5; }
.editform input:focus, .editform textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-wash); }
.editform label.chk { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink); }
.editform label.chk input { width: auto; margin: 0; }
.editactions { display: flex; align-items: center; gap: 10px; margin-top: 16px; }

.seggrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 14px; }
.segcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 14px 16px 15px; }
.segcard-top { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-bottom: 6px; }
.segcard-top b { font-family: var(--display); font-size: 15px; font-weight: 600; }
.segcount { display: flex; align-items: center; gap: 10px; margin-top: 11px; flex-wrap: wrap; }
.segcount-out { font-size: 13px; }
.ctable.sample { margin-top: 11px; font-size: 12.5px; }
.cmore {
  margin: 18px 0 4px; padding: 14px; text-align: center; font-size: 12.8px; color: var(--muted);
  border: 1px dashed var(--line); border-radius: var(--r);
}

/* ---------- audience ---------- */
.bignums { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 20px; }
.bignum { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 15px 17px 16px; }
.bignum b { display: block; font-family: var(--display); font-size: 30px; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.bignum span { display: block; font-size: 13px; font-weight: 600; margin-top: 3px; }
.bignum em { display: block; font-style: normal; font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.seguses { margin-top: 12px; border-top: 1px solid var(--line); padding-top: 11px; }
.seguses h4 {
  font-family: var(--display); font-size: 11.5px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 7px;
}
.ctable.uses, .ctable.sample { font-size: 12.5px; }
.ctable.uses td, .ctable.sample td { padding: 5px 8px 5px 0; }
.vstat-acts { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.vstat-panel-in .ctable tr.pending td { color: var(--muted); }
.btn.xs { padding: 3px 9px; font-size: 11.5px; border-radius: 7px; }
.vstat-panel-in .ctable td:last-child { text-align: right; white-space: nowrap; }

/* ---------- the query workbench ---------- */
.qhead { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.qhead h2 { margin: 0; }
.qsql {
  width: 100%; font-family: var(--mono); font-size: 12px; line-height: 1.6;
  border: 1px solid var(--line); border-radius: 9px; padding: 11px 13px; margin-top: 10px;
  background: var(--tint); color: var(--ink); resize: vertical;
}
.qsql:focus { outline: none; border-color: var(--cyan); background: #fff; }
.qout { margin-top: 11px; }
.qmeta { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.qwarn { color: #9A2E12; font-weight: 600; }
.qtable { font-size: 12px; }
.qtable td, .qtable th { padding: 4px 10px 4px 0; white-space: nowrap; }
.ownerrow { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ownerrow select {
  padding: 8px 11px; border: 1px solid var(--line); border-radius: 9px; font: inherit;
  font-size: 13.5px; background: #fff; min-width: 320px;
}

/* ---------- campaigns as groups, and their numbers ---------- */
.cgrid.grp { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); margin-bottom: 8px; }
.grpcard {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--orange);
  border-radius: var(--r); padding: 15px 17px 16px; color: inherit; display: block;
  transition: transform .16s, box-shadow .16s;
}
.grpcard:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--sh-3); }
.grpcard-top { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-bottom: 5px; }
.grpcard-top b { font-family: var(--display); font-size: 16px; font-weight: 600; }
.grpnums { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; }
.grpnums div b { display: block; font-family: var(--display); font-size: 20px; font-weight: 700; line-height: 1.1; }
.grpnums div span { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.grpnums .good b { color: #1F6B4E; }
.ccard-stats { display: flex; gap: 11px; flex-wrap: wrap; font-size: 11.5px; color: var(--muted); margin-top: 7px; }
.ccard-stats b { font-weight: 700; color: var(--ink); }
.ccard-stats .good b { color: #1F6B4E; }
.ccard-group { font-size: 11.5px; color: var(--orange); font-weight: 600; }
.early {
  color: #C0341A; font-weight: 700; font-size: 11px; text-transform: uppercase;
  letter-spacing: .04em; cursor: help;
}
.ccard { position: relative; }
.ccard.picked { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(224,69,31,.2); }
.ccard-tick {
  position: absolute; top: 9px; left: 9px; z-index: 2; width: 22px; height: 22px;
  border-radius: 6px; border: 1.5px solid var(--line-2); background: rgba(255,255,255,.94);
  display: grid; place-items: center; font-size: 13px; color: var(--orange); font-weight: 700;
}
.ccard.picked .ccard-tick { border-color: var(--orange); background: var(--orange); color: #fff; }
.pickbar {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 65;
  display: flex; align-items: center; gap: 10px; background: var(--ink); color: #fff;
  border-radius: 999px; padding: 9px 12px 9px 18px; box-shadow: var(--sh-3); font-size: 13px;
}
.pickbar select {
  padding: 6px 10px; border-radius: 8px; border: 0; font: inherit; font-size: 12.5px;
}
.spark { color: var(--cyan); vertical-align: middle; }

/* ---------- toasts ---------- */
.toasts { position: fixed; top: 16px; right: 16px; z-index: 80; display: flex; flex-direction: column; gap: 9px; }
.toast {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--cyan);
  border-radius: 11px; box-shadow: var(--sh-3); padding: 12px 38px 13px 15px;
  max-width: 340px; position: relative; opacity: 0; transform: translateX(14px);
  transition: opacity .25s, transform .25s;
}
.toast.in { opacity: 1; transform: none; }
.toast.ok { border-left-color: #3E9A6B; }
.toast.bad { border-left-color: #E0451F; }
.toast b { display: block; font-family: var(--display); font-size: 14px; font-weight: 600; }
.toast span { display: block; font-size: 12.8px; color: var(--muted); margin-top: 3px; line-height: 1.45; }
.toast button {
  position: absolute; top: 8px; right: 9px; border: 0; background: none; cursor: pointer;
  font-size: 17px; line-height: 1; color: var(--muted); opacity: .6;
}
.toast button:hover { opacity: 1; }

/* ---------- making one ---------- */
#new-form .panel select {
  width: 100%; padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px;
  font: inherit; font-size: 14px; background: #fff; color: var(--ink);
}
#new-form .panel label { display: block; margin-bottom: 12px; font-size: 12.5px; color: var(--muted); }
#new-form .panel input {
  display: block; width: 100%; margin-top: 5px; padding: 9px 12px; border: 1px solid var(--line);
  border-radius: 9px; font: inherit; font-size: 14px; background: #fff; color: var(--ink);
}
#new-form .panel label.chk { display: flex; align-items: center; gap: 8px; color: var(--ink); font-size: 13.5px; }
#new-form .panel label.chk input { width: auto; margin: 0; }
#new-form input:focus, #new-form select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-wash); }
.hint { font-size: 12.5px; color: var(--muted); margin: 8px 0; line-height: 1.5; }
.hint .warn { display: block; }
#new-prev { height: auto; max-height: 1000px; }
#new-prev img { position: static; width: 100%; height: auto; display: block; }
.steps { margin: 14px 0 0; padding-left: 20px; font-size: 13px; }
.steps li { margin-bottom: 6px; color: var(--muted); line-height: 1.5; }
.steps li.ok { color: #1F6B4E; }
.steps li.bad { color: #9A2E12; font-weight: 600; }
.tbtn.ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.tbtn.ghost:hover { border-color: var(--line-2); }

/* ---------- a bar that knows roughly how long it has ---------- */
.thermo {
  position: relative; height: 6px; border-radius: 3px; background: var(--tint);
  overflow: hidden; margin: 9px 0; 
}
.thermo i { display: block; height: 100%; width: 0; background: var(--cyan); transition: width .1s linear; }
.thermo.waiting i {
  width: 100% !important;
  background: repeating-linear-gradient(115deg, var(--cyan) 0 10px, var(--cyan-wash) 10px 20px);
  animation: barber .7s linear infinite;
}
@keyframes barber { to { background-position: 20px 0; } }
.thermo.done i { background: #3E9A6B; }
.thermo em {
  position: absolute; right: 0; top: -16px; font-style: normal; font-size: 10.5px; color: var(--muted);
}
/* the countdown on a card */
.ccard-soon {
  position: absolute; top: 9px; left: 9px; z-index: 2;
  background: var(--ink); color: #fff; border-radius: 999px; padding: 3px 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .01em; box-shadow: var(--sh-1);
}
.ccard-soon.close { background: var(--orange); }
.ccard-soon .who { opacity: .75; font-weight: 500; }
.headline h2 { font-size: 17px; text-transform: none; letter-spacing: -.01em; color: var(--ink); }
.headline .bignums { margin-top: 14px; margin-bottom: 0; }
.sparkcell { width: 100px; }
.crumb { color: var(--muted); font-weight: 400; }
.crumb::after { content: ' / '; color: var(--line-2); }
.vstat-panel-in tr.busy { background: var(--cyan-wash); }
.vstat-panel-in .running { color: #1D6070; font-weight: 600; }
.busyline {
  background: var(--cyan-wash); border-radius: 9px; padding: 9px 12px; margin: 0 0 12px;
  font-size: 13px; color: #1D6070;
}
.pickbar input {
  padding: 6px 10px; border-radius: 8px; border: 0; font: inherit; font-size: 12.5px; width: 170px;
}
.pickerr { color: #FFB4A2; font-size: 12px; }

/* ---------- starting one ---------- */
.ctabs.big { margin-bottom: 20px; gap: 4px; }
.ctabs.big .ctab {
  border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 16px;
  font: inherit; font-size: 13.5px; font-weight: 600; color: var(--muted); cursor: pointer;
}
.ctabs.big .ctab.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.viewport {
  background: var(--tint); border-radius: 12px; padding: 16px; overflow: auto;
  max-height: 660px; display: flex; justify-content: center;
}
.viewport img { display: block; height: auto; border-radius: 4px; box-shadow: var(--sh-1); }
.viewport.desktop img { width: 100%; max-width: 600px; }
.viewport.phone { background: #23343A; padding: 24px 16px; }
.viewport.phone img { width: 320px; border-radius: 14px; }
.btn.xs.on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* The wordmark, exactly as it sits at the foot of the extension. */
.cnav-wordmark {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  color: var(--muted); text-decoration: none; letter-spacing: -.01em;
}
.cnav-wordmark:hover { color: var(--orange); text-decoration: none; }
.cnav-wordmark .dot { color: var(--orange); }
.cnav-merchant b { display: none; }
.tbtn.icon {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; width: 30px; height: 28px; flex: none;
}
.tbtn.icon svg { display: block; width: 15px; height: 15px; }
/* The row wraps rather than squeezing a button until its contents vanish. */
.trow { flex-wrap: wrap; }

/* ---------- building one ---------- */
.cols2.build { align-items: start; }
.panel.sticky { position: sticky; top: 16px; }
/* Pick a channel by picking the thing, not a dot beside it. */
.channels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 6px 0 16px; }
.chantile {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 16px 10px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; margin: 0 !important; color: var(--muted);
  transition: border-color .15s, box-shadow .15s, color .15s, background .15s;
}
.chantile:hover { border-color: var(--line-2); color: var(--ink); }
.chantile input { position: absolute; opacity: 0; pointer-events: none; width: 0 !important; }
.chantile-ic svg { width: 22px; height: 22px; display: block; }
.chantile b { font-size: 13.5px; font-weight: 600; }
.chantile.on {
  border-color: var(--cyan); background: var(--cyan-wash); color: #14606F;
  box-shadow: 0 0 0 4px rgba(104,211,232,.22);
}
.chantile-tick {
  position: absolute; top: 8px; right: 8px; width: 17px; height: 17px; border-radius: 50%;
  border: 1.5px solid var(--line-2); background: #fff;
}
.chantile.on .chantile-tick { border-color: var(--cyan); background: var(--cyan); }
.chantile.on .chantile-tick::after {
  content: ''; position: absolute; left: 5px; top: 2px; width: 4px; height: 8px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(42deg);
}
.chantile:focus-within { box-shadow: 0 0 0 4px rgba(104,211,232,.3); }
#new-form textarea {
  display: block; width: 100%; margin-top: 5px; padding: 10px 12px; border: 1px solid var(--line);
  border-radius: 9px; font: inherit; font-size: 14px; line-height: 1.5; resize: vertical;
  background: #fff; color: var(--ink);
}
#new-form textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-wash); }
.segpair { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); gap: 12px; align-items: center; }
.segpair .panel { margin-bottom: 16px; }
.segx { font-family: var(--display); font-size: 20px; color: var(--muted); }
@media (max-width: 900px) { .segpair { grid-template-columns: minmax(0,1fr); } .segx { display: none; } }

/* a text message, and a lock screen */
.viewport.chat { background: #23343A; padding: 26px 18px; }
.phone {
  width: 300px; background: #fff; border-radius: 22px; padding: 16px 14px 18px;
  box-shadow: var(--sh-3); font-size: 15px;
}
.phone-top {
  text-align: center; font-size: 12px; color: var(--muted); font-weight: 600;
  padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 14px;
}
.bubble {
  background: #2F7BF6; color: #fff; border-radius: 18px 18px 18px 5px; padding: 11px 14px;
  line-height: 1.4; word-break: break-word;
}
.bubble .dim { color: rgba(255,255,255,.6); }
.phone-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 10px; }
.phone.lock { background: linear-gradient(160deg, #35505C, #1B2B32); padding: 26px 12px 30px; }
.lock-time { text-align: center; color: #fff; font-family: var(--display); font-size: 40px; font-weight: 300; margin-bottom: 22px; }
.notif {
  background: rgba(255,255,255,.92); border-radius: 15px; padding: 11px 13px;
  backdrop-filter: blur(6px);
}
.notif-app { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.notif-dot { width: 13px; height: 13px; border-radius: 4px; background: var(--orange); display: inline-block; }
.notif b { display: block; font-size: 14px; }
.notif span { display: block; font-size: 13.5px; color: var(--ink); line-height: 1.35; }

/* the builder, tidied */
.cols2.build > div:first-child > .panel:last-child { margin-bottom: 0; }
#new-form .panel h2, .segcardp h2 { margin-bottom: 11px; }
#new-form .panel label:last-of-type { margin-bottom: 0; }
#new-form .panel > .dim:last-child { margin: 10px 0 0; }
.segcardp .hint { min-height: 20px; }
.segcardp .clauses { margin: 6px 0 10px; }
.viewport { align-items: flex-start; }
.qhead .btn.xs { margin-left: 4px; }
.segacts { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ---------- creating, in front of everything ---------- */
.doing {
  position: fixed; inset: 0; z-index: 90; background: rgba(20,32,36,.55);
  display: grid; place-items: center; padding: 24px; opacity: 0; transition: opacity .2s;
  backdrop-filter: blur(2px);
}
.doing.in { opacity: 1; }
.doing-in {
  background: #fff; border-radius: 16px; padding: 26px 28px 22px; width: 100%; max-width: 520px;
  box-shadow: 0 24px 60px rgba(20,32,36,.3); border-top: 3px solid var(--cyan);
}
.doing-in.ok { border-top-color: #3E9A6B; }
.doing-in.bad { border-top-color: #E0451F; }
.doing-in h3 { font-family: var(--display); font-size: 19px; margin: 0 0 16px; }
.doing-steps { list-style: none; margin: 0; padding: 0; }
.doing-steps li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; padding: 7px 0; align-items: start; }
.doing-steps b { font-weight: 500; font-size: 14px; color: var(--muted); }
.doing-steps em { grid-column: 2; font-style: normal; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.doing-tick {
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--line-2); margin-top: 2px;
}
.doing-steps li.going .doing-tick { border-color: var(--cyan); border-right-color: transparent; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.doing-steps li.ok b { color: var(--ink); }
.doing-steps li.ok .doing-tick { border-color: #3E9A6B; background: #3E9A6B; position: relative; }
.doing-steps li.ok .doing-tick::after {
  content: ''; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(42deg);
}
.doing-steps li.bad b { color: #9A2E12; font-weight: 600; }
.doing-steps li.bad em { color: #9A2E12; }
.doing-steps li.bad .doing-tick { border-color: #E0451F; }
.doing-foot { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.doing-msg { margin: 0; font-size: 13px; color: var(--muted); }
.editorwrap { padding: 14px 16px 16px; }
.editorframe { width: 100%; height: calc(100vh - 260px); min-height: 520px; border: 0; border-radius: 10px; display: block; }


/* Fields should be findable on the page, and say when they have focus. */
#new-form input, #new-form select, #new-form textarea,
.editform input, .editform textarea, .cfind, .ownerrow select, .qsql {
  border-color: var(--line-2);
  box-shadow: inset 0 1px 2px rgba(20,32,36,.04);
}
#new-form input:focus, #new-form select:focus, #new-form textarea:focus,
.editform input:focus, .editform textarea:focus, .cfind:focus, .ownerrow select:focus, .qsql:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(104,211,232,.28);
}
#new-form .panel, .segcardp { box-shadow: var(--sh-1); }
#new-form .panel label { font-weight: 600; }

/* ---------- journeys ---------- */
.flowsplit { grid-template-columns: minmax(0, 300px) minmax(0, 1fr); }
@media (max-width: 1000px) { .flowsplit { grid-template-columns: minmax(0, 1fr); } }
.flowpick {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  border-radius: 10px; padding: 10px 12px; cursor: pointer; font: inherit; margin-bottom: 2px;
}
.flowpick:hover { background: var(--tint); }
.flowpick.on { background: var(--cyan-wash); }
.flowpick b { display: block; font-family: var(--display); font-size: 14.5px; font-weight: 600; }
.flowpick span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.flowpick.on b { color: #14606F; }
.flowhead h2 { font-size: 18px; text-transform: none; letter-spacing: -.01em; color: var(--ink); }
.ftags { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-top: 10px; }
.flow { padding: 8px 0 40px; display: flex; flex-direction: column; align-items: center; }
.fnode {
  display: flex; gap: 11px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-left: 3px solid var(--line-2); border-radius: 12px; padding: 12px 16px 12px 13px;
  box-shadow: var(--sh-1); min-width: 260px; max-width: 380px;
}
.fnode-ic { color: var(--muted); flex: none; margin-top: 1px; }
.fnode-ic svg { width: 18px; height: 18px; display: block; }
.fnode b { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; }
.fnode span { display: block; font-size: 12.2px; color: var(--muted); margin-top: 3px; line-height: 1.45; }
.fnode.k-start { border-left-color: var(--ink); }
.fnode.k-start .fnode-ic { color: var(--ink); }
.fnode.k-email { border-left-color: var(--cyan); }
.fnode.k-email .fnode-ic { color: #14606F; }
.fnode.k-sms { border-left-color: #2F7BF6; }
.fnode.k-sms .fnode-ic { color: #2F7BF6; }
.fnode.k-push { border-left-color: #8557C8; }
.fnode.k-push .fnode-ic { color: #8557C8; }
.fnode.k-wait { border-left-color: var(--line-2); background: var(--tint); box-shadow: none; }
.fnode.k-decision { border-left-color: var(--orange); }
.fnode.k-decision .fnode-ic { color: var(--orange); }
.fnode.k-goal { border-left-color: #3E9A6B; background: #EDF8F3; }
.fnode.k-goal .fnode-ic { color: #1F6B4E; }
.fnode.k-exit { border-left-color: var(--line-2); background: var(--tint); box-shadow: none; opacity: .8; }
.fline { width: 2px; height: 22px; background: var(--line-2); }
.fbranch { display: flex; gap: 34px; align-items: flex-start; position: relative; padding-top: 20px; }
.fbranch::before {
  content: ''; position: absolute; top: 0; left: 25%; right: 25%; height: 20px;
  border-top: 2px solid var(--line-2); border-left: 2px solid var(--line-2);
  border-right: 2px solid var(--line-2); border-radius: 10px 10px 0 0;
}
.fleg { display: flex; flex-direction: column; align-items: center; position: relative; }
.flabel {
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 999px; margin-bottom: 10px;
}
.flabel.yes { background: #EDF8F3; color: #1F6B4E; }
.flabel.no { background: #FEF1ED; color: #9A2E12; }

/* Making something new is always the same green, wherever the button is. */
.btn.make {
  background: #1F7A4D; border-color: #1F7A4D; color: #fff;
}
.btn.make:hover { background: #19643F; border-color: #19643F; }
.btn.make:disabled { background: #7FAE95; border-color: #7FAE95; }
.tbtn.icon { background: #1F7A4D; }
.tbtn.icon:hover { background: #19643F; }
