/* mithian, main site.
   Clean and light with soft-shadowed cards, in light and dark themes.
   Hand-written, no framework. */

:root {
  /* Paper, ink and one signal colour. Warm neutrals on purpose: stock cool
     greys read as framework default, and this site is written by hand. */
  --bg: #f5f4f0;
  --card: #ffffff;
  --ink: #14181b;
  --soft: #4b545c;
  /* 4.51:1 on --bg, 4.96:1 on --card. #8a939b was 2.84:1 and failed AA. */
  --faint: #68717a;
  --line: #e0ded6;
  --line-strong: #c9c6bb;
  --tint: #eceae3;
  --accent: #0d6e63;
  --accent-deep: #0a534b;
  --accent-2: #14867a;
  --accent-soft: #e0efec;
  --btn-hover: #0a534b;
  /* 4.40:1. The old #16a34a was 2.99:1, too pale for the word "live" and
     for the tick glyphs to carry meaning. */
  --live: #12833b;
  --star: #b8860b;
  --mix-base: #ffffff;
  --mix-ink: #111111;
  --err-bg: #fdf2f0;
  --err-border: #f3c8c0;
  --err-ink: #98311f;
  --sent-bg: #eff8f1;
  --sent-border: #bfe3c8;
  /* Near square. Sharp corners read engineered, big radii read consumer app. */
  --radius: 4px;
  --radius-sm: 3px;
  --radius-lg: 8px;
  --radius-pill: 999px;
  /* Tight shadows plus hairline borders, not diffuse startup glow. */
  --shadow-sm: 0 1px 2px rgba(20, 24, 27, 0.06);
  --shadow-md: 0 2px 4px rgba(20, 24, 27, 0.06), 0 8px 18px -10px rgba(20, 24, 27, 0.14);
  --shadow-lg: 0 4px 10px rgba(20, 24, 27, 0.08), 0 22px 44px -22px rgba(20, 24, 27, 0.22);
  --btn-glow: 0 1px 2px rgba(13, 110, 99, 0.22);
  --btn-glow-hover: 0 4px 10px -2px rgba(13, 110, 99, 0.34);
  --glow-opacity: 1;
  --font-display: 'Archivo', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* One spacing scale, so vertical rhythm is decided once. */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.25rem;  --sp-6: 1.5rem;   --sp-8: 2rem;     --sp-10: 2.5rem;
  --sp-12: 3rem;    --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
}


:root[data-theme="dark"] {
  --bg: #101315;
  --card: #171b1f;
  --ink: #e7e5e0;
  --soft: #a2a8ad;
  --faint: #858c92; /* 5.47:1 on --bg; #6c7378 was 3.87:1 */
  --line: #262b30;
  --line-strong: #343a40;
  --tint: #14171a;
  --accent: #0e7d70;
  --accent-deep: #5bcdbf;
  --accent-2: #3dc4b3;
  --accent-soft: rgba(43, 179, 163, 0.14);
  --btn-hover: #12907f;
  --live: #34d399;
  --star: #d4a437;
  --mix-base: #171b1f;
  --mix-ink: #e7e5e0;
  --err-bg: rgba(200, 60, 40, 0.12);
  --err-border: rgba(200, 60, 40, 0.42);
  --err-ink: #f0a99c;
  --sent-bg: rgba(52, 211, 153, 0.1);
  --sent-border: rgba(52, 211, 153, 0.4);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.4), 0 8px 18px -10px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 4px 10px rgba(0, 0, 0, 0.45), 0 22px 44px -22px rgba(0, 0, 0, 0.6);
  --btn-glow: 0 1px 2px rgba(0, 0, 0, 0.4);
  --btn-glow-hover: 0 4px 10px -2px rgba(14, 125, 112, 0.5);
  --glow-opacity: 0.55;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 0.5em; }

.eyebrow {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--accent-deep); margin: 0 0 1rem;
}

.live-blip {
  display: inline-block; width: 0.5em; height: 0.5em; border-radius: 50%;
  background: var(--live); margin-right: 0.5em; position: relative; top: -0.08em;
}
.live-blip::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(22, 163, 74, 0.35);
  animation: blip 2.4s ease-out infinite;
}
@keyframes blip {
  0% { transform: scale(0.5); opacity: 1; }
  70%, 100% { transform: scale(1.4); opacity: 0; }
}
.live-blip.light { background: #86efac; }

/* ------------------------------ Motion ----------------------------- */

.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.stagger > * { opacity: 0; transform: translateY(26px); }
.stagger.in > * { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.in > *:nth-child(6) { transition-delay: 0.4s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.12); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 30px) scale(0.92); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-inner > *, .hero-glow { animation: none !important; }
  .live-blip::after { animation: none; display: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ------------------------------ Nav ------------------------------- */

.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav-wrap.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05); }
.nav {
  max-width: 1140px; margin: 0 auto; padding: 0.95rem 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  color: var(--ink); letter-spacing: -0.02em;
}
.brand:hover { color: var(--ink); }
.brand-dot { color: var(--accent); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--soft); font-weight: 500; font-size: 0.96rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.on { color: var(--ink); }
.nav-demos { display: inline-flex; align-items: center; }
.nav-cta {
  background: var(--ink); color: var(--bg) !important;
  padding: 0.52rem 1.15rem; border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent); color: #fff !important; transform: translateY(-1px); }
.nav-admin { color: var(--accent-deep) !important; }
.nav-toggle { display: none; }

.theme-toggle {
  display: inline-grid; place-items: center;
  width: 2.15rem; height: 2.15rem; border-radius: 50%;
  border: 1px solid var(--line-strong); background: transparent;
  color: var(--soft); cursor: pointer; font-size: 0.95rem; line-height: 1;
  transition: border-color 0.2s, color 0.2s, transform 0.3s var(--ease);
}
.theme-toggle:hover { border-color: var(--faint); color: var(--ink); transform: rotate(18deg); }
.tt-sun { display: none; }
html[data-theme="dark"] .tt-sun { display: inline; }
html[data-theme="dark"] .tt-moon { display: none; }

/* ------------------------------ Hero ------------------------------ */

/* overflow-x clip keeps the glows from causing sideways scroll while letting
   them bleed down into the next section, so there is no visible seam. */
.hero { position: relative; overflow-x: clip; padding: 7rem 1.5rem 4.5rem; }
#demos { padding-top: 3.5rem; }
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; opacity: var(--glow-opacity);
}
.hero-glow-a {
  width: 480px; height: 480px; top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(13, 110, 99, 0.15), transparent 65%);
  animation: drift-a 18s ease-in-out infinite;
}
.hero-glow-b {
  width: 420px; height: 420px; bottom: -180px; left: -100px;
  background: radial-gradient(circle, rgba(20, 134, 122, 0.12), transparent 65%);
  animation: drift-b 22s ease-in-out infinite;
}
.hero-inner { position: relative; max-width: 1140px; margin: 0 auto; }
.hero-inner > * { animation: rise 0.9s var(--ease) both; }
.hero-inner > *:nth-child(2) { animation-delay: 0.12s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.24s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.36s; }
.hero h1 {
  font-size: clamp(2.7rem, 6.5vw, 4.6rem);
  font-weight: 700; letter-spacing: -0.035em; margin-bottom: 0.4em;
  max-width: 17ch;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent-deep), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { max-width: 600px; font-size: 1.18rem; color: var(--soft); margin: 0 0 2.4rem; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-proof {
  list-style: none; margin: 3.4rem 0 0; padding: 0;
  display: flex; gap: 2.2rem; flex-wrap: wrap;
  color: var(--soft); font-size: 0.94rem;
}
.hero-proof li { display: flex; align-items: center; }

/* The hero used to be a left column against 40% dead space. A real demo
   screenshot makes the argument above the fold instead of describing it. */
.hero-shot {
  display: block; position: relative; margin-top: 3rem;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); background: var(--tint);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.hero-shot img { display: block; width: 100%; height: auto; }
.hero-shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hero-shot-tag {
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  display: inline-flex; align-items: center;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 0.34rem 0.8rem; font-size: 0.8rem; font-weight: 600; color: var(--ink);
  backdrop-filter: blur(6px);
}

@media (min-width: 1000px) {
  .hero-inner {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    column-gap: 3.2rem; align-items: start;
  }
  .hero-inner > h1,
  .hero-inner > .hero-sub,
  .hero-inner > .hero-actions { grid-column: 1; }
  /* The proof line reads as one row. Penned into the left column it wrapped
     to three stacked lines and stretched the hero out. */
  .hero-inner > .hero-proof { grid-column: 1 / -1; margin-top: 2.6rem; }
  .hero-inner > .hero-shot {
    grid-column: 2; grid-row: 1 / span 3; align-self: center;
    margin-top: 0; animation-delay: 0.3s;
  }
}

/* ----------------------------- Buttons ---------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 1rem; padding: 0.78rem 1.6rem;
  border-radius: var(--radius); border: none; cursor: pointer;
  font-family: var(--font-body);
  box-shadow: var(--btn-glow);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn:hover {
  background: var(--btn-hover); color: #fff;
  transform: translateY(-2px); box-shadow: var(--btn-glow-hover);
}
.btn-ghost {
  background: var(--card); color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line), var(--shadow-sm);
}
.btn-ghost:hover { background: var(--tint); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line), var(--shadow-md); }
.btn-light { background: #fff; color: #14181b; box-shadow: 0 2px 6px rgba(20, 24, 27, 0.22); }
.btn-light:hover { background: #e0efec; color: #14181b; }
.btn-small { padding: 0.55rem 1.15rem; font-size: 0.92rem; }

/* ----------------------------- Sections --------------------------- */

.section { padding: 5.5rem 1.5rem; }
.section-tint { background: var(--tint); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-narrow { max-width: 760px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.4em; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.section-more { font-weight: 600; white-space: nowrap; transition: transform 0.3s var(--ease); display: inline-block; }
.section-more:hover { transform: translateX(4px); }
.section-lede { max-width: 660px; color: var(--soft); font-size: 1.08rem; margin: 0 0 2.8rem; }

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

.demo-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.demo-tile {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.demo-tile-shot {
  display: block; aspect-ratio: 16 / 10; overflow: hidden;
  border-bottom: 1px solid var(--line); background: var(--tint);
}
.demo-tile-shot img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 0.5s var(--ease);
}
.demo-tile:hover .demo-tile-shot img { transform: scale(1.035); }
.demo-tile-text {
  display: flex; flex-direction: column; gap: 0.45rem; flex: 1;
  padding: 1.4rem 1.7rem 1.5rem;
}
.demo-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--tile-accent, var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.demo-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--ink); }
.demo-tile:hover::before { transform: scaleX(1); }
.theme-cafe { --tile-accent: #c1712f; }
.theme-bakery { --tile-accent: #eab308; }
.theme-barber { --tile-accent: #e05348; }
.theme-invoices { --tile-accent: #1d5f75; }
.theme-links { --tile-accent: #10b981; }
.theme-shop { --tile-accent: #b45309; }
.theme-construction { --tile-accent: #c9a227; }
.theme-plant { --tile-accent: #e8842a; }
.demo-tile-business {
  font-size: 0.77rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--faint);
}
.demo-tile-name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; }
.demo-tile-q { font-size: 0.95rem; color: var(--soft); }
.demo-tile-go {
  margin-top: auto; padding-top: 1rem; font-weight: 600; font-size: 0.93rem;
  color: var(--accent-deep); display: inline-flex; align-items: center;
  transition: transform 0.3s var(--ease);
}
.demo-tile:hover .demo-tile-go { transform: translateX(5px); }
.demo-tile-yours { border-style: dashed; background: transparent; box-shadow: none; min-height: 205px; }
.demo-tile-yours:hover { transform: none; box-shadow: none; }
.demo-tile-yours::before { display: none; }

/* --------------------------- /demos page --------------------------- */

.demo-list { display: grid; gap: 2rem; margin: 1rem 0 4rem; }
.demo-row {
  display: grid; grid-template-columns: 340px 1fr;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.demo-row:hover { box-shadow: var(--shadow-md); }
.demo-row-swatch {
  display: grid; align-content: space-between; padding: 1.6rem; min-height: 215px;
  position: relative; overflow: hidden;
  background: linear-gradient(150deg,
    color-mix(in srgb, var(--tile-accent, var(--accent)) 14%, var(--mix-base)),
    color-mix(in srgb, var(--tile-accent, var(--accent)) 4%, var(--mix-base)));
  border-right: 1px solid var(--line);
}
.demo-row-num { font-size: 0.82rem; font-weight: 600; color: var(--faint); }
/* Fills the swatch edge to edge, so the coloured gradient behind it only
   shows for a demo that has no cover yet. */
/* Whole page, centred, letterboxed on the demo's own accent gradient.
   Cropping to fill the column sliced headings mid-word and read as a broken
   image rather than a thumbnail. */
.demo-row-swatch:has(.demo-row-shot) { padding: 1.15rem; align-content: center; }
.demo-row-shot {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--line); border-radius: 3px;
  box-shadow: var(--shadow-sm);
}
.demo-row-brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: color-mix(in srgb, var(--tile-accent, var(--accent)) 70%, var(--mix-ink));
}
.demo-row-body { padding: 1.8rem 2.1rem 1.7rem; }
.demo-row-business {
  font-size: 0.77rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--faint); margin: 0 0 0.4rem;
}
.demo-row-body h2 { font-size: 1.4rem; margin-bottom: 0.35em; }
.demo-row-blurb { color: var(--soft); margin: 0 0 1.2rem; max-width: 62ch; }
.demo-row-tries-label {
  display: block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); margin-bottom: 0.4rem;
}
.demo-row-tries ul { margin: 0 0 1.5rem; padding: 0; list-style: none; color: var(--soft); font-size: 0.95rem; }
.demo-row-tries li { padding-left: 1.4rem; position: relative; margin-bottom: 0.3em; }
.demo-row-tries li::before { content: '→'; position: absolute; left: 0; color: var(--accent-deep); }
.demo-row-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.demo-outro {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 2.4rem 2.5rem; max-width: 720px;
}
.demo-outro h2 { font-size: 1.35rem; }
.demo-outro p { color: var(--soft); margin: 0 0 1.6rem; }

/* ----------------------------- Services --------------------------- */

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; }
.service {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.8rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-index { color: var(--accent-deep); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
.service h3 { font-size: 1.26rem; margin: 0.5em 0 0.35em; }
.service p { color: var(--soft); margin: 0 0 0.9em; font-size: 0.97rem; }
.service ul { margin: 0; padding: 0; list-style: none; }
.service li {
  padding-left: 1.5rem; position: relative; color: var(--soft);
  font-size: 0.94rem; margin-bottom: 0.45em;
}
.service li::before { content: '✓'; position: absolute; left: 0; color: var(--live); font-weight: 700; }

/* ------------------------------- Cards ----------------------------- */

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.cards-three { grid-template-columns: repeat(3, 1fr); }
.card {
  display: block; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--ink); }
.card-media { position: relative; aspect-ratio: 16 / 9; background: var(--tint); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-mono {
  width: 100%; height: 100%; display: grid; place-items: center;
  background:
    radial-gradient(120% 130% at 15% 15%, hsl(var(--accent-hue, 245) 72% 60% / 0.92), transparent 60%),
    radial-gradient(120% 130% at 85% 90%, hsl(calc(var(--accent-hue, 245) + 40) 68% 52% / 0.85), transparent 55%),
    hsl(var(--accent-hue, 245) 45% 24%);
  transition: transform 0.5s var(--ease);
}
.card:hover .card-mono { transform: scale(1.04); }
.card-mono span {
  font-family: var(--font-display); font-weight: 700; font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.92); text-transform: lowercase;
}
.card-live {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: rgba(15, 23, 42, 0.72); color: #86efac;
  font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.card-body { padding: 1.3rem 1.5rem 1.5rem; }
.card-kind {
  color: var(--faint); font-size: 0.77rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.card-body h3 { font-size: 1.32rem; margin: 0.35em 0 0.3em; }
.card-body p { color: var(--soft); margin: 0; font-size: 0.96rem; }

/* ------------------------------ Process ---------------------------- */

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; }
.process-step { position: relative; padding-top: 0.4rem; }
.process-num {
  display: inline-grid; place-items: center; width: 2.4rem; height: 2.4rem;
  border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep);
  font-family: var(--font-display); font-weight: 700; margin-bottom: 0.85rem;
}
.process-step h3 { font-size: 1.18rem; margin-bottom: 0.3em; }
.process-step p { color: var(--soft); margin: 0; font-size: 0.96rem; }

/* ------------------------------ CTA band --------------------------- */

.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #14181b, #1b2b28 55%, #0d6e63);
  color: #fff; text-align: center; padding: 5.5rem 1.5rem;
}
.cta-band::after {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  right: -140px; top: -220px; filter: blur(80px);
  background: radial-gradient(circle, rgba(20, 134, 122, 0.45), transparent 65%);
}
.cta-band .section-inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cta-band p { color: rgba(255, 255, 255, 0.75); margin: 0 0 2rem; }
.cta-inline { margin-top: 2.6rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }
.center .cta-inline { justify-content: center; }

/* ------------------------------- Pages ----------------------------- */

.page { padding: 4.8rem 1.5rem 5.5rem; }
.page-title { font-size: clamp(2.2rem, 5.5vw, 3.3rem); letter-spacing: -0.03em; }
.page-lede { font-size: 1.15rem; color: var(--soft); max-width: 680px; margin: 0 0 2.8rem; }
.center { text-align: center; }
.center .page-lede { margin-inline: auto; }
.live-dot { color: var(--live); font-weight: 600; white-space: nowrap; }
.empty { color: var(--faint); }
.plain-block { margin-top: 4.5rem; }
.plain-block > h2 { font-size: 1.65rem; margin-bottom: 1.5rem; }

.filters { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.filters a {
  padding: 0.45rem 1.1rem; border-radius: 999px; color: var(--soft);
  font-weight: 500; font-size: 0.95rem; background: var(--card);
  border: 1px solid var(--line); transition: all 0.2s;
}
.filters a:hover { color: var(--ink); box-shadow: var(--shadow-sm); }
.filters a.on { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* ------------------------------ Pricing ---------------------------- */

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.9rem;
  align-items: stretch; margin-top: 0.5rem;
}
.price-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.3rem 2.1rem 2.1rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card-featured {
  border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
/* Reserve two lines for the tier name. One of them wraps and the others do
   not, which pushed a single price out of line with the rest of the row. */
.price-card h2 {
  font-size: 1.1rem; margin-bottom: 0.7em; color: var(--soft); font-weight: 600;
  min-height: 2.6em;
}
@media (max-width: 700px) { .price-card h2 { min-height: 0; } }
.price-figure {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); margin: 0 0 0.45em; line-height: 1.1;
}
.price-summary { color: var(--soft); margin: 0 0 1.4em; font-size: 0.97rem; }
.price-card ul { margin: 0 0 2em; padding: 1.3em 0 0; list-style: none; border-top: 1px solid var(--line); }
.price-card li {
  padding-left: 1.6rem; position: relative; color: var(--soft);
  font-size: 0.95rem; margin-bottom: 0.55em;
}
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--live); font-weight: 700; }
.price-card .btn { align-self: flex-start; margin-top: auto; }
.pricing-note {
  max-width: 680px; color: var(--soft); background: var(--tint);
  border-radius: 12px; padding: 1.1rem 1.4rem; margin: 2.4rem 0 0; font-size: 0.97rem;
}

/* ------------------------------ Reviews ---------------------------- */

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.reviews-list { display: grid; gap: 1.75rem; margin-bottom: 1rem; }
.review-card {
  margin: 0; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.9rem 1.8rem; box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--star); letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.review-stars span { color: var(--line-strong); }
.review-card blockquote { margin: 0 0 1.1rem; color: var(--soft); font-size: 1.02rem; }
.review-card figcaption { color: var(--faint); font-size: 0.92rem; }
.review-card figcaption strong { color: var(--ink); }

/* ----------------------------- Carousel ---------------------------- */

.carousel { position: relative; overflow: hidden; max-width: 760px; }
.carousel-track {
  display: flex; align-items: stretch;
  transition: transform 0.55s var(--ease);
}
.carousel-slide { min-width: 100%; }
.carousel .review-card { box-shadow: none; border: 1px solid var(--line); }
.carousel .review-card blockquote { font-size: 1.12rem; }
.carousel-controls {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.2rem;
}
.carousel-btn {
  display: inline-grid; place-items: center; width: 2.4rem; height: 2.4rem;
  border-radius: 50%; border: 1px solid var(--line-strong); background: var(--card);
  color: var(--soft); cursor: pointer; font-size: 1rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.carousel-btn:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-1px); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 0.55rem; height: 0.55rem; border-radius: 50%; padding: 0;
  border: none; background: var(--line-strong); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.on { background: var(--accent); transform: scale(1.25); }

/* ------------------------------ Project ---------------------------- */

.crumb { margin: 0 0 1.8rem; font-size: 0.95rem; }
.project-head h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0.2em 0 0.25em; }
.draft-note {
  display: inline-block; background: var(--accent-soft); border: 1px solid var(--line-strong);
  color: var(--soft); border-radius: 8px; padding: 0.35rem 0.9rem; font-size: 0.9rem;
}
.project-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 3.2rem;
  margin-top: 1.8rem;
}
.project-body h2 { font-size: 1.45rem; margin: 1.9em 0 0.6em; }
.project-body p { color: var(--soft); }
.project-body ul { color: var(--soft); padding-left: 1.2rem; }

.demo-panel {
  background: linear-gradient(120deg, #14181b, #1b2b28 60%, #0a534b);
  color: #fff; border-radius: var(--radius); padding: 1.8rem 2rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  margin-bottom: 2.2rem; flex-wrap: wrap;
}
.demo-panel h2 { margin: 0 0 0.25em; font-size: 1.3rem; }
.demo-panel p { margin: 0; color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; max-width: 430px; }
.demo-panel .btn { background: #fff; color: #14181b; box-shadow: none; }
.demo-panel .btn:hover { background: #e0efec; color: #14181b; }
.demo-note { display: block; margin-top: 0.3em; color: rgba(255, 255, 255, 0.55); font-size: 0.88rem; }

.features { list-style: none; padding: 0; }
.features li {
  position: relative; padding-left: 1.7rem; margin-bottom: 0.5em; color: var(--soft);
}
.features li::before { content: '✓'; position: absolute; left: 0; color: var(--live); font-weight: 700; }

.project-gallery { display: grid; gap: 1.75rem; margin-top: 2.2rem; }
.project-gallery img { border-radius: var(--radius); border: 1px solid var(--line); width: 100%; height: auto; }
.project-gallery figure { margin: 0; }
.project-gallery figcaption { color: var(--faint); font-size: 0.9rem; margin-top: 0.5rem; }

.project-facts {
  align-self: start; position: sticky; top: 5.5rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.7rem; display: grid; gap: 1.2rem; font-size: 0.97rem;
}
.project-facts > div { display: grid; gap: 0.25rem; }
.fact-label {
  color: var(--faint); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.stack { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chip {
  background: var(--tint); border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.83rem; padding: 0.16rem 0.7rem; color: var(--soft);
}
.facts-cta { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.facts-cta p { margin: 0 0 0.7em; color: var(--soft); }

/* ------------------------------- Prose ----------------------------- */

.prose p { color: var(--soft); }
.prose h2 { font-size: 1.45rem; margin: 1.9em 0 0.6em; }

/* ------------------------------- Forms ----------------------------- */

.contact-steps {
  list-style: none; counter-reset: step; margin: 0 0 2.4rem; padding: 0;
  display: grid; gap: 0.9rem; max-width: 680px;
}
.contact-steps li {
  counter-increment: step; position: relative; padding-left: 2.9rem;
  color: var(--soft); font-size: 0.98rem;
}
.contact-steps li strong { color: var(--ink); }
.contact-steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0.05rem;
  width: 2rem; height: 2rem; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep);
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
}

.form { display: grid; gap: 1.2rem; max-width: 680px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form label, .form-row label { display: grid; gap: 0.38rem; font-weight: 600; font-size: 0.95rem; }
.optional { color: var(--faint); font-weight: 400; }
.form input, .form select, .form textarea {
  font: inherit; font-weight: 400; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 0.7rem 0.9rem; background: var(--card); width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form textarea { resize: vertical; }
.form .btn { justify-self: start; margin-top: 0.3rem; }
.form-privacy { color: var(--faint); font-size: 0.88rem; margin: 0; }
.trap { position: absolute; left: -9999px; top: -9999px; }
.form-errors {
  background: var(--err-bg); border: 1px solid var(--err-border); color: var(--err-ink);
  border-radius: 12px; padding: 1rem 1.3rem; margin-bottom: 1.5rem; max-width: 680px;
}
.form-errors ul { margin: 0.4em 0 0; padding-left: 1.2rem; }
.sent-box {
  background: var(--sent-bg); border: 1px solid var(--sent-border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 2.2rem 2.1rem;
}
.sent-box h2 { margin-top: 0; }
.sent-box p { color: var(--soft); }

.faq details {
  border: 1px solid var(--line); border-radius: 12px; background: var(--card);
  padding: 1rem 1.35rem; margin-bottom: 0.75rem; box-shadow: var(--shadow-sm);
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--soft); margin: 0.7em 0 0.2em; }

.error-detail {
  text-align: left; background: var(--tint); border-radius: 12px; padding: 1rem;
  overflow-x: auto; font-size: 0.85rem;
}

/* ------------------------------- Footer ---------------------------- */

.footer { border-top: 1px solid var(--line); padding: 2rem 1.5rem 1.6rem; background: var(--card); }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer-left { display: grid; gap: 0.1rem; }
.footer .brand { font-size: 1.2rem; }
.footer-tag { color: var(--faint); font-size: 0.83rem; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-inline: auto; }
.footer-links a { color: var(--soft); font-size: 0.92rem; }
.footer-links a:hover { color: var(--ink); }
.footer-icons { display: flex; gap: 0.6rem; }
.footer-icons a {
  display: grid; place-items: center; width: 2.4rem; height: 2.4rem;
  border-radius: 50%; border: 1px solid var(--line-strong); color: var(--soft);
  transition: color 0.2s, border-color 0.2s, transform 0.25s var(--ease);
}
.footer-icons a:hover { color: var(--accent-deep); border-color: var(--accent); transform: translateY(-2px); }
.footer-icons svg { width: 1.15rem; height: 1.15rem; }
.footer-legal {
  max-width: 1140px; margin: 1.1rem auto 0; color: var(--faint); font-size: 0.83rem;
}
@media (max-width: 800px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .footer-links { margin-inline: 0; }
}

/* --------------------------- Small comforts ------------------------ */

:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px;
}

.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60;
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--card); color: var(--soft);
  font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s var(--ease), color 0.2s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { color: var(--accent-deep); border-color: var(--accent); }

/* --------------------------- Public invoice ------------------------ */

.inv-page { display: grid; justify-items: center; }
.inv-doc {
  width: min(720px, 100%); background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 2.6rem 2.6rem 2.2rem;
}
.inv-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.inv-meta h1 { font-size: 1.5rem; margin: 0 0 0.2em; }
.inv-meta p { margin: 0; color: var(--soft); font-size: 0.95rem; }
.inv-paid { color: var(--live) !important; font-weight: 600; }
.inv-to { margin: 0 0 1.6rem; display: grid; }
.inv-to span {
  color: var(--faint); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.inv-table { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; }
.inv-table td { padding: 0.65rem 0; border-bottom: 1px solid var(--line); }
.inv-table .num { text-align: right; white-space: nowrap; }
.inv-table .sub td { color: var(--faint); }
.inv-table .total td { border-bottom: none; font-weight: 700; font-size: 1.15rem; padding-top: 0.9rem; }
.inv-muted { color: var(--faint); }
.inv-notes { color: var(--soft); margin: 0 0 1.4rem; }
.inv-pay {
  background: var(--tint); border-radius: 12px; padding: 1.2rem 1.4rem; margin-bottom: 1.6rem;
}
.inv-pay h2 { font-size: 1.05rem; margin-bottom: 0.5em; }
.inv-pre { white-space: pre-line; color: var(--soft); margin: 0 0 0.8em; font-size: 0.96rem; }
.inv-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 1.3rem; color: var(--soft); font-size: 0.93rem;
}
@media print {
  .inv-foot button, .to-top, .nav-wrap { display: none !important; }
  .inv-doc { border: none; box-shadow: none; padding: 0; }
  body { background: #fff; }
}

/* ------------------------------ Responsive ------------------------- */

@media (max-width: 1000px) {
  .demo-tiles { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 640px; }
  .process, .cards-three { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .project-layout { grid-template-columns: 1fr; }
  .project-facts { position: static; }
  .footer-inner { grid-template-columns: 1fr; }
  .demo-row { grid-template-columns: 1fr; }
  .demo-row-swatch { min-height: 0; border-right: none; border-bottom: 1px solid var(--line); }
}

@media (max-width: 700px) {
  .nav { gap: 1rem; }
  .nav-toggle {
    display: grid; gap: 4px; margin-left: auto;
    background: none; border: none; padding: 0.5rem; cursor: pointer;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--card); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 1.1rem 1.5rem 1.5rem; gap: 1.05rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .hero { padding: 4.5rem 1.5rem 4rem; }
  .section { padding: 4rem 1.5rem; }
  .demo-tiles { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; gap: 0.6rem; }
}

/* ======================================================================
   Refinements. Mono for small technical labels, hairline borders instead
   of soft glow, and a little more motion. Appended so it overrides the
   rules above without disturbing them.
   ====================================================================== */

/* Small labels and figures set in mono. Cheap way to read as engineered
   rather than as another rounded SaaS landing page. */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.price-figure,
.hero-proof,
.service-index,
.process-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* Cards get a hairline. With tight shadows this is what gives edges. */
.card,
.price-card,
.service,
.work-card,
.demo-card,
.plain-block .faq details {
  border: 1px solid var(--line);
}
.price-card-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md), inset 0 0 0 1px var(--accent);
}

/* Visible keyboard focus. Was missing entirely. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Prose links draw their underline in on hover rather than sitting
   underlined the whole time. */
.page-lede a,
.plain-block p a,
.faq p a {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.3s var(--ease);
}
.page-lede a:hover,
.plain-block p a:hover,
.faq p a:hover { background-size: 100% 1.5px; }

/* Buttons acknowledge the press. */
.btn:active { transform: translateY(0); }

/* Cards lift less and sharpen their edge instead. */
.price-card,
.service,
.work-card {
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.price-card:hover,
.service:hover,
.work-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

/* A rule that draws itself in under section headings. */
.section-title::after,
.page-title::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin-top: var(--sp-4);
  background: var(--accent);
  transition: width 0.7s var(--ease) 0.15s;
}
.reveal.in .section-title::after,
.in > .section-title::after,
.page-title::after { width: 56px; }

@media (prefers-reduced-motion: reduce) {
  .section-title::after,
  .page-title::after { transition: none; width: 56px; }
  .page-lede a, .plain-block p a, .faq p a { transition: none; }
  .price-card, .service, .work-card { transition: none; }
}

/* ------------------- Capabilities list (services page) ------------------- */

.caps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--sp-8) var(--sp-10);
  margin: var(--sp-10) 0 var(--sp-8);
}
.caps-group h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
}
.caps-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}
.caps-group li {
  position: relative;
  padding-left: var(--sp-6);
  color: var(--soft);
  font-size: 0.97rem;
  line-height: 1.55;
}
.caps-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 1px;
  background: var(--accent);
}
.caps-group li a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.2s, color 0.2s;
}
.caps-group li a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.caps-note {
  max-width: 62ch;
  color: var(--soft);
  border-left: 2px solid var(--accent);
  padding-left: var(--sp-5);
  margin: 0;
}

/* ------------------------------------------------------- service areas */

/* The towns are a list, not prose, so they scan. Kept visually quiet: this
   block earns its place in local search, and should not shout over the work
   above it. */
.area-list {
  list-style: none; margin: 1.6rem 0 1.1rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  max-width: 62rem;
}
.area-list li {
  padding: 0.34rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 0.86rem;
  color: var(--soft);
}
.area-note { color: var(--faint); font-size: 0.92rem; margin: 0; }

/* ------------------------------------------------------- work groupings */

/* Client work and demonstrations are separated on /work, so the group headings
   need to read as dividers rather than compete with the page title. */
.work-group {
  margin: 2.6rem 0 0.4rem; font-size: 1.35rem; letter-spacing: -0.01em;
}
.work-group:first-of-type { margin-top: 1.4rem; }
.work-group-note {
  margin: 0 0 1.6rem; max-width: 58ch;
  color: var(--faint); font-size: 0.95rem;
}
.work-group + .cards { margin-top: 1.2rem; }
