/* ==========================================================================
       NANNYSYNC PREMIUM HOMEPAGE STYLES
       Strictly scoped to .hp- prefix
       ========================================================================== */

/* --- Resets & Base Variables --- */
html {
  scroll-behavior: smooth;
}

.hp-homepage,
.hp-homepage * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

.hp-homepage {
  /* Color Palette (Unchanged) */
  --hp-primary: #5f7a61;
  --hp-primary-dark: #4e6750;
  --hp-accent-light: rgba(95, 122, 97, 0.09);
  --hp-accent-mid: rgba(95, 122, 97, 0.17);
  --hp-bg: #faf9f6;
  --hp-bg-alt: #f4f5f2;
  --hp-section-sage-soft: #f5f8f5;
  --hp-section-sage-mid: #eef4ee;
  --hp-section-warm: #faf9f6;
  --hp-white: #ffffff;
  --hp-text: #2d3436;
  --hp-text-muted: rgba(45, 52, 54, 0.72);
  --hp-text-faint: rgba(45, 52, 54, 0.52);
  --hp-border: #e5e7eb;
  --hp-border-light: #f3f4f6;
  --hp-error-bg: #fef2f2;
  --hp-error-text: #b91c1c;
  --hp-success-bg: #dcfce7;
  --hp-success-text: #166534;

  /* Spacing & Layout */
  --hp-max-w: 1440px;
  --hp-radius-sm: 12px;
  --hp-radius-md: 12px;
  --hp-radius-lg: 12px;
  --hp-radius-action: 8px;
  --hp-section-py: 88px;

  background-color: var(--hp-bg);
  color: var(--hp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- Scroll Animations (Intersection Observer) --- */
.hp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-reveal.hp-visible {
  opacity: 1;
  transform: translateY(0);
}
.hp-delay-100 {
  transition-delay: 0.1s;
}
.hp-delay-200 {
  transition-delay: 0.2s;
}
.hp-delay-300 {
  transition-delay: 0.3s;
}
.hp-delay-400 {
  transition-delay: 0.4s;
}

/* --- Typography --- */
.hp-h1 {
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
  color: var(--hp-text);
}
.hp-h2 {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--hp-text);
}
.hp-h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}
.hp-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--hp-primary);
  margin-bottom: 1.25rem;
  padding: 0.375rem 0.875rem;
  background: var(--hp-accent-light);
  border-radius: 6px;
}
.hp-p-large {
  font-size: 1.1875rem;
  color: var(--hp-text-muted);
  line-height: 1.72;
}
.hp-p {
  font-size: 1rem;
  color: var(--hp-text-muted);
  line-height: 1.65;
}
.hp-p-small {
  font-size: 0.9375rem;
  color: var(--hp-text-faint);
}

/* --- Layout Utilities --- */
.hp-container {
  max-width: var(--hp-max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.hp-section {
  padding: var(--hp-section-py) 0;
  position: relative;
}
.hp-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem auto;
}
.hp-section-intro {
  margin-top: 1.25rem;
}

/* --- Homepage Final Polish --- */
.hp-homepage:not(.hp-legal-page) {
  --hp-text-muted: rgba(45, 52, 54, 0.79);
  --hp-text-faint: rgba(45, 52, 54, 0.61);
  --hp-section-py: 82px;
}

.hp-homepage:not(.hp-legal-page) .hp-p-large {
  line-height: 1.74;
}

.hp-homepage:not(.hp-legal-page) .hp-p-small {
  color: rgba(45, 52, 54, 0.62);
}

/* --- Buttons --- */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--hp-radius-action);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.hp-btn-primary {
  background-color: var(--hp-primary);
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(95, 122, 97, 0.18);
}
.hp-btn-primary:hover {
  background-color: var(--hp-primary-dark);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(95, 122, 97, 0.22);
}
.hp-btn-outline {
  background-color: transparent;
  color: var(--hp-text);
  border-color: var(--hp-border);
}
.hp-btn-outline:hover {
  background-color: var(--hp-white);
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.hp-btn:focus-visible,
.hp-nav-link:focus-visible,
.hp-tab-btn:focus-visible {
  outline: 2px solid rgba(95, 122, 97, 0.32);
  outline-offset: 3px;
}
.hp-btn-compact {
  padding: 0.625rem 1.25rem;
}

/* --- Header --- */
.hp-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(251, 251, 249, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.hp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.hp-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.hp-logo img {
  display: block;
  height: auto;
  width: 176px;
}
.hp-nav {
  display: flex;
  gap: 1.55rem;
}
.hp-nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--hp-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hp-nav-link:hover {
  color: var(--hp-text);
}
.hp-header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.hp-header-scrolled {
  border-bottom-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* --- Ambient Background Glows --- */
.hp-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(95, 122, 97, 0.08) 0%,
    rgba(251, 251, 249, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hp-glow-1 {
  top: -10%;
  left: 0;
}
.hp-glow-2 {
  top: 40%;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(95, 122, 97, 0.05) 0%,
    rgba(251, 251, 249, 0) 70%
  );
}

/* --- Hero Section --- */
.hp-hero {
  padding: 8.5rem 0 5.25rem; /* Extra space for fixed header */
  position: relative;
}
.hp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
.hp-hero-content .hp-h1 {
  margin-bottom: 1.5rem;
}
.hp-hero-content .hp-p-large {
  margin-bottom: 2rem;
  max-width: 560px;
}
.hp-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.hp-hero-trust {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1.65rem;
  border-top: 1px solid var(--hp-border-light);
}
.hp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--hp-text-muted);
}
.hp-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--hp-primary);
}
.hp-hero-visual {
  position: relative;
}
.hp-hero-img-wrapper {
  position: relative;
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(45, 52, 54, 0.1);
}
.hp-hero-img {
  width: 100%;
  height: clamp(520px, 48vw, 640px);
  object-fit: cover;
  display: block;
}

/* Floating UI Cards (Glassmorphism) */
.hp-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--hp-radius-md);
  padding: 1.45rem;
  box-shadow: 0 14px 30px rgba(45, 52, 54, 0.12);
  width: 312px;
  z-index: 20;
}
.hp-float-card.hp-top-card {
  top: -2rem;
  right: -1rem;
}
.hp-float-card.hp-bottom-card {
  bottom: 2rem;
  left: -4rem;
}
.hp-fc-header {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--hp-text-faint);
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
.hp-fc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding: 0.625rem 0;
  border-bottom: 1px dashed var(--hp-border);
}
.hp-fc-row:last-child {
  border-bottom: none;
}
.hp-borderless {
  border: none;
}
.hp-fc-label {
  color: var(--hp-text-muted);
  font-weight: 500;
}
.hp-fc-val {
  font-weight: 600;
  color: var(--hp-text);
}
.hp-fc-val.hp-primary {
  color: var(--hp-primary);
  font-size: 1.25rem;
}
.hp-fc-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
}
.hp-fc-status.hp-pending {
  background: var(--hp-accent-light);
  color: var(--hp-primary-dark);
  border: 1px solid var(--hp-accent-mid);
}
.hp-fc-status.hp-success {
  background: var(--hp-success-bg);
  color: var(--hp-success-text);
  border: 1px solid #bbf7d0;
}

/* --- Benefits Strip --- */
.hp-benefits {
  background: var(--hp-white);
  border-top: 1px solid var(--hp-border-light);
  border-bottom: 1px solid var(--hp-border-light);
  padding: 3.75rem 0;
  position: relative;
}
.hp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.65rem;
}
.hp-benefit-item {
  padding: 1.15rem 1rem;
  border-radius: var(--hp-radius-sm);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
.hp-benefit-item:hover {
  background: rgba(95, 122, 97, 0.035);
  transform: translateY(-5px);
}
.hp-icon-box {
  width: 52px;
  height: 52px;
  background: var(--hp-accent-light);
  border: 1px solid var(--hp-accent-mid);
  border-radius: var(--hp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(95, 122, 97, 0.055);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.hp-benefit-item:hover .hp-icon-box {
  background: var(--hp-accent-mid);
  box-shadow: 0 10px 22px rgba(95, 122, 97, 0.08);
}
.hp-icon-box svg {
  width: 25px;
  height: 25px;
  color: var(--hp-primary);
}
.hp-benefit-item h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--hp-text);
  letter-spacing: 0;
}
.hp-benefit-item p {
  font-size: 1rem;
  color: var(--hp-text-muted);
  line-height: 1.65;
}

/* --- Why NannySync --- */
.ns-home-why .ns-home-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.ns-home-why .ns-home-why-card {
  height: 100%;
  overflow: hidden;
  padding: 2.5rem;
  border: 1px solid rgba(95, 122, 97, 0.14);
  border-radius: var(--hp-radius-lg);
  background: var(--hp-white);
  box-shadow:
    0 16px 36px rgba(16, 24, 40, 0.045),
    0 2px 8px rgba(16, 24, 40, 0.025);
}
.ns-home-why .ns-home-why-card--old {
  background: #fafaf9;
  border-color: rgba(45, 52, 54, 0.08);
}
.ns-home-why .ns-home-why-card--new {
  border-color: var(--hp-accent-mid);
  box-shadow:
    0 20px 42px rgba(95, 122, 97, 0.09),
    0 3px 10px rgba(16, 24, 40, 0.035);
}
.ns-home-why .ns-home-why-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.875rem;
  padding: 0.32rem 0.65rem;
  border-radius: 6px;
  background: rgba(45, 52, 54, 0.04);
  color: var(--hp-text-faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ns-home-why .ns-home-why-card__eyebrow--sage {
  background: var(--hp-accent-light);
  color: var(--hp-primary);
}
.ns-home-why .ns-home-why-card h3 {
  margin-bottom: 0.75rem;
  color: var(--hp-text);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
}
.ns-home-why .ns-home-why-card__body {
  margin-bottom: 1.5rem;
  color: var(--hp-text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.ns-home-why .ns-home-why-collage,
.ns-home-why .ns-home-why-record-shell {
  min-height: 420px;
  border: 1px solid rgba(95, 122, 97, 0.11);
  border-radius: var(--hp-radius-sm);
  position: relative;
}
.ns-home-why .ns-home-why-collage {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(95, 122, 97, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(95, 122, 97, 0.032) 1px, transparent 1px),
    #fbfbf9;
  background-size: 42px 42px;
}
.ns-home-why .ns-home-why-fragment {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--hp-radius-sm);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.055);
  color: var(--hp-text);
}
.ns-home-why .ns-home-why-fragment span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--hp-text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ns-home-why .ns-home-why-fragment p {
  margin: 0;
  color: var(--hp-text-muted);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.45;
}
.ns-home-why .ns-home-why-fragment strong {
  display: block;
  color: var(--hp-text);
  font-size: 0.95rem;
  font-weight: 600;
}
.ns-home-why .ns-home-why-fragment small {
  display: block;
  margin-top: 0.45rem;
  color: var(--hp-text-faint);
  font-size: 0.82rem;
  font-weight: 500;
}
.ns-home-why .ns-home-why-fragment--text-a {
  width: 220px;
  left: 1.35rem;
  top: 1.25rem;
  padding: 0.85rem 1rem;
  transform: rotate(-2deg);
}
.ns-home-why .ns-home-why-fragment--text-b {
  width: 236px;
  right: 1.1rem;
  top: 4.65rem;
  padding: 0.9rem 1rem;
  transform: rotate(3.5deg);
  z-index: 2;
}
.ns-home-why .ns-home-why-fragment--note {
  width: 210px;
  left: 2.05rem;
  top: 7.85rem;
  padding: 1rem;
  transform: rotate(4deg);
  z-index: 1;
}
.ns-home-why .ns-home-why-fragment--sheet {
  width: 248px;
  right: 1.35rem;
  bottom: 1.35rem;
  padding: 0.75rem;
  transform: rotate(-1deg);
}
.ns-home-why .ns-home-why-fragment--tax {
  width: 156px;
  left: 1.75rem;
  bottom: 3.1rem;
  padding: 0.9rem;
  transform: rotate(-2.2deg);
  z-index: 2;
}
.ns-home-why .ns-home-why-sheet-row {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  color: var(--hp-text-muted);
  font-size: 0.79rem;
  font-weight: 500;
}
.ns-home-why .ns-home-why-sheet-row:first-child {
  border-top: 0;
}
.ns-home-why .ns-home-why-sheet-row--head {
  color: var(--hp-text-faint);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ns-home-why .ns-home-why-record-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem;
  background: linear-gradient(135deg, #ffffff 0%, #f7f8f5 100%);
}
.ns-home-why .ns-home-why-record {
  width: min(100%, 410px);
  padding: 1.3rem;
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-sm);
  background: var(--hp-white);
  box-shadow:
    0 10px 30px rgba(16, 24, 40, 0.06),
    0 2px 8px rgba(16, 24, 40, 0.04);
}
.ns-home-why .ns-home-why-record__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hp-border-light);
}
.ns-home-why .ns-home-why-record__head > div > span {
  display: block;
  color: var(--hp-text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ns-home-why .ns-home-why-record__head strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--hp-text);
  font-size: 1.12rem;
  font-weight: 600;
}
.ns-home-why .ns-home-why-record__status {
  flex-shrink: 0;
  padding: 0.32rem 0.68rem;
  border: 1px solid rgba(95, 122, 97, 0.16);
  border-radius: 999px;
  background: rgba(95, 122, 97, 0.075);
  color: var(--hp-primary-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}
.ns-home-why .ns-home-why-record__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid var(--hp-border-light);
  font-size: 0.95rem;
}
.ns-home-why .ns-home-why-record__row span {
  color: var(--hp-text-muted);
  flex-shrink: 0;
  font-weight: 500;
  white-space: nowrap;
}
.ns-home-why .ns-home-why-record__row strong {
  color: var(--hp-text);
  flex-shrink: 1;
  font-weight: 600;
  line-height: 1.35;
  max-width: 56%;
  min-width: 0;
  text-align: right;
  white-space: nowrap;
}
.ns-home-why .ns-home-why-record__ready {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(95, 122, 97, 0.18);
  border-radius: var(--hp-radius-sm);
  background: var(--hp-accent-light);
}
.ns-home-why .ns-home-why-record__ready svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--hp-primary);
}
.ns-home-why .ns-home-why-record__ready strong {
  display: block;
  color: var(--hp-text);
  font-size: 0.95rem;
  font-weight: 600;
}
.ns-home-why .ns-home-why-record__ready span {
  display: block;
  margin-top: 0.2rem;
  color: var(--hp-text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}
.ns-home-why .ns-home-why-record__flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}
.ns-home-why .ns-home-why-record__flow span {
  position: relative;
  padding-top: 1.05rem;
  color: rgba(45, 52, 54, 0.66);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.25;
}
.ns-home-why .ns-home-why-record__flow span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--hp-primary);
  box-shadow: 0 0 0 4px var(--hp-accent-light);
  z-index: 1;
}
.ns-home-why .ns-home-why-record__flow span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: calc(100% + 0.5rem - 7px);
  height: 1px;
  background: rgba(95, 122, 97, 0.24);
}
.ns-home-why .ns-home-why-record__flow span:last-child::after {
  display: none;
}
.ns-home-why .ns-home-why-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.ns-home-why .ns-home-why-arrow__circle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--hp-primary);
  opacity: 0.78;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.028);
}

/* --- How It Works --- */
.hp-hiw-bg {
  background-color: var(--hp-white);
}

.hp-steps-wrapper {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  --hp-steps-progress: 0;
}
.hp-steps-line {
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: rgba(95, 122, 97, 0.16);
  z-index: 0;
  overflow: hidden;
}
.hp-steps-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hp-primary);
  transform: scaleX(var(--hp-steps-progress));
  transform-origin: left center;
  transition: transform 0.12s linear;
}
.hp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}
.hp-step {
  text-align: center;
  padding: 1.2rem 1.2rem 1.35rem;
  border: 1px solid rgba(95, 122, 97, 0.12);
  border-radius: var(--hp-radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.03);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.hp-step:hover,
.hp-step.is-active {
  transform: translateY(-5px);
  border-color: rgba(95, 122, 97, 0.22);
  box-shadow: 0 14px 28px rgba(95, 122, 97, 0.075);
}
.hp-step-number {
  width: 64px;
  height: 64px;
  background: var(--hp-white);
  border: 3px solid var(--hp-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hp-primary);
  box-shadow:
    0 4px 12px rgba(95, 122, 97, 0.13),
    0 0 0 6px rgba(255, 255, 255, 0.84);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}
.hp-step:hover .hp-step-number,
.hp-step.is-active .hp-step-number {
  background: var(--hp-primary);
  color: var(--hp-white);
  border-color: var(--hp-white);
  box-shadow:
    0 8px 18px rgba(95, 122, 97, 0.18),
    0 0 0 7px var(--hp-accent-light);
}
.hp-step h3 {
  margin-bottom: 0.65rem;
  color: var(--hp-text);
  font-size: 1.18rem;
  font-weight: 600;
}
.hp-step .hp-p {
  font-size: 1rem;
  line-height: 1.65;
}

/* --- Features (Tabs) --- */
.hp-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
.hp-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: var(--hp-white);
  padding: 0.5rem;
  border-radius: var(--hp-radius-sm);
  border: 1px solid var(--hp-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  max-width: fit-content;
  margin: 0 auto;
}
.hp-tab-btn {
  background: transparent;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--hp-radius-action);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hp-text-muted);
  cursor: pointer;
  transition: all 0.3s;
}
.hp-tab-btn:hover {
  color: var(--hp-text);
}
.hp-tab-btn.hp-active {
  background: var(--hp-primary);
  color: var(--hp-white);
  box-shadow: 0 2px 8px rgba(95, 122, 97, 0.2);
}
.hp-tab-content-wrapper {
  background: var(--hp-white);
  border-radius: var(--hp-radius-lg);
  border: 1px solid var(--hp-border);
  padding: 2.25rem;
  box-shadow: 0 16px 34px rgba(45, 52, 54, 0.06);
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hp-tab-pane {
  display: none;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 2.22fr);
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
.hp-tab-copy {
  max-width: 390px;
}
.hp-tab-pane.hp-active {
  display: grid;
  animation: hp-slide-fade 280ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes hp-slide-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hp-tab-pane h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.hp-tab-pane > div:first-child p {
  margin-bottom: 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.hp-tab-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hp-tab-bullets li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--hp-text-muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}
.hp-tab-bullets svg {
  width: 20px;
  height: 20px;
  color: var(--hp-primary);
}
.hp-tab-visual {
  background: linear-gradient(135deg, #ffffff 0%, #e6eee6 52%, #cadacb 100%);
  border-radius: var(--hp-radius-md);
  height: clamp(500px, 39vw, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hp-feature-mockup {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 17px;

  box-shadow:
    0 16px 38px rgba(16, 24, 40, 0.08),
    0 3px 10px rgba(16, 24, 40, 0.05);
  transform-origin: center center;
}
#tab-1 .hp-feature-mockup {
  width: 90%;
  transform: translateY(14%);
}
#tab-2 .hp-feature-mockup {
  width: 90%;
  transform: translateY(14%);
}
#tab-3 .hp-feature-mockup,
#tab-4 .hp-feature-mockup {
  transform: none;
}
#tab-3 .hp-feature-mockup {
  width: 46%;
}
#tab-4 .hp-feature-mockup {
  width: 72%;
  transform: translateY(20%);
}
#tab-5 .hp-feature-mockup {
  width: 84%;
  transform: none;
}

/* --- FAQ --- */
.hp-faq-bg {
  background: #faf9f6;
}
.hp-faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  margin: 0 auto;
}
.hp-faq-copy {
  max-width: 430px;
}
.hp-faq-copy .hp-h2 {
  margin-bottom: 1rem;
}
.hp-faq-list {
  border-top: 1px solid rgba(95, 122, 97, 0.18);
}
.hp-faq-item {
  border-bottom: 1px solid rgba(95, 122, 97, 0.16);
}
.hp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0;
  color: var(--hp-text);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}
.hp-faq-question::-webkit-details-marker {
  display: none;
}
.hp-faq-question:focus-visible {
  outline: 2px solid rgba(95, 122, 97, 0.32);
  outline-offset: 4px;
  border-radius: 6px;
}
.hp-faq-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(95, 122, 97, 0.22);
  border-radius: 50%;
  color: var(--hp-primary);
  background: rgba(255, 255, 255, 0.62);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.hp-faq-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
  stroke-linecap: round;
}
.hp-faq-item[open] .hp-faq-question {
  padding-bottom: 0.65rem;
}
.hp-faq-item[open] .hp-faq-icon {
  background: var(--hp-accent-light);
  border-color: rgba(95, 122, 97, 0.28);
  transform: rotate(45deg);
}
.hp-faq-item p {
  color: var(--hp-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
  padding: 0 3.5rem 1.35rem 0;
}

/* --- Pricing --- */
#pricing {
  background: linear-gradient(
    180deg,
    var(--hp-section-sage-mid) 0%,
    var(--hp-section-sage-soft) 100%
  );
  padding: 4.25rem 0;
}
#pricing .hp-section-header {
  max-width: 520px;
  margin-bottom: 1.25rem;
}
#pricing .hp-section-intro {
  margin-top: 0.5rem;
}
#pricing .hp-pricing-header .hp-eyebrow {
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.6875rem;
}
#pricing .hp-pricing-header .hp-h2 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0;
}
#pricing .hp-pricing-header .hp-p-large {
  font-size: 0.95rem;
  line-height: 1.55;
}
.hp-pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 2.25rem;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.hp-pricing-cta {
  max-width: 500px;
}
.hp-pricing-cta h3 {
  color: var(--hp-text);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hp-pricing-cta p {
  color: var(--hp-text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 470px;
}
.hp-pricing-cta .hp-btn {
  margin-bottom: 0.75rem;
}
.hp-pricing-microcopy {
  display: block;
  color: var(--hp-text-faint);
  font-size: 0.925rem;
  font-weight: 500;
}
.hp-pricing-card {
  background: var(--hp-white);
  border: 1px solid rgba(95, 122, 97, 0.14);
  border-radius: var(--hp-radius-lg);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 12px 28px rgba(45, 52, 54, 0.05);
  position: relative;
  overflow: hidden;
}
.hp-pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}
.hp-pricing-card-header {
  margin-bottom: 1.5rem;
}
.hp-pricing-card-header h3 {
  color: var(--hp-text);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
.hp-price {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--hp-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
}
.hp-price span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--hp-text-faint);
  margin-left: 0.25rem;
}
.hp-pricing-sub {
  color: var(--hp-text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}
.hp-pricing-card .hp-pricing-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}
.hp-pricing-card .hp-pricing-features li {
  font-size: 0.94rem;
  gap: 0.65rem;
}
.hp-pricing-note {
  font-size: 0.875rem;
  color: var(--hp-text-faint);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hp-border-light);
  font-weight: 500;
}
.hp-text-center {
  text-align: center;
}

/* --- Footer --- */
.hp-footer {
  background: var(--hp-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3.5rem 0 1.75rem;
}
.hp-footer .hp-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
.hp-footer-grid {
  display: grid;
  grid-template-columns:
    minmax(270px, 360px) minmax(132px, 160px)
    minmax(0, 1fr) minmax(220px, 250px);
  justify-content: stretch;
  align-items: start;
  column-gap: clamp(2.5rem, 4.5vw, 4.5rem);
  row-gap: 2rem;
  margin-bottom: 2.55rem;
}
.hp-footer-brand {
  max-width: 380px;
}
.hp-footer-product {
  justify-self: start;
}
.hp-footer-start {
  grid-column: 4;
  justify-self: end;
  max-width: 250px;
}
.hp-footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
}
.hp-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.82rem;
}
.hp-footer-col li {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  font-weight: 500;
}
.hp-footer-col a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.hp-footer-col a:hover {
  color: var(--hp-white);
}
.hp-footer-col p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.hp-footer-about {
  margin-top: 1.15rem;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.8);
}
.hp-footer-note {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  margin-bottom: 0;
}
.hp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.55rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.66);
}
.hp-footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.hp-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.hp-footer-bottom-links a:hover {
  color: var(--hp-white);
}
.hp-footer .hp-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--hp-white);
  padding: 0.56rem 1.05rem;
  box-shadow: none;
}
.hp-footer .hp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 6px 14px rgba(45, 52, 54, 0.1);
}

.hp-homepage:not(.hp-legal-page) .hp-hero {
  padding-bottom: 4.75rem;
}

.hp-homepage:not(.hp-legal-page) .hp-hero-content .hp-p-large {
  max-width: 590px;
}

.hp-homepage:not(.hp-legal-page) .hp-trust-item {
  color: rgba(45, 52, 54, 0.77);
}

.hp-homepage:not(.hp-legal-page) .hp-benefits {
  padding: 3.45rem 0;
}

.hp-homepage:not(.hp-legal-page) .hp-benefits-grid {
  gap: 1.5rem;
}

.hp-homepage:not(.hp-legal-page) .hp-benefit-item {
  padding: 1.28rem 1.08rem;
}

.hp-homepage:not(.hp-legal-page) .hp-icon-box {
  width: 58px;
  height: 58px;
  margin-bottom: 1.08rem;
}

.hp-homepage:not(.hp-legal-page) .hp-icon-box svg {
  width: 27px;
  height: 27px;
}

.hp-homepage:not(.hp-legal-page) .hp-benefit-item h4 {
  font-size: 1.18rem;
  line-height: 1.28;
}

.hp-homepage:not(.hp-legal-page) .hp-benefit-item p {
  color: rgba(45, 52, 54, 0.76);
  line-height: 1.62;
}

.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-card {
  padding: 2.7rem;
}

.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-card h3 {
  font-size: 1.58rem;
}

.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-card__body {
  color: rgba(45, 52, 54, 0.77);
  font-size: 1.045rem;
}

.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-collage,
.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-record-shell {
  min-height: 445px;
}

.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-fragment p,
.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-sheet-row {
  color: rgba(45, 52, 54, 0.74);
}

.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-record {
  width: min(100%, 440px);
  padding: 1.45rem;
}

.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-record__head strong {
  font-size: 1.16rem;
}

.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-record__row {
  font-size: 0.99rem;
  padding: 0.86rem 0;
}

.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-record__row span,
.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-record__ready span {
  color: rgba(45, 52, 54, 0.75);
}

.hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-record__ready {
  padding: 1rem;
}

.hp-homepage:not(.hp-legal-page)
.ns-home-why
.ns-home-why-record__ready
strong {
  font-size: 0.98rem;
}

.hp-homepage:not(.hp-legal-page) .hp-steps-wrapper {
  max-width: 990px;
}

.hp-homepage:not(.hp-legal-page) .hp-steps-grid {
  gap: 1.65rem;
}

.hp-homepage:not(.hp-legal-page) .hp-step {
  padding: 1.4rem 1.35rem 1.5rem;
}

.hp-homepage:not(.hp-legal-page) .hp-step-number {
  width: 70px;
  height: 70px;
  font-size: 1.32rem;
  border-width: 4px;
}

.hp-homepage:not(.hp-legal-page) .hp-step h3 {
  font-size: 1.22rem;
  margin-bottom: 0.7rem;
}

.hp-homepage:not(.hp-legal-page) .hp-step .hp-p {
  color: rgba(45, 52, 54, 0.76);
  font-size: 1.015rem;
}

.hp-homepage:not(.hp-legal-page) .hp-tabs-container {
  gap: 2.45rem;
}

.hp-homepage:not(.hp-legal-page) .hp-tab-content-wrapper {
  min-height: 640px;
  padding: 2rem;
}

.hp-homepage:not(.hp-legal-page) .hp-tab-pane {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 2.28fr);
  gap: 2.25rem;
}

.hp-homepage:not(.hp-legal-page) .hp-tab-copy {
  max-width: 405px;
}

.hp-homepage:not(.hp-legal-page) .hp-tab-pane > div:first-child p,
.hp-homepage:not(.hp-legal-page) .hp-tab-bullets li {
  color: rgba(45, 52, 54, 0.77);
}

.hp-homepage:not(.hp-legal-page) .hp-tab-visual {
  height: clamp(560px, 43vw, 680px);
}

.hp-homepage:not(.hp-legal-page) #tab-1 .hp-feature-mockup,
.hp-homepage:not(.hp-legal-page) #tab-2 .hp-feature-mockup {
  width: 90%;
  transform: translateY(11%);
}

.hp-homepage:not(.hp-legal-page) #tab-3 .hp-feature-mockup {
  width: 54%;
}

.hp-homepage:not(.hp-legal-page) #tab-4 .hp-feature-mockup {
  width: 70%;
  transform: translateY(17%);
}

.hp-homepage:not(.hp-legal-page) #tab-5 .hp-feature-mockup {
  width: 94%;
}

.hp-homepage:not(.hp-legal-page) .hp-faq-question {
  font-size: 1.055rem;
  padding: 1.35rem 0;
}

.hp-homepage:not(.hp-legal-page) .hp-faq-item p {
  color: rgba(45, 52, 54, 0.78);
  font-size: 1.015rem;
}

.hp-homepage:not(.hp-legal-page) .hp-pricing-cta p,
.hp-homepage:not(.hp-legal-page) .hp-pricing-sub {
  color: rgba(45, 52, 54, 0.77);
}

.hp-homepage:not(.hp-legal-page) .hp-pricing-microcopy,
.hp-homepage:not(.hp-legal-page) .hp-pricing-note {
  color: rgba(45, 52, 54, 0.66);
}

.hp-homepage:not(.hp-legal-page) .hp-pricing-card .hp-pricing-features li {
  color: rgba(45, 52, 54, 0.78);
  font-size: 0.965rem;
}

.hp-homepage:not(.hp-legal-page) .hp-footer-col h4 {
  color: rgba(255, 255, 255, 0.96);
}

.hp-homepage:not(.hp-legal-page) .hp-footer-col a,
.hp-homepage:not(.hp-legal-page) .hp-footer-col li {
  color: rgba(255, 255, 255, 0.82);
}

.hp-homepage:not(.hp-legal-page) .hp-footer-about {
  color: rgba(255, 255, 255, 0.86);
}

.hp-homepage:not(.hp-legal-page) .hp-footer-note,
.hp-homepage:not(.hp-legal-page) .hp-footer-bottom {
  color: rgba(255, 255, 255, 0.75);
}

.hp-homepage:not(.hp-legal-page) .hp-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.82);
}

.hp-homepage:not(.hp-legal-page) .hp-footer .hp-btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

/* --- Legal Pages --- */
.hp-legal-page {
  background: linear-gradient(
    180deg,
    var(--hp-section-sage-soft) 0%,
    var(--hp-section-warm) 42%,
    var(--hp-section-warm) 100%
  );
}
.hp-legal-header {
  background-color: rgba(251, 251, 249, 0.88);
}
.hp-legal-nav .hp-nav-link {
  position: relative;
}
.hp-legal-nav .hp-nav-link.hp-active {
  color: var(--hp-primary);
  font-weight: 600;
}
.hp-legal-nav .hp-nav-link.hp-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--hp-primary);
  opacity: 0.64;
}
.hp-legal-main {
  padding: 9.25rem 24px 4rem;
}
.hp-legal-card {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.25rem);
  border: 1px solid rgba(95, 122, 97, 0.13);
  border-radius: var(--hp-radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 44px rgba(16, 24, 40, 0.055),
    0 3px 10px rgba(16, 24, 40, 0.025);
}
.hp-legal-title {
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(95, 122, 97, 0.14);
}
.hp-legal-title h1 {
  color: var(--hp-text);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}
.hp-legal-title p {
  margin-top: 0.85rem;
  color: var(--hp-text-muted);
  font-size: 1rem;
  font-weight: 500;
}
.hp-legal-content {
  color: var(--hp-text-muted);
  font-size: 1rem;
  line-height: 1.78;
}
.hp-legal-content h2 {
  margin: 2rem 0 0.75rem;
  color: var(--hp-text);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}
.hp-legal-content h3 {
  margin: 1.35rem 0 0.45rem;
  color: var(--hp-text);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}
.hp-legal-content p + p {
  margin-top: 0.9rem;
}
.hp-legal-content ul {
  margin: 0.75rem 0 1.15rem;
  padding-left: 1.35rem;
}
.hp-legal-content li {
  margin: 0.35rem 0;
  padding-left: 0.2rem;
}
.hp-legal-content li::marker {
  color: var(--hp-primary);
}
.hp-legal-footer .hp-footer-grid {
  margin-bottom: 2.35rem;
}
.hp-legal-footer {
  padding: 3.25rem 0 1.65rem;
}
.hp-legal-footer .hp-footer-about {
  max-width: 360px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hp-h1 {
    font-size: 2.75rem;
  }
  .hp-hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .hp-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hp-hero-actions {
    justify-content: center;
  }
  .hp-hero-trust {
    justify-content: center;
  }
  .hp-hero-img-wrapper {
    max-width: 720px;
    margin: 0 auto;
    transform: none;
  }
  .hp-hero-img-wrapper:hover {
    transform: none;
  }
  .hp-float-card.hp-top-card {
    right: -1rem;
    top: 1rem;
    animation: none;
  }
  .hp-float-card.hp-bottom-card {
    left: -1rem;
    bottom: 1rem;
    animation: none;
  }
  .hp-footer-grid {
    column-gap: clamp(2.5rem, 5vw, 4rem);
  }
}
@media (max-width: 900px) {
  .hp-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.25rem;
  }
  .hp-footer-brand,
  .hp-footer-product,
  .hp-footer-start {
    grid-column: auto;
    justify-self: start;
    max-width: 360px;
  }
  .hp-legal-footer .hp-footer-grid {
    grid-template-columns: 1fr;
  }
  .hp-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
  }
  .hp-footer-bottom-links {
    justify-content: flex-start;
    gap: 0.85rem 1rem;
  }
}
@media (max-width: 768px) {
  .hp-section {
    padding: 5rem 0;
  }
  .hp-ambient-glow {
    display: none;
  }
  .hp-nav {
    display: none;
  }
  .hp-h1 {
    font-size: 2.5rem;
  }
  .hp-h2 {
    font-size: 2rem;
  }
  .hp-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ns-home-why .ns-home-why-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .ns-home-why .ns-home-why-card {
    padding: 2rem;
  }
  .ns-home-why .ns-home-why-collage,
  .ns-home-why .ns-home-why-record-shell {
    min-height: 360px;
  }
  .ns-home-why .ns-home-why-arrow {
    display: flex;
  }
  .ns-home-why .ns-home-why-arrow__circle {
    width: 42px;
    height: 42px;
    margin: 0 auto;
  }
  .ns-home-why .ns-home-why-arrow__circle svg {
    transform: rotate(90deg);
  }
  .hp-steps-line {
    display: none;
  }
  .hp-steps-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hp-step {
    display: flex;
    text-align: left;
    gap: 1.5rem;
    padding: 0;
  }
  .hp-step-number {
    margin: 0;
    flex-shrink: 0;
  }
  .hp-tabs-container {
    gap: 2rem;
  }
  .hp-tabs-nav {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    padding: 0.5rem;
  }
  .hp-tab-btn {
    white-space: nowrap;
    border-radius: 8px;
  }
  .hp-tab-content-wrapper {
    padding: 2.5rem;
    min-height: auto;
  }
  .hp-tab-pane {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hp-tab-visual {
    height: clamp(310px, 58vw, 400px);
  }
  .hp-feature-mockup {
    border-radius: 16px;
  }
  #tab-1 .hp-feature-mockup,
  #tab-2 .hp-feature-mockup {
    width: 98%;
    transform: translateY(13%);
  }
  #tab-3 .hp-feature-mockup {
    width: 54%;
  }
  #tab-4 .hp-feature-mockup {
    width: 76%;
    transform: translateY(20%);
  }
  #tab-5 .hp-feature-mockup {
    width: 90%;
    transform: none;
  }
  .hp-faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hp-faq-copy {
    max-width: 620px;
  }
  .hp-pricing {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 620px;
  }
  .hp-pricing-cta {
    max-width: none;
    text-align: center;
  }
  .hp-pricing-cta p {
    max-width: none;
  }
  .hp-pricing-card {
    max-width: none;
  }
  .hp-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.25rem;
  }
  .hp-footer-brand,
  .hp-footer-product,
  .hp-footer-start {
    justify-self: start;
    max-width: 360px;
  }
  .hp-legal-main {
    padding: 7.5rem 18px 4rem;
  }
  .hp-legal-card {
    padding: 1.65rem;
  }
  .hp-legal-footer .hp-footer-grid {
    grid-template-columns: 1fr;
  }
  .hp-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
  }
  .hp-footer-bottom-links {
    justify-content: flex-start;
    gap: 0.85rem 1rem;
  }
}
@media (max-width: 480px) {
  .hp-h1 {
    font-size: 2.25rem;
  }
  .hp-container {
    padding: 0 18px;
  }
  .hp-header-inner {
    height: 64px;
  }
  .hp-logo img {
    width: 142px;
  }
  .hp-header-actions .hp-nav-link {
    display: none;
  }
  .hp-header-actions {
    gap: 0;
  }
  .hp-header-actions .hp-btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.8125rem;
  }
  .hp-hero {
    padding: 7.5rem 0 4.5rem;
  }
  .hp-hero-img {
    height: 360px;
  }
  .hp-benefits-grid {
    grid-template-columns: 1fr;
  }
  .hp-float-card {
    display: none;
  }
  .hp-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hp-hero-actions .hp-btn {
    width: 100%;
  }
  .hp-tab-content-wrapper {
    padding: 1.5rem;
  }
  .hp-faq-question {
    gap: 1rem;
    padding: 1.2rem 0;
  }
  .hp-faq-item p {
    padding-right: 0;
  }
  .hp-tab-visual {
    height: 250px;
  }
  .hp-feature-mockup {
    border-radius: 14px;
  }
  #tab-1 .hp-feature-mockup,
  #tab-2 .hp-feature-mockup {
    width: 112%;
    transform: translateY(11%);
  }
  #tab-3 .hp-feature-mockup {
    width: 66%;
  }
  #tab-4 .hp-feature-mockup {
    width: 88%;
    transform: translateY(16%);
  }
  #tab-5 .hp-feature-mockup {
    width: 104%;
    transform: none;
  }
  .ns-home-why .ns-home-why-card {
    padding: 1.5rem;
  }
  .ns-home-why .ns-home-why-collage {
    display: grid;
    gap: 0.85rem;
    min-height: auto;
    padding: 1rem;
  }
  .ns-home-why .ns-home-why-fragment {
    position: relative;
    inset: auto;
    max-width: 100%;
  }
  .ns-home-why .ns-home-why-fragment--text-a {
    width: 78%;
  }
  .ns-home-why .ns-home-why-fragment--text-b {
    justify-self: end;
    width: 82%;
  }
  .ns-home-why .ns-home-why-fragment--note {
    width: 82%;
  }
  .ns-home-why .ns-home-why-fragment--sheet {
    width: 100%;
  }
  .ns-home-why .ns-home-why-fragment--tax {
    justify-self: center;
    width: 62%;
  }
  .ns-home-why .ns-home-why-record-shell {
    min-height: auto;
    padding: 1rem;
  }
  .ns-home-why .ns-home-why-record {
    padding: 1rem;
  }
  .ns-home-why .ns-home-why-record__flow {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.8rem;
  }
  .ns-home-why .ns-home-why-record__flow span:nth-child(2n)::after {
    display: none;
  }
  .hp-pricing-cta {
    text-align: left;
  }
  #pricing {
    padding: 3.25rem 0;
  }
  .hp-pricing-cta .hp-btn {
    width: 100%;
  }
  .hp-pricing-card {
    padding: 1.5rem;
  }
  .hp-pricing-card .hp-pricing-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hp-homepage:not(.hp-legal-page) .hp-section {
    padding: 4.75rem 0;
  }

  .hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-card {
    padding: 2rem;
  }

  .hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-collage,
  .hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-record-shell {
    min-height: 370px;
  }

  .hp-homepage:not(.hp-legal-page) .hp-step {
    padding: 1.25rem;
    align-items: flex-start;
  }

  .hp-homepage:not(.hp-legal-page) .hp-step-number {
    width: 64px;
    height: 64px;
    font-size: 1.2rem;
  }

  .hp-homepage:not(.hp-legal-page) .hp-tab-content-wrapper {
    min-height: auto;
    padding: 2.25rem;
  }

  .hp-homepage:not(.hp-legal-page) .hp-tab-pane {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .hp-homepage:not(.hp-legal-page) .hp-tab-visual {
    height: clamp(340px, 60vw, 440px);
  }

  .hp-homepage:not(.hp-legal-page) #tab-1 .hp-feature-mockup,
  .hp-homepage:not(.hp-legal-page) #tab-2 .hp-feature-mockup {
    width: 104%;
    transform: translateY(11%);
  }

  .hp-homepage:not(.hp-legal-page) #tab-3 .hp-feature-mockup {
    width: 58%;
  }

  .hp-homepage:not(.hp-legal-page) #tab-4 .hp-feature-mockup {
    width: 82%;
    transform: translateY(17%);
  }

  .hp-homepage:not(.hp-legal-page) #tab-5 .hp-feature-mockup {
    width: 96%;
  }
}

@media (max-width: 480px) {
  .hp-homepage:not(.hp-legal-page) .hp-hero {
    padding: 7.25rem 0 4rem;
  }

  .hp-homepage:not(.hp-legal-page) .hp-benefits {
    padding: 3rem 0;
  }

  .hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-card {
    padding: 1.5rem;
  }

  .hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-collage,
  .hp-homepage:not(.hp-legal-page) .ns-home-why .ns-home-why-record-shell {
    min-height: auto;
  }

  .hp-homepage:not(.hp-legal-page) .hp-step {
    padding: 1.15rem;
    gap: 1rem;
  }

  .hp-homepage:not(.hp-legal-page) .hp-step-number {
    width: 58px;
    height: 58px;
    font-size: 1.1rem;
  }

  .hp-homepage:not(.hp-legal-page) .hp-tab-content-wrapper {
    padding: 1.35rem;
  }

  .hp-homepage:not(.hp-legal-page) .hp-tab-visual {
    height: 270px;
  }

  .hp-homepage:not(.hp-legal-page) #tab-1 .hp-feature-mockup,
  .hp-homepage:not(.hp-legal-page) #tab-2 .hp-feature-mockup {
    width: 116%;
    transform: translateY(10%);
  }

  .hp-homepage:not(.hp-legal-page) #tab-3 .hp-feature-mockup {
    width: 70%;
  }

  .hp-homepage:not(.hp-legal-page) #tab-4 .hp-feature-mockup {
    width: 94%;
    transform: translateY(15%);
  }

  .hp-homepage:not(.hp-legal-page) #tab-5 .hp-feature-mockup {
    width: 108%;
  }
}

/*blog*/
/* NannySync Blog — isolated public editorial styles */
.blog-page,
.blog-page * {
    box-sizing: border-box;
}

.blog-page {
    --blog-primary: #5f7a61;
    --blog-primary-dark: #4e6750;
    --blog-accent-light: rgba(95, 122, 97, 0.09);
    --blog-accent-mid: rgba(95, 122, 97, 0.17);
    --blog-bg: #ffffff;
    --blog-bg-alt: #f4f5f2;
    --blog-white: #ffffff;
    --blog-text: #2d3436;
    --blog-text-muted: rgba(45, 52, 54, 0.79);
    --blog-text-faint: rgba(45, 52, 54, 0.64);
    --blog-border: rgba(95, 122, 97, 0.16);
    margin: 0;
    background: var(--blog-bg);
    color: var(--blog-text);
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.blog-page img,
.blog-page svg {
    display: block;
    max-width: 100%;
}

.blog-page a:focus-visible,
.blog-page summary:focus-visible {
    border-radius: 6px;
    outline: 3px solid rgba(95, 122, 97, 0.3);
    outline-offset: 3px;
}

.blog-container {
    width: 100%;
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: 24px;
}

.blog-skip-link {
    position: fixed;
    z-index: 2000;
    top: 10px;
    left: 10px;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--blog-text);
    color: var(--blog-white);
    text-decoration: none;
}

.blog-skip-link:focus {
    transform: translateY(0);
}

.blog-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(45, 52, 54, 0.06);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.blog-header__inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.blog-logo {
    flex: 0 1 176px;
}

.blog-logo img {
    width: 176px;
    height: auto;
}

.blog-nav,
.blog-header__actions,
.blog-meta,
.blog-cta__actions,
.blog-footer__bottom,
.blog-footer__links {
    display: flex;
    align-items: center;
}

.blog-nav {
    gap: 25px;
}

.blog-nav a,
.blog-header__actions > a:first-child {
    color: var(--blog-text-muted);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.blog-nav a:hover,
.blog-header__actions > a:first-child:hover {
    color: var(--blog-text);
}

.blog-nav a[aria-current="page"] {
    color: var(--blog-primary-dark);
    font-weight: 600;
}

.blog-header__actions {
    gap: 16px;
}

.blog-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-button--primary {
    background: var(--blog-primary);
    color: var(--blog-white);
    box-shadow: 0 2px 8px rgba(95, 122, 97, 0.18);
}

.blog-button--primary:hover {
    background: var(--blog-primary-dark);
    box-shadow: 0 4px 12px rgba(95, 122, 97, 0.22);
}

.blog-button--secondary {
    border-color: rgba(45, 52, 54, 0.17);
    background: var(--blog-white);
    color: var(--blog-text);
}

.blog-button--secondary:hover {
    border-color: rgba(95, 122, 97, 0.34);
    background: var(--blog-bg-alt);
}

.blog-button--compact {
    min-height: 40px;
    padding: 9px 18px;
    font-size: 14px;
}

.blog-eyebrow,
.blog-category {
    color: var(--blog-primary-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.blog-eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--blog-accent-light);
}

.blog-index-hero {
    padding: 72px 0 54px;
    background: var(--blog-white);
}

.blog-index-hero__copy {
    max-width: 770px;
}

.blog-index-hero h1 {
    max-width: 720px;
    margin: 18px 0 18px;
    font-size: clamp(36px, 4.2vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.13;
}

.blog-index-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--blog-text-muted);
    font-size: 19px;
    line-height: 1.72;
}

.blog-listing {
    padding: 10px 0 88px;
}

.blog-listing__heading {
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.blog-featured-card {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    min-height: 430px;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: var(--blog-white);
    box-shadow: 0 16px 40px rgba(45, 52, 54, 0.06);
    transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.22s ease, box-shadow 0.22s ease;
}

.blog-featured-card__image-link {
    min-height: 100%;
    background: #e8ede5;
}

.blog-featured-card__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-featured-card__body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: clamp(32px, 4.2vw, 54px);
}

.blog-featured-card h2 {
    margin: 14px 0 16px;
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.blog-featured-card h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease;
}

.blog-featured-card h2 a:hover {
    color: var(--blog-primary-dark);
}

.blog-featured-card:focus-within {
    border-color: rgba(95, 122, 97, 0.34);
    box-shadow: 0 22px 52px rgba(45, 52, 54, 0.1);
}

.blog-featured-card__excerpt {
    margin: 0 0 22px;
    color: var(--blog-text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.blog-more-articles {
    margin-top: 42px;
}

.blog-more-articles__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.blog-featured-card--standard {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.blog-featured-card--standard .blog-featured-card__image-link {
    display: block;
    min-height: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-featured-card--standard .blog-featured-card__body {
    flex: 1;
    justify-content: flex-start;
    padding: clamp(28px, 3vw, 38px);
}

.blog-featured-card--standard h2 {
    font-size: clamp(24px, 2.1vw, 30px);
}

.blog-featured-card--standard .blog-meta {
    margin-top: auto;
}

.blog-featured-card--standard .blog-read-link {
    margin-top: 18px;
}

.blog-meta {
    flex-wrap: wrap;
    gap: 8px 13px;
    color: var(--blog-text-faint);
    font-size: 15px;
    font-weight: 500;
}

.blog-meta span + span::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-right: 13px;
    border-radius: 50%;
    vertical-align: middle;
    background: rgba(45, 52, 54, 0.38);
}

.blog-read-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: var(--blog-primary-dark);
    font-size: 15px;
    font-weight: 600;
    text-underline-offset: 4px;
}

.blog-read-link svg {
    width: 17px;
    height: 17px;
    transition: transform 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .blog-featured-card:hover {
        border-color: rgba(95, 122, 97, 0.28);
        box-shadow: 0 22px 52px rgba(45, 52, 54, 0.1);
        transform: translateY(-2px);
    }

    .blog-featured-card:hover .blog-featured-card__image-link img {
        transform: scale(1.015);
    }

    .blog-featured-card--standard:hover {
        border-color: rgba(95, 122, 97, 0.34);
        box-shadow: 0 26px 58px rgba(45, 52, 54, 0.12);
        transform: translateY(-4px);
    }

    .blog-featured-card--standard:hover .blog-featured-card__image-link img {
        transform: scale(1.025);
    }

    .blog-featured-card:hover h2 a {
        color: var(--blog-primary-dark);
    }

    .blog-featured-card:hover .blog-read-link svg {
        transform: translateX(4px);
    }
}

.blog-article-header {
    padding: 42px 0 36px;
    background: var(--blog-white);
}

.blog-breadcrumbs {
    margin-bottom: 35px;
    color: var(--blog-text-faint);
    font-size: 15px;
}

.blog-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-breadcrumbs a {
    color: var(--blog-primary-dark);
    font-weight: 500;
    text-decoration: none;
}

.blog-article-header__copy {
    width: min(100%, 960px);
}

.blog-article-header h1 {
    max-width: 940px;
    margin: 15px 0 20px;
    font-size: clamp(40px, 5vw, 55px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.blog-deck {
    max-width: 830px;
    margin: 0 0 22px;
    color: var(--blog-text-muted);
    font-size: 21px;
    line-height: 1.65;
}

.blog-feature-figure {
    margin: 0 auto;
    padding: 0 0 54px;
}

.blog-feature-figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 18px 46px rgba(45, 52, 54, 0.07);
}

.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 780px) minmax(260px, 300px);
    justify-content: center;
    gap: clamp(48px, 5vw, 72px);
    padding-bottom: 88px;
}

.blog-article-body {
    min-width: 0;
    color: var(--blog-text-muted);
    font-size: 18px;
    line-height: 1.72;
}

.blog-article-body > :first-child {
    margin-top: 0;
}

.blog-article-body p {
    margin: 0 0 21px;
}

.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4 {
    color: var(--blog-text);
    scroll-margin-top: 100px;
}

.blog-article-body h2 {
    margin: 58px 0 17px;
    font-size: clamp(30px, 3vw, 36px);
    font-weight: 600;
    letter-spacing: -0.022em;
    line-height: 1.22;
}

.blog-article-body h3 {
    margin: 34px 0 12px;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.35;
}

.blog-article-body h4 {
    margin: 27px 0 10px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-article-body ul,
.blog-article-body ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.blog-article-body li {
    margin: 7px 0;
    padding-left: 5px;
}

.blog-article-body li::marker {
    color: var(--blog-primary);
    font-weight: 600;
}

.blog-article-body a {
    color: var(--blog-primary-dark);
    overflow-wrap: anywhere;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.blog-article-body a.blog-button--primary,
.blog-article-body a.blog-button--primary:hover,
.blog-article-body a.blog-button--primary:focus-visible {
    color: var(--blog-white);
    overflow-wrap: normal;
    text-decoration: none;
}

.blog-toc {
    grid-column: 2;
    grid-row: 1;
}

.blog-toc__desktop,
.blog-toc details {
    position: sticky;
    top: 98px;
    padding: 24px;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: var(--blog-white);
}

.blog-toc__mobile {
    display: none;
}

.blog-toc__title,
.blog-toc summary {
    margin: 0;
    color: var(--blog-text);
    font-size: 16px;
    font-weight: 600;
    list-style: none;
}

.blog-toc summary::-webkit-details-marker {
    display: none;
}

.blog-toc ol {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.blog-toc li + li {
    margin-top: 12px;
}

.blog-toc a {
    display: block;
    color: var(--blog-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    text-decoration: none;
}

.blog-toc a:hover {
    color: var(--blog-primary-dark);
}

.blog-disclaimer,
.blog-distinction,
.blog-example {
    margin: 30px 0;
    padding: 24px 25px;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: #f3f7f2;
}

.blog-disclaimer {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
}

.blog-disclaimer svg {
    width: 26px;
    height: 26px;
    margin-top: 1px;
    color: var(--blog-primary-dark);
    flex: none;
}

.blog-disclaimer p,
.blog-distinction p,
.blog-example p {
    margin: 0;
    font-size: 16px;
    line-height: 1.67;
}

.blog-distinction,
.blog-example {
    background: var(--blog-white);
}

.blog-callout-label {
    display: block;
    margin-bottom: 7px;
    color: var(--blog-text);
    font-size: 15px;
    font-weight: 600;
}

.blog-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 34px;
}

.blog-status-card {
    padding: 20px;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: var(--blog-white);
}

.blog-status-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blog-text);
    font-size: 16px;
    font-weight: 600;
}

.blog-status-card p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.6;
}

.blog-status-card p:last-child {
    margin-bottom: 0;
}

.blog-checklist {
    margin: 26px 0 32px;
    padding: 26px;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: var(--blog-white);
}

.blog-article-body .blog-checklist h2,
.blog-checklist h3 {
    margin-top: 0;
}

.blog-article-body .blog-checklist h2 {
    font-size: clamp(28px, 3vw, 34px);
}

.blog-checklist h3:not(:first-child) {
    margin-top: 28px;
}

.blog-checklist ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.blog-checklist li {
    position: relative;
    padding-left: 32px;
}

.blog-checklist li::before {
    position: absolute;
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(95, 122, 97, 0.33);
    border-radius: 6px;
    color: var(--blog-primary-dark);
    content: "✓";
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.blog-content-figure {
    margin: 36px 0 42px;
}

.blog-content-figure figcaption {
    margin-top: 14px;
    color: var(--blog-text-faint);
    font-size: 15px;
    line-height: 1.6;
}

.blog-content-figure--process {
    margin: 40px 0 46px;
    padding: 34px 30px;
    border: 1px solid rgba(95, 122, 97, 0.2);
    border-radius: 16px;
    background: #f7f9f6;
}

.blog-process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 28px;
    margin: 0;
    padding: 0;
    isolation: isolate;
    list-style: none;
}

.blog-process-flow li {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 116px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: #f3f7f2;
    color: var(--blog-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}

.blog-process-flow li:nth-child(1) {
    grid-area: 1 / 1;
}

.blog-process-flow li:nth-child(2) {
    grid-area: 1 / 2;
}

.blog-process-flow li:nth-child(3) {
    grid-area: 1 / 3;
}

.blog-process-flow li:nth-child(4) {
    grid-area: 2 / 3;
}

.blog-process-flow li:nth-child(5) {
    grid-area: 2 / 2;
}

.blog-process-flow li:nth-child(6) {
    grid-area: 2 / 1;
}

.blog-process-flow li::after {
    position: absolute;
    z-index: -1;
    background: rgba(95, 122, 97, 0.3);
    content: "";
    pointer-events: none;
}

.blog-process-flow li:nth-child(1)::after,
.blog-process-flow li:nth-child(2)::after {
    top: 50%;
    left: 100%;
    width: 29px;
    height: 1px;
}

.blog-process-flow li:nth-child(3)::after {
    top: 100%;
    left: 50%;
    width: 1px;
    height: 23px;
}

.blog-process-flow li:nth-child(4)::after,
.blog-process-flow li:nth-child(5)::after {
    top: 50%;
    right: 100%;
    width: 29px;
    height: 1px;
}

.blog-process-flow__number {
    display: inline-grid;
    width: 36px;
    height: 36px;
    flex: none;
    place-items: center;
    border: 1px solid rgba(95, 122, 97, 0.34);
    border-radius: 50%;
    background: var(--blog-white);
    color: var(--blog-primary-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.blog-process-flow--five {
    display: flex;
    max-width: 720px;
    flex-direction: column;
    gap: 18px;
    margin: 0 auto;
    padding: 10px 0;
}

.blog-process-flow--five::before {
    position: absolute;
    z-index: 0;
    top: 64px;
    bottom: 92px;
    left: 50%;
    width: 2px;
    border-radius: 2px;
    background: rgba(95, 122, 97, 0.34);
    content: "";
    transform: translateX(-50%);
}

.blog-process-flow--five li,
.blog-process-flow--five li:nth-child(n) {
    z-index: 1;
    width: calc(50% - 38px);
    min-height: 118px;
    justify-content: center;
    gap: 0;
    grid-area: auto;
    padding: 24px 26px;
    border-color: rgba(95, 122, 97, 0.22);
    background: var(--blog-white);
    box-shadow: 0 12px 28px rgba(46, 62, 49, 0.07);
}

.blog-process-flow--five li:nth-child(odd) {
    align-self: flex-start;
}

.blog-process-flow--five li:nth-child(even) {
    align-self: flex-end;
}

.blog-process-flow--five li::after,
.blog-process-flow--five li:nth-child(n)::after {
    z-index: 0;
    top: 50%;
    display: block;
    width: 38px;
    height: 2px;
    background: rgba(95, 122, 97, 0.34);
}

.blog-process-flow--five li:nth-child(odd)::after {
    right: auto;
    left: 100%;
}

.blog-process-flow--five li:nth-child(even)::after {
    right: 100%;
    left: auto;
}

.blog-process-flow--five .blog-process-flow__number {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 2px solid rgba(95, 122, 97, 0.28);
    background: var(--blog-white);
    box-shadow: 0 0 0 7px #f7f9f6;
    font-size: 16px;
    transform: translateY(-50%);
}

.blog-process-flow--five li:nth-child(odd) .blog-process-flow__number {
    right: -61px;
}

.blog-process-flow--five li:nth-child(even) .blog-process-flow__number {
    left: -61px;
}

.blog-process-flow--five strong {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}

.blog-process-flow--five li:nth-child(5) {
    width: min(100%, 480px);
    min-height: 128px;
    align-self: center;
    align-items: center;
    margin-top: 8px;
    padding: 39px 30px 28px;
    border-color: var(--blog-primary-dark);
    background: var(--blog-primary-dark);
    color: var(--blog-white);
    text-align: center;
    box-shadow: 0 16px 34px rgba(47, 70, 51, 0.18);
}

.blog-process-flow--five li:nth-child(5)::after {
    display: none;
}

.blog-process-flow--five li:nth-child(5) .blog-process-flow__number {
    top: -24px;
    left: 50%;
    border: 4px solid #f7f9f6;
    color: var(--blog-primary-dark);
    box-shadow: none;
    transform: translateX(-50%);
}

.blog-process-flow--five li:nth-child(5) strong {
    font-size: 20px;
}

.blog-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
}

.blog-comparison-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: var(--blog-white);
}

.blog-comparison-card--dedicated {
    border-color: rgba(95, 122, 97, 0.34);
    background: #f7f9f6;
}

.blog-article-body .blog-comparison-card h3 {
    margin: 0;
    color: var(--blog-text);
    font-size: 19px;
    line-height: 1.4;
}

.blog-comparison-card__group + .blog-comparison-card__group {
    padding-top: 16px;
    border-top: 1px solid var(--blog-border);
}

.blog-article-body .blog-comparison-card h4 {
    margin: 0 0 8px;
    color: var(--blog-primary-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-transform: uppercase;
}

.blog-comparison-card ul {
    margin: 0;
    padding-left: 20px;
}

.blog-comparison-card li {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.55;
}

.blog-comparison-card li:last-child {
    margin-bottom: 0;
}

.blog-comparison-card li::marker {
    color: var(--blog-primary);
}

.blog-boundary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 32px 0 42px;
}

.blog-boundary-card {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: var(--blog-white);
}

.blog-boundary-card--organizes {
    border-color: rgba(95, 122, 97, 0.34);
    background: #f7f9f6;
}

.blog-article-body .blog-boundary-card h3 {
    margin: 0 0 12px;
    color: var(--blog-text);
    font-size: 19px;
    line-height: 1.4;
}

.blog-boundary-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-boundary-card li {
    margin: 0;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.55;
}

.blog-boundary-card li + li {
    border-top: 1px solid var(--blog-border);
}

.blog-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.blog-method-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.blog-method-card {
    min-width: 0;
    padding: 20px 18px;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: var(--blog-white);
}

.blog-method-card--dedicated {
    border-color: rgba(95, 122, 97, 0.42);
    background: #f7f9f6;
}

.blog-article-body .blog-method-card h3 {
    margin: 0 0 14px;
    color: var(--blog-text);
    font-size: 17px;
    line-height: 1.4;
}

.blog-method-card dl {
    margin: 0;
}

.blog-method-card dl > div {
    padding: 12px 0;
    border-top: 1px solid var(--blog-border);
}

.blog-method-card dl > div:last-child {
    padding-bottom: 0;
}

.blog-method-card dt {
    color: var(--blog-primary-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-transform: uppercase;
}

.blog-method-card dd {
    margin: 5px 0 0;
    color: var(--blog-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.blog-decision-guide {
    padding: 30px;
    border: 1px solid rgba(95, 122, 97, 0.2);
    border-radius: 16px;
    background: #f7f9f6;
}

.blog-decision-guide__start {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 26px;
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--blog-primary-dark);
    color: var(--blog-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.blog-decision-guide ol {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-decision-guide li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.blog-decision-guide li::after {
    display: grid;
    width: 36px;
    height: 36px;
    grid-area: 1 / 2;
    place-items: center;
    justify-self: center;
    border: 1px solid rgba(95, 122, 97, 0.3);
    border-radius: 50%;
    background: var(--blog-white);
    color: var(--blog-primary-dark);
    content: "→";
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
}

.blog-decision-guide__question,
.blog-decision-guide li strong {
    display: flex;
    min-width: 0;
    min-height: 86px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 17px 20px;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: var(--blog-white);
    color: var(--blog-text);
    font-size: 15px;
    line-height: 1.5;
}

.blog-decision-guide__question {
    grid-area: 1 / 1;
    font-weight: 500;
}

.blog-decision-guide li strong {
    grid-area: 1 / 3;
    border-color: rgba(95, 122, 97, 0.3);
    background: rgba(95, 122, 97, 0.06);
    color: var(--blog-primary-dark);
    font-weight: 600;
}

.blog-decision-guide li small {
    display: block;
    margin-bottom: 6px;
    color: var(--blog-text-faint);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-decision-guide li strong small {
    color: var(--blog-primary-dark);
}

.blog-feature-comparison figcaption {
    margin: 0 0 14px;
    color: var(--blog-text);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-feature-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: var(--blog-white);
    -webkit-overflow-scrolling: touch;
}

.blog-feature-table-wrap:focus-visible {
    outline: 3px solid rgba(95, 122, 97, 0.28);
    outline-offset: 3px;
}

.blog-feature-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.blog-feature-table th,
.blog-feature-table td {
    padding: 15px 16px;
    border-bottom: 1px solid var(--blog-border);
    color: var(--blog-text);
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    vertical-align: middle;
}

.blog-feature-table thead th {
    background: #fbfcfb;
    font-weight: 600;
}

.blog-feature-table th:first-child {
    position: sticky;
    z-index: 1;
    left: 0;
    min-width: 165px;
    background: var(--blog-white);
    box-shadow: 1px 0 0 var(--blog-border);
    text-align: left;
}

.blog-feature-table thead th:first-child {
    z-index: 2;
    background: #fbfcfb;
}

.blog-feature-table th:last-child,
.blog-feature-table td:last-child {
    background: #f3f7f2;
}

.blog-feature-table tbody tr:last-child th,
.blog-feature-table tbody tr:last-child td {
    border-bottom: 0;
}

.blog-feature-signal {
    position: relative;
    display: inline-grid;
    min-width: 26px;
    min-height: 26px;
    place-items: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.blog-feature-signal--yes {
    color: var(--blog-primary-dark);
}

.blog-feature-signal--manual {
    color: var(--blog-text-muted);
}

.blog-feature-signal--no {
    color: var(--blog-text-faint);
    font-weight: 400;
}

.blog-feature-comparison__legend {
    margin: 12px 0 0;
    color: var(--blog-text-faint);
    font-size: 14px;
    line-height: 1.55;
}

/* Weekly payment record article components */
.blog-weekly-record,
.blog-review-checklist,
.blog-record-flow {
    margin: 34px 0 44px;
    border: 1px solid var(--blog-border);
    border-radius: 14px;
    background: var(--blog-white);
}

.blog-weekly-record {
    overflow: hidden;
}

.blog-weekly-record__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid var(--blog-border);
    background: #f7f9f6;
}

.blog-weekly-record__eyebrow,
.blog-weekly-record__status-label,
.blog-record-flow__label {
    display: block;
    margin-bottom: 5px;
    color: var(--blog-text-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.45;
    text-transform: uppercase;
}

.blog-weekly-record__header h3 {
    margin: 0;
    font-size: 22px;
}

.blog-weekly-record__date {
    margin: 8px 0 0;
    color: var(--blog-text-muted);
    font-size: 15px;
    font-weight: 500;
}

.blog-weekly-record__status {
    flex: 0 0 auto;
    text-align: right;
}

.blog-weekly-record__status strong {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 5px 11px;
    border: 1px solid rgba(95, 122, 97, 0.28);
    border-radius: 999px;
    background: rgba(95, 122, 97, 0.1);
    color: var(--blog-primary-dark);
    font-size: 13px;
    font-weight: 600;
}

.blog-weekly-record__section {
    padding: 22px 24px;
}

.blog-weekly-record__section + .blog-weekly-record__section {
    border-top: 1px solid var(--blog-border);
}

.blog-weekly-record__section h4 {
    margin: 0 0 15px;
    color: var(--blog-text);
    font-size: 16px;
    font-weight: 600;
}

.blog-weekly-record__days,
.blog-weekly-record__confirmation,
.blog-review-checklist ul,
.blog-record-flow ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-weekly-record__days {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.blog-weekly-record__days li {
    margin: 0;
    padding: 13px 12px;
    border: 1px solid var(--blog-border);
    border-radius: 10px;
    background: #fff;
}

.blog-weekly-record__days span,
.blog-weekly-record__summary dt,
.blog-weekly-record__payment dt {
    display: block;
    color: var(--blog-text-muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.blog-weekly-record__days strong,
.blog-weekly-record__summary dd,
.blog-weekly-record__payment dd {
    display: block;
    margin: 5px 0 0;
    color: var(--blog-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.blog-weekly-record__summary,
.blog-weekly-record__payment {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.blog-weekly-record__summary > div,
.blog-weekly-record__payment > div {
    padding: 14px;
    border-radius: 10px;
    background: #f7f9f6;
}

.blog-weekly-record__note {
    margin: 0;
    color: var(--blog-text-muted);
    font-size: 15px;
}

.blog-weekly-record__confirmation {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blog-text);
    font-size: 15px;
    font-weight: 600;
}

.blog-weekly-record__confirmation::before,
.blog-review-checklist li::before {
    content: "✓";
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 50%;
    background: rgba(95, 122, 97, 0.14);
    color: var(--blog-primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.blog-weekly-record figcaption,
.blog-record-flow figcaption {
    padding: 17px 24px;
    border-top: 1px solid var(--blog-border);
    color: var(--blog-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.blog-review-checklist {
    padding: 24px;
    background: #f7f9f6;
}

.blog-review-checklist h3 {
    margin: 0 0 18px;
    font-size: 22px;
}

.blog-review-checklist ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 18px;
}

.blog-review-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 0;
    color: var(--blog-text);
    font-size: 15px;
    font-weight: 500;
}

.blog-review-checklist p {
    margin: 19px 0 0;
    padding-top: 17px;
    border-top: 1px solid var(--blog-border);
    color: var(--blog-text-muted);
    font-size: 15px;
}

.blog-record-flow {
    padding: 26px;
    background: #f7f9f6;
}

.blog-record-flow ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    counter-reset: record-step;
}

.blog-record-flow li {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 42px 12px 14px;
    border: 1px solid rgba(95, 122, 97, 0.26);
    border-radius: 10px;
    background: #fff;
    color: var(--blog-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    counter-increment: record-step;
}

.blog-record-flow li::before {
    content: counter(record-step);
    position: absolute;
    top: 12px;
    left: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(95, 122, 97, 0.14);
    color: var(--blog-primary-dark);
    font-size: 12px;
    line-height: 22px;
    transform: translateX(-50%);
}

.blog-record-flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: calc(100% + 1px);
    width: 20px;
    border-top: 1px solid rgba(95, 122, 97, 0.34);
}

.blog-record-flow li:nth-child(4)::after {
    display: none;
}

.blog-record-flow li.blog-record-flow__external {
    border-style: dashed;
    border-color: rgba(40, 49, 46, 0.34);
    background: #fff;
}

.blog-record-flow__external .blog-record-flow__label {
    margin-top: 7px;
    color: var(--blog-text-muted);
    font-size: 10px;
}

.blog-record-flow li:last-child {
    border-color: rgba(95, 122, 97, 0.44);
    background: rgba(95, 122, 97, 0.1);
}

.blog-record-flow li:last-child::before {
    content: "✓";
    background: var(--blog-primary);
    color: #fff;
}

.blog-record-flow figcaption {
    margin: 24px -26px -26px;
    background: #fff;
}

@media (max-width: 1100px) {
    .blog-record-flow ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-record-flow li:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 760px) {
    .blog-weekly-record__days,
    .blog-weekly-record__summary,
    .blog-weekly-record__payment {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-review-checklist ul {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 520px) {
    .blog-weekly-record__header {
        flex-direction: column;
        padding: 20px;
    }

    .blog-weekly-record__status {
        text-align: left;
    }

    .blog-weekly-record__section {
        padding: 20px;
    }

    .blog-weekly-record__days,
    .blog-weekly-record__summary,
    .blog-weekly-record__payment,
    .blog-record-flow ol {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-weekly-record__days li {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 14px;
    }

    .blog-weekly-record__days strong {
        margin-top: 0;
    }

    .blog-review-checklist,
    .blog-record-flow {
        padding: 20px;
    }

    .blog-record-flow li {
        min-height: 76px;
        padding: 17px 18px 17px 54px;
        text-align: left;
    }

    .blog-record-flow li::before {
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
    }

    .blog-record-flow li:not(:last-child)::after {
        display: block;
        top: 100%;
        left: 29px;
        width: 1px;
        height: 20px;
        border: 0;
        border-left: 1px solid rgba(95, 122, 97, 0.34);
    }

    .blog-record-flow figcaption {
        margin: 20px -20px -20px;
    }
}

/* Central product-positioning article components */
.blog-toc--long .blog-toc__desktop {
    max-height: calc(100vh - 122px);
    overflow-y: auto;
}

.blog-positioning-statement {
    margin: 30px 0;
    padding: 24px 26px;
    border: 1px solid rgba(95, 122, 97, 0.24);
    border-radius: 14px;
    background: #f3f7f2;
}

.blog-positioning-statement p {
    margin: 0;
    color: var(--blog-text);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;
}

.blog-positioning-statement p + p {
    margin-top: 4px;
    color: var(--blog-primary-dark);
}

.blog-connection-map,
.blog-product-workflow {
    margin: 34px 0 44px;
    border: 1px solid var(--blog-border);
    border-radius: 16px;
    background: #f7f9f6;
    overflow: hidden;
}

.blog-connection-map {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 106px minmax(0, 1fr);
    align-items: stretch;
}

.blog-connection-map__sources,
.blog-connection-map__result {
    padding: 24px;
}

.blog-connection-map h3 {
    margin: 0 0 18px;
    font-size: 21px;
}

.blog-connection-map ul,
.blog-product-workflow ol,
.blog-inline-flow {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-connection-map__sources ul,
.blog-connection-map__result ul {
    display: grid;
    gap: 9px;
}

.blog-connection-map li {
    margin: 0;
    padding: 11px 12px;
    border: 1px solid var(--blog-border);
    border-radius: 10px;
    background: var(--blog-white);
}

.blog-connection-map__sources li {
    display: grid;
    gap: 2px;
}

.blog-connection-map li strong {
    color: var(--blog-text);
    font-size: 14px;
    font-weight: 600;
}

.blog-connection-map li span {
    color: var(--blog-text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.blog-connection-map__transition {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 11px;
    padding: 20px 10px;
    color: var(--blog-primary-dark);
    text-align: center;
}

.blog-connection-map__transition span {
    color: var(--blog-text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.45;
    text-transform: uppercase;
}

.blog-connection-map__transition svg {
    width: 46px;
    height: 24px;
}

.blog-connection-map__result {
    border-left: 1px solid rgba(95, 122, 97, 0.2);
    background: rgba(95, 122, 97, 0.08);
}

.blog-connection-map__result li {
    color: var(--blog-text);
    font-size: 14px;
    font-weight: 600;
}

.blog-connection-map__result li::before {
    margin-right: 8px;
    color: var(--blog-primary-dark);
    content: "✓";
}

.blog-connection-map figcaption,
.blog-product-workflow figcaption {
    grid-column: 1 / -1;
    padding: 17px 24px;
    border-top: 1px solid var(--blog-border);
    background: var(--blog-white);
    color: var(--blog-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.blog-product-workflow {
    padding: 26px;
}

.blog-product-workflow ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    counter-reset: product-step;
}

.blog-product-workflow li {
    position: relative;
    min-width: 0;
    min-height: 126px;
    margin: 0;
    padding: 44px 12px 15px;
    border: 1px solid rgba(95, 122, 97, 0.27);
    border-radius: 11px;
    background: var(--blog-white);
    color: var(--blog-text);
    counter-increment: product-step;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.blog-product-workflow li::before {
    position: absolute;
    top: 12px;
    left: 50%;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    background: rgba(95, 122, 97, 0.14);
    color: var(--blog-primary-dark);
    content: counter(product-step);
    font-size: 12px;
    transform: translateX(-50%);
}

.blog-product-workflow li:not(:last-child)::after {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: calc(100% + 1px);
    width: 20px;
    border-top: 1px solid rgba(95, 122, 97, 0.34);
    content: "";
}

.blog-product-workflow li:nth-child(4)::after {
    display: none;
}

.blog-product-workflow li.blog-product-workflow__external {
    border-style: dashed;
    border-color: rgba(45, 52, 54, 0.38);
}

.blog-product-workflow__external span {
    display: block;
    margin-top: 8px;
    color: var(--blog-text-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-product-workflow li:last-child {
    border-color: rgba(95, 122, 97, 0.44);
    background: rgba(95, 122, 97, 0.11);
}

.blog-product-workflow li:last-child::before {
    background: var(--blog-primary);
    color: var(--blog-white);
    content: "✓";
}

.blog-product-workflow figcaption {
    margin: 24px -26px -26px;
}

.blog-status-transition {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 24px;
}

.blog-status-transition strong {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid rgba(95, 122, 97, 0.3);
    border-radius: 999px;
    background: rgba(95, 122, 97, 0.1);
    color: var(--blog-primary-dark);
    font-size: 13px;
    font-weight: 600;
}

.blog-status-transition > span {
    color: var(--blog-text-muted);
}

.blog-product-comparison figcaption {
    margin: 0 0 14px;
    color: var(--blog-text);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-product-comparison .blog-feature-table {
    min-width: 680px;
}

.blog-product-comparison .blog-feature-table th:first-child {
    min-width: 220px;
}

.blog-product-comparison .blog-feature-table th,
.blog-product-comparison .blog-feature-table td {
    text-align: left;
}

.blog-inline-flow {
    display: grid;
    gap: 0;
    margin-bottom: 28px;
    counter-reset: inline-step;
}

.blog-inline-flow li {
    position: relative;
    min-height: 62px;
    margin: 0 0 14px;
    padding: 18px 18px 18px 58px;
    border: 1px solid var(--blog-border);
    border-radius: 11px;
    background: #f7f9f6;
    color: var(--blog-text);
    counter-increment: inline-step;
    font-size: 15px;
    font-weight: 600;
}

.blog-inline-flow li::before {
    position: absolute;
    top: 50%;
    left: 18px;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: rgba(95, 122, 97, 0.14);
    color: var(--blog-primary-dark);
    content: counter(inline-step);
    font-size: 12px;
    transform: translateY(-50%);
}

.blog-inline-flow li:not(:last-child)::after {
    position: absolute;
    top: 100%;
    left: 29px;
    width: 1px;
    height: 14px;
    border-left: 1px solid rgba(95, 122, 97, 0.34);
    content: "";
}

.blog-inline-flow li.blog-inline-flow__external {
    border-style: dashed;
    border-color: rgba(45, 52, 54, 0.38);
    background: var(--blog-white);
}

.blog-inline-flow li:last-child {
    border-color: rgba(95, 122, 97, 0.4);
    background: rgba(95, 122, 97, 0.1);
}

@media (max-width: 760px) {
    .blog-connection-map {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-connection-map__transition {
        min-height: 108px;
    }

    .blog-connection-map__transition svg {
        transform: rotate(90deg);
    }

    .blog-connection-map__result {
        border-top: 1px solid rgba(95, 122, 97, 0.2);
        border-left: 0;
    }

    .blog-product-workflow ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-product-workflow li:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 520px) {
    .blog-positioning-statement,
    .blog-connection-map__sources,
    .blog-connection-map__result,
    .blog-product-workflow {
        padding: 20px;
    }

    .blog-positioning-statement p {
        font-size: 18px;
    }

    .blog-product-workflow ol {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-product-workflow li {
        min-height: 76px;
        padding: 17px 18px 17px 55px;
        text-align: left;
    }

    .blog-product-workflow li::before {
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
    }

    .blog-product-workflow li:not(:last-child)::after {
        display: block;
        top: 100%;
        left: 29px;
        width: 1px;
        height: 20px;
        border: 0;
        border-left: 1px solid rgba(95, 122, 97, 0.34);
    }

    .blog-product-workflow figcaption {
        margin: 20px -20px -20px;
    }

    .blog-status-transition {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .blog-status-transition > span {
        margin-left: 18px;
    }

    .blog-product-comparison .blog-feature-table-wrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
    }

    .blog-product-comparison .blog-feature-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 12px;
    }

    .blog-product-comparison .blog-feature-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .blog-product-comparison .blog-feature-table tbody,
    .blog-product-comparison .blog-feature-table tr,
    .blog-product-comparison .blog-feature-table th,
    .blog-product-comparison .blog-feature-table td {
        display: block;
        width: 100%;
    }

    .blog-product-comparison .blog-feature-table tr {
        overflow: hidden;
        border: 1px solid var(--blog-border);
        border-radius: 11px;
        background: var(--blog-white);
    }

    .blog-product-comparison .blog-feature-table th,
    .blog-product-comparison .blog-feature-table td {
        position: static;
        min-width: 0;
        padding: 12px 15px;
        border-bottom: 1px solid var(--blog-border);
    }

    .blog-product-comparison .blog-feature-table th {
        background: #f7f9f6;
        font-size: 15px;
    }

    .blog-product-comparison .blog-feature-table td {
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 10px;
    }

    .blog-product-comparison .blog-feature-table td::before {
        color: var(--blog-text-muted);
        content: attr(data-label);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    .blog-product-comparison .blog-feature-table td:last-child {
        border-bottom: 0;
        background: #f3f7f2;
    }
}

.blog-sources {
    margin-top: 56px;
    padding-top: 30px;
    border-top: 1px solid var(--blog-border);
}

.blog-sources h2 {
    margin-top: 0;
    font-size: 24px;
}

.blog-sources li {
    font-size: 16px;
}

.blog-faq details {
    border-top: 1px solid var(--blog-border);
}

.blog-faq details:last-child {
    border-bottom: 1px solid var(--blog-border);
}

.blog-faq summary {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--blog-text);
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    list-style: none;
}

.blog-faq summary::after {
    color: var(--blog-primary-dark);
    content: "+";
    font-size: 22px;
    font-weight: 400;
}

.blog-faq details[open] summary::after {
    content: "−";
}

.blog-faq summary::-webkit-details-marker {
    display: none;
}

.blog-faq details p {
    padding: 0 38px 18px 0;
    font-size: 17px;
}

.blog-cta {
    margin-top: 62px;
    padding: clamp(30px, 5vw, 48px);
    border: 1px solid var(--blog-border);
    border-radius: 12px;
    background: #eef4ee;
}

.blog-article-body .blog-cta h2 {
    margin: 0 0 13px;
    font-size: clamp(28px, 4vw, 36px);
}

.blog-cta p {
    max-width: 600px;
    margin-bottom: 13px;
}

.blog-cta p.blog-cta__boundary {
    margin: 12px 0 0;
    color: var(--blog-text-faint);
    font-size: 15px;
}

.blog-cta__actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.blog-footer {
    padding: 52px 0 27px;
    background: var(--blog-primary);
    color: rgba(255, 255, 255, 0.82);
}

.blog-footer__grid {
    display: grid;
    grid-template-columns: minmax(270px, 1.5fr) minmax(130px, 0.6fr) minmax(220px, 0.8fr);
    gap: 48px;
    padding-bottom: 40px;
}

.blog-footer .blog-logo img {
    filter: brightness(0) invert(1);
}

.blog-footer p {
    max-width: 390px;
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.65;
}

.blog-footer h2 {
    margin: 0 0 15px;
    color: var(--blog-white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-footer li + li {
    margin-top: 10px;
}

.blog-footer a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.blog-footer a:hover {
    color: var(--blog-white);
}

.blog-footer .blog-button--secondary {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
    color: var(--blog-white);
}

.blog-footer .blog-button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.16);
}

.blog-footer__bottom {
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.blog-footer__links {
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 1100px) {
    .blog-method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-article-layout {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .blog-article-body,
    .blog-toc {
        width: 100%;
        max-width: 780px;
    }

    .blog-toc {
        order: -1;
    }

    .blog-toc__desktop {
        display: none;
    }

    .blog-toc__mobile {
        display: block;
    }

    .blog-toc details {
        position: static;
    }

    .blog-toc details:not([open]) > nav {
        display: none;
    }

    .blog-toc summary {
        display: flex;
        min-height: 28px;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .blog-toc summary::after {
        content: "+";
        font-size: 20px;
        font-weight: 400;
    }

    .blog-toc details[open] summary::after {
        content: "−";
    }
}

@media (max-width: 960px) {
    .blog-nav {
        display: none;
    }

    .blog-featured-card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .blog-more-articles__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .blog-method-grid {
        grid-template-columns: 1fr;
    }

    .blog-decision-guide {
        padding: 24px 20px;
    }

    .blog-decision-guide__start {
        margin-bottom: 22px;
    }

    .blog-decision-guide ol {
        gap: 20px;
    }

    .blog-decision-guide li {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .blog-decision-guide li::after {
        width: 32px;
        height: 32px;
        grid-area: 2 / 1;
        margin: -1px 0;
        content: "↓";
        font-size: 17px;
    }

    .blog-decision-guide__question,
    .blog-decision-guide li strong {
        min-height: 80px;
    }

    .blog-decision-guide__question {
        grid-area: 1 / 1;
    }

    .blog-decision-guide li strong {
        grid-area: 3 / 1;
    }

    .blog-feature-table-wrap {
        scrollbar-color: rgba(95, 122, 97, 0.46) rgba(95, 122, 97, 0.08);
        scrollbar-width: thin;
    }

    .blog-header__inner {
        min-height: 68px;
    }

    .blog-logo img {
        width: min(160px, 43vw);
    }

    .blog-header__actions .blog-button {
        display: none;
    }

    .blog-index-hero {
        padding: 54px 0 45px;
    }

    .blog-index-hero h1 {
        font-size: 36px;
    }

    .blog-index-hero p {
        font-size: 17px;
    }

    .blog-listing {
        padding-bottom: 66px;
    }

    .blog-featured-card {
        display: block;
        min-height: 0;
    }

    .blog-featured-card__image-link {
        display: block;
        aspect-ratio: 3 / 2;
    }

    .blog-featured-card__body {
        padding: 28px 24px 30px;
    }

    .blog-featured-card h2 {
        font-size: 28px;
    }

    .blog-article-header {
        padding: 29px 0 31px;
    }

    .blog-breadcrumbs {
        margin-bottom: 27px;
    }

    .blog-article-header h1 {
        font-size: clamp(34px, 9vw, 40px);
        overflow-wrap: break-word;
    }

    .blog-deck {
        font-size: 18px;
    }

    .blog-feature-figure {
        padding-bottom: 42px;
    }

    .blog-article-header .blog-meta {
        gap: 7px 12px;
    }

    .blog-article-header .blog-meta span + span::before {
        display: none;
    }

    .blog-article-header .blog-meta span:last-child {
        flex-basis: 100%;
    }

    .blog-article-layout {
        padding-bottom: 66px;
    }

    .blog-article-body {
        font-size: 17px;
        line-height: 1.72;
    }

    .blog-article-body h2 {
        margin-top: 48px;
        font-size: 30px;
    }

    .blog-article-body h3 {
        font-size: 22px;
    }

    .blog-disclaimer,
    .blog-distinction,
    .blog-example,
    .blog-checklist,
    .blog-toc details {
        padding: 20px;
    }

    .blog-content-figure--process {
        margin: 34px 0 40px;
        padding: 22px 16px;
    }

    .blog-toc a {
        font-size: 16px;
    }

    .blog-status-grid {
        grid-template-columns: 1fr;
    }

    .blog-process-flow,
    .blog-comparison-grid,
    .blog-boundary-grid {
        grid-template-columns: 1fr;
    }

    .blog-process-flow {
        gap: 18px;
    }

    .blog-process-flow li,
    .blog-process-flow li:nth-child(n) {
        grid-area: auto;
    }

    .blog-process-flow li {
        min-height: 0;
        align-items: center;
        flex-direction: row;
    }

    .blog-process-flow li::after,
    .blog-process-flow li:nth-child(n)::after {
        top: 100%;
        right: auto;
        left: 36px;
        width: 1px;
        height: 19px;
    }

    .blog-process-flow li:last-child::after {
        display: none;
    }

    .blog-process-flow--five {
        gap: 14px;
        padding: 0;
    }

    .blog-process-flow--five::before {
        top: 46px;
        bottom: 48px;
        left: 23px;
        transform: none;
    }

    .blog-process-flow--five li,
    .blog-process-flow--five li:nth-child(n) {
        width: 100%;
        min-height: 92px;
        align-self: stretch;
        align-items: flex-start;
        justify-content: center;
        margin: 0;
        padding: 20px 18px 20px 66px;
        text-align: left;
    }

    .blog-process-flow--five li::after,
    .blog-process-flow--five li:nth-child(n)::after {
        display: none;
    }

    .blog-process-flow--five .blog-process-flow__number,
    .blog-process-flow--five li:nth-child(n) .blog-process-flow__number {
        top: 50%;
        right: auto;
        left: 0;
        width: 46px;
        height: 46px;
        border-width: 2px;
        box-shadow: 0 0 0 6px #f7f9f6;
        transform: translateY(-50%);
    }

    .blog-process-flow--five li:nth-child(5) {
        min-height: 100px;
        border-color: var(--blog-primary-dark);
        background: var(--blog-primary-dark);
        color: var(--blog-white);
    }

    .blog-process-flow--five li:nth-child(5) .blog-process-flow__number {
        border-color: var(--blog-white);
        background: var(--blog-white);
        color: var(--blog-primary-dark);
    }

    .blog-process-flow--five li:nth-child(5) strong {
        font-size: 18px;
    }

    .blog-comparison-grid {
        grid-auto-rows: auto;
    }

    .blog-comparison-card {
        padding: 20px;
    }

    .blog-comparison-card li {
        font-size: 16px;
    }

    .blog-boundary-card {
        padding: 20px;
    }

    .blog-cta__actions .blog-button {
        width: 100%;
    }

    .blog-footer__grid {
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .blog-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .blog-container {
        padding-inline: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-page {
        scroll-behavior: auto;
    }

    .blog-page * {
        transition-duration: 0.01ms !important;
    }

    .blog-featured-card,
    .blog-featured-card:hover,
    .blog-featured-card:focus-within,
    .blog-featured-card .blog-featured-card__image-link img,
    .blog-featured-card:hover .blog-featured-card__image-link img,
    .blog-featured-card .blog-read-link svg,
    .blog-featured-card:hover .blog-read-link svg {
        transform: none !important;
    }
}

/*marketing component*/

:root {
    --ns-primary: var(--primary, #5f7a61);
    --ns-primary-dark: var(--primary-dark, #4e6750);
    --ns-accent-light: var(--accent-light, rgba(95, 122, 97, 0.09));
    --ns-accent-mid: var(--accent-mid, rgba(95, 122, 97, 0.17));
    --ns-text: #28312e;
    --ns-muted: #626a67;
    --ns-border: rgba(95, 122, 97, 0.22);
}

/* Shared FAQ pattern used by the Homepage and Blog articles. */
.ns-faq-layout {
    display: grid;
    grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.ns-faq-layout--article {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.ns-faq-copy {
    max-width: 27rem;
}

.ns-faq-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--ns-primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ns-faq-copy h2 {
    margin: 0;
}

.ns-faq-list {
    min-width: 0;
    border-top: 1px solid var(--ns-border);
}

.ns-faq-item {
    border-bottom: 1px solid var(--ns-border);
}

.ns-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ns-text);
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

.ns-faq-question:hover {
    color: var(--ns-primary-dark);
}

.ns-faq-question:focus-visible {
    outline: 3px solid rgba(95, 122, 97, 0.28);
    outline-offset: 5px;
    border-radius: 6px;
}

.ns-faq-icon {
    position: relative;
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border: 1px solid var(--ns-border);
    border-radius: 50%;
    background: #fff;
    color: var(--ns-primary-dark);
    transition: transform 180ms ease, background-color 180ms ease;
}

.ns-faq-icon::before,
.ns-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.75rem;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.ns-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ns-faq-question[aria-expanded="true"] {
    color: var(--ns-primary-dark);
}

.ns-faq-question[aria-expanded="true"] .ns-faq-icon {
    background: var(--ns-accent-light);
    transform: rotate(45deg);
}

.ns-faq-answer {
    max-width: 44rem;
    padding: 0 3.25rem 1.35rem 0;
    color: var(--ns-muted);
}

.ns-faq-answer[hidden] {
    display: none;
}

.ns-faq-answer p {
    margin: 0 0 0.75rem;
    padding: 0;
}

.ns-faq-answer p:last-child {
    margin-bottom: 0;
}

/* Shared pricing/CTA pattern used by the Homepage and Blog articles. */
.ns-pricing-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.ns-pricing-panel--article {
    margin-top: 3.75rem;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border: 1px solid var(--ns-border);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(95, 122, 97, 0.08), rgba(255, 255, 255, 0.98) 58%);
}

.ns-pricing-copy h2,
.ns-pricing-copy h3 {
    margin: 0 0 1rem;
    color: var(--ns-text);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.ns-pricing-copy > p {
    margin: 0 0 1.5rem;
    color: var(--ns-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.ns-pricing-primary {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.35rem;
    border-radius: 10px;
    background: var(--ns-primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(56, 76, 59, 0.14);
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.ns-pricing-primary:hover {
    background: var(--ns-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 13px 28px rgba(56, 76, 59, 0.18);
}

.blog-article-body .ns-pricing-primary,
.blog-article-body .ns-pricing-primary:hover,
.blog-article-body .ns-pricing-primary:focus-visible {
    color: #fff;
}

.ns-pricing-primary:focus-visible {
    outline: 3px solid rgba(95, 122, 97, 0.3);
    outline-offset: 4px;
}

.ns-pricing-microcopy {
    display: block;
    margin-top: 0.85rem;
    color: var(--ns-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.ns-pricing-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border: 1px solid var(--ns-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(40, 49, 46, 0.09);
}

.ns-pricing-card::before {
    content: none;
}

.ns-pricing-card h3,
.ns-pricing-card .ns-pricing-card-title {
    margin: 0 0 0.65rem;
    color: var(--ns-text);
    font-size: 1rem;
    font-weight: 600;
}

.ns-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    color: var(--ns-text);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.ns-price-period {
    color: var(--ns-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
}

.hp-price .ns-price-value,
.ns-price-value {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
}

.ns-pricing-sub {
    margin-top: 0.45rem;
    color: var(--ns-muted);
    font-size: 0.85rem;
}

.ns-pricing-features {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.ns-pricing-card .ns-pricing-features {
    padding-inline-start: 0;
}

.ns-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    color: var(--ns-text);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
}

.ns-pricing-check {
    display: grid;
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 1.35rem;
    place-items: center;
    border-radius: 50%;
    background: var(--ns-accent-mid);
    color: var(--ns-primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
}

.ns-pricing-note {
    padding-top: 1.1rem;
    border-top: 1px solid var(--ns-border);
    color: var(--ns-muted);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Article endings are promoted outside the reading column by the shared script. */
.blog-article-ending {
    width: 100%;
}

.blog-ending-band {
    width: 100%;
}

.blog-ending-band--faq {
    padding-block: clamp(4.5rem, 8vw, 7rem);
    border-top: 1px solid var(--ns-border);
    background: #fff;
}

.blog-ending-band--cta {
    padding-block: clamp(4.5rem, 8vw, 7rem);
    background: linear-gradient(145deg, rgba(95, 122, 97, 0.1), rgba(255, 255, 255, 0.98) 64%);
}

.blog-ending-band .blog-container {
    max-width: 1240px;
}

.blog-ending-band--faq .blog-faq,
.blog-ending-band--cta .ns-pricing-panel {
    margin: 0 auto;
}

.blog-ending-band--cta .ns-pricing-panel {
    max-width: 1040px;
}

.blog-ending-band--cta .ns-pricing-primary,
.blog-ending-band--cta .ns-pricing-primary:hover,
.blog-ending-band--cta .ns-pricing-primary:focus-visible {
    color: #fff;
}

@media (max-width: 900px) {
    .ns-faq-layout,
    .ns-pricing-panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .ns-faq-layout {
        gap: 1.5rem;
    }

    .ns-pricing-panel {
        gap: 1.75rem;
    }
}

@media (max-width: 520px) {
    .ns-faq-question {
        gap: 0.85rem;
        padding: 1.05rem 0;
        font-size: 0.96rem;
    }

    .ns-faq-icon {
        width: 1.8rem;
        height: 1.8rem;
        flex-basis: 1.8rem;
    }

    .ns-faq-answer {
        padding-right: 0;
    }

    .ns-pricing-panel--article {
        margin-top: 3rem;
        padding: 1.25rem;
        border-radius: 14px;
    }

    .ns-pricing-primary {
        width: 100%;
    }

    .ns-pricing-card {
        padding: 1.35rem;
    }

    .blog-ending-band--faq,
    .blog-ending-band--cta {
        padding-block: 3.75rem;
    }
}