/* =========================================================================
   FitSync — athletic editorial design system (v2)
   Ink #0C0F09 · Signal lime #C6F135 · Bone paper #F4F2E8
   Display: Bricolage Grotesque · Text: Schibsted Grotesk · Data: Spline Sans Mono
   ========================================================================= */

:root {
  --ink: #0c0f09;
  --ink-2: #141a0f;
  --ink-3: #1d2415;
  --line-ink: rgba(244, 242, 232, 0.14);
  --line-ink-soft: rgba(244, 242, 232, 0.08);

  --lime: #c6f135;
  --lime-soft: rgba(198, 241, 53, 0.14);
  --on-lime: #101408;

  --paper: #f4f2e8;
  --paper-2: #ebe8d9;
  --line-paper: #d9d5c0;
  --on-paper: #171b10;
  --muted-paper: #616651;
  --muted-ink: #a0a690;
  --orange: #f2622e;
  --orange-soft: rgba(242, 98, 46, 0.12);

  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-text: "Schibsted Grotesk", "Helvetica Neue", sans-serif;
  --font-mono: "Spline Sans Mono", "SF Mono", monospace;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow-pop: 0 30px 80px -30px rgba(12, 15, 9, 0.55);
  --header-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.6;
  color: var(--on-paper);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, h5 { margin: 0 0 0.5em; font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.01em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; }
button { font: inherit; }

::selection { background: var(--lime); color: var(--on-lime); }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container-narrow { width: min(820px, 92vw); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--lime); color: var(--on-lime); padding: 10px 18px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

.icon { width: 22px; height: 22px; flex: none; }
.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 14px; height: 14px; }

/* =========================================================================
   Motion
   ========================================================================= */
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scanline { 0% { top: 8%; } 50% { top: 88%; } 100% { top: 8%; } }
@keyframes barpop { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); } 50% { transform: translateY(-9px) rotate(var(--rot, 0deg)); } }

.load-reveal { animation: rise 0.9s var(--ease-out) both; animation-delay: var(--d, 0s); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--font-text); font-weight: 700; font-size: 15.5px; line-height: 1;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 30px; font-size: 17px; }

.btn-lime { background: var(--lime); color: var(--on-lime); }
.btn-lime:hover { box-shadow: 0 12px 30px -10px rgba(198, 241, 53, 0.55); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { box-shadow: 0 12px 30px -12px rgba(12, 15, 9, 0.7); }
.btn-ghost-light { border-color: var(--line-ink); color: var(--paper); background: transparent; }
.btn-ghost-light:hover { border-color: var(--paper); background: rgba(244, 242, 232, 0.06); }
.btn-outline-ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline-ink:hover { background: var(--ink); color: var(--paper); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 15, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-ink-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--paper); }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: var(--lime); color: var(--on-lime); transform: rotate(-8deg);
  transition: transform 0.3s var(--ease-out);
}
.brand:hover .brand-mark { transform: rotate(8deg) scale(1.05); }
.brand-word { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }

.nav-drawer { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; gap: 4px; list-style: none; margin: 0; }
.nav-links a {
  display: block; padding: 9px 14px; border-radius: 999px;
  color: var(--muted-ink); text-decoration: none; font-weight: 600; font-size: 15px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--paper); background: rgba(244, 242, 232, 0.07); }
.nav-links .current-menu-item a, .nav-links .current_page_item a { color: var(--lime); }
.nav-cta { display: flex; gap: 10px; }

.nav-toggle { display: none; }

@media (max-width: 920px) {
  .nav-toggle {
    display: grid; place-items: center; gap: 5px;
    width: 44px; height: 44px; border-radius: 12px;
    background: transparent; border: 1px solid var(--line-ink); cursor: pointer;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--paper); transition: transform 0.3s var(--ease-out), opacity 0.3s; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .nav-drawer {
    position: fixed; inset: var(--header-h) 0 auto 0;
    max-height: calc(100dvh - var(--header-h));
    overflow: auto;
    flex-direction: column; align-items: stretch; gap: 8px;
    background: var(--ink);
    border-bottom: 1px solid var(--line-ink);
    padding: 18px 5vw 28px;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  }
  body.nav-open .nav-drawer { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav-links { flex-direction: column; gap: 2px; }
  .nav-links a { font-size: 22px; font-family: var(--font-display); font-weight: 700; padding: 12px 6px; border-radius: 10px; }
  .nav-cta { flex-direction: column; align-items: stretch; padding-top: 14px; border-top: 1px solid var(--line-ink-soft); }
  .nav-cta .btn { justify-content: center; }
}

/* =========================================================================
   Textures
   ========================================================================= */
.hero-texture {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52% 60% at 78% 18%, rgba(198, 241, 53, 0.12), transparent 60%),
    radial-gradient(40% 50% at 8% 90%, rgba(198, 241, 53, 0.06), transparent 60%),
    repeating-linear-gradient(90deg, var(--line-ink-soft) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(180deg, #000 55%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent);
}

/* =========================================================================
   Heroes
   ========================================================================= */
.home-hero, .page-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: clip;
}
.home-hero { padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px); }
.page-hero { padding: clamp(52px, 7vw, 96px) 0 clamp(48px, 6vw, 84px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-paper); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime); }
.eyebrow-onink { color: var(--muted-ink); }
.eyebrow-index { color: var(--lime); }

.display {
  font-size: clamp(2.5rem, 6.2vw, 4.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 0.45em;
}
.display .accent {
  font-style: italic; font-weight: 600;
  color: var(--lime);
}
.display .scratch { position: relative; white-space: nowrap; }
.display .scratch::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 54%; height: 0.09em;
  background: var(--orange); transform: rotate(-2deg); border-radius: 2px;
}

.lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted-ink); max-width: 54ch; margin-bottom: 1.6em; }

.home-hero-grid, .page-hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.page-hero-solo { grid-template-columns: minmax(0, 1fr); }
.page-hero-solo .lede { max-width: 62ch; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: clamp(36px, 5vw, 64px);
  border-top: 1px solid var(--line-ink);
}
.hero-stat { flex: 1 1 140px; padding: 20px 24px 4px 0; border-right: 1px solid var(--line-ink-soft); }
.hero-stat:last-child { border-right: 0; }
.hero-stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--lime); letter-spacing: -0.02em; }
.hero-stat span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-ink); }

@media (max-width: 920px) {
  .home-hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-visual { max-width: 480px; }
}

/* =========================================================================
   Marquee ticker
   ========================================================================= */
.ticker { background: var(--lime); color: var(--on-lime); overflow: hidden; border-block: 2px solid var(--ink); }
.ticker .marquee-track, .cta-final-marquee .marquee-track {
  display: inline-flex; white-space: nowrap; will-change: transform;
  animation: marquee 30s linear infinite;
}
.ticker span {
  font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 0.14em;
  padding: 12px 0;
}

/* =========================================================================
   Sections
   ========================================================================= */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-paper { background: var(--paper); color: var(--on-paper); }
.section-paper2 { background: var(--paper-2); color: var(--on-paper); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink .eyebrow { color: var(--muted-ink); }

.section-h {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800; letter-spacing: -0.025em;
  max-width: 22ch; margin-bottom: 0.5em;
}
.section-sub { color: var(--muted-paper); max-width: 60ch; font-size: 1.06rem; margin-bottom: 2.2em; }
.section-ink .section-sub { color: var(--muted-ink); }
.section-head-row {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px;
}

/* =========================================================================
   Cards
   ========================================================================= */
.card-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .card-grid, .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid, .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: #fbfaf4;
  border: 1px solid var(--line-paper);
  border-radius: var(--r-md);
  padding: 26px 24px 24px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -30px rgba(12, 15, 9, 0.35); border-color: var(--ink); }
.card h3 { font-size: 1.22rem; font-weight: 700; margin: 16px 0 8px; }
.card p { color: var(--muted-paper); font-size: 15.5px; margin: 0; }
.card-num {
  position: absolute; top: 20px; right: 22px;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted-paper); letter-spacing: 0.1em;
}
.card-icon {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 13px; background: var(--ink); color: var(--lime);
  transition: transform 0.35s var(--ease-out), background 0.35s;
}
.card:hover .card-icon { transform: rotate(-6deg) scale(1.06); }
.card-link { position: static; display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 700; font-size: 14.5px; text-decoration: none; color: var(--ink); }
.card-link::after { content: ""; position: absolute; inset: 0; border-radius: var(--r-md); }
.card-link .icon { transition: transform 0.25s var(--ease-out); }
.card:hover .card-link .icon { transform: translateX(4px); }

/* Ink cards (on dark sections) */
.section-ink .card { background: var(--ink-2); border-color: var(--line-ink-soft); }
.section-ink .card:hover { border-color: var(--lime); box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.8); }
.section-ink .card p { color: var(--muted-ink); }
.section-ink .card-icon { background: var(--lime-soft); color: var(--lime); }
.section-ink .card-link { color: var(--lime); }
.section-ink .card-num { color: var(--muted-ink); }

/* Module tiles (8-up product map) */
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .module-grid { grid-template-columns: repeat(2, 1fr); } }
.module {
  background: var(--ink-2); border: 1px solid var(--line-ink-soft); border-radius: var(--r-md);
  padding: 22px 20px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}
.module:hover { transform: translateY(-4px); border-color: var(--lime); background: var(--ink-3); }
.module .icon { width: 26px; height: 26px; color: var(--lime); }
.module h3 { font-size: 1.05rem; margin: 14px 0 6px; }
.module p { font-size: 14px; color: var(--muted-ink); margin: 0; line-height: 1.5; }

/* =========================================================================
   Split layouts
   ========================================================================= */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.split-rev .split-copy { order: 2; }
@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; }
  .split-rev .split-copy { order: 0; }
}
.split-copy .section-h { max-width: none; }

.ticklist { list-style: none; display: grid; gap: 13px; margin: 22px 0 26px; }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.ticklist .icon { width: 20px; height: 20px; color: var(--lime); margin-top: 2px; }
.section-paper .ticklist .icon, .section-paper2 .ticklist .icon { color: var(--ink); background: var(--lime); border-radius: 6px; padding: 3px; width: 21px; height: 21px; }

/* =========================================================================
   Consoles (product mockups)
   ========================================================================= */
.console {
  background: var(--ink-2);
  border: 1px solid var(--line-ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  color: var(--paper);
  font-size: 14px;
}
.console-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-ink-soft);
  background: rgba(244, 242, 232, 0.02);
}
.console-dots { display: inline-flex; gap: 5px; }
.console-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-ink); }
.console-dots i:first-child { background: var(--orange); }
.console-dots i:nth-child(2) { background: var(--lime); }
.console-title { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; color: var(--muted-ink); }
.console-tag {
  margin-left: auto; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em;
  color: var(--lime); border: 1px solid rgba(198, 241, 53, 0.4); border-radius: 999px; padding: 3px 9px;
}
.console-body { padding: 18px; }

.kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.kpi { background: var(--ink-3); border: 1px solid var(--line-ink-soft); border-radius: var(--r-sm); padding: 13px 14px; }
.kpi-label { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-ink); margin-bottom: 5px; }
.kpi-num { display: block; font-family: var(--font-mono); font-weight: 600; font-size: 21px; letter-spacing: -0.02em; }
.kpi-delta { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; margin-top: 4px; color: var(--muted-ink); }
.kpi-delta.up { color: var(--lime); }

.bars { display: flex; align-items: flex-end; gap: 7px; height: 88px; padding: 4px 2px 0; margin-bottom: 16px; }
.bars i {
  flex: 1; height: var(--h);
  background: rgba(244, 242, 232, 0.16);
  border-radius: 5px 5px 2px 2px;
  transform-origin: bottom;
}
.bars .bar-hot { background: var(--lime); }
.is-in .bars i, .load-reveal .bars i { animation: barpop 0.9s var(--ease-out) both; }
.bars i:nth-child(2) { animation-delay: 0.06s; } .bars i:nth-child(3) { animation-delay: 0.12s; }
.bars i:nth-child(4) { animation-delay: 0.18s; } .bars i:nth-child(5) { animation-delay: 0.24s; }
.bars i:nth-child(6) { animation-delay: 0.3s; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-mono); font-size: 11.5px;
  border: 1px solid var(--line-ink); border-radius: 999px; padding: 5px 12px; color: var(--muted-ink);
}
.chip b { color: var(--paper); font-weight: 600; }
.chip-warn { border-color: rgba(242, 98, 46, 0.5); color: var(--orange); background: var(--orange-soft); }
.chip-warn b { color: var(--orange); }
.chip-lime { border-color: rgba(198, 241, 53, 0.5); color: var(--lime); background: var(--lime-soft); }

/* Member card */
.member-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.avatar {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  background: var(--lime); color: var(--on-lime);
  font-family: var(--font-display); font-weight: 800; font-size: 15px; flex: none;
}
.avatar-sm { width: 34px; height: 34px; border-radius: 11px; font-size: 12px; }
.avatar-lime { background: var(--lime); color: var(--on-lime); }
.member-id { flex: 1; min-width: 0; }
.member-id strong { display: block; font-size: 15px; }
.mono-note { display: block; font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-ink); letter-spacing: 0.03em; }

.meter { margin-bottom: 16px; }
.meter-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-size: 12.5px; margin-bottom: 7px; color: var(--muted-ink); }
.meter-top b { color: var(--orange); }
.meter-bar { height: 8px; border-radius: 99px; background: var(--ink-3); overflow: hidden; }
.meter-bar i { display: block; height: 100%; width: var(--w); border-radius: 99px; background: linear-gradient(90deg, var(--lime), var(--orange)); }

.mini-log { list-style: none; display: grid; gap: 9px; }
.mini-log li { display: flex; align-items: center; gap: 10px; font-size: 12.5px; padding: 9px 11px; background: var(--ink-3); border-radius: var(--r-sm); }
.mini-log em { margin-left: auto; font-style: normal; font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-ink); white-space: nowrap; }
.log-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex: none; }
.log-dim { background: var(--muted-ink); }
.log-warn { background: var(--orange); }

/* Attendance scanner */
.scan-stage { position: relative; display: grid; place-items: center; padding: 18px 0 22px; margin-bottom: 14px; }
.scan-face { width: 132px; height: 132px; color: var(--muted-ink); }
.scan-face .scan-corners { color: var(--lime); }
.scan-line {
  position: absolute; left: 18%; right: 18%; height: 2px; top: 12%;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 18px 2px rgba(198, 241, 53, 0.45);
  animation: scanline 3.4s ease-in-out infinite;
}

/* WhatsApp phone */
.phone {
  width: min(330px, 100%);
  margin-inline: auto;
  background: var(--ink-2);
  border: 1px solid var(--line-ink);
  border-radius: 34px;
  padding: 14px;
  box-shadow: var(--shadow-pop);
  position: relative;
  color: var(--paper);
}
.phone-notch { width: 86px; height: 5px; border-radius: 99px; background: var(--line-ink); margin: 2px auto 12px; }
.phone-head { display: flex; align-items: center; gap: 10px; padding: 0 4px 12px; border-bottom: 1px solid var(--line-ink-soft); margin-bottom: 12px; }
.phone-head strong { font-size: 14px; display: block; }
.phone-chat { display: grid; gap: 9px; padding: 0 2px 4px; }
.bubble {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--line-ink-soft);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 12px 18px;
  font-size: 12.8px; line-height: 1.45;
  max-width: 88%;
}
.bubble b { color: var(--lime); }
.bubble-meta { position: absolute; right: 10px; bottom: 5px; font-family: var(--font-mono); font-size: 9px; color: var(--muted-ink); }
.bubble-doc { display: flex; align-items: center; gap: 8px; color: var(--lime); font-family: var(--font-mono); font-size: 11.5px; }
.bubble-reply { margin-left: auto; background: rgba(198, 241, 53, 0.12); border-color: rgba(198, 241, 53, 0.25); border-radius: 14px 14px 4px 14px; }

/* Follow-up grid */
.fu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 14px; }
.fu-cell { background: var(--ink-3); border: 1px solid var(--line-ink-soft); border-radius: var(--r-sm); padding: 12px 11px; }
.fu-num { display: block; font-family: var(--font-mono); font-weight: 600; font-size: 22px; line-height: 1.1; }
.fu-label { font-family: var(--font-mono); font-size: 9.8px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-ink); }
.fu-hot { border-color: rgba(242, 98, 46, 0.55); background: var(--orange-soft); }
.fu-hot .fu-num { color: var(--orange); }
.fu-done .fu-num { color: var(--lime); }

/* Leaderboard */
.board { list-style: none; display: grid; gap: 10px; margin-bottom: 14px; }
.board li { display: grid; grid-template-columns: 30px 64px 1fr auto; gap: 10px; align-items: center; font-size: 13px; }
.board-rank { font-family: var(--font-mono); font-size: 11px; color: var(--muted-ink); }
.board-name { font-weight: 700; }
.board-bar { height: 9px; background: var(--ink-3); border-radius: 99px; overflow: hidden; }
.board-bar i { display: block; height: 100%; width: var(--w); background: var(--lime); border-radius: 99px; }
.board li:nth-child(2) .board-bar i, .board li:nth-child(3) .board-bar i { background: rgba(244, 242, 232, 0.35); }
.board-val { font-family: var(--font-mono); font-size: 11px; color: var(--muted-ink); }
.salary-line { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12.5px; background: var(--ink-3); border-radius: var(--r-sm); padding: 10px 12px; }
.salary-line b { color: var(--lime); font-weight: 600; }
.salary-line .icon { vertical-align: -2px; margin-right: 4px; color: var(--lime); }

/* Branch map */
.branch-map { display: grid; gap: 0; }
.branch-node {
  background: var(--ink-3); border: 1px solid var(--line-ink-soft); border-radius: var(--r-sm);
  padding: 11px 13px; font-size: 13px; text-align: center;
}
.branch-node b { display: block; }
.branch-node .icon { color: var(--lime); margin-bottom: 3px; }
.branch-hq { width: min(220px, 70%); margin-inline: auto; border-color: rgba(198, 241, 53, 0.4); }
.branch-wires { width: 100%; height: 40px; color: var(--line-ink); }
.branch-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.branch-dim { opacity: 0.75; }

/* Hero stack composition */
.hero-stack { position: relative; max-width: 520px; margin-left: auto; }
.hero-float {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--paper); color: var(--on-paper);
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--shadow-pop);
  font-size: 13px; line-height: 1.3;
  animation: floaty 6s ease-in-out infinite;
}
.hero-float b { display: block; font-size: 13.5px; }
.hero-float .mono-note { color: var(--muted-paper); }
.hero-float-toast { top: -26px; right: -14px; --rot: 2deg; }
.hero-float-chip { bottom: -24px; left: -20px; --rot: -2deg; animation-delay: 1.2s; }
.hero-float-chip .fu-num { font-size: 26px; color: var(--orange); font-family: var(--font-display); font-weight: 800; }
@media (max-width: 1100px) {
  .hero-float-toast { right: 0; }
  .hero-float-chip { left: 0; }
}
@media (max-width: 920px) {
  .hero-stack { margin: 30px auto 10px; }
}

/* =========================================================================
   Steps (how it works)
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; counter-increment: step;
  background: #fbfaf4; border: 1px solid var(--line-paper); border-radius: var(--r-md);
  padding: 30px 24px 26px;
  overflow: hidden;
}
.step::before {
  content: "0" counter(step);
  position: absolute; top: -18px; right: 6px;
  font-family: var(--font-display); font-weight: 800; font-size: 92px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-paper);
}
.step h3 { font-size: 1.2rem; position: relative; }
.step p { color: var(--muted-paper); font-size: 15.5px; margin: 0; position: relative; }
.section-ink .step { background: var(--ink-2); border-color: var(--line-ink-soft); }
.section-ink .step::before { -webkit-text-stroke-color: var(--line-ink); }
.section-ink .step p { color: var(--muted-ink); }

/* =========================================================================
   Versus (Excel comparison)
   ========================================================================= */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 860px) { .versus { grid-template-columns: 1fr; } }
.versus-col { border-radius: var(--r-md); padding: 30px 28px; }
.versus-them { background: var(--paper-2); border: 1.5px dashed var(--line-paper); color: var(--muted-paper); }
.versus-us { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-pop); }
.versus-col h3 { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; margin-bottom: 18px; }
.versus-us h3 { color: var(--lime); }
.versus-list { list-style: none; display: grid; gap: 12px; }
.versus-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.versus-list .icon { width: 19px; height: 19px; margin-top: 2px; flex: none; }
.versus-them .icon { color: var(--orange); }
.versus-us .icon { color: var(--lime); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-list { display: grid; gap: 12px; margin-top: 10px; }
.faq-item {
  background: #fbfaf4; border: 1px solid var(--line-paper); border-radius: var(--r-md);
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--ink); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; width: 16px; height: 16px; flex: none; }
.faq-x::before, .faq-x::after { content: ""; position: absolute; inset: 50% auto auto 0; width: 16px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease-out); }
.faq-x::after { transform: rotate(90deg); }
.faq-item[open] .faq-x::after { transform: rotate(0deg); }
.faq-item p { padding: 0 22px 20px; margin: 0; color: var(--muted-paper); font-size: 15.5px; max-width: 68ch; }

/* =========================================================================
   Final CTA
   ========================================================================= */
.cta-final { background: var(--lime); color: var(--on-lime); overflow: hidden; padding-bottom: clamp(64px, 8vw, 100px); }
.cta-final-marquee { border-bottom: 2px solid rgba(16, 20, 8, 0.15); margin-bottom: clamp(48px, 6vw, 80px); overflow: hidden; }
.cta-final-marquee span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; padding: 12px 0; display: inline-block; opacity: 0.75; }
.cta-final-inner { text-align: center; display: grid; justify-items: center; }
.cta-final-h { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; letter-spacing: -0.03em; max-width: 18ch; }
.cta-final-p { font-size: 1.1rem; max-width: 46ch; opacity: 0.8; margin-bottom: 1.8em; }
.cta-final .btn-outline-ink:hover { background: var(--ink); color: var(--lime); }

/* =========================================================================
   Breadcrumbs / page furniture
   ========================================================================= */
.breadcrumbs {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--muted-ink); margin-bottom: 22px;
}
.breadcrumbs a { color: var(--muted-ink); text-decoration: none; }
.breadcrumbs a:hover { color: var(--lime); }
.breadcrumbs span[aria-hidden] { opacity: 0.5; margin: 0 4px; }

/* City cross-links */
.also-serving { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.also-serving a {
  font-family: var(--font-mono); font-size: 12.5px; text-decoration: none;
  border: 1px solid var(--line-paper); border-radius: 999px; padding: 8px 16px; color: var(--muted-paper);
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.also-serving a:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }

/* =========================================================================
   Blog
   ========================================================================= */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  position: relative; display: flex; flex-direction: column;
  background: #fbfaf4; border: 1px solid var(--line-paper); border-radius: var(--r-md);
  padding: 26px 24px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.post-card:hover { transform: translateY(-5px); border-color: var(--ink); box-shadow: 0 24px 50px -30px rgba(12, 15, 9, 0.35); }
.post-card-meta { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-paper); margin-bottom: 14px; }
.post-card h2, .post-card h3 { font-size: 1.25rem; line-height: 1.2; margin: 0 0 10px; }
.post-card h2 a, .post-card h3 a { text-decoration: none; color: inherit; }
.post-card h2 a::after, .post-card h3 a::after { content: ""; position: absolute; inset: 0; border-radius: var(--r-md); }
.post-card p { color: var(--muted-paper); font-size: 15px; margin: 0 0 18px; }
.post-card-more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--ink); }
.post-card-more .icon { width: 16px; height: 16px; transition: transform 0.25s var(--ease-out); }
.post-card:hover .post-card-more .icon { transform: translateX(4px); }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; font-family: var(--font-mono); font-size: 14px; }
.pagination .page-numbers {
  display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 10px;
  border: 1px solid var(--line-paper); border-radius: 12px; text-decoration: none; color: var(--on-paper);
}
.pagination .page-numbers.current { background: var(--ink); color: var(--lime); border-color: var(--ink); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--ink); }

/* Single post / prose */
.prose-hero { background: var(--ink); color: var(--paper); padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px); position: relative; overflow: clip; }
.prose-hero h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 800; letter-spacing: -0.025em; max-width: 24ch; }
.prose-meta { display: flex; flex-wrap: wrap; gap: 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-ink); }

.prose { padding: clamp(48px, 6vw, 80px) 0; }
.prose-body { font-size: 17.5px; line-height: 1.75; }
.prose-body > * + * { margin-top: 1.1em; }
.prose-body h2 { font-size: 1.75rem; margin-top: 1.8em; letter-spacing: -0.02em; }
.prose-body h3 { font-size: 1.3rem; margin-top: 1.5em; }
.prose-body a { color: inherit; text-decoration-color: var(--lime); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.prose-body a:hover { background: var(--lime-soft); }
.prose-body ul, .prose-body ol { padding-left: 1.3em; display: grid; gap: 0.5em; }
.prose-body blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--lime);
  font-family: var(--font-display); font-weight: 600; font-size: 1.15em; font-style: italic;
}
.prose-body img { border-radius: var(--r-md); }
.prose-body table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose-body th, .prose-body td { border: 1px solid var(--line-paper); padding: 10px 12px; text-align: left; }
.prose-body th { background: var(--paper-2); font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.prose-body code { font-family: var(--font-mono); font-size: 0.88em; background: var(--paper-2); border-radius: 6px; padding: 2px 6px; }

.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line-paper); }
.post-nav a { text-decoration: none; font-weight: 700; color: var(--ink); max-width: 44%; font-size: 14.5px; }
.post-nav a:hover { color: var(--orange); }

/* =========================================================================
   Contact tiles
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-tile {
  display: flex; flex-direction: column; gap: 6px;
  background: #fbfaf4; border: 1px solid var(--line-paper); border-radius: var(--r-md); padding: 28px 26px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.contact-tile:hover { transform: translateY(-5px); border-color: var(--ink); box-shadow: 0 24px 50px -30px rgba(12, 15, 9, 0.35); }
.contact-tile h3 { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin: 12px 0 4px; }
.contact-tile p { color: var(--muted-paper); font-size: 15px; margin: 0 0 14px; }
.contact-tile .contact-big { margin-top: auto; font-family: var(--font-mono); font-weight: 600; font-size: 17px; text-decoration: none; color: var(--ink); word-break: break-all; }
.contact-tile .contact-big:hover { color: var(--orange); }
.contact-tile-hot { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.contact-tile-hot p { color: var(--muted-ink); }
.contact-tile-hot .card-icon { background: var(--lime); color: var(--on-lime); }

/* =========================================================================
   404 / search
   ========================================================================= */
.error-hero { background: var(--ink); color: var(--paper); text-align: center; padding: clamp(80px, 12vw, 160px) 0; position: relative; overflow: clip; }
.error-code { font-family: var(--font-display); font-weight: 800; font-size: clamp(6rem, 18vw, 13rem); line-height: 0.9; color: transparent; -webkit-text-stroke: 2px var(--lime); }
.search-form { display: flex; gap: 10px; max-width: 460px; margin: 24px auto 0; }
.search-form input[type="search"] {
  flex: 1; padding: 13px 18px; border-radius: 999px; border: 1.5px solid var(--line-paper);
  background: #fbfaf4; font: inherit; font-size: 15px; color: var(--on-paper);
}
.search-form input[type="search"]:focus { outline: 2px solid var(--lime); border-color: var(--ink); }
.error-hero .search-form input[type="search"] { background: var(--ink-2); border-color: var(--line-ink); color: var(--paper); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { position: relative; background: var(--ink); color: var(--paper); padding: clamp(64px, 8vw, 100px) 0 0; overflow: clip; }
.footer-giant {
  position: absolute; left: 50%; bottom: -0.32em; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 800; font-size: clamp(6rem, 19vw, 17rem);
  letter-spacing: 0.02em; line-height: 1; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(244, 242, 232, 0.07);
  pointer-events: none; user-select: none;
}
.footer-grid { position: relative; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 56px; }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--muted-ink); font-size: 15px; max-width: 34ch; margin-top: 16px; }
.footer-contact { display: grid; gap: 8px; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: 9px; color: var(--paper); text-decoration: none; font-size: 14.5px; }
.footer-contact a:hover { color: var(--lime); }
.footer-contact .icon { color: var(--lime); }
.site-footer h4 { font-family: var(--font-mono); font-weight: 500; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-ink); margin-bottom: 18px; }
.footer-grid > div > a, .footer-grid li a { display: block; color: var(--paper); opacity: 0.85; text-decoration: none; font-size: 14.5px; padding: 5px 0; transition: opacity 0.2s, color 0.2s, transform 0.25s var(--ease-out); }
.footer-grid > div > a:hover, .footer-grid li a:hover { color: var(--lime); opacity: 1; transform: translateX(3px); }
.footer-grid li { list-style: none; }
.footer-bottom {
  position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  border-top: 1px solid var(--line-ink-soft); padding: 22px 0 26px;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted-ink);
}
.footer-made { display: inline-flex; align-items: center; gap: 8px; }
.footer-flag { width: 16px; height: 11px; border-radius: 2px; background: linear-gradient(180deg, #f5993d 33%, #f4f2e8 33% 66%, #1c8a3c 66%); display: inline-block; }

/* =========================================================================
   Focus visibility (accessible, on-brand)
   ========================================================================= */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 4px; border-radius: 999px; }
.nav-toggle:focus { outline: none; }
.nav-toggle:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

/* Attendance scan face — brighter against the console */
.scan-face { color: rgba(244, 242, 232, 0.72); }

/* Hero float chip — hang below the console instead of over its chips */
.hero-float-chip { bottom: -38px; left: -14px; }

/* =========================================================================
   Contact form (Fluent Forms, restyled)
   ========================================================================= */
.form-card {
  background: #fbfaf4;
  border: 1px solid var(--line-paper);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 30px 70px -45px rgba(12, 15, 9, 0.45);
}
.fluentform .ff-el-group { margin-bottom: 18px; }
.fluentform .ff-el-input--label { padding: 0; margin-bottom: 7px; }
.fluentform .ff-el-input--label label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-paper);
}
.fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after { color: var(--orange); }
.fluentform .ff-el-form-control {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--line-paper);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-text);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--on-paper);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
  height: auto;
}
.fluentform .ff-el-form-control::placeholder { color: #a9a692; }
.fluentform .ff-el-form-control:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3.5px rgba(198, 241, 53, 0.4);
}
.fluentform textarea.ff-el-form-control { min-height: 132px; resize: vertical; }
.fluentform .ff-btn-submit {
  display: inline-flex;
  align-items: center;
  background: var(--ink) !important;
  color: var(--paper) !important;
  border: none;
  border-radius: 999px;
  padding: 14px 30px;
  font-family: var(--font-text);
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}
.fluentform .ff-btn-submit:hover {
  background: var(--ink-3) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(12, 15, 9, 0.7);
}
.fluentform .ff-el-is-error .ff-el-form-control { border-color: var(--orange); }
.fluentform .error, .fluentform .text-danger, .fluentform .ff-el-is-error .error {
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
}
.fluentform .ff-message-success {
  background: var(--lime-soft);
  border: 1.5px solid var(--lime);
  border-radius: 14px;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--on-paper);
  box-shadow: none;
}
.fluentform .ff-loading::before { border-color: var(--lime) transparent transparent; }
@media (max-width: 920px) {
  .form-card { margin-top: 6px; }
}

/* =========================================================================
   Conversion additions — trust strip, hero microtrust, WhatsApp FAB, calculator
   ========================================================================= */

.hero-microtrust {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-ink);
}

.trust-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 30px 0;
  border-top: 1px solid var(--line-ink-soft);
  border-bottom: 1px solid var(--line-ink-soft);
}
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item .icon { color: var(--lime); margin-top: 2px; }
.trust-item b { display: block; font-size: 14.5px; letter-spacing: -0.01em; }
.trust-item span { font-family: var(--font-mono); font-size: 11px; color: var(--muted-ink); letter-spacing: 0.02em; }
@media (max-width: 860px) { .trust-strip-grid { grid-template-columns: repeat(2, 1fr); } }

.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 99px;
  background: var(--lime);
  color: var(--on-lime);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 14px 34px -10px rgba(12, 15, 9, 0.5);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(198, 241, 53, 0.55); }
.wa-fab .icon { width: 24px; height: 24px; }
@media (max-width: 640px) {
  .wa-fab { padding: 0; width: 56px; height: 56px; justify-content: center; right: 14px; bottom: 14px; }
  .wa-fab-label { display: none; }
}

/* Renewal-leak calculator */
.calc { color-scheme: dark; }
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.calc-field { display: grid; gap: 7px; }
.calc-field-wide { grid-column: 1 / -1; }
.calc input,
.calc select {
  width: 100%;
  background: var(--ink-3);
  border: 1px solid var(--line-ink);
  border-radius: var(--r-sm);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 15px;
  padding: 11px 13px;
}
.calc input:focus,
.calc select:focus { outline: none; border-color: var(--lime); }
.calc .salary-line { margin-top: 12px; }
.calc-note {
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--muted-ink);
}
@media (max-width: 480px) { .calc-fields { grid-template-columns: 1fr; } }

/* Comparison table (/compare/) */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-md); }
.compare {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--paper);
  border: 1.5px solid var(--line-paper);
  border-radius: var(--r-md);
  overflow: hidden;
  font-size: 14.5px;
}
.compare th, .compare td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-paper);
}
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare thead th {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-paper);
  background: var(--paper-2);
}
.compare tbody th {
  font-weight: 700;
  color: var(--on-paper);
  width: 21%;
}
.compare td { color: var(--muted-paper); width: 26%; }
.compare .compare-us {
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  border-bottom-color: var(--line-ink-soft);
}
.compare thead .compare-us { color: var(--lime); background: var(--ink); }

/* =========================================================================
   Staff time-clock console
   ========================================================================= */
.clock-rows { list-style: none; display: grid; gap: 10px; margin-bottom: 14px; }
.clock-rows li {
  display: flex; align-items: center; gap: 12px;
  background: var(--ink-3); border: 1px solid var(--line-ink-soft);
  border-radius: var(--r-sm); padding: 10px 12px; font-size: 13px;
}
.clock-name { flex: 1; min-width: 0; font-weight: 700; }
.clock-name .mono-note { font-weight: 400; }
.clock-time { display: grid; justify-items: center; font-family: var(--font-mono); font-size: 13px; min-width: 46px; }
.clock-time em { font-style: normal; font-size: 9px; letter-spacing: 0.14em; color: var(--muted-ink); }
@media (max-width: 480px) { .clock-rows .avatar { display: none; } }

/* =========================================================================
   Phone duo (members + management side by side)
   ========================================================================= */
.phone-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; justify-items: center; }
@media (max-width: 860px) { .phone-duo { grid-template-columns: 1fr; } }
.phone-duo-col { display: grid; gap: 16px; justify-items: center; width: 100%; }
.phone-duo-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-paper);
}
.phone-duo-label::before { content: ""; width: 22px; height: 2px; background: var(--lime); }
.bubble-report b { color: var(--lime); }
.bubble-report { max-width: 100%; padding-bottom: 20px; }
.report-line { display: block; font-size: 12.3px; margin-top: 5px; }

/* =========================================================================
   Branded receipt
   ========================================================================= */
.receipt-stage { position: relative; max-width: 400px; margin-inline: auto; }
.receipt {
  position: relative;
  background: #fbfaf4; color: var(--on-paper);
  border: 1px solid var(--line-paper);
  border-radius: 6px 6px 16px 16px;
  padding: 26px 26px 20px;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.receipt::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--lime) 0 14px, var(--ink) 14px 28px);
}
.receipt-head { display: flex; align-items: center; gap: 12px; padding: 8px 0 16px; border-bottom: 1.5px dashed var(--line-paper); margin-bottom: 14px; }
.receipt-head b { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.02em; font-size: 15px; display: block; }
.receipt-head .mono-note { color: var(--muted-paper); }
.brand-mark-sm { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--ink); color: var(--lime); transform: rotate(-8deg); flex: none; }
.receipt-no { margin-left: auto; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--muted-paper); text-align: right; }
.receipt-row { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; padding: 7px 0; }
.receipt-row span { color: var(--muted-paper); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 3px; }
.receipt-total { border-top: 1.5px dashed var(--line-paper); margin-top: 8px; padding-top: 13px; }
.receipt-total b { font-family: var(--font-mono); font-size: 21px; }
.receipt-stamp {
  position: absolute; right: 20px; bottom: 138px;
  font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: 0.14em;
  color: var(--orange); border: 3px solid var(--orange); border-radius: 8px; padding: 2px 12px;
  transform: rotate(-12deg); opacity: 0.75;
}
.receipt-foot { padding-top: 14px; text-align: right; color: var(--muted-paper); }
.receipt-float { position: absolute; left: -14px; bottom: -36px; --rot: -2deg; animation: floaty 6s ease-in-out infinite; }
@media (max-width: 1100px) { .receipt-float { left: 0; } }

/* Core-features grid (5-up) */
.module-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .module-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .module-grid-5 { grid-template-columns: repeat(2, 1fr); } }
.module a.module-link { position: absolute; inset: 0; }
.module { position: relative; }

/* Visual duo (two consoles stacked with slight offset) */
.visual-duo { display: grid; gap: 20px; }
.visual-duo > :first-child { transform: rotate(-1deg); }
.visual-duo > :last-child { transform: rotate(1deg); }
@media (prefers-reduced-motion: reduce) { .visual-duo > * { transform: none; } }
