/* WIRQO marketing site — isolated from main app styles */
:root {
  --w-primary: #2ba68a;
  --w-primary-dark: #1f7f68;
  --w-ink: #0f172a;
  --w-muted: #475569;
  --w-soft: #f8fafc;
  --w-card: #ffffff;
  --w-line: #e2e8f0;
  --w-teal: #0d9488;
  --w-blue: #2563eb;
  --w-purple: #7c3aed;
  --w-green: #16a34a;
  --w-yellow: #ca8a04;
  --w-red: #e11d48;
  --w-radius: 18px;
  --w-radius-lg: 26px;
  --w-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --w-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --w-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --w-space-y: clamp(3.5rem, 6vw, 5.5rem);
  --w-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.w-site {
  margin: 0;
  font-family: var(--w-font);
  font-size: 1.0625rem;
  color: var(--w-ink);
  background: var(--w-soft);
  line-height: 1.65;
  letter-spacing: -0.011em;
  border-top: none;
}
body.w-site.w-site--nav-open {
  overflow: hidden;
  touch-action: none;
}
.w-visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.w-skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.w-skip-link:focus {
  left: 16px; top: 16px;
  width: auto; height: auto;
  padding: 10px 14px;
  background: var(--w-ink);
  color: #fff;
  border-radius: 8px;
}

.w-site-main { overflow-x: hidden; }

.w-site-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--w-ease-out);
}
.w-site-header__backdrop:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

/* Header — premium SaaS bar (~72px desktop) */
.w-site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  isolation: isolate;
  border-top: none;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 10px 40px rgba(15, 23, 42, 0.05);
}
.w-site-header__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 max(22px, env(safe-area-inset-right)) 0 max(22px, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 36px);
  min-height: 72px;
}
.w-site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--w-ink);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.375rem;
  line-height: 1;
  flex-shrink: 0;
}
.w-site-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--w-primary) 0%, #3dd4b0 55%, #5eead4 100%);
  box-shadow: 0 10px 26px rgba(43, 166, 138, 0.38);
}
.w-site-logo__text {
  padding-top: 2px;
}
.w-site-nav__toggle {
  display: none;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.w-site-nav__toggle:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.w-site-nav__toggle span[aria-hidden] {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--w-ink);
  margin: 5px 0;
  border-radius: 2px;
}
.w-site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 32px);
  min-width: 0;
}
.w-site-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 4px;
  min-width: 0;
}
.w-site-nav__links li {
  margin: 0;
}
.w-site-nav__links a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  line-height: 1.35;
  transition: background 0.18s ease, color 0.18s ease;
}
.w-site-nav__links a:hover {
  background: rgba(15, 23, 42, 0.05);
  color: #0b1224;
  text-decoration: none;
}
.w-site-nav__links a:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.45);
  outline-offset: 2px;
}
.w-site-nav__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .w-site-header__inner {
    min-height: 64px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .w-site-nav__toggle {
    display: block;
    margin-left: auto;
  }
  .w-site-nav {
    display: none;
    position: absolute;
    left: max(16px, env(safe-area-inset-left));
    right: max(16px, env(safe-area-inset-right));
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 8px 16px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--w-line);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    z-index: 70;
    animation: w-nav-in 0.28s var(--w-ease-out) both;
    gap: 0;
  }
  .w-site-nav--open {
    display: flex;
  }
  .w-site-nav__links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 6px 8px 14px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--w-line);
  }
  .w-site-nav__links a {
    padding: 14px 14px;
    border-radius: 12px;
    font-size: 1.05rem;
  }
  .w-site-nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 8px 8px 4px;
  }
  .w-site-nav__actions .w-btn {
    justify-content: center;
    width: 100%;
  }
}
@keyframes w-nav-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.w-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.w-btn:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.45);
  outline-offset: 3px;
}
.w-btn--primary {
  background: linear-gradient(135deg, var(--w-primary), #34d399);
  color: #fff;
  box-shadow: 0 10px 24px rgba(43, 166, 138, 0.35);
}
.w-btn--primary:hover { transform: translateY(-1px); }
.w-btn--ghost {
  background: #fff;
  border-color: var(--w-line);
  color: var(--w-ink);
}
.w-btn--ghost:hover { border-color: #cbd5e1; }
.w-btn--outline-dark {
  background: #fff;
  color: #0f172a;
  border: 1.5px solid #e2e8f0;
  font-weight: 600;
}
.w-btn--outline-dark:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  transform: translateY(-1px);
}
.w-btn--lg { padding: 14px 24px; font-size: 1rem; }
.w-btn--block { width: 100%; }

/* Navbar-only CTAs (do not affect in-page marketing buttons) */
.w-site-header .w-btn--nav-outline {
  padding: 10px 18px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.w-site-header .w-btn--nav-outline:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  transform: translateY(-1px);
}
.w-site-header .w-btn--nav-cta {
  padding: 10px 22px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  background: #2ba68a;
  border: 1.5px solid #258f76;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(43, 166, 138, 0.38);
}
.w-site-header .w-btn--nav-cta:hover {
  background: #258f76;
  border-color: #207963;
  transform: translateY(-1px);
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .w-site-nav__links a {
    padding: 8px 10px;
    font-size: 0.98rem;
  }
  .w-site-header .w-btn--nav-outline,
  .w-site-header .w-btn--nav-cta {
    padding: 9px 14px;
    font-size: 0.9rem;
  }
}

/* Hero */
.w-hero {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem) max(22px, env(safe-area-inset-right)) clamp(2.25rem, 4.5vw, 3.5rem) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(ellipse 100% 90% at 12% 8%, rgba(43, 166, 138, 0.14), transparent 50%),
    radial-gradient(ellipse 85% 75% at 92% 18%, rgba(99, 102, 241, 0.1), transparent 52%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(43, 166, 138, 0.06), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
}
.w-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.14fr);
  gap: clamp(28px, 4.5vw, 52px);
  align-items: center;
}
@media (max-width: 960px) {
  .w-hero__inner {
    grid-template-columns: 1fr;
    gap: clamp(22px, 4vw, 32px);
  }
}
.w-hero__content {
  max-width: 36rem;
  animation: w-fade-up 0.7s var(--w-ease-out) both;
}
.w-hero__visual {
  position: relative;
  isolation: isolate;
  animation: w-fade-up 0.75s 0.08s var(--w-ease-out) both;
}
@media (min-width: 1100px) {
  .w-hero__visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.w-hero__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4% -8% 8% -4%;
  border-radius: 32px;
  background:
    radial-gradient(ellipse 65% 55% at 58% 42%, rgba(43, 166, 138, 0.2), transparent 68%),
    radial-gradient(ellipse 50% 45% at 15% 75%, rgba(59, 130, 246, 0.12), transparent 62%);
  pointer-events: none;
}
@keyframes w-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.w-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 250, 0.75) 100%);
  border: 1px solid rgba(43, 166, 138, 0.28);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 6px 20px rgba(43, 166, 138, 0.08);
  color: #14523d;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-variant-caps: all-small-caps;
}
.w-hero h1 {
  font-size: clamp(1.95rem, 4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.038em;
  margin: 16px 0 14px;
  color: #0b1224;
}
.w-hero__sub {
  font-size: clamp(1rem, 1.65vw, 1.125rem);
  line-height: 1.58;
  color: #475569;
  max-width: 52ch;
  margin: 0 0 24px;
}
.w-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.w-hero .w-btn--hero-primary {
  padding: 15px 28px;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(43, 166, 138, 0.35);
}
.w-hero .w-btn--hero-secondary {
  padding: 15px 26px;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 999px;
  border-width: 1.5px;
  border-color: #d1d9e6;
  background: rgba(255, 255, 255, 0.85);
}
.w-hero .w-btn--hero-secondary:hover {
  border-color: #cbd5e1;
  background: #fff;
}
.w-hero__note {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0 0 20px;
  max-width: 46ch;
  font-weight: 500;
}
.w-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.w-hero__pillink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 16px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s var(--w-ease-out), box-shadow 0.2s var(--w-ease-out), color 0.2s var(--w-ease-out);
}
.w-hero__pillink:hover {
  border-color: rgba(43, 166, 138, 0.45);
  color: #1f7f68;
  box-shadow: 0 4px 14px rgba(43, 166, 138, 0.12);
}
.w-hero__pillink:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.4);
  outline-offset: 2px;
}
.w-hero__pillink-ic {
  font-size: 0.85rem;
  color: #2ba68a;
  font-weight: 700;
  line-height: 1;
}
/* Hero dashboard mock — larger, higher contrast */
.w-hero .w-mock--hero {
  border-radius: calc(var(--w-radius-lg) + 8px);
  border: 1px solid #e2e8f0;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 50px rgba(15, 23, 42, 0.1),
    0 8px 24px rgba(15, 23, 42, 0.06);
  width: 100%;
  max-width: min(100%, 640px);
  margin-inline: auto;
}
@media (min-width: 1100px) {
  .w-hero .w-mock--hero {
    max-width: min(100%, 680px);
    width: 100%;
    margin-inline: 0;
  }
}
@media (max-width: 960px) {
  .w-hero .w-mock--hero {
    max-width: 520px;
  }
}
.w-mock__chrome--hero {
  padding: 12px 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
  gap: 10px;
}
.w-mock__title--hero {
  margin-left: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.w-mock__chrome-badge {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
}
.w-mock__grid--hero {
  gap: 14px;
  padding: 16px 18px 18px;
}
.w-mock__panel--hero {
  padding: 14px 14px 15px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.045), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  min-height: 0;
}
.w-mock__panel-head--hero {
  margin-bottom: 11px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  gap: 10px;
}
.w-mock__panel-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}
.w-pill--hero {
  padding: 5px 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
}
.w-mock__kanban--hero {
  gap: 12px;
}
.w-mock__kanban--hero .w-mock__col-title {
  font-size: 0.6875rem;
  color: #475569;
}
.w-mock__kanban--hero .w-mock__card {
  padding: 10px 11px;
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  font-size: 0.8125rem;
}
.w-mock__kanban--hero .w-mock__card--accent {
  border-color: rgba(43, 166, 138, 0.5);
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.9) 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(43, 166, 138, 0.1), 0 4px 12px rgba(43, 166, 138, 0.08);
}
.w-mock__kanban--hero .w-mock__card--done {
  opacity: 0.92;
}
.w-mock__card-title {
  margin: 6px 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}
.w-mock__card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.w-mock__pipeline--hero li {
  padding: 9px 11px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.w-mock__pipe-label {
  color: #334155;
}
.w-mock__row-k {
  font-weight: 700;
  color: #64748b;
  font-size: 0.8125rem;
}
.w-mock__ticket--hero {
  padding: 11px 12px;
  border-radius: 11px;
  border: 1px solid #e2e8f0;
  background: #fafbfc;
}
.w-mock__ticket--hero .w-mock__ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.w-mock__ticket-sub {
  margin: 0 0 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}
.w-mock__ticket-meta {
  margin: 0;
  font-size: 0.75rem;
  color: #475569;
}
.w-mock__ticket-meta strong {
  color: #0f172a;
  font-weight: 700;
}
.w-mock__inv-line {
  margin: 4px 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}
.w-mock__chart--hero {
  width: 100%;
  margin: 4px 0 8px;
}
.w-mock__chart--hero svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 64px;
}
.w-mock__chart-cap {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
}
.w-mock__leave-meta {
  margin: 4px 0 8px;
  font-size: 0.8125rem;
  color: #64748b;
}
.w-mock__notif-t {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
}
.w-mock__proc-inv-split {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .w-hero h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
  }
  .w-hero .w-btn--hero-primary,
  .w-hero .w-btn--hero-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .w-hero__actions {
    flex-direction: column;
  }
}

/* Sections */
.w-section {
  padding: var(--w-space-y) 22px;
}
.w-section--tight { padding-top: clamp(2.5rem, 5vw, 3.5rem); }
.w-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.w-section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #0b1224;
}
.w-section-lede {
  font-size: 1.1rem;
  color: var(--w-muted);
  max-width: 70ch;
  margin: 0 0 32px;
}

/* Trust cards */
.w-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.w-trust-card {
  background: var(--w-card);
  border-radius: var(--w-radius);
  padding: 22px;
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
  font-weight: 600;
  color: var(--w-muted);
}

/* Feature grid */
.w-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.w-feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.w-feature-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.w-feature-grid--five {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}
.w-feature-grid--five > * {
  grid-column: span 2;
}
.w-feature-grid--five > *:nth-child(4) {
  grid-column: 2 / span 2;
}
.w-feature-grid--five > *:nth-child(5) {
  grid-column: 4 / span 2;
}
@media (max-width: 1100px) {
  .w-feature-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .w-feature-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .w-feature-grid--five {
    grid-template-columns: 1fr;
  }
  .w-feature-grid--five > * {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .w-feature-grid--three,
  .w-feature-grid--four {
    grid-template-columns: 1fr;
  }
}
.w-feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px 26px;
  border-radius: calc(var(--w-radius-lg) + 2px);
  text-decoration: none;
  color: inherit;
  background: var(--w-card);
  border: 1px solid #e8edf3;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05), 0 12px 32px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s var(--w-ease-out), box-shadow 0.22s var(--w-ease-out), border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}
.w-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: linear-gradient(135deg, var(--card-accent, var(--w-primary)), transparent 55%);
  pointer-events: none;
}
.w-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--w-shadow);
  border-color: rgba(43, 166, 138, 0.22);
}
.w-feature-card:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.45);
  outline-offset: 3px;
}
.w-feature-card--tone-teal { --card-accent: var(--w-teal); }
.w-feature-card--tone-blue { --card-accent: var(--w-blue); }
.w-feature-card--tone-purple { --card-accent: var(--w-purple); }
.w-feature-card--tone-green { --card-accent: var(--w-green); }
.w-feature-card--tone-yellow { --card-accent: var(--w-yellow); }
.w-feature-card--tone-red { --card-accent: var(--w-red); }
.w-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(43, 166, 138, 0.12);
  color: var(--w-primary-dark);
  position: relative;
  z-index: 1;
}
.w-feature-card__title {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  z-index: 1;
}
.w-feature-card__desc {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.55;
  flex: 1;
  position: relative;
  z-index: 1;
}
.w-feature-card__bullets {
  margin: 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.w-feature-card__bullets li {
  margin-bottom: 6px;
}
.w-feature-card__bullets li::marker {
  color: #2ba68a;
}
.w-feature-card__link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--w-primary-dark);
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

/* Split sections */
.w-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .w-split { grid-template-columns: 1fr; } }

/* Department grid */
.w-dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.w-dept-card {
  padding: 24px;
  border-radius: var(--w-radius-lg);
  background: linear-gradient(180deg, #fff, #f1f5f9);
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
}
.w-dept-card h3 { margin-top: 0; }

/* Industry cards */
.w-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.w-industry-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid var(--w-line);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--w-shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.w-industry-card:hover { transform: translateY(-4px); box-shadow: var(--w-shadow); border-color: rgba(43, 166, 138, 0.2); }
.w-industry-card:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.45);
  outline-offset: 3px;
}
.w-industry-card__title { margin: 0; font-size: 1.2rem; }
.w-industry-card__desc { margin: 0; color: var(--w-muted); flex: 1; }
.w-industry-card__link { font-weight: 700; color: var(--w-primary-dark); }

/* Integration cards */
.w-int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.w-int-card {
  padding: 22px;
  border-radius: var(--w-radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--w-line);
  backdrop-filter: blur(8px);
}
.w-int-card__title { margin: 10px 0 6px; font-size: 1.1rem; }
.w-int-card__body { margin: 0; color: var(--w-muted); font-size: 0.95rem; }

/* Pills */
.w-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #e2e8f0;
  color: var(--w-ink);
}
.w-pill--teal { background: rgba(43, 166, 138, 0.18); color: var(--w-primary-dark); }
.w-pill--blue { background: rgba(37, 99, 235, 0.12); color: #1d4ed8; }
.w-pill--purple { background: rgba(124, 58, 237, 0.12); color: #5b21b6; }
.w-pill--green { background: rgba(22, 163, 74, 0.12); color: #166534; }
.w-pill--yellow { background: rgba(202, 138, 4, 0.15); color: #854d0e; }
.w-pill--red { background: rgba(225, 29, 72, 0.12); color: #9f1239; }
.w-pill--outline { border: 1px dashed var(--w-line); background: transparent; }

/* Mockups */
.w-mock {
  border-radius: calc(var(--w-radius-lg) + 4px);
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow);
  overflow: hidden;
}
.w-mock__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--w-line);
  background: rgba(248, 250, 252, 0.9);
}
.w-mock__dot { width: 9px; height: 9px; border-radius: 50%; background: #e2e8f0; }
.w-mock__dot:first-child { background: #fecaca; }
.w-mock__dot:nth-child(2) { background: #fde68a; }
.w-mock__dot:nth-child(3) { background: #bbf7d0; }
.w-mock__title { margin-left: 8px; font-size: 0.8rem; font-weight: 700; color: #475569; }
.w-mock__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  padding: 14px;
}
@media (max-width: 700px) { .w-mock__grid { grid-template-columns: 1fr; } }
.w-mock__panel {
  background: #fff;
  border: 1px solid var(--w-line);
  border-radius: 16px;
  padding: 12px;
  min-height: 120px;
}
.w-mock__panel--wide { grid-column: 1 / -1; }
.w-mock__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
}
.w-mock__muted { font-size: 0.8125rem; color: #64748b; }
.w-mock__kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 600px) { .w-mock__kanban { grid-template-columns: 1fr; } }
.w-mock__kanban--solo { padding: 12px; }
.w-mock__col-title { margin: 0 0 8px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #64748b; font-weight: 800; }
.w-mock__card {
  border-radius: 12px;
  padding: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  margin-bottom: 8px;
  font-size: 0.82rem;
}
.w-mock__card p { margin: 6px 0 0; }
.w-mock__card--accent { border-color: rgba(43, 166, 138, 0.45); background: rgba(43, 166, 138, 0.06); }
.w-mock__card--done { opacity: 0.65; }
.w-mock__tag { font-size: 0.68rem; font-weight: 700; color: var(--w-primary-dark); }
.w-mock__avatars { display: flex; gap: -6px; margin-top: 8px; }
.w-mock__avatars span {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  border: 2px solid #fff;
  margin-right: -6px;
}
.w-mock__bar { height: 6px; border-radius: 99px; background: #e2e8f0; margin-top: 8px; overflow: hidden; }
.w-mock__bar span { display: block; height: 100%; border-radius: 99px; background: var(--w-primary); }
.w-mock__pipeline { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.w-mock__pipeline li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; border-radius: 10px; background: #f8fafc; border: 1px solid var(--w-line);
  font-size: 0.85rem;
}
.w-mock__pill-count {
  padding: 2px 8px; border-radius: 999px; background: rgba(43, 166, 138, 0.15);
  font-weight: 800; font-size: 0.75rem; color: var(--w-primary-dark);
}
.w-mock__roster { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; }
.w-mock__row { display: flex; justify-content: space-between; gap: 10px; padding: 8px 10px; border-radius: 10px; background: #f8fafc; border: 1px solid var(--w-line); }
.w-mock__shift { font-weight: 600; color: var(--w-ink); }
.w-mock__shift--off { font-weight: 700; color: var(--w-red); }
.w-mock__ticket { padding: 10px; border-radius: 12px; background: #f8fafc; border: 1px dashed #cbd5e1; font-size: 0.85rem; }
.w-mock__ticket-id { font-weight: 800; color: var(--w-primary-dark); }
.w-mock__invoice .w-mock__strong { font-weight: 700; margin: 0 0 4px; }
.w-mock__amount { font-weight: 800; margin: 8px 0 0; color: var(--w-primary-dark); }
.w-mock__leave .w-mock__strong { margin: 0 0 6px; }
.w-mock__notif { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; }
.w-mock__dot-live { width: 10px; height: 10px; border-radius: 50%; background: var(--w-primary); margin-top: 4px; box-shadow: 0 0 0 6px rgba(43, 166, 138, 0.2); }

.w-mock__chrome--rich {
  flex-wrap: wrap;
  gap: 10px 12px;
}
.w-mock__chrome--rich .w-mock__title {
  margin-left: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: -0.02em;
}
.w-mock__traffic {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.w-mock__chrome-meta {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}
@media (max-width: 420px) {
  .w-mock__chrome-meta {
    width: 100%;
    margin-left: 0;
  }
}

/* Sentence-case chips (mock cards) */
.w-mock__chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 7px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  border: 1px solid transparent;
}
.w-mock__chip--teal {
  background: rgba(43, 166, 138, 0.14);
  color: #14523d;
  border-color: rgba(43, 166, 138, 0.22);
}
.w-mock__chip--slate {
  background: #f1f5f9;
  color: #334155;
  border-color: #e2e8f0;
}
.w-mock__chip--amber {
  background: rgba(245, 158, 11, 0.14);
  color: #92400e;
  border-color: rgba(245, 158, 11, 0.25);
}
.w-mock__chip--rose {
  background: rgba(225, 29, 72, 0.1);
  color: #9f1239;
  border-color: rgba(225, 29, 72, 0.2);
}
.w-mock__chip--sky {
  background: rgba(59, 130, 246, 0.12);
  color: #1e40af;
  border-color: rgba(59, 130, 246, 0.22);
}
.w-mock__chip--violet {
  background: rgba(124, 58, 237, 0.1);
  color: #5b21b6;
  border-color: rgba(124, 58, 237, 0.2);
}

.w-mock__kanban--rich {
  padding: 14px 16px 16px;
  gap: 12px;
}
.w-mock__kanban--rich .w-mock__col-title {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
}
.w-mock__kanban--rich .w-mock__card {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  font-size: 0.8125rem;
  color: #0f172a;
  padding: 10px 11px;
  margin-bottom: 0;
}
.w-mock__kanban--rich .w-mock__card--stack {
  margin-top: 8px;
}
.w-mock__kanban--rich .w-mock__card--accent {
  border-color: rgba(43, 166, 138, 0.45);
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.85) 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(43, 166, 138, 0.08);
}
.w-mock__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}
.w-mock__card-heading {
  margin: 4px 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}
.w-mock__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}
.w-mock__assignees {
  display: flex;
  align-items: center;
}
.w-mock__assignees span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #94a3b8, #64748b);
  border: 2px solid #fff;
  margin-right: -7px;
  box-shadow: 0 0 0 1px #e2e8f0;
}
.w-mock__assignees span:nth-child(2) { background: linear-gradient(135deg, #2ba68a, #1f7f68); }
.w-mock__assignees span:nth-child(3) { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.w-mock__assignees span:nth-child(4) { background: linear-gradient(135deg, #f472b6, #db2777); }
.w-mock__sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}

.w-mock__pipeline-board {
  display: flex;
  gap: 10px;
  padding: 12px 14px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.w-mock__deal-stage {
  flex: 1 1 0;
  min-width: 108px;
  padding: 10px 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.w-mock__deal-stage--hot {
  border-color: rgba(43, 166, 138, 0.35);
  box-shadow: 0 0 0 1px rgba(43, 166, 138, 0.12);
}
.w-mock__deal-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 6px;
}
.w-mock__deal-value {
  margin: 8px 0 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}
.w-mock__deal-count {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

.w-mock__roster--rich {
  padding: 12px 14px 16px;
  gap: 10px;
}
.w-mock__emp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.w-mock__emp-row--off {
  background: #fef2f2;
  border-color: #fecdd3;
}
.w-mock__emp {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.w-mock__emp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  border: 1px solid #e2e8f0;
}
.w-mock__emp-avatar--off {
  background: linear-gradient(135deg, #fecdd3, #fda4af);
}
.w-mock__emp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.w-mock__emp-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}
.w-mock__emp-shift {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

.w-mock__ticket--rich {
  padding: 14px 16px 16px;
  border: none;
  background: transparent;
}
.w-mock__ticket-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.w-mock__ticket-subject {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}
.w-mock__ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  margin-bottom: 10px;
}
@media (max-width: 380px) {
  .w-mock__ticket-grid {
    grid-template-columns: 1fr;
  }
}
.w-mock__ticket-k {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 4px;
}
.w-mock__ticket-v {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
}
.w-mock__ticket-foot {
  margin: 0;
  font-size: 0.75rem;
  color: #475569;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.w-mock__invoice--rich {
  padding: 14px 16px 16px;
}
.w-mock__inv-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.w-mock__inv-project {
  margin: 0 0 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}
.w-mock__inv-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}
.w-mock__inv-table {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background: #fff;
}
.w-mock__inv-row {
  display: grid;
  grid-template-columns: 1fr 56px 72px;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: #0f172a;
  border-top: 1px solid #f1f5f9;
}
.w-mock__inv-row--head {
  background: #f8fafc;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  border-top: none;
}
.w-mock__inv-row span:nth-child(2),
.w-mock__inv-row span:nth-child(3) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.w-mock__inv-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid rgba(43, 166, 138, 0.25);
}
.w-mock__inv-total-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #475569;
}
.w-mock__inv-total-amt {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1f7f68;
  letter-spacing: -0.02em;
}

.w-mock__time-report {
  padding: 12px 16px 16px;
}
.w-mock__time-chart {
  display: flex;
  gap: 10px;
  align-items: stretch;
  min-height: 120px;
  margin-bottom: 12px;
}
.w-mock__time-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  padding: 4px 0 20px;
  flex-shrink: 0;
}
.w-mock__time-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 4px 0;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-radius: 12px 12px 0 0;
  border: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.w-mock__time-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}
.w-mock__time-bar {
  width: 100%;
  max-width: 36px;
  min-height: 8px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #3dc5a8 0%, #2ba68a 55%, #1f7f68 100%);
  box-shadow: 0 4px 12px rgba(43, 166, 138, 0.25);
}
.w-mock__time-dow {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #64748b;
}
.w-mock__time-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.w-mock__time-caption {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}
.w-mock__time-sub {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
}
.w-mock__time-total {
  display: flex;
  align-items: center;
  gap: 10px;
}
.w-mock__time-hrs {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f7f68;
  letter-spacing: -0.03em;
}

.w-mock__leave--rich {
  padding: 14px 16px 16px;
}
.w-mock__leave-top {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}
.w-mock__leave-name {
  margin: 0 0 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}
.w-mock__leave-type {
  margin: 0;
  font-size: 0.8125rem;
  color: #475569;
}
.w-mock__leave-line {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  color: #334155;
  line-height: 1.45;
}
.w-mock__leave-k {
  display: inline-block;
  font-weight: 700;
  color: #0f172a;
  margin-right: 6px;
}
.w-mock__leave-status {
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.w-mock__leave-foot {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.w-mock__po {
  padding: 14px 16px 16px;
}
.w-mock__po-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.w-mock__po-vendor {
  margin: 0 0 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}
.w-mock__po-sub {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}
.w-mock__po-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
}
.w-mock__po-lines {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
}
.w-mock__po-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.8125rem;
  color: #0f172a;
  border-top: 1px solid #f1f5f9;
}
.w-mock__po-line:first-child {
  border-top: none;
}
.w-mock__po-qty {
  flex-shrink: 0;
  font-weight: 600;
  color: #475569;
  font-variant-numeric: tabular-nums;
}
.w-mock__po-foot {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #cbd5e1;
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.5;
}
.w-mock__po-foot p {
  margin: 0 0 6px;
}
.w-mock__po-foot p:last-child {
  margin-bottom: 0;
}
.w-mock__po-k {
  font-weight: 700;
  color: #334155;
  margin-right: 6px;
}

/* CTA band */
.w-cta {
  padding: 64px 22px;
  background: linear-gradient(120deg, #0f172a, #134e4a 40%, #0f172a);
  color: #e2e8f0;
}
.w-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.w-cta__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
}
.w-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.w-cta .w-btn--primary { box-shadow: 0 14px 40px rgba(16, 185, 129, 0.35); }
.w-cta .w-btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.35); color: #fff; }

/* Final CTA — premium card (home) */
.w-cta-premium-wrap {
  padding: clamp(2.5rem, 5vw, 4rem) max(22px, env(safe-area-inset-right)) clamp(3rem, 6vw, 4.5rem) max(22px, env(safe-area-inset-left));
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 35%, #f8fafc 100%);
}
.w-cta-premium {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: calc(var(--w-radius-lg) + 6px);
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 55%, rgba(240, 253, 250, 0.65) 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 60px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(43, 166, 138, 0.06);
  text-align: center;
}
.w-cta-premium__title {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #0f172a;
}
.w-cta-premium__sub {
  margin: 0 auto 26px;
  max-width: 52ch;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #475569;
}
.w-cta-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.w-cta-premium--wide {
  max-width: 100%;
  padding: clamp(2.35rem, 5vw, 3.35rem) clamp(1.75rem, 5vw, 3.5rem);
}
.w-cta-premium--wide .w-cta-premium__title {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}
.w-cta-premium--wide .w-cta-premium__sub {
  max-width: 58ch;
}
.w-cta-premium--wide .w-cta-premium__actions {
  gap: 16px;
}
@media (max-width: 540px) {
  .w-cta-premium--wide .w-cta-premium__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .w-cta-premium--wide .w-cta-premium__actions .w-btn {
    width: 100%;
    justify-content: center;
  }
}
.w-cta-premium .w-btn--primary {
  box-shadow: 0 12px 32px rgba(43, 166, 138, 0.35);
}

/* Home — pillar dashboard cards */
.w-section--pillars {
  padding-top: var(--w-space-y);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.w-pillars__head {
  max-width: 72ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.w-pillars__lede {
  margin-bottom: 0;
}
.w-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}
@media (max-width: 1024px) {
  .w-pillars__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}
.w-pillar {
  border-radius: calc(var(--w-radius-lg) + 4px);
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 40px rgba(15, 23, 42, 0.07),
    0 4px 12px rgba(15, 23, 42, 0.04);
  padding: clamp(18px, 2.2vw, 22px);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.w-pillar__title {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-pillar__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}
.w-pillar__kanban {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.w-pillar__col-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
}
.w-pillar__task {
  padding: 8px 8px 9px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.6875rem;
}
.w-pillar__task--accent {
  border-color: rgba(43, 166, 138, 0.45);
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.9) 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(43, 166, 138, 0.08);
}
.w-pillar__task--done {
  opacity: 0.92;
}
.w-pillar__task-t {
  margin: 4px 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}
.w-pillar__task-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 6px;
}
.w-pillar__dots {
  display: flex;
}
.w-pillar__dots span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -6px;
  background: linear-gradient(135deg, #94a3b8, #64748b);
  box-shadow: 0 0 0 1px #e2e8f0;
}
.w-pillar__dots span:nth-child(2) { background: linear-gradient(135deg, #2ba68a, #1f7f68); }
.w-pillar__dots span:nth-child(3) { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.w-pillar__meta {
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748b;
}
.w-pillar__prog {
  height: 5px;
  border-radius: 99px;
  background: #e2e8f0;
  margin-top: 6px;
  overflow: hidden;
}
.w-pillar__prog span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #2ba68a, #34d399);
}
.w-pillar__pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
}
.w-pillar__pill--slate { background: #f1f5f9; color: #334155; border-color: #e2e8f0; }
.w-pillar__pill--teal { background: rgba(43, 166, 138, 0.14); color: #14523d; border-color: rgba(43, 166, 138, 0.25); }
.w-pillar__pill--muted { background: #f8fafc; color: #64748b; border-color: #e2e8f0; }
.w-pillar__pill--violet { background: rgba(124, 58, 237, 0.1); color: #5b21b6; border-color: rgba(124, 58, 237, 0.2); }
.w-pillar__pill--amber { background: rgba(245, 158, 11, 0.14); color: #92400e; border-color: rgba(245, 158, 11, 0.22); }
.w-pillar__pill--rose { background: rgba(225, 29, 72, 0.1); color: #9f1239; border-color: rgba(225, 29, 72, 0.18); }
.w-pillar__pill--sky { background: rgba(59, 130, 246, 0.12); color: #1e40af; border-color: rgba(59, 130, 246, 0.2); }
.w-pillar__project {
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(43, 166, 138, 0.06) 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
}
.w-pillar__project-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.w-pillar__project-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
}
.w-pillar__project-bar {
  height: 8px;
  border-radius: 99px;
  background: #e2e8f0;
  overflow: hidden;
}
.w-pillar__project-bar span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #2ba68a, #5eead4);
}
.w-pillar__project-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
}
.w-pillar__teams-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w-pillar__shift,
.w-pillar__leave {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.w-pillar__shift-name,
.w-pillar__leave-q {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
}
.w-pillar__shift-time,
.w-pillar__leave-a {
  display: block;
  font-size: 0.6875rem;
  color: #64748b;
  margin-top: 2px;
}
.w-pillar__apprec {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid rgba(43, 166, 138, 0.22);
  background: rgba(240, 253, 250, 0.65);
}
.w-pillar__heart {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #2ba68a, #14b8a6);
  color: #fff;
  font-weight: 800;
}
.w-pillar__apprec-t {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
}
.w-pillar__apprec-s {
  display: block;
  font-size: 0.6875rem;
  color: #475569;
  margin-top: 3px;
  line-height: 1.35;
}
.w-pillar__time-mini {
  margin-top: auto;
  padding: 10px 11px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.w-pillar__time-left {
  flex: 1;
  min-width: 0;
}
.w-pillar__time-cap {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 6px;
}
.w-pillar__time-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  max-width: 140px;
}
.w-pillar__time-bars span {
  flex: 1;
  min-width: 6px;
  max-width: 14px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #3dc5a8, #2ba68a);
  align-self: flex-end;
  box-shadow: 0 3px 8px rgba(43, 166, 138, 0.25);
}
.w-pillar__time-total {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.w-pillar__time-hrs {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #1f7f68;
  letter-spacing: -0.02em;
}
.w-pillar__ops-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 380px) {
  .w-pillar__ops-row {
    grid-template-columns: 1fr;
  }
}
.w-pillar__ops-card {
  padding: 9px 10px;
  border-radius: 11px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.w-pillar__ops-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.w-pillar__ops-t {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}
.w-pillar__ops-id {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #1f7f68;
}
.w-pillar__ops-sub {
  margin: 2px 0 6px;
  font-size: 0.6875rem;
  color: #334155;
  line-height: 1.35;
}
.w-pillar__ops-line {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
}
.w-pillar__ops-line2 {
  margin: 4px 0 0;
  font-size: 0.6875rem;
  color: #64748b;
}
.w-pillar__ops-wide {
  flex: 1;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.w-pillar__ops-chiprow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.w-pillar__lead-strip {
  padding-top: 4px;
}
.w-pillar__lead-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
}
.w-pillar__lead-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.w-pillar__lead-bars span {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2ba68a, #5eead4);
  opacity: 0.85;
}

/* FAQ */
.w-faq {
  margin-top: 0;
}
.w-faq .w-section-title {
  margin-bottom: 18px;
}
.w-faq-band {
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-bottom: var(--w-space-y);
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 55%, #f8fafc 100%);
}
.w-faq-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) {
  .w-faq-split {
    grid-template-columns: 1fr;
  }
}
.w-faq-split__intro {
  position: sticky;
  top: 96px;
}
@media (max-width: 900px) {
  .w-faq-split__intro {
    position: static;
  }
}
.w-faq-split__title {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}
.w-faq-split__lede {
  margin: 0 0 20px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #475569;
  max-width: 40ch;
}
.w-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.w-faq__list--premium {
  max-width: none;
}
.w-faq:not(.w-faq-band) .w-faq__list--premium {
  max-width: 800px;
}
.w-faq__item--premium {
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s var(--w-ease-out), box-shadow 0.2s var(--w-ease-out);
}
.w-faq__item--premium[open] {
  border-color: rgba(43, 166, 138, 0.55);
  box-shadow:
    0 0 0 1px rgba(43, 166, 138, 0.12),
    0 12px 28px rgba(15, 23, 42, 0.06);
}
.w-faq__item--premium summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: #0f172a;
  padding: 18px 20px;
}
.w-faq__item--premium summary::-webkit-details-marker {
  display: none;
}
.w-faq__q {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}
.w-faq__toggle {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  color: #64748b;
  transition: background 0.2s var(--w-ease-out), color 0.2s var(--w-ease-out), border-color 0.2s var(--w-ease-out);
}
.w-faq__item--premium[open] .w-faq__toggle {
  background: rgba(43, 166, 138, 0.12);
  border-color: rgba(43, 166, 138, 0.35);
  color: #1f7f68;
}
.w-faq__toggle-plus { display: block; }
.w-faq__toggle-minus { display: none; font-size: 1.35rem; font-weight: 400; }
.w-faq__item--premium[open] .w-faq__toggle-plus { display: none; }
.w-faq__item--premium[open] .w-faq__toggle-minus { display: block; }
.w-faq__answer {
  padding: 0 20px 18px;
  border-top: 1px solid #f1f5f9;
}
.w-faq__answer p {
  margin: 0;
  padding-top: 14px;
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
}

/* Breadcrumb */
.w-site-breadcrumb { max-width: 1200px; margin: 0 auto; padding: 16px 22px 0; }
.w-site-breadcrumb__list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0; padding: 0; font-size: 0.85rem; color: var(--w-muted);
}
.w-site-breadcrumb__item + .w-site-breadcrumb__item::before {
  content: "/";
  margin-right: 8px;
  color: #cbd5e1;
}
.w-site-breadcrumb a { color: var(--w-primary-dark); font-weight: 600; }

/* Footer */
.w-site-footer {
  position: relative;
  /* margin-top here showed body.w-site’s light background as a “white strip”
     between dark CTA bands and the footer — keep spacing inside this block */
  margin-top: 0;
  padding-top: clamp(0.35rem, 1.25vw, 0.85rem);
  color: #cbd5e1;
  background: linear-gradient(180deg, #0b1220 0%, #0f172a 38%, #0f172a 100%);
  overflow: hidden;
}
.w-site-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 280px;
  left: -8%;
  top: -40%;
  background: radial-gradient(ellipse at center, rgba(43, 166, 138, 0.22), transparent 68%);
  pointer-events: none;
}
.w-site-footer__cta {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.35);
}
.w-site-footer__cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.65rem max(20px, env(safe-area-inset-left)) 0.65rem max(20px, env(safe-area-inset-right));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}
.w-site-footer__cta-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #e2e8f0;
  max-width: 52ch;
}
.w-site-footer__main {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.5rem max(20px, env(safe-area-inset-left)) 1.35rem max(20px, env(safe-area-inset-right));
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem 1.5rem;
}
@media (min-width: 720px) and (max-width: 1099px) {
  .w-site-footer__main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 1.25rem;
  }
  .w-site-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
  .w-site-footer__col--features {
    grid-column: span 2;
  }
}
@media (min-width: 1100px) {
  .w-site-footer__main {
    grid-template-columns: minmax(220px, 1.2fr) repeat(6, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
  .w-site-footer__brand {
    grid-column: 1;
    max-width: 20rem;
  }
  .w-site-footer__col--features {
    grid-column: span 2;
  }
}
.w-site-footer__brand {
  max-width: min(34rem, 100%);
}
.w-site-footer__title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  margin: 0 0 0.55rem;
  font-weight: 800;
}
.w-site-footer__col {
  min-width: 0;
}
.w-site-footer__col--legal .w-site-footer__links {
  gap: 6px;
}
.w-site-footer__feat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.25rem;
}
@media (max-width: 480px) {
  .w-site-footer__feat-split {
    grid-template-columns: 1fr;
  }
}
.w-site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.w-site-footer a:not(.w-btn) {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.45;
  transition: color 0.15s ease;
}
.w-site-footer a:not(.w-btn):hover {
  color: #2ba68a;
  text-decoration: none;
}
.w-site-footer__tagline {
  margin: 0.35rem 0 0.85rem;
  max-width: 36ch;
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.55;
}
.w-site-footer__brand-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
}
.w-site-footer__btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f8fafc;
  border: 1px solid rgba(43, 166, 138, 0.55);
  background: rgba(43, 166, 138, 0.12);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.w-site-footer__btn-ghost:hover {
  color: #ecfdf5;
  border-color: #2ba68a;
  background: rgba(43, 166, 138, 0.22);
}
.w-site-footer__link-inline {
  font-size: 0.84rem;
  font-weight: 600;
  color: #cbd5e1;
  text-decoration: none;
}
.w-site-footer__link-inline:hover {
  color: #2ba68a;
}
.w-site-footer__bar {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.85rem max(20px, env(safe-area-inset-left)) 1.1rem max(20px, env(safe-area-inset-right));
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}
@media (min-width: 640px) {
  .w-site-footer__bar {
    flex-direction: row;
    align-items: center;
  }
}
.w-site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
}
.w-site-footer__bar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  align-items: center;
}
.w-site-footer__bar-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
}
.w-site-footer__bar-links a:hover {
  color: #2ba68a;
}
.w-site-logo--footer {
  margin-bottom: 0.15rem;
}
.w-site-logo--footer .w-site-logo__text {
  color: #fff;
}

/* Article / legal prose */
.w-prose { max-width: 720px; margin: 0 auto; }
.w-blog-main { max-width: 720px; min-width: 0; }
.w-prose h2 { margin-top: 2.2rem; font-size: 1.35rem; }
.w-prose p, .w-prose li { color: var(--w-muted); }
.w-prose a { color: var(--w-primary-dark); font-weight: 700; }

/* Legal pages (privacy, terms) */
.w-legal-page { overflow-x: hidden; }
.w-legal-hero {
  padding: clamp(1.5rem, 3.5vw, 2.25rem) max(22px, env(safe-area-inset-right)) clamp(1.75rem, 3.5vw, 2.35rem) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(65% 50% at 12% 0%, rgba(43, 166, 138, 0.12), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}
.w-legal-hero__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.w-legal-hero__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
}
.w-legal-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 3.8vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0b1224;
}
.w-legal-hero__meta {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
}
.w-legal-body {
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 35%, #ffffff 100%);
}
.w-legal-layout {
  display: grid;
  grid-template-columns: minmax(200px, 230px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .w-legal-layout {
    grid-template-columns: 1fr;
  }
}
.w-legal-sidebar {
  position: sticky;
  top: clamp(80px, 12vw, 100px);
  align-self: start;
}
@media (max-width: 900px) {
  .w-legal-sidebar {
    position: relative;
    top: auto;
  }
}
.w-legal-toc__details {
  margin: 0;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
  overflow: hidden;
}
.w-legal-toc__summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--w-ink);
  border-bottom: 1px solid var(--w-line);
}
.w-legal-toc__summary::-webkit-details-marker { display: none; }
@media (min-width: 901px) {
  .w-legal-toc__summary {
    cursor: default;
    pointer-events: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    background: #f8fafc;
  }
}
.w-legal-toc__list {
  list-style: none;
  margin: 0;
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.w-legal-toc__list a {
  display: block;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
}
.w-legal-toc__list a:hover {
  background: rgba(43, 166, 138, 0.1);
  color: var(--w-primary-dark);
}
.w-legal-main { min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.w-legal-card {
  background: #fff;
  border-radius: var(--w-radius-lg);
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
  padding: clamp(20px, 2.8vw, 28px);
}
.w-legal-card__p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--w-muted); }
.w-legal-card--notice .w-legal-card__p { color: #0f172a; }
.w-legal-card--summary {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-color: rgba(43, 166, 138, 0.2);
}
.w-legal-summary__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--w-ink);
}
.w-legal-summary__text { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--w-muted); }
.w-legal-prose { max-width: 100%; }
.w-legal-prose h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1224;
  scroll-margin-top: clamp(88px, 12vw, 112px);
}
.w-legal-prose h3 {
  margin: 1.25rem 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: #1e293b;
}
.w-legal-prose p,
.w-legal-prose li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--w-muted);
}
.w-legal-prose p { margin: 0 0 12px; }
.w-legal-prose ul { margin: 0 0 14px; padding-left: 1.2rem; }
.w-legal-prose li { margin-bottom: 6px; }
.w-legal-prose a {
  color: var(--w-primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(31, 127, 104, 0.35);
  text-underline-offset: 2px;
}
.w-legal-prose a:hover { color: var(--w-primary); }
.w-legal-section { padding-top: 8px; }
.w-legal-section + .w-legal-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eef2f7;
}
.w-legal-num {
  display: inline-block;
  min-width: 1.6em;
  color: var(--w-primary-dark);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.w-legal-card--contact {
  text-align: center;
  border-color: rgba(43, 166, 138, 0.25);
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.5), #fff);
}
.w-legal-contact__title { margin: 0 0 8px; font-size: 1.1rem; font-weight: 800; color: var(--w-ink); }
.w-legal-contact__text { margin: 0 0 14px; font-size: 0.92rem; color: var(--w-muted); line-height: 1.55; }
.w-legal-related {
  padding: 18px 20px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px dashed rgba(148, 163, 184, 0.65);
}
.w-legal-related__title {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}
.w-legal-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.w-legal-related__list a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--w-primary-dark);
  text-decoration: none;
}
.w-legal-related__list a:hover { text-decoration: underline; color: var(--w-primary); }
.w-legal-related__list a[aria-current="page"] {
  color: var(--w-ink);
  text-decoration: underline;
  text-decoration-color: rgba(43, 166, 138, 0.5);
}

/* Pricing page */
.w-price-page { overflow-x: hidden; }
.w-price-page > .w-section {
  padding-top: clamp(2.25rem, 4vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.5rem);
}
.w-price-hero {
  padding: clamp(1.75rem, 4vw, 2.75rem) max(22px, env(safe-area-inset-right)) clamp(2rem, 4vw, 2.75rem) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(80% 60% at 20% 20%, rgba(43, 166, 138, 0.18), transparent 55%),
    linear-gradient(180deg, #0b1220 0%, #0f172a 55%, #0f172a 100%);
  color: #e2e8f0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.w-price-hero__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.w-price-hero__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #f8fafc;
}
.w-price-hero__lede {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: #cbd5e1;
}
.w-price-hero__note {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
}
.w-price-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.w-price-hero .w-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  color: #f8fafc;
}
.w-price-hero .w-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
}
.w-price-section__lede { max-width: 62ch; margin-left: auto; margin-right: auto; text-align: center; }
.w-price-section--band {
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 45%, #ffffff 100%);
}
.w-price-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}
.w-price-page .w-section-title { text-align: center; }
.w-price-page .w-section-lede a {
  color: var(--w-primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(31, 127, 104, 0.35);
  text-underline-offset: 2px;
}
.w-price-page .w-section-lede a:hover {
  color: var(--w-primary);
  text-decoration-color: rgba(43, 166, 138, 0.55);
}
.w-price-tier {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}
.w-price-tier--popular {
  border-color: rgba(43, 166, 138, 0.45);
  box-shadow: 0 18px 48px rgba(43, 166, 138, 0.14);
}
.w-price-tier--best {
  border-color: rgba(43, 166, 138, 0.75);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(43, 166, 138, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, rgba(236, 253, 245, 0.55) 100%);
}
.w-price-tier__ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f766e;
  background: rgba(43, 166, 138, 0.14);
  border: 1px solid rgba(43, 166, 138, 0.35);
}
.w-price-tier__ribbon--best {
  color: #ecfdf5;
  background: linear-gradient(135deg, #1f7f68, var(--w-primary));
  border-color: transparent;
}
.w-price-tier--popular .w-price-tier__name,
.w-price-tier--best .w-price-tier__name {
  padding-right: 6.5rem;
}
.w-price-tier__desc { margin: 0; color: var(--w-muted); font-size: 0.95rem; line-height: 1.55; }
.w-price-tier__price { margin: 0.25rem 0 0; display: flex; align-items: baseline; gap: 2px; flex-wrap: wrap; }
.w-price-tier__amount { font-size: clamp(1.85rem, 3.5vw, 2.15rem); font-weight: 800; color: var(--w-ink); letter-spacing: -0.02em; }
.w-price-tier__period { font-size: 1rem; font-weight: 600; color: #64748b; }
.w-price-tier__billing { margin: 0; font-size: 0.82rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; }
.w-price-tier__list {
  margin: 0;
  padding-left: 18px;
  color: var(--w-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.w-price-tier__actions { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.w-price-compare-scroll {
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: calc(var(--w-radius-lg) + 4px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow: var(--w-shadow-soft);
}
.w-price-compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.w-price-compare thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 14px 12px;
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #64748b;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--w-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.w-price-compare thead th:first-child {
  text-align: left;
  padding-left: 16px;
}
.w-price-compare__plan-col { min-width: 120px; }
.w-price-compare__feature-col { min-width: 200px; text-align: left !important; padding-left: 16px !important; }
.w-price-compare__row--alt td,
.w-price-compare__row--alt th {
  background: rgba(248, 250, 252, 0.85);
}
.w-price-compare th[scope="row"] {
  text-align: left;
  padding: 11px 14px;
  font-weight: 600;
  color: var(--w-ink);
  border-bottom: 1px solid #eef2f7;
  background: #fff;
}
.w-price-compare__row--alt th[scope="row"] { background: rgba(248, 250, 252, 0.85); }
.w-price-compare td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid #eef2f7;
  vertical-align: middle;
}
.w-price-compare__val {
  font-weight: 700;
  color: #334155;
}
.w-price-compare__cell { padding: 8px 10px; }
.w-price-compare__state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.w-price-compare__icon { flex-shrink: 0; }
.w-price-compare__state--yes { color: var(--w-primary); }
.w-price-compare__state--no { color: #dc2626; }
.w-price-compare__state-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}
.w-price-compare__state--yes .w-price-compare__state-text { color: #166534; }
.w-price-compare__state--no .w-price-compare__state-text { color: #991b1b; }
.w-price-compare-footnote {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--w-muted);
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.w-price-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
}
@media (min-width: 800px) {
  .w-price-guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.w-price-guide-card {
  padding: 22px 20px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
}
.w-price-guide-card__title { margin: 0 0 8px; font-size: 1.1rem; font-weight: 800; color: var(--w-ink); }
.w-price-guide-card__body { margin: 0; font-size: 0.95rem; line-height: 1.55; color: var(--w-muted); }
.w-price-excluded {
  max-width: 720px;
  margin: clamp(1rem, 2.5vw, 1.5rem) auto 0;
  padding: 20px 22px;
  border-radius: var(--w-radius-lg);
  background: rgba(254, 242, 242, 0.55);
  border: 1px solid rgba(252, 165, 165, 0.45);
}
.w-price-excluded__list { margin: 0 0 10px; font-size: 0.95rem; line-height: 1.5; color: #7f1d1d; }
.w-price-excluded__copy { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--w-muted); }

/* Legacy pricing grid (unused on new pricing page; kept for safety) */
.w-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.w-price-card {
  padding: 26px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.w-price-card--emphasis {
  border-color: rgba(43, 166, 138, 0.55);
  box-shadow: 0 20px 50px rgba(43, 166, 138, 0.18);
  transform: translateY(-4px);
  background: linear-gradient(180deg, #ffffff 0%, rgba(240, 253, 250, 0.65) 100%);
}
.w-price-card:focus-within {
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
}
.w-price-card__name { margin: 0; font-size: 1.25rem; }
.w-price-card__desc { margin: 0; color: var(--w-muted); font-size: 0.95rem; }
.w-price-card__price { font-size: 1.4rem; font-weight: 800; margin: 0; color: var(--w-ink); }
.w-price-card__list { margin: 0; padding-left: 18px; color: var(--w-muted); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.w-price-card__actions { display: flex; flex-direction: column; gap: 8px; }

/* Forms */
.w-form {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  padding: 28px;
  border-radius: var(--w-radius-lg);
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
}
.w-field { margin-bottom: 18px; }
.w-field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.w-field input, .w-field select, .w-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--w-line);
  font: inherit;
}
.w-field input:focus-visible, .w-field select:focus-visible, .w-field textarea:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.35);
  border-color: rgba(43, 166, 138, 0.55);
}
.w-field__error { color: var(--w-red); font-size: 0.85rem; margin-top: 6px; }
.w-alert {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(43, 166, 138, 0.12);
  border: 1px solid rgba(43, 166, 138, 0.35);
  color: var(--w-primary-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Blog */
.w-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.w-blog-card {
  background: #fff;
  border-radius: var(--w-radius-lg);
  border: 1px solid var(--w-line);
  padding: 22px;
  box-shadow: var(--w-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w-blog-card__date { font-size: 0.8rem; color: var(--w-muted); font-weight: 600; }
.w-blog-card__title { margin: 0; font-size: 1.15rem; }
.w-blog-card__title a { color: inherit; text-decoration: none; }
.w-blog-card__title a:hover { color: var(--w-primary-dark); }
.w-blog-card__excerpt { margin: 0; color: var(--w-muted); flex: 1; }
.w-blog-card__more { font-weight: 700; color: var(--w-primary-dark); text-decoration: none; }

/* Feature page list */
.w-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.w-checklist li {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--w-line);
  font-weight: 600;
}
.w-checklist li::before {
  content: "✓";
  color: var(--w-primary);
  font-weight: 900;
  margin-right: 10px;
}

.w-glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--w-radius-lg);
}

.w-mockup-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

/* Home — product mock showcase (dark band) */
.w-product-showcase {
  position: relative;
  overflow: hidden;
  color: #cbd5e1;
  padding: var(--w-space-y) max(22px, env(safe-area-inset-right)) var(--w-space-y) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(120% 90% at 15% -10%, rgba(43, 166, 138, 0.14), transparent 55%),
    radial-gradient(80% 60% at 100% 20%, rgba(37, 99, 235, 0.1), transparent 50%),
    radial-gradient(60% 50% at 0% 80%, rgba(43, 166, 138, 0.06), transparent 45%),
    linear-gradient(180deg, #0a1020 0%, #0f172a 38%, #0c1222 100%);
}
.w-product-showcase::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 55%;
  background: radial-gradient(ellipse at 50% 0%, rgba(43, 166, 138, 0.08), transparent 70%);
  pointer-events: none;
}
.w-product-showcase__inner {
  position: relative;
  z-index: 1;
}
.w-product-showcase__head {
  max-width: 760px;
}
.w-product-showcase__title {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
}
.w-product-showcase__lede {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.65;
  color: #94a3b8;
  max-width: 62ch;
}
.w-product-showcase__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(32px, 5vw, 48px);
}
.w-product-showcase__grid > .w-mock--featured {
  grid-column: span 6;
}
.w-product-showcase__grid > .w-mock:not(.w-mock--featured):not(.w-mock--wide) {
  grid-column: span 3;
}
.w-product-showcase__grid > .w-mock--wide {
  grid-column: 1 / -1;
  max-width: 720px;
  width: 100%;
  justify-self: center;
}
@media (max-width: 1024px) {
  .w-product-showcase__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .w-product-showcase__grid > .w-mock--featured {
    grid-column: 1 / -1;
  }
  .w-product-showcase__grid > .w-mock:not(.w-mock--featured):not(.w-mock--wide) {
    grid-column: span 3;
  }
  .w-product-showcase__grid > .w-mock--wide {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
  }
}
@media (max-width: 600px) {
  .w-product-showcase__grid {
    grid-template-columns: 1fr;
  }
  .w-product-showcase__grid > .w-mock,
  .w-product-showcase__grid > .w-mock--featured,
  .w-product-showcase__grid > .w-mock--wide {
    grid-column: 1 / -1;
  }
  .w-product-showcase .w-mock--featured {
    min-height: 0;
  }
}
.w-product-showcase .w-mock {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.98);
  border-radius: calc(var(--w-radius-lg) + 2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(15, 23, 42, 0.1),
    0 4px 12px rgba(15, 23, 42, 0.05);
}
.w-product-showcase .w-mock--featured {
  min-height: 280px;
}
.w-product-showcase .w-mock__chrome {
  padding: 12px 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
}

.w-blog-prose .w-article-body > h2:first-of-type {
  margin-top: 0;
}
.w-article-body h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.w-article-body p {
  color: var(--w-muted);
}

/* Blog article layout */
.w-blog-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 900px) {
  .w-blog-layout { grid-template-columns: 1fr; }
}
.w-blog-aside {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
}
.w-blog-aside h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--w-muted);
  margin: 0 0 14px;
}
.w-blog-aside ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.w-blog-aside a {
  font-weight: 700;
  color: var(--w-primary-dark);
  text-decoration: none;
  font-size: 0.95rem;
}
.w-blog-aside a:hover { text-decoration: underline; }

.w-blog-footer-cta {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--w-line);
}
.w-blog-footer-cta .w-cta {
  border-radius: var(--w-radius-lg);
}

/* Blog article — longform layout */
.w-blog-post-page {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.w-blog-post-page__inner {
  max-width: 1200px;
}
.w-blog-layout--article {
  max-width: 1200px;
  margin-top: 28px;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(24px, 3vw, 40px);
}
.w-blog-main--article {
  max-width: none;
  min-width: 0;
}
.w-blog-prose {
  max-width: 72ch;
  font-size: 1.0625rem;
  line-height: 1.75;
}
.w-blog-prose p {
  margin-bottom: 1.15em;
}
.w-blog-prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.65em;
  scroll-margin-top: 96px;
}
.w-blog-prose h3 {
  margin-top: 1.75rem;
  scroll-margin-top: 96px;
}
.w-blog-prose ul,
.w-blog-prose ol {
  margin: 0 0 1.15em 1.25em;
  color: var(--w-muted);
}
.w-blog-prose li {
  margin-bottom: 0.4em;
}
.w-blog-post__header {
  max-width: 72ch;
  margin-bottom: 4px;
}
.w-blog-post__eyebrow {
  margin: 0 0 12px;
}
.w-blog-post__h1 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--w-ink);
}
.w-blog-post__lede {
  margin: 0 0 18px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--w-muted);
}
.w-blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--w-muted);
  margin: 0 0 20px;
}
.w-blog-post__meta-dot {
  opacity: 0.55;
}
.w-blog-post__figure {
  margin: 0 0 28px;
  border-radius: var(--w-radius-lg);
  overflow: hidden;
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
  background: #f8fafc;
}
.w-blog-post__img {
  display: block;
  width: 100%;
  height: auto;
}
.w-blog-toc {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid var(--w-line);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.w-blog-toc__title {
  margin: 0 0 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--w-muted);
}
.w-blog-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w-blog-toc__list a {
  color: var(--w-primary-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.w-blog-toc__list a:hover {
  text-decoration: underline;
}
@media (min-width: 901px) {
  .w-blog-toc--mobile {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .w-blog-sidebar-stack > .w-blog-toc--sidebar {
    display: none !important;
  }
}
.w-blog-aside--article {
  top: 88px;
}
.w-blog-sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.w-blog-sidecard {
  padding: 18px 16px;
  border-radius: var(--w-radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--w-line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.w-blog-sidecard__h {
  margin: 0 0 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  color: var(--w-muted);
}
.w-blog-sidecard__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.w-blog-sidecard__list a {
  font-weight: 700;
  color: var(--w-primary-dark);
  text-decoration: none;
  font-size: 0.92rem;
}
.w-blog-sidecard__list a:hover {
  text-decoration: underline;
}
.w-blog-sidecard__more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}
.w-blog-side-cta {
  padding: 18px 16px;
  border-radius: var(--w-radius-lg);
  border: 1px solid rgba(43, 166, 138, 0.28);
  background: linear-gradient(135deg, rgba(43, 166, 138, 0.08), #ffffff 55%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.w-blog-side-cta__title {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
}
.w-blog-side-cta__sub {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--w-muted);
  line-height: 1.45;
}
.w-article-pullquote {
  margin: 2rem 0;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid #2ba68a;
  border-radius: 0 var(--w-radius-lg) var(--w-radius-lg) 0;
  background: linear-gradient(90deg, rgba(43, 166, 138, 0.1), transparent);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
}
.w-blog-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--w-line);
}
.w-blog-related__h {
  margin: 0 0 18px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.w-blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) {
  .w-blog-related__grid {
    grid-template-columns: 1fr;
  }
}
.w-blog-related__card {
  padding: 18px 16px;
  border-radius: var(--w-radius-lg);
  border: 1px solid var(--w-line);
  background: #fff;
  box-shadow: var(--w-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w-blog-related__cat {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2ba68a;
}
.w-blog-related__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 800;
}
.w-blog-related__title a {
  color: inherit;
  text-decoration: none;
}
.w-blog-related__title a:hover {
  color: var(--w-primary-dark);
}
.w-blog-related__excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  color: var(--w-muted);
  line-height: 1.5;
}
.w-blog-related__meta {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--w-muted);
}
.w-blog-related__dot {
  margin: 0 6px;
}
.w-blog-post-nav {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--w-line);
}
.w-blog-post-nav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.w-blog-post-nav__cell--next {
  text-align: right;
}
.w-blog-post-nav__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--w-muted);
  margin-bottom: 6px;
}
.w-blog-post-nav__link {
  font-weight: 800;
  color: var(--w-primary-dark);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.3;
}
.w-blog-post-nav__link:hover {
  text-decoration: underline;
}
.w-blog-article-cta {
  margin-top: 2rem;
}
.w-blog-article-cta__inner {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: calc(var(--w-radius-lg) + 4px);
  border: 1px solid rgba(43, 166, 138, 0.22);
  background: linear-gradient(145deg, #ffffff 0%, rgba(240, 253, 250, 0.75) 100%);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
}
.w-blog-article-cta__title {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0f172a;
}
.w-blog-article-cta__sub {
  margin: 0 0 20px;
  color: var(--w-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 60ch;
}
.w-blog-article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.w-blog-article-cta__actions .w-btn--primary {
  background: linear-gradient(135deg, #1f8f78, #2ba68a);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 28px rgba(43, 166, 138, 0.45);
}
.w-blog-article-cta__actions .w-btn--ghost {
  border-color: #cbd5e1;
  color: #0f172a;
  font-weight: 700;
  background: #fff;
}
.w-muted { color: var(--w-muted); }

/* Book a demo — conversion page */
.w-demo-page { overflow-x: hidden; }
.w-demo-hero {
  padding: clamp(1.5rem, 3.5vw, 2.25rem) max(22px, env(safe-area-inset-right)) clamp(1.75rem, 3.5vw, 2.5rem) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(70% 55% at 12% 18%, rgba(43, 166, 138, 0.14), transparent 52%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 40%, #f8fafc 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}
.w-demo-hero__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.w-demo-hero__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0b1224;
}
.w-demo-hero__lede {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2.1vw, 1.125rem);
  line-height: 1.6;
  color: var(--w-muted);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}
.w-demo-hero__chips {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.w-demo-hero__chips li {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f172a;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.w-demo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.w-demo-hero .w-btn--ghost {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--w-ink);
}
.w-demo-section { padding-top: clamp(2rem, 4vw, 2.75rem); padding-bottom: clamp(2rem, 4vw, 2.75rem); }
.w-demo-section--band {
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 50%, #ffffff 100%);
}
.w-demo-section__title { text-align: center; margin-left: auto; margin-right: auto; }
.w-demo-section__lede { text-align: center; margin-left: auto; margin-right: auto; max-width: 58ch; }
.w-demo-main-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}
@media (max-width: 960px) {
  .w-demo-main-grid { grid-template-columns: 1fr; }
}
.w-demo-expect {
  padding: 24px 22px;
  border-radius: calc(var(--w-radius-lg) + 2px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, #f8fafc 100%);
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
}
.w-demo-expect__title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--w-ink);
}
.w-demo-expect__intro { margin: 0 0 16px; color: var(--w-muted); font-size: 0.96rem; line-height: 1.6; }
.w-demo-benefits {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.w-demo-benefit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.w-demo-benefit__label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--w-primary-dark);
}
.w-demo-benefit__text { font-size: 0.9rem; line-height: 1.5; color: var(--w-muted); margin: 0; }
.w-demo-expect__note {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
  font-weight: 600;
}
.w-demo-expect__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
}
.w-demo-expect__links a { color: var(--w-primary-dark); text-decoration: none; }
.w-demo-expect__links a:hover { text-decoration: underline; color: var(--w-primary); }
.w-demo-form-wrap { min-width: 0; }
.w-demo-form-card {
  background: #fff;
  border-radius: calc(var(--w-radius-lg) + 4px);
  border: 1px solid var(--w-line);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
  padding: clamp(22px, 3vw, 30px);
}
.w-demo-form-card__title {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--w-ink);
}
.w-demo-form-card__sub { margin: 0 0 18px; color: var(--w-muted); font-size: 0.95rem; line-height: 1.5; }
form#demo-form.w-demo-form.w-form {
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  scroll-margin-top: clamp(88px, 12vw, 112px);
}
.w-demo-form .w-field { margin-bottom: 20px; }
.w-demo-form .w-field label { font-size: 0.88rem; margin-bottom: 7px; }
.w-demo-form .w-field input,
.w-demo-form .w-field select,
.w-demo-form .w-field textarea {
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.w-demo-form .w-field input:hover,
.w-demo-form .w-field select:hover,
.w-demo-form .w-field textarea:hover {
  border-color: #94a3b8;
}
.w-demo-form .w-field input:focus-visible,
.w-demo-form .w-field select:focus-visible,
.w-demo-form .w-field textarea:focus-visible {
  outline: none;
  border-color: var(--w-primary);
  box-shadow: 0 0 0 3px rgba(43, 166, 138, 0.28);
}
.w-demo-form .w-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.w-demo-form .w-field--invalid input,
.w-demo-form .w-field--invalid select,
.w-demo-form .w-field--invalid textarea {
  border-color: rgba(220, 38, 38, 0.65);
  background: rgba(254, 242, 242, 0.55);
}
.w-demo-form .w-field--invalid input:focus-visible,
.w-demo-form .w-field--invalid select:focus-visible,
.w-demo-form .w-field--invalid textarea:focus-visible {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}
.w-demo-form .w-field__error {
  margin-top: 7px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(254, 242, 242, 0.9);
  border: 1px solid rgba(252, 165, 165, 0.7);
  color: #991b1b;
  font-weight: 600;
}
.w-demo-form-alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.45;
}
.w-demo-form-alert--error {
  background: rgba(254, 242, 242, 0.95);
  border: 1px solid rgba(252, 165, 165, 0.75);
  color: #7f1d1d;
}
.w-demo-form-footnote {
  margin: 12px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #64748b;
  text-align: center;
}
.w-demo-success {
  padding: 20px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.95), rgba(240, 253, 250, 0.75));
  border: 1px solid rgba(43, 166, 138, 0.45);
  text-align: center;
}
.w-demo-success__title { margin: 0 0 8px; font-size: 1.2rem; font-weight: 800; color: #0f172a; }
.w-demo-success__body { margin: 0 0 16px; color: var(--w-muted); font-size: 0.95rem; line-height: 1.55; }
.w-demo-success__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.w-demo-cover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
}
.w-demo-cover-card {
  padding: 20px 18px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w-demo-cover-card__title { margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--w-ink); }
.w-demo-cover-card__body { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--w-muted); flex: 1; }
.w-demo-cover-card__links { margin: 4px 0 0; font-size: 0.86rem; font-weight: 700; line-height: 1.45; }
.w-demo-cover-card__links a { color: var(--w-primary-dark); text-decoration: none; }
.w-demo-cover-card__links a:hover { text-decoration: underline; color: var(--w-primary); }
.w-demo-steps {
  list-style: none;
  margin: clamp(1rem, 2.5vw, 1.5rem) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1000px;
}
.w-demo-step {
  display: flex;
  gap: 14px;
  padding: 18px 16px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid var(--w-line);
  box-shadow: var(--w-shadow-soft);
}
.w-demo-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #1f7f68, var(--w-primary));
}
.w-demo-step__title { margin: 0 0 4px; font-size: 1rem; font-weight: 800; color: var(--w-ink); }
.w-demo-step__text { margin: 0; font-size: 0.9rem; line-height: 1.5; color: var(--w-muted); }
.w-demo-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
}
.w-demo-explore-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid var(--w-line);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--w-shadow-soft);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.w-demo-explore-card:hover {
  border-color: rgba(43, 166, 138, 0.45);
  transform: translateY(-2px);
}
.w-demo-explore-card__title { font-size: 1rem; font-weight: 800; color: var(--w-ink); }
.w-demo-explore-card__hint { font-size: 0.86rem; color: var(--w-muted); }

.w-field label .w-req { color: var(--w-red); font-weight: 800; margin-left: 2px; }

.w-mock--hero,
.w-mock--hero_features {
  animation: w-float-soft 7s ease-in-out infinite;
}
@keyframes w-float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .w-mock--hero,
  .w-mock--hero_features { animation: none; }
}

/* ——— Features index: module explorer (/website/features) ——— */
.w-features-page {
  overflow-x: hidden;
}
.w-features-explorer #cat-work,
.w-features-explorer #cat-people,
.w-features-explorer #cat-clients,
.w-features-explorer #cat-finance,
.w-features-explorer #cat-knowledge,
.w-features-explorer #cat-platform,
.w-features-explorer #module-map,
.w-features-explorer #compare-workflows,
.w-features-explorer #starting-point {
  scroll-margin-top: clamp(120px, 16vw, 152px);
}
.w-features-explorer .w-faq-band {
  scroll-margin-top: clamp(120px, 16vw, 152px);
}

.w-fexplore-intro {
  padding: clamp(1.5rem, 3vw, 2.25rem) max(22px, env(safe-area-inset-right)) clamp(1.25rem, 2.5vw, 1.75rem) max(22px, env(safe-area-inset-left));
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #e8edf3;
}
.w-fexplore-intro__inner {
  max-width: 820px;
}
.w-fexplore-intro__title {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.12;
  color: #0b1224;
}
.w-fexplore-intro__lede {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.62;
  color: #475569;
  max-width: 62ch;
}
.w-fexplore-intro__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.w-fexplore-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s var(--w-ease-out), color 0.2s var(--w-ease-out), box-shadow 0.2s var(--w-ease-out);
}
.w-fexplore-pill:hover {
  border-color: rgba(43, 166, 138, 0.45);
  color: #1f7f68;
  box-shadow: 0 2px 10px rgba(43, 166, 138, 0.1);
}
.w-fexplore-pill:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.35);
  outline-offset: 2px;
}
.w-fexplore-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.w-fexplore-sticky-wrap {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8edf3;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}
.w-fexplore-sticky__inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0 12px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.w-fexplore-sticky__inner::-webkit-scrollbar {
  height: 4px;
}
.w-fexplore-sticky__inner::-webkit-scrollbar-thumb {
  background: rgba(43, 166, 138, 0.35);
  border-radius: 99px;
}
.w-fexplore-sticky__link {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid transparent;
  transition: background 0.2s var(--w-ease-out), color 0.2s var(--w-ease-out), border-color 0.2s var(--w-ease-out);
}
.w-fexplore-sticky__link:hover {
  background: rgba(43, 166, 138, 0.12);
  color: #166a57;
  border-color: rgba(43, 166, 138, 0.25);
}
.w-fexplore-sticky__link:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.35);
  outline-offset: 2px;
}
@media (min-width: 1100px) {
  .w-fexplore-sticky__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
  }
}

.w-features-explorer .w-feature-card {
  min-height: 280px;
}

.w-modmap {
  padding: clamp(2.5rem, 5vw, 3.5rem) max(22px, env(safe-area-inset-right)) clamp(2.5rem, 5vw, 3.5rem) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(80% 55% at 50% 0%, rgba(43, 166, 138, 0.1), transparent 58%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
}
.w-modmap__lede {
  margin-bottom: 28px;
}
.w-modmap__diagram {
  max-width: 1100px;
  margin: 0 auto;
}
.w-modmap__hub {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  min-height: 88px;
  max-width: 420px;
  padding: 20px 28px;
  border-radius: var(--w-radius-lg);
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf9 55%, #e6f7f2 100%);
  border: 1px solid rgba(43, 166, 138, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 40px rgba(43, 166, 138, 0.12);
}
.w-modmap__hub-ring {
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--w-radius-lg) + 4px);
  border: 1px dashed rgba(43, 166, 138, 0.35);
  pointer-events: none;
}
.w-modmap__hub-label {
  position: relative;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-modmap__clusters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
@media (min-width: 900px) {
  .w-modmap__clusters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.w-modmap__cluster {
  padding: 18px 18px 16px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
  border-top: 3px solid var(--modmap-accent, #2ba68a);
}
.w-modmap__cluster--work { --modmap-accent: #2ba68a; }
.w-modmap__cluster--people { --modmap-accent: #22c55e; }
.w-modmap__cluster--clients { --modmap-accent: #a855f7; }
.w-modmap__cluster--finance { --modmap-accent: #3b82f6; }
.w-modmap__cluster--collab { --modmap-accent: #eab308; }
.w-modmap__cluster--platform { --modmap-accent: #f43f5e; }
.w-modmap__cluster-title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-modmap__cluster-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.w-modmap__cluster-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.15s var(--w-ease-out);
}
.w-modmap__cluster-list a:hover {
  color: #166a57;
}
.w-modmap__cluster-list span {
  font-size: 0.875rem;
  color: #64748b;
}

.w-fexplore-compare {
  padding: clamp(2.5rem, 5vw, 3.5rem) max(22px, env(safe-area-inset-right)) clamp(2.5rem, 5vw, 3.5rem) max(22px, env(safe-area-inset-left));
  background: #fff;
}
.w-fexplore-compare .w-features-section-title {
  margin-bottom: 22px;
}
.w-fexplore-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 720px) {
  .w-fexplore-compare__grid {
    grid-template-columns: 1fr;
  }
}
.w-fexplore-compare__col {
  padding: 22px 24px;
  border-radius: var(--w-radius-lg);
  border: 1px solid #e8edf3;
}
.w-fexplore-compare__col--before {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.w-fexplore-compare__col--after {
  background: linear-gradient(160deg, rgba(43, 166, 138, 0.08), rgba(99, 102, 241, 0.04));
  border-color: rgba(43, 166, 138, 0.22);
}
.w-fexplore-compare__col-title {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-fexplore-compare__list {
  margin: 0;
  padding-left: 1.15rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.w-fexplore-compare__list li::marker {
  color: #94a3b8;
}
.w-fexplore-compare__col--after .w-fexplore-compare__list li::marker {
  color: #2ba68a;
}

.w-fexplore-start {
  padding: clamp(2.35rem, 4.5vw, 3.25rem) max(22px, env(safe-area-inset-right)) clamp(2.35rem, 4.5vw, 3.25rem) max(22px, env(safe-area-inset-left));
  background: #f8fafc;
  border-top: 1px solid #e8edf3;
}
.w-fexplore-start__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 720px) {
  .w-fexplore-start__grid {
    grid-template-columns: 1fr;
  }
}
.w-fexplore-start__card {
  padding: 22px 22px 18px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.w-fexplore-start__card-title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-fexplore-start__card-body {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
  flex: 1;
}
.w-fexplore-start__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w-fexplore-start__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #166a57;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.w-fexplore-start__links a::after {
  content: "→";
  font-size: 0.85rem;
  opacity: 0.65;
}
.w-fexplore-start__links a:hover {
  text-decoration: underline;
}

.w-features-section-title {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0b1224;
}
.w-features-section-lede {
  margin: 0 0 26px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #475569;
  max-width: 68ch;
}

.w-features-cat {
  padding: clamp(2.35rem, 4.5vw, 3.25rem) max(22px, env(safe-area-inset-right)) clamp(2.35rem, 4.5vw, 3.25rem) max(22px, env(safe-area-inset-left));
  background: #f8fafc;
}
.w-features-cat--alt {
  background: #fff;
}

/* ——— Integrations page (/website/integrations) ——— */
.w-int-page {
  overflow-x: hidden;
}
.w-int-page #integration-workflows,
.w-int-page #integration-daily-ops,
.w-int-page #integration-connected,
.w-int-page #integration-by-workflow {
  scroll-margin-top: clamp(88px, 14vw, 120px);
}
.w-int-page .w-faq-band {
  scroll-margin-top: clamp(88px, 14vw, 120px);
}

.w-int-hero {
  padding: clamp(1.75rem, 4vw, 2.75rem) max(22px, env(safe-area-inset-right)) clamp(2rem, 4vw, 3rem) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(90% 80% at 90% 0%, rgba(43, 166, 138, 0.12), transparent 55%),
    radial-gradient(70% 60% at 0% 50%, rgba(99, 102, 241, 0.07), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e8edf3;
}
.w-int-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .w-int-hero__grid {
    grid-template-columns: 1fr;
  }
}
.w-int-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.12;
  color: #0b1224;
}
.w-int-hero__lede {
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.55vw, 1.08rem);
  line-height: 1.62;
  color: #475569;
  max-width: 56ch;
}
.w-int-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.w-int-hero__note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
  max-width: 52ch;
}

/* Orbit map */
.w-int-orbit {
  --orbit-r: clamp(128px, 36vw, 198px);
  --n: 9;
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-inline: auto;
}
.w-int-orbit__rings {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(43, 166, 138, 0.22);
  background: radial-gradient(circle at 50% 50%, rgba(43, 166, 138, 0.06), transparent 62%);
  pointer-events: none;
}
.w-int-orbit__rings::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.w-int-orbit__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(200px, 46%);
  padding: 22px 18px;
  border-radius: var(--w-radius-lg);
  background: linear-gradient(160deg, #ffffff 0%, #f0fdf9 45%, #e6f7f2 100%);
  border: 1px solid rgba(43, 166, 138, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 44px rgba(43, 166, 138, 0.18);
}
.w-int-orbit__hub-kicker {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #166a57;
  margin-bottom: 6px;
}
.w-int-orbit__hub-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-int-orbit__sat {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(118px, 30vw);
  padding: 10px 10px 9px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transform:
    rotate(calc(-90deg + (360deg / var(--n)) * var(--i)))
    translateY(calc(-1 * var(--orbit-r)))
    rotate(calc(90deg - (360deg / var(--n)) * var(--i)));
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.w-int-orbit__sat:hover {
  border-color: rgba(43, 166, 138, 0.45);
  box-shadow: 0 12px 30px rgba(43, 166, 138, 0.14);
}
.w-int-orbit__sat-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #166a57;
  background: rgba(43, 166, 138, 0.14);
  border-radius: 8px;
  padding: 3px 7px;
}
.w-int-orbit__sat-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.w-int-orbit__sat-tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
@media (max-width: 640px) {
  .w-int-orbit {
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
  }
  .w-int-orbit__rings {
    display: none;
  }
  .w-int-orbit__hub {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 360px;
    margin-bottom: 4px;
  }
  .w-int-orbit__sat {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 360px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .w-int-orbit__sat-name {
    flex: 1;
    min-width: 0;
  }
}

.w-int-section__lede {
  max-width: 68ch;
}
.w-int-section--alt {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.w-int-grid--premium {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .w-int-grid--premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .w-int-grid--premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

a.w-int-card--premium {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.w-int-card--premium {
  padding: 22px 22px 20px;
  border-radius: var(--w-radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s var(--w-ease-out), box-shadow 0.2s var(--w-ease-out), border-color 0.2s var(--w-ease-out);
}
a.w-int-card--premium:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 166, 138, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 48px rgba(43, 166, 138, 0.12),
    0 8px 24px rgba(15, 23, 42, 0.06);
}
a.w-int-card--premium:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.45);
  outline-offset: 3px;
}
.w-int-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.w-int-card__badge--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #166a57;
  background: linear-gradient(145deg, rgba(43, 166, 138, 0.18), rgba(43, 166, 138, 0.06));
  border: 1px solid rgba(43, 166, 138, 0.25);
}
.w-int-card--premium .w-int-card__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-int-card--premium .w-int-card__body {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
}
.w-int-card__meta {
  margin: 0 0 6px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #64748b;
}
.w-int-card__meta-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2px;
}
.w-int-card__status {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 6px;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.w-int-card__status--module {
  background: rgba(43, 166, 138, 0.14);
  color: #166a57;
}
.w-int-card__status--workflow {
  background: rgba(34, 197, 94, 0.14);
  color: #166534;
}
.w-int-card__status--config {
  background: rgba(234, 179, 8, 0.15);
  color: #854d0e;
}
.w-int-card__status--available {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}
.w-int-card__cta {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 700;
  color: #166a57;
}

.w-int-steps {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) max(22px, env(safe-area-inset-right)) clamp(2.25rem, 4.5vw, 3.25rem) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(43, 166, 138, 0.08), transparent 55%),
    #f8fafc;
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
}
.w-int-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
@media (max-width: 900px) {
  .w-int-steps__list {
    grid-template-columns: 1fr;
  }
}
.w-int-steps__item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-right: 1px dashed rgba(148, 163, 184, 0.45);
}
.w-int-steps__item:last-child {
  border-right: none;
}
@media (max-width: 900px) {
  .w-int-steps__item {
    border-right: none;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
    padding: 16px 0;
  }
  .w-int-steps__item:last-child {
    border-bottom: none;
  }
}
.w-int-steps__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(145deg, #2ba68a, #34d399);
  box-shadow: 0 8px 20px rgba(43, 166, 138, 0.35);
}
.w-int-steps__card {
  flex: 1;
  min-width: 0;
  padding: 18px 18px 16px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}
.w-int-steps__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-int-steps__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
}

.w-int-split__mock {
  min-width: 0;
}
.w-int-mock {
  border-radius: calc(var(--w-radius-lg) + 6px);
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.w-int-mock__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.85);
  background: rgba(15, 23, 42, 0.65);
}
.w-int-mock__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #334155;
}
.w-int-mock__dot:first-child {
  background: #f87171;
}
.w-int-mock__dot:nth-child(2) {
  background: #fbbf24;
}
.w-int-mock__dot:nth-child(3) {
  background: #4ade80;
}
.w-int-mock__chrome-title {
  margin-left: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.02em;
}
.w-int-mock__board {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.w-int-mock__row {
  display: grid;
  gap: 10px;
}
.w-int-mock__row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 640px) {
  .w-int-mock__row--three {
    grid-template-columns: 1fr;
  }
}
.w-int-mock__row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 640px) {
  .w-int-mock__row--two {
    grid-template-columns: 1fr;
  }
}
.w-int-mock__tile {
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(71, 85, 105, 0.55);
  border-radius: 14px;
  padding: 12px 12px 11px;
}
.w-int-mock__tile--accent {
  border-color: rgba(43, 166, 138, 0.45);
  box-shadow: 0 0 0 1px rgba(43, 166, 138, 0.12);
}
.w-int-mock__tile-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.w-int-mock__tile-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.01em;
}
.w-int-mock__tile-body {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #94a3b8;
}
.w-int-mock__chip {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.w-int-mock__chip--synced {
  background: rgba(43, 166, 138, 0.2);
  color: #6ee7b7;
}
.w-int-mock__chip--updated {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}
.w-int-mock__chip--routed {
  background: rgba(234, 179, 8, 0.18);
  color: #fcd34d;
}
.w-int-mock__chip--assigned {
  background: rgba(168, 85, 247, 0.2);
  color: #d8b4fe;
}
.w-int-mock__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}
.w-int-mock__foot-pill {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(71, 85, 105, 0.7);
}
.w-int-mock__foot-note {
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.4;
  flex: 1;
  min-width: 200px;
}

.w-int-bullets {
  margin: 0 0 18px;
  padding-left: 1.15rem;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.w-int-bullets li::marker {
  color: #2ba68a;
}
.w-int-inline-links {
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
}
.w-int-inline-links a {
  font-weight: 700;
  color: #166a57;
  text-decoration: none;
}
.w-int-inline-links a:hover {
  text-decoration: underline;
}

.w-int-usegrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 720px) {
  .w-int-usegrid {
    grid-template-columns: 1fr;
  }
}
.w-int-usecard {
  padding: 22px 22px 18px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.w-int-usecard:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 166, 138, 0.25);
  box-shadow: 0 14px 36px rgba(43, 166, 138, 0.1);
}
.w-int-usecard__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-int-usecard__body {
  margin: 0 0 14px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #475569;
  flex: 1;
}
.w-int-usecard__tags {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.w-int-usecard__tags li {
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.w-int-usecard__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #166a57;
  text-decoration: none;
}
.w-int-usecard__link:hover {
  text-decoration: underline;
}

/* Integrations — premium dark CTA */
.w-cta-premium-wrap--dark {
  padding: clamp(2.75rem, 5vw, 4.25rem) max(22px, env(safe-area-inset-right)) clamp(3rem, 6vw, 4.75rem) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(90% 55% at 50% 100%, rgba(43, 166, 138, 0.22), transparent 58%),
    linear-gradient(180deg, #070b14 0%, #0f172a 45%, #0a1020 100%);
}
.w-cta-premium--dark {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.75rem, 5vw, 3.25rem);
  border-radius: calc(var(--w-radius-lg) + 10px);
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.55) 0%, rgba(15, 23, 42, 0.92) 55%, rgba(10, 18, 32, 0.98) 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 28px 80px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(43, 166, 138, 0.12);
  text-align: center;
}
.w-cta-premium--dark .w-cta-premium__title {
  color: #f8fafc;
}
.w-cta-premium--dark .w-cta-premium__sub {
  color: #94a3b8;
}
.w-cta-premium--dark .w-btn--primary {
  box-shadow: 0 14px 40px rgba(43, 166, 138, 0.45);
}
.w-cta-premium--dark .w-btn--outline-dark {
  background: transparent;
  color: #e2e8f0;
  border-color: rgba(226, 232, 240, 0.4);
}
.w-cta-premium--dark .w-btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(226, 232, 240, 0.65);
  color: #fff;
}

/* ——— Industries hub (/website/industries) ——— */
.w-ind-page {
  overflow-x: hidden;
}
.w-ind-page [id^="ind-"],
.w-ind-page #industry-playbooks,
.w-ind-page #industries-how {
  scroll-margin-top: clamp(88px, 14vw, 120px);
}
.w-ind-page .w-faq-band {
  scroll-margin-top: clamp(88px, 14vw, 120px);
}

.w-ind-hero {
  padding: clamp(1.75rem, 4vw, 2.75rem) max(22px, env(safe-area-inset-right)) clamp(2rem, 4vw, 3rem) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(85% 70% at 15% 20%, rgba(43, 166, 138, 0.11), transparent 52%),
    radial-gradient(60% 50% at 95% 60%, rgba(99, 102, 241, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e8edf3;
}
.w-ind-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .w-ind-hero__grid {
    grid-template-columns: 1fr;
  }
}
.w-ind-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3.1vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.12;
  color: #0b1224;
}
.w-ind-hero__lede {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.62;
  color: #475569;
  max-width: 56ch;
}
.w-ind-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.w-ind-hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.w-ind-hero__pill:hover {
  border-color: rgba(43, 166, 138, 0.4);
  color: #166a57;
  box-shadow: 0 2px 10px rgba(43, 166, 138, 0.1);
}
.w-ind-hero__pill:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.35);
  outline-offset: 2px;
}
.w-ind-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.w-ind-hero__note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
  max-width: 52ch;
}

/* Industries hub diagram (6 nodes) */
.w-ind-hub {
  --orbit-r: clamp(118px, 34vw, 176px);
  --n: 6;
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  margin-inline: auto;
}
.w-ind-hub__rings {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px dashed rgba(43, 166, 138, 0.22);
  background: radial-gradient(circle at 50% 50%, rgba(43, 166, 138, 0.07), transparent 65%);
  pointer-events: none;
}
.w-ind-hub__rings::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.w-ind-hub__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 20px 18px;
  width: min(168px, 42%);
  border-radius: var(--w-radius-lg);
  background: linear-gradient(160deg, #ffffff 0%, #f0fdf9 50%, #e6f7f2 100%);
  border: 1px solid rgba(43, 166, 138, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 40px rgba(43, 166, 138, 0.16);
}
.w-ind-hub__kicker {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #166a57;
  margin-bottom: 6px;
}
.w-ind-hub__title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.w-ind-hub__node {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(108px, 30vw);
  padding: 10px 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
  text-align: center;
  text-decoration: none;
  color: #0f172a;
  transform:
    rotate(calc(-90deg + (360deg / var(--n)) * var(--i)))
    translateY(calc(-1 * var(--orbit-r)))
    rotate(calc(90deg - (360deg / var(--n)) * var(--i)));
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.w-ind-hub__node:hover {
  border-color: rgba(43, 166, 138, 0.45);
  box-shadow: 0 12px 30px rgba(43, 166, 138, 0.14);
}
.w-ind-hub__node:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.45);
  outline-offset: 2px;
}
.w-ind-hub__node-text {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .w-ind-hub {
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
  }
  .w-ind-hub__rings {
    display: none;
  }
  .w-ind-hub__center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 320px;
  }
  .w-ind-hub__node {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 320px;
  }
}

.w-ind-band {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}
.w-ind-band__lede {
  max-width: 72ch;
}
.w-ind-band__footer {
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  font-size: 0.95rem;
  color: #64748b;
  text-align: center;
}
.w-ind-band__footer a {
  font-weight: 700;
  color: #166a57;
  text-decoration: none;
}
.w-ind-band__footer a:hover {
  text-decoration: underline;
}

.w-industry-grid--hub {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .w-industry-grid--hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .w-industry-grid--hub {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.w-industry-grid__cell {
  min-width: 0;
}

.w-industry-card--enhanced {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 22px 20px;
  border-radius: var(--w-radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--ind-accent, #2ba68a);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s var(--w-ease-out), box-shadow 0.2s var(--w-ease-out), border-color 0.2s var(--w-ease-out);
}
.w-industry-card--enhanced:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 166, 138, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 20px 48px rgba(43, 166, 138, 0.1),
    0 8px 24px rgba(15, 23, 42, 0.06);
}
.w-industry-card--accent-amber {
  --ind-accent: #d97706;
}
.w-industry-card--accent-blue {
  --ind-accent: #2563eb;
}
.w-industry-card--accent-violet {
  --ind-accent: #7c3aed;
}
.w-industry-card--accent-rose {
  --ind-accent: #e11d48;
}
.w-industry-card--accent-teal {
  --ind-accent: #2ba68a;
}
.w-industry-card--accent-slate {
  --ind-accent: #64748b;
}
.w-industry-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.w-industry-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #166a57;
  background: linear-gradient(145deg, rgba(43, 166, 138, 0.16), rgba(43, 166, 138, 0.05));
  border: 1px solid rgba(43, 166, 138, 0.22);
}
.w-industry-card__tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.w-industry-card--enhanced .w-industry-card__title {
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.w-industry-card--enhanced .w-industry-card__desc {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.55;
}
.w-industry-card__focus {
  margin: 0 0 12px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #475569;
}
.w-industry-card__focus-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 3px;
}
.w-industry-card--enhanced .w-industry-card__link {
  margin-top: auto;
}

.w-ind-steps {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) max(22px, env(safe-area-inset-right)) clamp(2.25rem, 4.5vw, 3.25rem) max(22px, env(safe-area-inset-left));
  background:
    radial-gradient(75% 45% at 50% 0%, rgba(43, 166, 138, 0.08), transparent 55%),
    #f8fafc;
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
}
.w-ind-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
@media (max-width: 900px) {
  .w-ind-steps__list {
    grid-template-columns: 1fr;
  }
}
.w-ind-steps__item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-right: 1px dashed rgba(148, 163, 184, 0.45);
}
.w-ind-steps__item:last-child {
  border-right: none;
}
@media (max-width: 900px) {
  .w-ind-steps__item {
    border-right: none;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
    padding: 16px 0;
  }
  .w-ind-steps__item:last-child {
    border-bottom: none;
  }
}
.w-ind-steps__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(145deg, #2ba68a, #34d399);
  box-shadow: 0 8px 20px rgba(43, 166, 138, 0.32);
}
.w-ind-steps__card {
  flex: 1;
  min-width: 0;
  padding: 18px 18px 16px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}
.w-ind-steps__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-ind-steps__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
}

/* ——— Blog hub (/website/blog) ——— */
.w-blog-page {
  overflow-x: hidden;
}
.w-blog-page #latest-guides,
.w-blog-page #browse-by-topic,
.w-blog-page #browse-by-module {
  scroll-margin-top: clamp(88px, 14vw, 120px);
}

.w-blog-hub__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: max(22px, env(safe-area-inset-left));
  padding-right: max(22px, env(safe-area-inset-right));
}

.w-blog-hero {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2rem, 4vw, 2.75rem);
  background:
    radial-gradient(85% 70% at 10% 0%, rgba(43, 166, 138, 0.1), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e8edf3;
}
.w-blog-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3.1vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.12;
  color: #0b1224;
  max-width: 20ch;
}
.w-blog-hero__lede {
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.62;
  color: #475569;
  max-width: 62ch;
}
.w-blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.w-blog-hero__note {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
  max-width: 52ch;
}

.w-blog-section-h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  color: #0b1224;
}

.w-blog-featured-wrap {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background: #fff;
  border-bottom: 1px solid #e8edf3;
}
.w-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}
@media (max-width: 900px) {
  .w-blog-featured {
    grid-template-columns: 1fr;
  }
}
.w-blog-featured__main {
  padding: clamp(22px, 3vw, 28px);
  border-radius: calc(var(--w-radius-lg) + 4px);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f0fdf9 100%);
  border: 1px solid rgba(43, 166, 138, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 48px rgba(43, 166, 138, 0.1),
    0 8px 24px rgba(15, 23, 42, 0.06);
}
.w-blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: #64748b;
}
.w-blog-featured__date {
  font-weight: 600;
}
.w-blog-featured__dot {
  opacity: 0.55;
}
.w-blog-featured__read {
  font-weight: 600;
}
.w-blog-featured__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
}
.w-blog-featured__title a {
  color: #0f172a;
  text-decoration: none;
}
.w-blog-featured__title a:hover {
  color: #166a57;
}
.w-blog-featured__excerpt {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #475569;
  max-width: 62ch;
}
.w-blog-featured__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.w-blog-featured__mod {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  color: #166a57;
  background: rgba(43, 166, 138, 0.12);
  border: 1px solid rgba(43, 166, 138, 0.28);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.w-blog-featured__mod:hover {
  background: rgba(43, 166, 138, 0.18);
  border-color: rgba(43, 166, 138, 0.45);
}

.w-blog-featured__aside {
  padding: 22px 20px;
  border-radius: var(--w-radius-lg);
  background: #f8fafc;
  border: 1px solid #e8edf3;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}
.w-blog-aside-title {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-blog-popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.w-blog-popular-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.w-blog-popular-list a:hover {
  background: #fff;
  border-color: #e2e8f0;
  color: #166a57;
}

.w-blog-topics {
  padding: clamp(1.75rem, 3.5vw, 2.25rem) 0;
  background: #fff;
}
.w-blog-topics__lede {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #64748b;
  max-width: 62ch;
}
.w-blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.w-blog-chip {
  appearance: none;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #334155;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.w-blog-chip:hover {
  border-color: rgba(43, 166, 138, 0.35);
  color: #166a57;
}
.w-blog-chip.is-active {
  background: rgba(43, 166, 138, 0.14);
  border-color: rgba(43, 166, 138, 0.45);
  color: #166a57;
}
.w-blog-chip:focus-visible {
  outline: 3px solid rgba(43, 166, 138, 0.4);
  outline-offset: 2px;
}
.w-blog-empty {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.w-blog-latest {
  padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(2.5rem, 4vw, 3rem);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%);
  border-top: 1px solid #e8edf3;
}
.w-blog-grid--hub {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .w-blog-grid--hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .w-blog-grid--hub {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.w-blog-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.w-blog-pill--slate {
  background: #e2e8f0;
  color: #334155;
}
.w-blog-pill--teal {
  background: rgba(43, 166, 138, 0.16);
  color: #166a57;
}
.w-blog-pill--violet {
  background: rgba(124, 58, 237, 0.12);
  color: #5b21b6;
}
.w-blog-pill--blue {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}
.w-blog-pill--green {
  background: rgba(22, 163, 74, 0.14);
  color: #166534;
}
.w-blog-pill--amber {
  background: rgba(245, 158, 11, 0.18);
  color: #b45309;
}
.w-blog-pill--indigo {
  background: rgba(79, 70, 229, 0.12);
  color: #4338ca;
}

.w-blog-card--hub {
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.w-blog-card--hub:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 166, 138, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 18px 44px rgba(43, 166, 138, 0.1),
    0 8px 22px rgba(15, 23, 42, 0.06);
}
.w-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.w-blog-card__read {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
}
.w-blog-card--hub .w-blog-card__title {
  font-size: 1.08rem;
  line-height: 1.28;
}
.w-blog-card__related {
  margin: 0 0 4px;
  font-size: 0.84rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.w-blog-card__related-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #94a3b8;
}
.w-blog-card__related-link {
  font-weight: 700;
  color: #166a57;
  text-decoration: none;
}
.w-blog-card__related-link:hover {
  text-decoration: underline;
}

.w-blog-modules {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(43, 166, 138, 0.08), transparent 55%),
    #f1f5f9;
  border-top: 1px solid #e8edf3;
}
.w-blog-modules__lede {
  margin: 0 0 20px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #64748b;
  max-width: 62ch;
}
.w-blog-modgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.w-blog-modcard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.w-blog-modcard:hover {
  border-color: rgba(43, 166, 138, 0.35);
  box-shadow: 0 8px 22px rgba(43, 166, 138, 0.1);
  transform: translateY(-2px);
}
.w-blog-modcard__go {
  color: #166a57;
  font-weight: 800;
}
.w-blog-modcard__name {
  letter-spacing: -0.01em;
}

.w-blog-mid-cta {
  padding: clamp(2rem, 4vw, 2.5rem) 0;
  background: #fff;
  border-top: 1px solid #e8edf3;
}
.w-blog-mid-cta__inner {
  max-width: 800px;
  text-align: center;
}
.w-blog-mid-cta__title {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #0f172a;
}
.w-blog-mid-cta__sub {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.58;
  color: #475569;
}
.w-blog-mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 540px) {
  .w-blog-mid-cta__actions .w-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ——— About page (/website/about) ——— */
.w-about-page {
  overflow-x: hidden;
}
.w-about-hub__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: max(22px, env(safe-area-inset-left));
  padding-right: max(22px, env(safe-area-inset-right));
}

.w-about-hero {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2rem, 4vw, 2.75rem);
  background:
    radial-gradient(80% 70% at 15% 0%, rgba(43, 166, 138, 0.1), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e8edf3;
}
.w-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
@media (max-width: 900px) {
  .w-about-hero__grid {
    grid-template-columns: 1fr;
  }
}
.w-about-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3.1vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.12;
  color: #0b1224;
  max-width: 22ch;
}
.w-about-hero__lede {
  margin: 0 0 20px;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.62;
  color: #475569;
  max-width: 56ch;
}
.w-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.w-about-hero__note {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
  max-width: 52ch;
}

.w-about-converge {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 28px minmax(0, 0.95fr);
  gap: 10px 6px;
  align-items: center;
  min-height: 240px;
}
@media (max-width: 720px) {
  .w-about-converge {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}
.w-about-converge__scatter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.w-about-converge__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #475569;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.w-about-converge__bridge {
  width: 3px;
  height: min(220px, 70%);
  margin: 0 auto;
  border-radius: 99px;
  background: linear-gradient(
    180deg,
    rgba(43, 166, 138, 0.05),
    rgba(43, 166, 138, 0.45) 35%,
    rgba(43, 166, 138, 0.45) 65%,
    rgba(43, 166, 138, 0.05)
  );
}
@media (max-width: 720px) {
  .w-about-converge__bridge {
    width: min(220px, 80%);
    height: 3px;
    margin: 6px auto 4px;
    background: linear-gradient(
      90deg,
      rgba(43, 166, 138, 0.05),
      rgba(43, 166, 138, 0.45) 35%,
      rgba(43, 166, 138, 0.45) 65%,
      rgba(43, 166, 138, 0.05)
    );
  }
}
.w-about-converge__hub {
  padding: 22px 20px;
  border-radius: calc(var(--w-radius-lg) + 4px);
  text-align: center;
  background: linear-gradient(160deg, #ffffff 0%, #f0fdf9 45%, #e6f7f2 100%);
  border: 1px solid rgba(43, 166, 138, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 44px rgba(43, 166, 138, 0.16);
}
.w-about-converge__hub-kicker {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #166a57;
  margin-bottom: 8px;
}
.w-about-converge__hub-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.w-about-band {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
  background: #fff;
  border-bottom: 1px solid #e8edf3;
}
.w-about-band--alt {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.w-about-band--map {
  background:
    radial-gradient(75% 50% at 50% 0%, rgba(43, 166, 138, 0.08), transparent 55%),
    #f1f5f9;
}
.w-about-h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  color: #0b1224;
}
.w-about-lede {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.62;
  color: #475569;
  max-width: 72ch;
}
.w-about-lede--tight {
  max-width: 62ch;
  margin-bottom: 20px;
}

.w-about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) {
  .w-about-mission-grid {
    grid-template-columns: 1fr;
  }
}
.w-about-card {
  padding: 22px 22px 20px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.w-about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 166, 138, 0.22);
  box-shadow: 0 14px 36px rgba(43, 166, 138, 0.1);
}
.w-about-card--mission {
  border-top: 3px solid #2ba68a;
}
.w-about-card__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-about-card__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
}

.w-about-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 800px) {
  .w-about-compare {
    grid-template-columns: 1fr;
  }
}
.w-about-compare__col {
  padding: 22px 24px;
  border-radius: var(--w-radius-lg);
  border: 1px solid #e8edf3;
}
.w-about-compare__col--before {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.w-about-compare__col--after {
  background: linear-gradient(160deg, rgba(43, 166, 138, 0.08), rgba(99, 102, 241, 0.04));
  border-color: rgba(43, 166, 138, 0.22);
}
.w-about-compare__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.w-about-compare__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #e2e8f0;
  flex-shrink: 0;
}
.w-about-compare__icon--positive {
  background: linear-gradient(145deg, rgba(43, 166, 138, 0.25), rgba(43, 166, 138, 0.08));
  border: 1px solid rgba(43, 166, 138, 0.35);
}
.w-about-compare__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-about-compare__list {
  margin: 0;
  padding-left: 1.15rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.w-about-compare__list li::marker {
  color: #94a3b8;
}
.w-about-compare__col--after .w-about-compare__list li::marker {
  color: #2ba68a;
}

.w-about-phil-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 720px) {
  .w-about-phil-grid {
    grid-template-columns: 1fr;
  }
}
.w-about-card--phil {
  border-top: 3px solid rgba(99, 102, 241, 0.45);
}

.w-about-modmap {
  margin-top: 8px;
}
.w-about-modmap__hub {
  max-width: 400px;
  margin: 0 auto 22px;
  padding: 18px 22px;
  text-align: center;
  border-radius: var(--w-radius-lg);
  background: linear-gradient(160deg, #ffffff 0%, #f0fdf9 55%, #e6f7f2 100%);
  border: 1px solid rgba(43, 166, 138, 0.35);
  box-shadow: 0 10px 32px rgba(43, 166, 138, 0.12);
}
.w-about-modmap__hub-label {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-about-modmap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.w-about-modmap__group {
  padding: 16px 16px 14px;
  border-radius: var(--w-radius-lg);
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  border-top: 3px solid var(--about-map-accent, #2ba68a);
}
.w-about-modmap__group--work {
  --about-map-accent: #2ba68a;
}
.w-about-modmap__group--people {
  --about-map-accent: #22c55e;
}
.w-about-modmap__group--clients {
  --about-map-accent: #a855f7;
}
.w-about-modmap__group--operations {
  --about-map-accent: #3b82f6;
}
.w-about-modmap__group--collab {
  --about-map-accent: #eab308;
}
.w-about-modmap__group--platform {
  --about-map-accent: #f43f5e;
}
.w-about-modmap__group-title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.w-about-modmap__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.w-about-modmap__list a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  line-height: 1.45;
}
.w-about-modmap__list a:hover {
  color: #166a57;
}

.w-about-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 720px) {
  .w-about-audience-grid {
    grid-template-columns: 1fr;
  }
}
.w-about-card--audience {
  border-top: 3px solid #64748b;
}

.w-about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px) {
  .w-about-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .w-about-principles-grid {
    grid-template-columns: 1fr;
  }
}
.w-about-card--principle {
  border-top: 3px solid rgba(43, 166, 138, 0.55);
}

.w-about-inline-cta {
  margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
  text-align: center;
  font-size: 0.98rem;
  color: #64748b;
}
.w-about-inline-cta a {
  font-weight: 700;
  color: #166a57;
  text-decoration: none;
}
.w-about-inline-cta a:hover {
  text-decoration: underline;
}

/* --- Industry landing pages (/website/industries/{slug}) --- */
.w-ilp {
  overflow-x: hidden;
}
.w-ilp__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 max(20px, env(safe-area-inset-left)) 0 max(20px, env(safe-area-inset-right));
}
.w-ilp-section-title {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--w-ink);
  margin: 0 0 0.65rem;
}
.w-ilp-section-lede {
  margin: 0 0 1.75rem;
  max-width: 62ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--w-muted);
}

.w-ilp-hero {
  padding: clamp(1.25rem, 3vw, 2.25rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(900px 520px at 8% 0%, rgba(43, 166, 138, 0.12), transparent 55%),
    radial-gradient(700px 420px at 92% 10%, rgba(37, 99, 235, 0.08), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}
.w-ilp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.w-ilp-hero__visual {
  min-width: 0;
}
@media (max-width: 980px) {
  .w-ilp-hero__grid {
    grid-template-columns: 1fr;
  }
  .w-ilp-hero__visual {
    order: -1;
  }
}
.w-ilp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(43, 166, 138, 0.12);
  border: 1px solid rgba(43, 166, 138, 0.28);
  margin-bottom: 0.85rem;
}
.w-ilp-hero__title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--w-ink);
  margin: 0 0 1rem;
}
.w-ilp-hero__subtitle {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #334155;
  max-width: 58ch;
}
.w-ilp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}
.w-ilp-chip {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}
.w-ilp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.w-ilp-mock {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--w-radius-lg);
  box-shadow: var(--w-shadow);
  padding: 1.15rem 1.15rem 1.05rem;
}
.w-ilp-mock--hero {
  position: relative;
  overflow: hidden;
}
.w-ilp-mock--hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(43, 166, 138, 0.18), transparent 68%);
  pointer-events: none;
}
.w-ilp-mock__title {
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.85rem;
}
.w-ilp-mock__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.w-ilp-mock__grid--hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
/* Hero stays 2×2 on phones so the preview matches the intended layout */
@media (max-width: 380px) {
  .w-ilp-mock__grid--hero {
    grid-template-columns: 1fr;
  }
}
/* Full “workspace board” uses more columns on wide screens */
.w-ilp-mock__grid--board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1040px) {
  .w-ilp-mock__grid--board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .w-ilp-mock__grid:not(.w-ilp-mock__grid--hero) {
    grid-template-columns: 1fr;
  }
}
.w-ilp-mock-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.72rem 0.8rem 0.75rem;
  min-height: 6.25rem;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.w-ilp-mock--hero .w-ilp-mock-card {
  min-height: 5.85rem;
  padding: 0.62rem 0.68rem 0.68rem;
}
.w-ilp-mock--hero .w-ilp-mock-card__title {
  font-size: clamp(0.78rem, 2.1vw, 0.88rem);
}
.w-ilp-mock--hero .w-ilp-mock-card__meta {
  font-size: clamp(0.65rem, 1.8vw, 0.72rem);
}
.w-ilp-mock-card--accent {
  border-color: rgba(43, 166, 138, 0.45);
  background: rgba(43, 166, 138, 0.07);
  box-shadow: 0 0 0 1px rgba(43, 166, 138, 0.06);
}
.w-ilp-mock-card__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.2rem;
}
.w-ilp-mock-card__title {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}
.w-ilp-mock-card__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.35;
  flex: 1 1 auto;
}
.w-ilp-mock-card__bar {
  display: block;
  margin-top: 0.55rem;
  height: 5px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  flex-shrink: 0;
}
.w-ilp-mock-card__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--w-primary), #2563eb);
}

.w-ilp-band {
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: #fff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}
.w-ilp-band--soft {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.w-ilp-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 960px) {
  .w-ilp-cards {
    grid-template-columns: 1fr;
  }
}
.w-ilp-card {
  border-radius: var(--w-radius);
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}
.w-ilp-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--w-ink);
}
.w-ilp-card__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
}

.w-ilp-section {
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: #fff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}
.w-ilp-solution {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
}
@media (max-width: 900px) {
  .w-ilp-solution {
    grid-template-columns: 1fr;
  }
}
.w-ilp-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}
.w-ilp-checklist li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #334155;
}
.w-ilp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--w-primary);
  box-shadow: 0 0 0 3px rgba(43, 166, 138, 0.2);
}
.w-ilp-solution__panel {
  position: relative;
  border-radius: var(--w-radius-lg);
  border: 1px solid #e2e8f0;
  background: linear-gradient(160deg, #ffffff 0%, #f1f5f9 100%);
  padding: 1.35rem 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: min(22rem, 52vh);
  overflow: hidden;
}
.w-ilp-glow {
  position: absolute;
  inset: auto -20% -30% -10%;
  height: 160px;
  background: radial-gradient(ellipse at center, rgba(43, 166, 138, 0.22), transparent 70%);
  pointer-events: none;
}
.w-ilp-glow--solution {
  inset: -35% -15% auto -15%;
  height: 200px;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(43, 166, 138, 0.28), transparent 72%);
}
.w-ilp-solution__viz {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 0;
}
.w-ilp-solution__viz-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.w-ilp-solution__pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
}
.w-ilp-solution__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.w-ilp-solution__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.15rem 0 0.1rem;
  flex-wrap: wrap;
}
.w-ilp-solution__flow-line {
  flex: 1 1 2rem;
  max-width: 4.5rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(43, 166, 138, 0.55), rgba(43, 166, 138, 0.85));
}
.w-ilp-solution__flow-line--mirror {
  background: linear-gradient(270deg, transparent, rgba(43, 166, 138, 0.55), rgba(43, 166, 138, 0.85));
}
.w-ilp-solution__hub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #ecfdf5);
  border: 2px solid rgba(43, 166, 138, 0.45);
  box-shadow: 0 10px 28px rgba(43, 166, 138, 0.18);
}
.w-ilp-solution__hub-core {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #0f766e;
}
.w-ilp-solution__viz-caption {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #475569;
  max-width: 36ch;
}
.w-ilp-solution__note {
  position: relative;
  z-index: 1;
  margin: 0;
  margin-top: auto;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
}

.w-ilp-mod-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1024px) {
  .w-ilp-mod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .w-ilp-mod-grid {
    grid-template-columns: 1fr;
  }
}
.w-ilp-mod-card {
  border-radius: var(--w-radius);
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
}
.w-ilp-mod-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.w-ilp-mod-card__title a {
  color: var(--w-ink);
  text-decoration: none;
}
.w-ilp-mod-card__title a:hover {
  color: #0f766e;
}
.w-ilp-mod-card__why {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
  flex: 1;
}
.w-ilp-mod-card__bullets {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
}
.w-ilp-mod-card__link {
  margin-top: 0.25rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: #0f766e;
  text-decoration: none;
}
.w-ilp-mod-card__link:hover {
  text-decoration: underline;
}

.w-ilp-mock--full {
  margin-top: 0.5rem;
}

.w-ilp-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 800px) {
  .w-ilp-compare {
    grid-template-columns: 1fr;
  }
}
.w-ilp-compare__col {
  border-radius: var(--w-radius-lg);
  padding: 1.35rem 1.4rem;
  border: 1px solid #e2e8f0;
}
.w-ilp-compare__col--before {
  background: #f8fafc;
}
.w-ilp-compare__col--with {
  background: linear-gradient(180deg, rgba(43, 166, 138, 0.1) 0%, #ffffff 65%);
  border-color: rgba(43, 166, 138, 0.35);
  box-shadow: 0 16px 40px rgba(43, 166, 138, 0.12);
}
.w-ilp-compare__heading {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--w-ink);
}
.w-ilp-compare__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.w-ilp-compare__list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #334155;
}
.w-ilp-compare__icon {
  flex-shrink: 0;
  width: 1.35rem;
  text-align: center;
  font-weight: 900;
  color: #94a3b8;
}
.w-ilp-compare__icon--ok {
  color: #0f766e;
}

.w-ilp-start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .w-ilp-start-grid {
    grid-template-columns: 1fr;
  }
}
.w-ilp-start-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--w-radius);
  border: 1px solid rgba(43, 166, 138, 0.35);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s var(--w-ease-out), box-shadow 0.18s var(--w-ease-out);
}
.w-ilp-start-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(43, 166, 138, 0.18);
}
.w-ilp-start-card__kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
}
.w-ilp-start-card__title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--w-ink);
}
.w-ilp-start-card__go {
  margin-top: 0.25rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: #0f766e;
}

.w-ilp-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.w-ilp-pill-link {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
}
.w-ilp-pill-link:hover {
  border-color: rgba(43, 166, 138, 0.45);
  color: #0f766e;
}

/* --- Feature landing pages (/website/features/{slug} premium layout) --- */
.w-flp {
  overflow-x: hidden;
}
.w-flp__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 max(20px, env(safe-area-inset-left)) 0 max(20px, env(safe-area-inset-right));
}
.w-flp-section-title {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--w-ink);
  margin: 0 0 0.65rem;
}
.w-flp-section-lede {
  margin: 0 0 1.75rem;
  max-width: 68ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--w-muted);
}
.w-flp-hero {
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}
.w-flp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}
.w-flp-hero__visual {
  min-width: 0;
}
@media (max-width: 980px) {
  .w-flp-hero__grid {
    grid-template-columns: 1fr;
  }
  .w-flp-hero__visual {
    order: -1;
  }
}
.w-flp-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(43, 166, 138, 0.12);
  border: 1px solid rgba(43, 166, 138, 0.28);
  margin-bottom: 0.85rem;
}
.w-flp-hero__title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--w-ink);
  margin: 0 0 1rem;
}
.w-flp-hero__subtitle {
  margin: 0 0 1.15rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #334155;
  max-width: 58ch;
}
.w-flp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.w-flp-chip {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}
.w-flp-hero__best {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--w-radius);
  background: rgba(43, 166, 138, 0.06);
  border: 1px solid rgba(43, 166, 138, 0.2);
  max-width: 62ch;
}
.w-flp-hero__best-k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
}
.w-flp-hero__best-v {
  font-size: 0.92rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.45;
}
.w-flp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.w-flp-band {
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: #fff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}
.w-flp-band--soft {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.w-flp-section {
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: #fff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}
.w-flp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.w-flp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1024px) {
  .w-flp-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .w-flp-grid-3,
  .w-flp-grid-2 {
    grid-template-columns: 1fr;
  }
}
.w-flp-card {
  border-radius: var(--w-radius-lg);
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}
.w-flp-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--w-ink);
}
.w-flp-card__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
}
.w-flp-inc {
  border-radius: var(--w-radius-lg);
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 1.2rem 1.3rem 1.25rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
}
.w-flp-inc__badge {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--w-primary), #0f766e);
  box-shadow: 0 8px 20px rgba(43, 166, 138, 0.35);
}
.w-flp-inc__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--w-ink);
}
.w-flp-inc__explain {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.58;
  color: #475569;
}
.w-flp-inc__benefit {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #334155;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}
.w-flp-inc__benefit-k {
  font-weight: 800;
  color: #0f766e;
}
.w-flp-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .w-flp-flow {
    grid-template-columns: 1fr;
  }
}
.w-flp-flow__step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.3rem;
  border-radius: var(--w-radius-lg);
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
.w-flp-flow__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--w-primary), #0d9488);
}
.w-flp-flow__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--w-ink);
}
.w-flp-flow__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.58;
  color: #475569;
}
.w-flp-out {
  border-radius: var(--w-radius-lg);
  border: 1px solid rgba(43, 166, 138, 0.28);
  background: linear-gradient(135deg, rgba(43, 166, 138, 0.09) 0%, #ffffff 55%);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 14px 36px rgba(43, 166, 138, 0.1);
}
.w-flp-out__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--w-ink);
}
.w-flp-out__body {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.58;
  color: #334155;
}
.w-flp-uc {
  border-radius: var(--w-radius-lg);
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 100%;
}
.w-flp-uc__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--w-ink);
}
.w-flp-uc__who {
  margin: 0;
  font-size: 0.88rem;
  color: #475569;
}
.w-flp-uc__k {
  font-weight: 800;
  color: #0f172a;
}
.w-flp-uc__sup {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #475569;
}
.w-flp-uc__bullets {
  margin: 0.35rem 0 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #64748b;
}
.w-flp-rel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1100px) {
  .w-flp-rel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .w-flp-rel-grid {
    grid-template-columns: 1fr;
  }
}
.w-flp-rel {
  border-radius: var(--w-radius-lg);
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.w-flp-rel__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
}
.w-flp-rel__title a {
  color: var(--w-ink);
  text-decoration: none;
}
.w-flp-rel__title a:hover {
  color: #0f766e;
}
.w-flp-rel__body {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}
.w-flp-rel__link {
  font-weight: 800;
  font-size: 0.9rem;
  color: #0f766e;
  text-decoration: none;
}
.w-flp-rel__link:hover {
  text-decoration: underline;
}
.w-flp-cross {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: #64748b;
}

/* Feature hero mockups (HTML/CSS only) */
.w-flp-mock {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 42%, #ffffff 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: clamp(16px, 2vw, 20px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 22px 50px rgba(15, 23, 42, 0.08),
    0 6px 16px rgba(15, 23, 42, 0.04);
  padding: 1.15rem 1.2rem 1.2rem;
  overflow: hidden;
}
.w-flp-mock::before {
  content: "";
  position: absolute;
  inset: -48% 35% auto -25%;
  height: 240px;
  background: radial-gradient(ellipse at 50% 0%, rgba(43, 166, 138, 0.16), transparent 72%);
  pointer-events: none;
}
.w-flp-mock__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}
.w-flp-mock__head-text {
  min-width: 0;
}
.w-flp-mock__head-title {
  margin: 0;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #334155;
  line-height: 1.25;
}
.w-flp-mock__head-sub {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
}
.w-flp-mock__fine {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #64748b;
}
.w-flp-mock__mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
}
.w-flp-mock__k {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}
.w-flp-mock__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.55rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.w-flp-mock__pill--muted {
  background: #fff;
  color: #64748b;
}
.w-flp-mock__pill--hot {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #b91c1c;
}
.w-flp-mock__pill--ok {
  background: rgba(43, 166, 138, 0.16);
  border-color: rgba(43, 166, 138, 0.42);
  color: #0f766e;
}
.w-flp-mock__pill--emph {
  padding: 0.32rem 0.65rem;
  font-size: 0.68rem;
  box-shadow: 0 4px 14px rgba(43, 166, 138, 0.2);
}
.w-flp-mock__pill--outline {
  background: #fff;
  color: #475569;
  border-color: rgba(148, 163, 184, 0.55);
}
.w-flp-mock__board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}
@media (max-width: 520px) {
  .w-flp-mock__board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.w-flp-mock__col {
  min-width: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.5rem 0.5rem 0.6rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}
.w-flp-mock__col-head {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.4rem;
}
.w-flp-mock__tcard {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 11px;
  padding: 0.48rem 0.52rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.055);
}
.w-flp-mock__tcard--accent {
  border-color: rgba(43, 166, 138, 0.45);
  box-shadow: 0 8px 22px rgba(43, 166, 138, 0.15);
}
.w-flp-mock__tcard--done {
  opacity: 0.85;
}
.w-flp-mock__tcard-title {
  margin: 0.25rem 0 0;
  font-size: 0.68rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}
.w-flp-mock__tcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.w-flp-mock__tag {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #475569;
}
.w-flp-mock__hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.58rem;
  color: #94a3b8;
}
.w-flp-mock__label-chip {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.58rem;
  font-weight: 700;
  color: #0f766e;
}
.w-flp-mock__dots {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.35rem;
}
.w-flp-mock__dots span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}
.w-flp-mock__proj {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.w-flp-mock__proj-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
}
.w-flp-mock__proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.w-flp-mock__panel-sm {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.5rem 0.55rem;
}
.w-flp-mock__panel-sm-h {
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}
.w-flp-mock__mile-list {
  margin: 0;
  padding: 0 0 0 1rem;
  font-size: 0.68rem;
  color: #334155;
  line-height: 1.45;
}
.w-flp-mock__mile-hid {
  color: #94a3b8;
  font-style: italic;
}
.w-flp-mock__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  margin-right: 0.35rem;
}
.w-flp-mock__dot--on {
  background: var(--w-primary);
}
.w-flp-mock__bartrack {
  flex: 1 1 120px;
  height: 6px;
  border-radius: 99px;
  background: #e2e8f0;
  overflow: hidden;
}
.w-flp-mock__bartrack--wide {
  flex: 1 1 100%;
}
.w-flp-mock__bartrack i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--w-primary), #2563eb);
}
.w-flp-mock__proj-foot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: #475569;
}
.w-flp-mock__hr {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.w-flp-mock__hr-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.w-flp-mock__hr-name {
  font-weight: 900;
  font-size: 0.85rem;
  color: #0f172a;
}
.w-flp-mock__hr-tree {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: #475569;
}
.w-flp-mock__tree-node {
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.w-flp-mock__tree-node--you {
  background: rgba(43, 166, 138, 0.12);
  border-color: rgba(43, 166, 138, 0.35);
  color: #0f766e;
}
.w-flp-mock__tree-line {
  color: #94a3b8;
}
.w-flp-mock__hr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.w-flp-mock__hr-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.5rem 0.55rem;
}
.w-flp-mock__hr-card--accent {
  border-color: rgba(43, 166, 138, 0.4);
  background: rgba(43, 166, 138, 0.06);
}
.w-flp-mock__hr-card-t {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f172a;
}
.w-flp-mock__hr-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}
.w-flp-mock__pipe {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.w-flp-mock__pipe-rem {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f172a;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: rgba(43, 166, 138, 0.1);
  border: 1px solid rgba(43, 166, 138, 0.25);
}
.w-flp-mock__pipe-rem-k {
  margin-right: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f766e;
}
.w-flp-mock__pipe-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}
@media (max-width: 480px) {
  .w-flp-mock__pipe-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.w-flp-mock__pipe-col {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.45rem 0.45rem 0.5rem;
  min-width: 0;
}
.w-flp-mock__pipe-col--hot {
  border-color: rgba(43, 166, 138, 0.45);
  background: rgba(43, 166, 138, 0.07);
}
.w-flp-mock__pipe-h {
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.3rem;
}
.w-flp-mock__pipe-report {
  border: 1px dashed rgba(43, 166, 138, 0.45);
  border-radius: 10px;
  padding: 0.5rem 0.55rem;
  background: #fff;
}
.w-flp-mock__pipe-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 52px;
  margin-top: 0.4rem;
}
.w-flp-mock__pipe-bars span {
  flex: 1;
  min-width: 0;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--w-primary), #0f766e);
  opacity: 0.85;
}
.w-flp-mock__att {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.w-flp-mock__att-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.w-flp-mock__toggle {
  font-size: 0.62rem;
  font-weight: 800;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.w-flp-mock__tog-dot {
  width: 1.85rem;
  height: 1rem;
  border-radius: 99px;
  background: rgba(43, 166, 138, 0.35);
  border: 1px solid rgba(43, 166, 138, 0.5);
  position: relative;
}
.w-flp-mock__tog-dot::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: calc(1rem - 6px);
  height: calc(1rem - 6px);
  border-radius: 50%;
  background: #fff;
}
.w-flp-mock__att-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 0.72rem;
}
.w-flp-mock__att-note {
  font-size: 0.65rem;
  color: #94a3b8;
}
.w-flp-mock__tic {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.w-flp-mock__tic-sync {
  font-size: 0.68rem;
  font-weight: 800;
  color: #334155;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}
.w-flp-mock__tic-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.65rem 0.7rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.w-flp-mock__tic-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
  margin-bottom: 0.35rem;
}
.w-flp-mock__tic-title {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
}
.w-flp-mock__tic-tabs {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  color: #0f766e;
}
.w-flp-mock__fin {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.w-flp-mock__fin-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.w-flp-mock__fin-proj {
  margin: 0;
  font-weight: 900;
  font-size: 0.78rem;
  color: #0f172a;
}
.w-flp-mock__fin-tablewrap {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.w-flp-mock__fin-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.68rem;
}
.w-flp-mock__fin-tbl th,
.w-flp-mock__fin-tbl td {
  border: 1px solid #eef2f7;
  padding: 0.4rem 0.5rem;
  text-align: left;
}
.w-flp-mock__fin-tbl th {
  background: #f8fafc;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}
.w-flp-mock__fin-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  padding-top: 0.15rem;
}
.w-flp-mock__fin-total {
  font-size: 0.82rem;
  font-weight: 900;
  color: #0f766e;
  letter-spacing: -0.02em;
}
.w-flp-mock__tm {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.w-flp-mock__tm-chartbox {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.65rem 0.75rem 0.55rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.w-flp-mock__tm-chart-cap {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.w-flp-mock__tm-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.45rem;
  height: 88px;
  padding: 0.2rem 0.15rem 0;
}
.w-flp-mock__tm-chart span {
  flex: 1;
  min-width: 0;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #2ba68a 0%, #14b8a6 42%, #0ea5e9 100%);
  box-shadow: 0 6px 14px rgba(43, 166, 138, 0.22);
  position: relative;
}
.w-flp-mock__tm-chart span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 55%);
  pointer-events: none;
}
.w-flp-mock__tm-days {
  display: flex;
  justify-content: space-between;
  margin-top: 0.45rem;
  padding: 0 0.1rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #94a3b8;
  text-transform: uppercase;
}
.w-flp-mock__tm-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
@media (max-width: 420px) {
  .w-flp-mock__tm-mid {
    grid-template-columns: 1fr;
  }
}
.w-flp-mock__tm-panel {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.w-flp-mock__bartrack--tm {
  display: block;
  margin-top: 0.45rem;
  width: 100%;
}
.w-flp-mock__bartrack--tm i {
  background: linear-gradient(90deg, #2ba68a, #2563eb);
}
.w-flp-mock__tm-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding-top: 0.15rem;
}
.w-flp-mock__tm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.w-flp-mock__tm-tot {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f766e;
  margin-left: auto;
}
