
/* ============================================================
   DuesBoard marketing site — shared stylesheet
   Base URL (find-replace in HTML + sitemap): https://duesboard.com
   App CTAs: https://app.duesboard.com/signup | /login
   ============================================================ */

:root {
      --brand-ink: #0A2540;
      --brand-ink-mid: #0F2F4F;
      --brand-ink-deep: #061628;
      --brand-gold: #F5C518;
      --brand-gold-dark: #E0B000;
      --brand-gold-soft: #FFF6D1;
      --brand-text: #0A2540;
      --brand-muted: #64748B;
      --brand-sand: #F5F7FA;
      --brand-border: #E2E8F0;
      --brand-white: #ffffff;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 4.5rem; /* sticky nav clearance for in-page anchors */
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--brand-text);
      margin: 0;
      background: var(--brand-white);
      -webkit-font-smoothing: antialiased;
    }

    .container-narrow {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ── NAV ── */
    .marketing-nav {
      background: var(--brand-ink);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .marketing-nav .logo {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem; /* mark ↔ wordmark only — never split Dues|Board */
    }
    /* Single flex child: prevents gap between "Dues" and "Board" */
    .logo-wordmark {
      display: inline-block;
      white-space: nowrap;
      letter-spacing: -0.03em;
      word-spacing: 0;
    }
    .logo-wordmark .logo-accent {
      color: var(--brand-gold);
      letter-spacing: inherit;
      margin: 0;
      padding: 0;
    }
    .logo-mark {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      display: block;
    }
    .logo-mark .house-fill { fill: var(--brand-gold); }
    .logo-mark .dollar-fill { fill: var(--brand-ink); }
    .marketing-footer .logo-mark .house-fill { fill: var(--brand-gold); }
    .marketing-footer .logo-mark .dollar-fill { fill: var(--brand-ink-deep); }
    .nav-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .nav-links a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      margin-left: 1.25rem;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.15s;
      display: inline-flex;
      align-items: center;
      min-height: 44px;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links .btn-nav {
      background: var(--brand-gold);
      color: var(--brand-ink) !important;
      padding: 0.4rem 1rem;
      border-radius: 6px;
      font-weight: 700;
      margin-left: 1.25rem;
    }
    .nav-links .btn-nav:hover { background: var(--brand-gold-dark); }

    /* ── HERO (white + product mockups) ── */
    .hero {
      background:
        radial-gradient(ellipse 70% 50% at 90% 10%, rgba(245,197,24,0.12) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
      color: var(--brand-ink);
      padding: 4.5rem 1.5rem 3.5rem;
      position: relative;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 2.5rem;
      align-items: center;
    }
    .hero-copy { text-align: left; max-width: 540px; }
    .hero-eyebrow {
      display: block;
      color: var(--brand-ink-mid);
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .hero h1 {
      font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
      font-size: clamp(2.35rem, 4.8vw, 3.55rem);
      font-weight: 800;
      line-height: 1.06;
      letter-spacing: -0.035em;
      margin: 0 0 1.1rem;
      color: var(--brand-ink);
    }
    .hero h1 em {
      color: var(--brand-gold-dark);
      font-style: normal;
      background: linear-gradient(transparent 64%, rgba(245,197,24,0.4) 64%);
    }
    .hero-sub {
      font-size: 1.125rem;
      color: var(--brand-muted);
      margin: 0 0 1.65rem;
      line-height: 1.55;
      max-width: 36em;
    }
    .hero-ctas {
      display: flex;
      gap: 0.85rem;
      flex-wrap: wrap;
      margin-bottom: 1.35rem;
    }
    .btn-primary-brand {
      background: var(--brand-gold);
      color: var(--brand-ink);
      border: none;
      padding: 0.85rem 1.6rem;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      display: inline-block;
      transition: background 0.15s, transform 0.1s;
    }
    .btn-primary-brand:hover {
      background: var(--brand-gold-dark);
      color: var(--brand-ink);
      transform: translateY(-1px);
    }
    .btn-outline-brand {
      background: transparent;
      color: var(--brand-ink);
      border: 2px solid var(--brand-ink);
      padding: 0.85rem 1.6rem;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: background 0.15s, color 0.15s;
    }
    .btn-outline-brand:hover {
      background: var(--brand-ink);
      color: #fff;
    }
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem 1.35rem;
      align-items: center;
      padding-top: 0.15rem;
      border-top: 1px solid var(--brand-border);
      margin: 0;
      list-style: none;
      padding-left: 0;
    }
    .hero-trust li {
      font-size: 0.875rem;
      color: var(--brand-muted);
      line-height: 1.35;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .hero-trust strong { color: var(--brand-ink); font-weight: 650; }
    .hero-trust .stars {
      color: var(--brand-gold-dark);
      letter-spacing: 0.06em;
      font-size: 0.8rem;
    }

    /* Interactive preview stage */
    .hero-stage { position: relative; min-height: 380px; }
    .view-toggle {
      display: inline-flex;
      background: var(--brand-sand);
      border: 1px solid var(--brand-border);
      border-radius: 10px;
      padding: 4px;
      margin-bottom: 1.25rem;
      gap: 2px;
    }
    .view-toggle button {
      border: none;
      background: transparent;
      color: var(--brand-muted);
      font-family: inherit;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 0.45rem 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }
    .view-toggle button[aria-selected="true"] {
      background: var(--brand-ink);
      color: #fff;
    }
    .view-toggle button:hover:not([aria-selected="true"]) {
      color: var(--brand-ink);
    }

    /* Layered device stage — selected device in front, other tucked behind */
    .device-stack {
      position: relative;
      width: 100%;
      min-height: 420px;
      height: 420px;
      margin: 0 auto;
    }

    /* Laptop */
    .laptop {
      position: absolute;
      left: 0;
      bottom: 10px;
      width: min(82%, 500px);
      max-width: 500px;
      transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
      transform-origin: left bottom;
    }
    .laptop-bezel {
      background: #1a2332;
      border-radius: 12px 12px 0 0;
      padding: 10px 10px 0;
      box-shadow: 0 28px 64px rgba(10,37,64,0.22), 0 8px 20px rgba(10,37,64,0.12);
    }
    .laptop-screen {
      background: #fff;
      border-radius: 6px 6px 0 0;
      overflow: hidden;
      min-height: 268px;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .laptop-base {
      height: 12px;
      background: linear-gradient(180deg, #2a3548, #1a2332);
      border-radius: 0 0 10px 10px;
      position: relative;
    }
    .laptop-base::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -6px;
      width: 42%;
      height: 6px;
      background: #151c28;
      border-radius: 0 0 8px 8px;
    }

    .dash-chrome {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.55rem 0.75rem;
      background: var(--brand-ink);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .dash-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
    }
    .dash-dot:nth-child(1) { background: #ff5f57; }
    .dash-dot:nth-child(2) { background: #febc2e; }
    .dash-dot:nth-child(3) { background: #28c840; }
    .dash-url {
      margin-left: 0.5rem;
      font-size: 0.65rem;
      color: rgba(255,255,255,0.5);
      font-weight: 500;
    }
    .dash-body {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      min-height: 220px;
    }
    .dash-stats {
      padding: 1rem;
      background: var(--brand-sand);
      border-right: 1px solid var(--brand-border);
    }
    .dash-label {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brand-gold-dark);
      margin-bottom: 0.55rem;
    }
    .dash-metric { margin-bottom: 0.85rem; }
    .dash-metric .value {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--brand-ink);
      letter-spacing: -0.5px;
      line-height: 1;
    }
    .dash-metric .label {
      font-size: 0.7rem;
      color: var(--brand-muted);
      margin-top: 0.2rem;
    }
    .dash-list { padding: 0.85rem 1rem; background: #fff; }
    .dash-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.45rem 0;
      border-bottom: 1px solid var(--brand-border);
      font-size: 0.75rem;
      cursor: default;
      transition: background 0.12s;
    }
    .dash-row:hover { background: var(--brand-gold-soft); margin: 0 -0.35rem; padding-left: 0.35rem; padding-right: 0.35rem; border-radius: 4px; }
    .dash-row:last-child { border-bottom: none; }
    .dash-unit { color: var(--brand-ink); font-weight: 600; }
    .dash-status {
      font-size: 0.65rem;
      font-weight: 700;
      padding: 0.15rem 0.45rem;
      border-radius: 100px;
    }
    .status-paid {
      background: rgba(31,122,92,0.12);
      color: #1F7A5C;
    }
    .status-pending {
      background: var(--brand-gold-soft);
      color: #9A7800;
    }
    .status-late {
      background: rgba(196,69,54,0.12);
      color: #C44536;
    }

    /* Realistic iPhone (~9:19.5), layered with Mac — not a thin strip */
    .phone {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 178px;
      aspect-ratio: 9 / 19.5;
      transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
      transform-origin: center bottom;
      filter: drop-shadow(0 22px 40px rgba(10,37,64,0.28));
    }
    .phone-frame {
      position: relative;
      height: 100%;
      box-sizing: border-box;
      background: linear-gradient(160deg, #2a2f3a 0%, #111827 45%, #0b0f16 100%);
      border-radius: 36px;
      padding: 10px;
      border: 2.5px solid #3d4554;
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.08),
        0 12px 28px rgba(10,37,64,0.18);
      display: flex;
      flex-direction: column;
    }
    .phone-island {
      position: absolute;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      width: 62px;
      height: 18px;
      background: #0a0c10;
      border-radius: 100px;
      z-index: 2;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
    }
    .phone-screen {
      position: relative;
      flex: 1;
      background: #fff;
      border-radius: 28px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }
    .phone-header {
      background: var(--brand-ink);
      color: #fff;
      padding: 1.55rem 0.85rem 0.75rem;
    }
    .phone-header .app-name {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      white-space: nowrap;
    }
    .phone-header .app-name .logo-accent { color: var(--brand-gold); }
    .phone-header .unit-label {
      font-size: 0.68rem;
      color: rgba(255,255,255,0.55);
      margin-top: 0.2rem;
    }
    .phone-body {
      padding: 0.9rem 0.85rem 1rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .phone-balance-label {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--brand-muted);
    }
    .phone-balance {
      font-size: 1.65rem;
      font-weight: 800;
      color: var(--brand-ink);
      letter-spacing: -0.5px;
      line-height: 1.1;
      margin: 0.25rem 0 0.2rem;
    }
    .phone-due {
      font-size: 0.72rem;
      color: var(--brand-muted);
      margin-bottom: 0.85rem;
    }
    .phone-pay {
      display: block;
      width: 100%;
      text-align: center;
      background: var(--brand-gold);
      color: var(--brand-ink);
      font-size: 0.8rem;
      font-weight: 800;
      border: none;
      border-radius: 9px;
      padding: 0.65rem;
      cursor: pointer;
      font-family: inherit;
      margin-bottom: 0.75rem;
      transition: background 0.15s, transform 0.1s;
    }
    .phone-pay:hover { background: var(--brand-gold-dark); transform: translateY(-1px); }
    .phone-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.7rem;
      padding: 0.45rem 0;
      border-top: 1px solid var(--brand-border);
      color: var(--brand-slate, var(--brand-muted));
    }
    .phone-row strong { color: var(--brand-ink); font-weight: 600; }

    /* Board: Mac fully in front; iPhone partially tucked behind lower-right */
    .hero-stage[data-view="board"] .laptop {
      z-index: 3;
      transform: translateX(0) scale(1);
      opacity: 1;
      filter: none;
    }
    .hero-stage[data-view="board"] .phone {
      z-index: 1;
      transform: translate(-42%, 2%) scale(0.94);
      opacity: 0.92;
      filter: drop-shadow(0 10px 20px rgba(10,37,64,0.16));
    }

    /* Resident: iPhone fully in front; Mac partially tucked behind */
    .hero-stage[data-view="resident"] .phone {
      z-index: 4;
      transform: translate(-8%, 0) scale(1.04);
      opacity: 1;
      filter: drop-shadow(0 26px 48px rgba(10,37,64,0.32));
    }
    .hero-stage[data-view="resident"] .laptop {
      z-index: 1;
      transform: translateX(-4%) scale(0.93);
      opacity: 0.58;
      filter: saturate(0.85);
    }

    .preview-hint {
      margin-top: 0.85rem;
      font-size: 0.75rem;
      color: var(--brand-muted);
      text-align: center;
    }

    /* ── PROBLEM STRIP ── */
    .problem-strip {
      background:
        radial-gradient(ellipse 60% 80% at 10% 0%, rgba(245,197,24,0.14) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 95% 100%, rgba(245,197,24,0.08) 0%, transparent 45%),
        linear-gradient(165deg, var(--brand-ink) 0%, var(--brand-ink-mid) 55%, var(--brand-ink-deep) 100%);
      color: #fff;
      padding: 4.25rem 1.5rem 4.5rem;
      position: relative;
      overflow: hidden;
    }
    .problem-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
      pointer-events: none;
    }
    .problem-strip .container-narrow { position: relative; z-index: 1; }
    .problem-strip .section-eyebrow { color: var(--brand-gold); }
    .problem-strip .section-title {
      color: #fff;
      margin-bottom: 0.55rem;
    }
    .problem-strip .section-sub {
      color: rgba(255,255,255,0.68);
      max-width: 520px;
      margin-bottom: 0;
    }
    .problem-head {
      max-width: 640px;
      margin-bottom: 2.25rem;
    }
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .problem-item {
      text-align: left;
      padding: 0.85rem 0.85rem 1.35rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 14px;
      backdrop-filter: blur(6px);
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      display: flex;
      flex-direction: column;
    }
    .problem-item:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(245,197,24,0.45);
      transform: translateY(-2px);
    }
    .problem-item h3 {
      font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
      font-size: 1.05rem;
      font-weight: 750;
      letter-spacing: -0.02em;
      margin: 1rem 0.4rem 0.45rem;
      color: #fff;
    }
    .problem-item p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.62);
      margin: 0 0.4rem;
      line-height: 1.5;
    }

    /* Illustrated UI panels (pain + product) — hero-device aesthetic */
    .ui-panel {
      border-radius: 12px;
      overflow: hidden;
      background: linear-gradient(160deg, #1a2332 0%, #0d1520 100%);
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.12),
        0 10px 28px rgba(0,0,0,0.35);
      flex-shrink: 0;
    }
    .ui-panel-chrome {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 0.4rem 0.55rem;
      background: rgba(0,0,0,0.35);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .ui-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.22);
    }
    .ui-dot:nth-child(1) { background: #FF5F57; }
    .ui-dot:nth-child(2) { background: #FEBC2E; }
    .ui-dot:nth-child(3) { background: #28C840; }
    .ui-chrome-label {
      margin-left: 0.35rem;
      font-size: 0.55rem;
      font-weight: 650;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .ui-panel-screen {
      background: #fff;
      min-height: 118px;
      padding: 0.55rem 0.6rem 0.65rem;
      font-family: 'Inter', system-ui, sans-serif;
    }
    .problem-item .ui-panel { margin: 0; }

    /* Pain vignettes */
    .ui-mail .mail-row {
      display: flex;
      gap: 0.45rem;
      align-items: flex-start;
      padding: 0.4rem 0.35rem;
      border-radius: 6px;
      background: var(--brand-sand);
      border: 1px solid var(--brand-border);
      margin-bottom: 0.35rem;
    }
    .ui-mail .mail-row:last-child { margin-bottom: 0; opacity: 0.72; }
    .ui-mail .mail-avatar {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: var(--brand-ink);
      color: var(--brand-gold);
      font-size: 0.55rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .ui-mail .mail-from {
      font-size: 0.58rem;
      font-weight: 700;
      color: var(--brand-ink);
      line-height: 1.2;
    }
    .ui-mail .mail-subj {
      font-size: 0.52rem;
      color: var(--brand-muted);
      margin-top: 0.1rem;
      line-height: 1.25;
    }

    .ui-p2p {
      background: linear-gradient(180deg, #0F2F4F 0%, #0A2540 100%);
      color: #fff;
    }
    .ui-p2p .p2p-badge {
      display: inline-block;
      font-size: 0.5rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 0.35rem;
    }
    .ui-p2p .p2p-amount {
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--brand-gold);
      line-height: 1;
    }
    .ui-p2p .p2p-note {
      font-size: 0.55rem;
      color: rgba(255,255,255,0.65);
      margin: 0.35rem 0 0.55rem;
      line-height: 1.3;
    }
    .ui-p2p .p2p-warn {
      font-size: 0.52rem;
      font-weight: 650;
      padding: 0.35rem 0.4rem;
      border-radius: 6px;
      background: rgba(196,69,54,0.2);
      border: 1px solid rgba(196,69,54,0.4);
      color: #FFB4A8;
      line-height: 1.3;
    }

    .ui-sheet {
      padding: 0.4rem 0.35rem 0.5rem;
      overflow: hidden;
    }
    .ui-sheet table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.5rem;
    }
    .ui-sheet th {
      text-align: left;
      font-weight: 700;
      color: var(--brand-muted);
      padding: 0.2rem 0.25rem;
      border-bottom: 1px solid var(--brand-border);
      background: var(--brand-sand);
    }
    .ui-sheet td {
      padding: 0.22rem 0.25rem;
      border-bottom: 1px solid #F1F5F9;
      color: var(--brand-ink);
      white-space: nowrap;
    }
    .ui-sheet tr.err td {
      background: rgba(196,69,54,0.08);
      color: #C44536;
      font-weight: 650;
    }
    .ui-sheet .formula {
      font-family: ui-monospace, Menlo, monospace;
      font-size: 0.48rem;
      color: #C44536;
    }

    .ui-cal .cal-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.4rem;
    }
    .ui-cal .cal-month {
      font-size: 0.62rem;
      font-weight: 750;
      color: var(--brand-ink);
    }
    .ui-cal .cal-badge {
      font-size: 0.48rem;
      font-weight: 800;
      background: rgba(196,69,54,0.12);
      color: #C44536;
      padding: 0.15rem 0.35rem;
      border-radius: 100px;
    }
    .ui-cal .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
      margin-bottom: 0.4rem;
    }
    .ui-cal .cal-cell {
      aspect-ratio: 1;
      font-size: 0.48rem;
      font-weight: 600;
      color: var(--brand-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 3px;
      background: var(--brand-sand);
    }
    .ui-cal .cal-cell.due {
      background: var(--brand-ink);
      color: #fff;
    }
    .ui-cal .cal-cell.late {
      background: #C44536;
      color: #fff;
      font-weight: 800;
    }
    .ui-cal .cal-fee {
      font-size: 0.55rem;
      font-weight: 700;
      color: var(--brand-ink);
      padding: 0.35rem 0.4rem;
      background: var(--brand-gold-soft);
      border: 1px solid rgba(245,197,24,0.5);
      border-radius: 6px;
      line-height: 1.3;
    }

    /* Product vignettes */
    .feature-card .ui-panel {
      margin: -0.15rem -0.15rem 1rem;
      border-radius: 10px;
    }
    .feature-card .ui-panel-screen { min-height: 128px; }

    .ui-ach .ach-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.58rem;
      padding: 0.35rem 0;
      border-bottom: 1px solid var(--brand-border);
      color: var(--brand-ink);
    }
    .ui-ach .ach-row:last-child { border-bottom: none; }
    .ui-ach .ach-label { color: var(--brand-muted); font-weight: 600; }
    .ui-ach .ach-val { font-weight: 750; }
    .ui-ach .ach-toggle {
      width: 28px;
      height: 16px;
      border-radius: 100px;
      background: var(--brand-ink);
      position: relative;
    }
    .ui-ach .ach-toggle::after {
      content: '';
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--brand-gold);
      top: 2px;
      right: 2px;
    }
    .ui-ach .ach-cta {
      margin-top: 0.45rem;
      text-align: center;
      font-size: 0.55rem;
      font-weight: 800;
      background: var(--brand-gold);
      color: var(--brand-ink);
      padding: 0.4rem;
      border-radius: 6px;
    }

    .ui-latefee .lf-policy {
      font-size: 0.52rem;
      color: var(--brand-muted);
      margin-bottom: 0.35rem;
      font-weight: 650;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .ui-latefee .lf-box {
      background: var(--brand-sand);
      border: 1px solid var(--brand-border);
      border-radius: 6px;
      padding: 0.4rem 0.45rem;
      margin-bottom: 0.35rem;
    }
    .ui-latefee .lf-line {
      display: flex;
      justify-content: space-between;
      font-size: 0.58rem;
      color: var(--brand-ink);
      padding: 0.15rem 0;
    }
    .ui-latefee .lf-line strong { color: #C44536; }
    .ui-latefee .lf-auto {
      font-size: 0.52rem;
      font-weight: 700;
      color: #1F7A5C;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    .ui-latefee .lf-auto::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #1F7A5C;
    }

    .ui-ledger .lg-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.55rem;
      padding: 0.32rem 0;
      border-bottom: 1px solid var(--brand-border);
    }
    .ui-ledger .lg-row:last-child { border-bottom: none; }
    .ui-ledger .lg-unit { font-weight: 700; color: var(--brand-ink); }
    .ui-ledger .lg-amt { color: var(--brand-muted); font-weight: 600; }
    .ui-ledger .pill {
      font-size: 0.48rem;
      font-weight: 750;
      padding: 0.12rem 0.35rem;
      border-radius: 100px;
    }
    .ui-ledger .pill-paid { background: rgba(31,122,92,0.12); color: #1F7A5C; }
    .ui-ledger .pill-late { background: rgba(196,69,54,0.12); color: #C44536; }
    .ui-ledger .pill-pend { background: var(--brand-gold-soft); color: #9A7800; }

    .ui-portal {
      background: linear-gradient(180deg, var(--brand-ink) 0%, var(--brand-ink) 42%, #fff 42%);
      padding: 0 !important;
      min-height: 108px !important;
    }
    .ui-portal .pt-top {
      padding: 0.55rem 0.65rem 0.45rem;
      color: #fff;
    }
    .ui-portal .pt-label {
      font-size: 0.48rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.55);
    }
    .ui-portal .pt-bal {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--brand-gold);
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin: 0.15rem 0 0.1rem;
    }
    .ui-portal .pt-due {
      font-size: 0.5rem;
      color: rgba(255,255,255,0.6);
    }
    .ui-portal .pt-body {
      padding: 0.5rem 0.65rem 0.55rem;
    }
    .ui-portal .pt-pay {
      font-size: 0.55rem;
      font-weight: 800;
      text-align: center;
      background: var(--brand-gold);
      color: var(--brand-ink);
      padding: 0.4rem;
      border-radius: 6px;
      margin-bottom: 0.35rem;
    }
    .ui-portal .pt-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.52rem;
      color: var(--brand-muted);
      padding: 0.2rem 0;
    }
    .ui-portal .pt-row strong { color: var(--brand-ink); }

    .ui-connect .cn-flow {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.25rem;
      margin-bottom: 0.45rem;
    }
    .ui-connect .cn-node {
      flex: 1;
      text-align: center;
      font-size: 0.48rem;
      font-weight: 700;
      color: var(--brand-ink);
      background: var(--brand-sand);
      border: 1px solid var(--brand-border);
      border-radius: 6px;
      padding: 0.4rem 0.2rem;
      line-height: 1.25;
    }
    .ui-connect .cn-node em {
      display: block;
      font-style: normal;
      font-size: 0.45rem;
      color: var(--brand-muted);
      font-weight: 600;
      margin-top: 0.1rem;
    }
    .ui-connect .cn-arrow {
      color: var(--brand-gold-dark);
      font-weight: 800;
      font-size: 0.7rem;
      flex-shrink: 0;
    }
    .ui-connect .cn-fee {
      font-size: 0.55rem;
      font-weight: 700;
      color: var(--brand-ink);
      background: var(--brand-gold-soft);
      border: 1px solid rgba(245,197,24,0.55);
      border-left: 3px solid var(--brand-gold);
      border-radius: 6px;
      padding: 0.4rem 0.45rem;
      line-height: 1.35;
    }
    .ui-connect .cn-fee span {
      display: block;
      font-size: 0.48rem;
      font-weight: 600;
      color: var(--brand-muted);
      margin-top: 0.15rem;
    }

    .ui-csv .csv-bar {
      display: flex;
      gap: 0.35rem;
      margin-bottom: 0.4rem;
    }
    .ui-csv .csv-btn {
      flex: 1;
      font-size: 0.52rem;
      font-weight: 750;
      text-align: center;
      padding: 0.35rem;
      border-radius: 5px;
      border: 1px solid var(--brand-border);
      color: var(--brand-ink);
      background: #fff;
    }
    .ui-csv .csv-btn.pri {
      background: var(--brand-ink);
      color: #fff;
      border-color: var(--brand-ink);
    }
    .ui-csv .csv-preview {
      font-size: 0.48rem;
      font-family: ui-monospace, Menlo, monospace;
      background: var(--brand-sand);
      border: 1px solid var(--brand-border);
      border-radius: 5px;
      padding: 0.4rem;
      color: var(--brand-ink);
      line-height: 1.45;
      overflow: hidden;
    }
    .ui-csv .csv-preview .ok { color: #1F7A5C; font-weight: 700; }

    /* ── SECTIONS ── */
    section { padding: 5rem 1.5rem; }
    section.light { background: #fff; }
    section.off-white { background: var(--brand-sand); }
    .section-eyebrow {
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand-ink-mid);
      margin-bottom: 0.65rem;
    }
    .section-title {
      font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
      font-size: clamp(1.85rem, 3.2vw, 2.55rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.12;
      margin-bottom: 0.7rem;
      color: var(--brand-ink);
    }
    .section-sub {
      font-size: 1.0625rem;
      color: var(--brand-muted);
      max-width: 560px;
      line-height: 1.55;
    }
    .text-center-block { text-align: center; }
    .text-center-block .section-sub { margin-left: auto; margin-right: auto; }

    /* ── HOW IT WORKS (PayHOA-style stacked large product shots) ── */
    #how {
      padding-bottom: 2rem;
    }
    #how > .container-narrow.how-intro {
      margin-bottom: 0.5rem;
    }
    .how-stack {
      margin-top: 2.75rem;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .how-band {
      padding: 3.25rem 1.5rem;
      background: #fff;
    }
    .how-band:nth-child(even) {
      background: var(--brand-sand);
    }
    .how-band .container-narrow {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 2.75rem 3.25rem;
      align-items: center;
    }
    .how-band.reverse .container-narrow {
      grid-template-columns: 1.05fr 1fr;
    }
    .how-band.reverse .how-copy { order: 2; }
    .how-band.reverse .how-visual { order: 1; }
    .how-step-label {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.72rem;
      font-weight: 750;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand-ink-mid);
      margin-bottom: 0.75rem;
    }
    .how-step-label span {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--brand-ink);
      color: #fff;
      font-size: 0.75rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      letter-spacing: 0;
    }
    .how-copy h3 {
      font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
      font-size: clamp(1.45rem, 2.4vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 0 0 0.75rem;
      color: var(--brand-ink);
    }
    .how-copy p {
      font-size: 1.05rem;
      color: var(--brand-muted);
      margin: 0 0 1.35rem;
      line-height: 1.55;
      max-width: 34em;
    }
    .how-copy .btn-primary-brand,
    .how-copy .btn-outline-brand {
      padding: 0.7rem 1.25rem;
      font-size: 0.92rem;
    }
    .how-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 320px;
    }
    .how-visual::before {
      content: '';
      position: absolute;
      inset: 8% 4% 0;
      background:
        radial-gradient(ellipse 70% 60% at 70% 30%, rgba(245,197,24,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(10,37,64,0.06) 0%, transparent 50%);
      border-radius: 24px;
      z-index: 0;
      pointer-events: none;
    }
    /* Large laptop frame for mid-page product shots */
    .shot-laptop {
      position: relative;
      z-index: 1;
      width: min(100%, 560px);
      filter: drop-shadow(0 28px 56px rgba(10,37,64,0.2));
    }
    .shot-laptop .laptop-bezel {
      padding: 12px 12px 0;
      border-radius: 14px 14px 0 0;
    }
    .shot-laptop .laptop-screen {
      min-height: 300px;
      border-radius: 8px 8px 0 0;
    }
    .shot-laptop .dash-body {
      min-height: 260px;
      grid-template-columns: 0.95fr 1.15fr;
    }
    .shot-laptop .dash-metric .value { font-size: 1.55rem; }
    .shot-laptop .dash-row { font-size: 0.82rem; padding: 0.55rem 0; }
    .shot-laptop .dash-status { font-size: 0.7rem; }
    .shot-laptop .dash-label { font-size: 0.68rem; }
    .shot-laptop .ui-panel-screen,
    .shot-laptop .shot-screen-pad {
      min-height: 280px;
      padding: 1.15rem 1.25rem;
    }
    /* Large phone frame */
    .shot-phone {
      position: relative;
      z-index: 1;
      width: min(52%, 240px);
      aspect-ratio: 9 / 19.5;
      filter: drop-shadow(0 26px 48px rgba(10,37,64,0.28));
    }
    .shot-phone .phone-frame {
      border-radius: 40px;
      padding: 11px;
    }
    .shot-phone .phone-screen { border-radius: 30px; }
    .shot-phone .phone-balance { font-size: 1.85rem; }
    .shot-phone .phone-pay { font-size: 0.88rem; padding: 0.75rem; }
    /* Phone + soft laptop composite */
    .shot-duo {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 560px;
      min-height: 340px;
    }
    .shot-duo .shot-laptop {
      width: min(88%, 480px);
      margin-left: 0;
    }
    .shot-duo .shot-phone {
      position: absolute;
      right: 0;
      bottom: -8px;
      width: 168px;
      z-index: 2;
    }
    /* Enlarged UI content inside shots */
    .shot-ui-connect .cn-node {
      font-size: 0.72rem;
      padding: 0.75rem 0.4rem;
    }
    .shot-ui-connect .cn-node em { font-size: 0.62rem; }
    .shot-ui-connect .cn-arrow { font-size: 1rem; }
    .shot-ui-connect .cn-fee {
      font-size: 0.78rem;
      padding: 0.65rem 0.75rem;
    }
    .shot-ui-connect .cn-fee span { font-size: 0.68rem; }
    .shot-ui-ach .ach-row { font-size: 0.85rem; padding: 0.55rem 0; }
    .shot-ui-ach .ach-toggle { width: 36px; height: 20px; }
    .shot-ui-ach .ach-toggle::after { width: 16px; height: 16px; }
    .shot-ui-ach .ach-cta {
      font-size: 0.8rem;
      padding: 0.65rem;
      margin-top: 0.75rem;
    }
    .shot-ui-latefee .lf-policy { font-size: 0.72rem; }
    .shot-ui-latefee .lf-line { font-size: 0.88rem; padding: 0.3rem 0; }
    .shot-ui-latefee .lf-box { padding: 0.75rem 0.85rem; margin-bottom: 0.65rem; }
    .shot-ui-latefee .lf-auto { font-size: 0.78rem; }
    .shot-ui-latefee .lf-auto::before { width: 8px; height: 8px; }
    .shot-ui-ledger .lg-row { font-size: 0.82rem; padding: 0.55rem 0; }
    .shot-ui-ledger .pill { font-size: 0.68rem; padding: 0.2rem 0.5rem; }
    .shot-portal-full {
      background: linear-gradient(180deg, var(--brand-ink) 0%, var(--brand-ink) 38%, #fff 38%);
      padding: 0 !important;
      min-height: 300px !important;
      display: flex;
      flex-direction: column;
    }
    .shot-portal-full .pt-top { padding: 1.35rem 1.25rem 1rem; }
    .shot-portal-full .pt-label { font-size: 0.72rem; }
    .shot-portal-full .pt-bal { font-size: 2rem; margin: 0.25rem 0 0.2rem; }
    .shot-portal-full .pt-due { font-size: 0.75rem; }
    .shot-portal-full .pt-body { padding: 1.15rem 1.25rem 1.25rem; flex: 1; }
    .shot-portal-full .pt-pay {
      font-size: 0.9rem;
      padding: 0.75rem;
      margin-bottom: 0.75rem;
    }
    .shot-portal-full .pt-row {
      font-size: 0.82rem;
      padding: 0.4rem 0;
    }

    /* ── FEATURES ── */
    #product {
      background:
        radial-gradient(ellipse 55% 40% at 100% 0%, rgba(245,197,24,0.1) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--brand-sand) 100%);
    }
    .product-head {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2rem;
      align-items: end;
      margin-bottom: 0.5rem;
    }
    .product-head .section-sub { margin: 0; max-width: 34em; }
    .product-core-label {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.75rem;
      font-weight: 750;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand-ink-mid);
      margin: 2.5rem 0 1rem;
    }
    .product-core-label::before {
      content: '';
      width: 18px;
      height: 3px;
      border-radius: 2px;
      background: var(--brand-gold);
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.15rem;
    }
    .feature-card {
      background: #fff;
      border: 1px solid var(--brand-border);
      border-radius: 14px;
      padding: 0.85rem 0.85rem 1.35rem;
      box-shadow: 0 1px 2px rgba(10,37,64,0.04);
      transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }
    .feature-card:hover {
      box-shadow: 0 12px 36px rgba(10,37,64,0.1);
      transform: translateY(-3px);
      border-color: rgba(245,197,24,0.55);
    }
    .feature-card h3 {
      font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
      font-size: 1.05rem;
      font-weight: 750;
      letter-spacing: -0.02em;
      margin: 0 0.4rem 0.45rem;
      color: var(--brand-ink);
    }
    .feature-card p {
      font-size: 0.9rem;
      color: var(--brand-muted);
      margin: 0 0.4rem;
      line-height: 1.55;
      flex: 1;
    }
    /* Suite — Board plan+ with large illustrated UI screens (not text pills) */
    .suite-band {
      margin-top: 2.75rem;
      padding: 2rem 1.85rem 1.85rem;
      background:
        radial-gradient(ellipse 55% 70% at 90% 10%, rgba(245,197,24,0.2) 0%, transparent 55%),
        linear-gradient(160deg, var(--brand-ink) 0%, var(--brand-ink-mid) 55%, var(--brand-ink-deep) 100%);
      border-radius: 16px;
      border: 1px solid rgba(245,197,24,0.25);
      color: #fff;
      display: flex;
      flex-direction: column;
      gap: 1.65rem;
    }
    .suite-head {
      max-width: 40em;
    }
    .suite-band h3 {
      font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
      font-size: 1.35rem;
      font-weight: 750;
      letter-spacing: -0.02em;
      margin: 0 0 0.45rem;
      color: #fff;
    }
    .suite-band .suite-kicker {
      display: block;
      font-size: 0.72rem;
      font-weight: 750;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand-gold);
      margin-bottom: 0.55rem;
    }
    .suite-band .suite-head > p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.68);
      margin: 0;
      line-height: 1.55;
    }
    .suite-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .suite-card {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      min-width: 0;
    }
    .suite-card .ui-panel {
      margin: 0;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.14),
        0 14px 32px rgba(0,0,0,0.4);
    }
    .suite-card .ui-panel-screen {
      min-height: 148px;
    }
    .suite-card h4 {
      font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      margin: 0;
      color: #fff;
      letter-spacing: -0.01em;
    }
    .suite-card > p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.62);
      margin: 0;
      line-height: 1.45;
    }
    /* Suite feature UI vignettes */
    .ui-announce .an-item {
      display: flex;
      gap: 0.55rem;
      padding: 0.4rem 0;
      border-bottom: 1px solid var(--brand-border);
      align-items: flex-start;
    }
    .ui-announce .an-item:last-child { border-bottom: none; }
    .ui-announce .an-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand-gold);
      margin-top: 0.35rem;
      flex-shrink: 0;
    }
    .ui-announce .an-title { font-size: 0.72rem; font-weight: 700; color: var(--brand-ink); }
    .ui-announce .an-meta { font-size: 0.62rem; color: var(--brand-muted); margin-top: 0.1rem; }
    .ui-docs .doc-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.4rem;
      padding: 0.42rem 0;
      border-bottom: 1px solid var(--brand-border);
      font-size: 0.7rem;
    }
    .ui-docs .doc-row:last-child { border-bottom: none; }
    .ui-docs .doc-name { font-weight: 650; color: var(--brand-ink); }
    .ui-docs .doc-type {
      font-size: 0.58rem;
      font-weight: 700;
      color: var(--brand-ink-mid);
      background: var(--brand-sand);
      border-radius: 4px;
      padding: 0.15rem 0.35rem;
    }
    .ui-bcal .bcal-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--brand-ink);
      margin-bottom: 0.45rem;
    }
    .ui-bcal .bcal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 3px;
    }
    .ui-bcal .bcal-cell {
      aspect-ratio: 1;
      border-radius: 4px;
      background: var(--brand-sand);
      font-size: 0.52rem;
      font-weight: 650;
      color: var(--brand-muted);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ui-bcal .bcal-cell.evt {
      background: var(--brand-gold-soft);
      color: var(--brand-ink);
      box-shadow: inset 0 0 0 1px rgba(245,197,24,0.55);
    }
    .ui-bcal .bcal-cell.today {
      background: var(--brand-ink);
      color: #fff;
    }
    .ui-viol .viol-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.25rem 0.5rem;
      padding: 0.4rem 0;
      border-bottom: 1px solid var(--brand-border);
      font-size: 0.68rem;
    }
    .ui-viol .viol-row:last-child { border-bottom: none; }
    .ui-viol .viol-unit { font-weight: 700; color: var(--brand-ink); }
    .ui-viol .viol-note { grid-column: 1 / -1; color: var(--brand-muted); font-size: 0.62rem; }
    .ui-viol .viol-fee {
      font-weight: 750;
      color: #B45309;
      font-size: 0.65rem;
    }
    .ui-wo .wo-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.42rem 0;
      border-bottom: 1px solid var(--brand-border);
      font-size: 0.68rem;
    }
    .ui-wo .wo-row:last-child { border-bottom: none; }
    .ui-wo .wo-title { font-weight: 650; color: var(--brand-ink); }
    .ui-wo .wo-status {
      font-size: 0.58rem;
      font-weight: 750;
      border-radius: 999px;
      padding: 0.15rem 0.4rem;
    }
    .ui-wo .wo-open { background: #FEF3C7; color: #92400E; }
    .ui-wo .wo-done { background: #D1FAE5; color: #065F46; }
    .ui-acc .acc-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.42rem 0;
      border-bottom: 1px solid var(--brand-border);
      font-size: 0.68rem;
    }
    .ui-acc .acc-row:last-child { border-bottom: none; }
    .ui-acc .acc-title { font-weight: 650; color: var(--brand-ink); }
    .ui-acc .acc-badge {
      font-size: 0.58rem;
      font-weight: 750;
      border-radius: 999px;
      padding: 0.15rem 0.4rem;
    }
    .ui-acc .acc-pending { background: #DBEAFE; color: #1E40AF; }
    .ui-acc .acc-ok { background: #D1FAE5; color: #065F46; }

    /* ── PRICING ── */
    .billing-toggle {
      display: inline-flex;
      background: var(--brand-sand);
      border: 1px solid var(--brand-border);
      border-radius: 10px;
      padding: 0.28rem;
      margin: 1.5rem auto 0;
      gap: 0.2rem;
    }
    .billing-toggle button {
      appearance: none;
      border: none;
      background: transparent;
      color: var(--brand-muted);
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 650;
      padding: 0.55rem 1.05rem;
      border-radius: 8px;
      cursor: pointer;
      min-height: 40px;
      transition: background 0.15s, color 0.15s;
    }
    .billing-toggle button[aria-pressed="true"] {
      background: #fff;
      color: var(--brand-ink);
      box-shadow: 0 1px 3px rgba(10,37,64,0.08);
    }
    .billing-toggle .save-hint {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--brand-gold-dark);
      margin-left: 0.2rem;
    }
    .pricing-fee-banner {
      margin: 1.35rem auto 0;
      max-width: 680px;
      padding: 1.1rem 1.25rem 1.15rem;
      background: linear-gradient(135deg, var(--brand-gold-soft) 0%, #FFF9E6 100%);
      border: 1px solid rgba(245,197,24,0.55);
      border-left: 4px solid var(--brand-gold);
      border-radius: 10px;
      font-size: 0.92rem;
      color: var(--brand-ink);
      line-height: 1.5;
      text-align: left;
    }
    .pricing-fee-banner strong { font-weight: 750; }
    .pricing-fee-banner .fee-lead {
      display: block;
      font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
      font-size: 1rem;
      font-weight: 750;
      letter-spacing: -0.015em;
      margin-bottom: 0.35rem;
    }
    .pricing-fee-banner .fee-note {
      display: block;
      margin-top: 0.4rem;
      font-size: 0.84rem;
      color: var(--brand-muted);
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 2rem;
      align-items: stretch;
    }
    .tier-card {
      border: 1px solid #DEE2E6;
      border-radius: 14px;
      padding: 1.75rem 1.5rem;
      background: #fff;
      text-align: left;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .tier-card.featured {
      border-color: var(--brand-gold);
      box-shadow: 0 0 0 3px rgba(245,197,24,0.25);
      transform: scale(1.02);
    }
    .tier-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--brand-gold);
      color: var(--brand-ink);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.25rem 0.75rem;
      border-radius: 100px;
      white-space: nowrap;
    }
    .tier-name {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--brand-muted);
      margin-bottom: 0.5rem;
    }
    .tier-price {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--brand-ink);
      line-height: 1;
      letter-spacing: -1px;
    }
    .tier-price small {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--brand-muted);
      letter-spacing: 0;
    }
    .tier-units {
      font-size: 0.88rem;
      color: var(--brand-muted);
      margin: 0.6rem 0 1.25rem;
    }
    .tier-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem;
      flex: 1;
    }
    .tier-list li {
      font-size: 0.88rem;
      padding: 0.4rem 0;
      color: var(--brand-text);
      padding-left: 1.35rem;
      position: relative;
      line-height: 1.4;
    }
    .tier-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--brand-gold-dark);
      font-weight: 700;
    }
    .tier-cta {
      display: block;
      text-align: center;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0.75rem 1rem;
      border-radius: 8px;
      transition: background 0.15s, color 0.15s;
    }
    .tier-cta.solid {
      background: var(--brand-gold);
      color: var(--brand-ink);
    }
    .tier-cta.solid:hover { background: var(--brand-gold-dark); color: var(--brand-ink); }
    .tier-cta.ghost {
      background: transparent;
      color: var(--brand-ink);
      border: 1.5px solid #CBD5E1;
    }
    .tier-cta.ghost:hover {
      border-color: var(--brand-ink);
      background: var(--brand-ink);
      color: #fff;
    }
    .pricing-fine {
      margin-top: 1.5rem;
      font-size: 0.85rem;
      color: var(--brand-muted);
      line-height: 1.5;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }
    .tier-price-note {
      font-size: 0.8rem;
      color: var(--brand-muted);
      margin-top: 0.35rem;
      min-height: 1.2em;
    }

    /* ── COMPARISON ── */
    .compare-wrap {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 2rem;
      margin-top: 2.5rem;
      align-items: center;
    }
    .compare-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--brand-border);
      font-size: 0.9rem;
    }
    .compare-table th,
    .compare-table td {
      padding: 0.9rem 1.1rem;
      text-align: left;
      border-bottom: 1px solid var(--brand-border);
    }
    .compare-table th {
      background: var(--brand-ink);
      color: #fff;
      font-weight: 600;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table td:last-child {
      font-weight: 700;
      color: var(--brand-ink);
    }
    .compare-table .highlight {
      color: var(--brand-gold-dark);
      font-weight: 800;
    }
    .compare-copy h3 {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
    }
    .compare-copy p {
      font-size: 0.95rem;
      color: var(--brand-muted);
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .fee-callout {
      background: var(--brand-gold-soft);
      border: 1px solid rgba(245,197,24,0.45);
      border-radius: 10px;
      padding: 1rem 1.15rem;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--brand-ink);
    }
    .fee-callout strong {
      color: var(--brand-gold-dark);
      font-size: 1.1rem;
    }

    /* ── FAQ ── */
    .faq-list {
      max-width: 720px;
      margin: 2.5rem auto 0;
    }
    .faq-item {
      border-bottom: 1px solid var(--brand-border);
      padding: 1.25rem 0;
    }
    .faq-item:first-child { border-top: 1px solid var(--brand-border); }
    .faq-item h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.45rem;
    }
    .faq-item p {
      font-size: 0.92rem;
      color: var(--brand-muted);
      margin: 0;
      line-height: 1.6;
    }

    /* ── CTA BAND ── */
    .cta-band {
      background: var(--brand-ink);
      color: #fff;
      text-align: center;
      padding: 4.5rem 1.5rem;
    }
    .cta-band .section-title { color: #fff; }
    .cta-band .section-sub {
      color: rgba(255,255,255,0.65);
      margin: 0 auto 2rem;
    }
    .cta-band .section-eyebrow { color: var(--brand-gold); }

    /* ── FOOTER ── */
    .marketing-footer {
      background: var(--brand-ink-deep);
      color: rgba(255,255,255,0.5);
      padding: 2.5rem 1.5rem;
      text-align: center;
    }
    .marketing-footer .footer-logo {
      font-size: 1.2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.5rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem; /* mark ↔ wordmark only */
    }
    .marketing-footer .footer-logo .logo-accent { color: var(--brand-gold); }
    .marketing-footer .footer-links { margin: 0.75rem 0; }
    .marketing-footer .footer-links a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      margin: 0 0.75rem;
      font-size: 0.85rem;
    }
    .marketing-footer .footer-links a:hover { color: #fff; }
    .marketing-footer .footer-copy { font-size: 0.8rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
      .hero-copy { max-width: none; text-align: center; }
      .hero-ctas { justify-content: center; }
      .hero-stage { min-height: auto; }
      .device-stack {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
      }
      .view-toggle { margin-left: auto; margin-right: auto; }
    }
    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
      .tier-card.featured { transform: none; }
      .compare-wrap { grid-template-columns: 1fr; }
      .problem-grid { grid-template-columns: 1fr 1fr; }
      .feature-grid { grid-template-columns: 1fr 1fr; }
      .product-head { grid-template-columns: 1fr; gap: 0.75rem; align-items: start; }
      .suite-band { padding: 1.5rem 1.25rem; }
      .suite-grid { grid-template-columns: 1fr 1fr; }
      .dash-body { grid-template-columns: 1fr; }
      .dash-stats { border-right: none; border-bottom: 1px solid var(--brand-border); }
      .how-band .container-narrow,
      .how-band.reverse .container-narrow {
        grid-template-columns: 1fr;
        gap: 1.75rem;
      }
      .how-band.reverse .how-copy,
      .how-band.reverse .how-visual { order: unset; }
      .how-band { padding: 2.5rem 1.25rem; }
      .how-visual { min-height: 0; }
      .shot-laptop .laptop-screen { min-height: 240px; }
      .shot-laptop .dash-body { min-height: 200px; }
      .shot-duo { min-height: 280px; }
    }
    @media (max-width: 576px) {
      .hero { padding: 3rem 1rem 2.5rem; }
      section { padding: 3.5rem 1rem; }
      #how { padding-bottom: 0; }
      .nav-links a:not(.btn-nav) { display: none; }
      .problem-grid { grid-template-columns: 1fr; }
      .feature-grid { grid-template-columns: 1fr; }
      .suite-grid { grid-template-columns: 1fr; }
      .problem-strip { padding: 3rem 1rem 3.25rem; }
      .device-stack { min-height: 360px; height: 360px; }
      .laptop { width: min(86%, 340px); }
      .phone { width: 148px; }
      .hero-stage[data-view="board"] .phone {
        transform: translate(-36%, 2%) scale(0.92);
      }
      .hero-stage[data-view="resident"] .phone {
        transform: translate(-4%, 0) scale(1.02);
      }
      .how-band { padding: 2rem 1rem; }
      .shot-phone { width: min(58%, 200px); }
      .shot-duo .shot-phone { width: 132px; }
    }

/* ── Site chrome extras (multi-page marketing) ── */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  min-height: 44px;
}
.nav-toggle[aria-expanded="true"] {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-gold);
  color: var(--brand-ink);
  padding: 0.5rem 1rem;
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.page-hero {
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(245,197,24,0.12) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
  padding: 3.5rem 1.5rem 2.75rem;
  border-bottom: 1px solid var(--brand-border);
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: var(--brand-muted);
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.page-hero .breadcrumb a { color: var(--brand-ink-mid); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.35rem;
  color: var(--brand-border);
}
.page-hero h1 {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.85rem;
  color: var(--brand-ink);
  max-width: 18em;
}
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--brand-muted);
  max-width: 40em;
  line-height: 1.55;
  margin: 0;
}
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2.25rem 0 0.75rem;
  color: var(--brand-ink);
}
.prose h3 {
  font-size: 1.1rem;
  font-weight: 750;
  margin: 1.75rem 0 0.55rem;
  color: var(--brand-ink);
}
.prose p, .prose li {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--brand-slate, #334155);
}
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0.75rem 0 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--brand-ink-mid); font-weight: 600; }
.prose .callout {
  background: var(--brand-gold-soft);
  border-left: 4px solid var(--brand-gold);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--brand-ink);
}
.blog-meta {
  font-size: 0.85rem;
  color: var(--brand-muted);
  margin-bottom: 1.5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  display: block;
}
.blog-card:hover {
  box-shadow: 0 12px 32px rgba(10,37,64,0.08);
  border-color: rgba(245,197,24,0.55);
  transform: translateY(-2px);
}
.blog-card h2 {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 750;
  margin: 0 0 0.5rem;
  color: var(--brand-ink);
  letter-spacing: -0.02em;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--brand-muted);
  margin: 0;
  line-height: 1.5;
}
.compare-page-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  font-size: 0.92rem;
  margin: 1.5rem 0 2rem;
}
.compare-page-table th,
.compare-page-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--brand-border);
  vertical-align: top;
}
.compare-page-table th {
  background: var(--brand-ink);
  color: #fff;
  font-weight: 650;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-page-table tr:last-child td { border-bottom: none; }
.compare-page-table .yes { color: #1F7A5C; font-weight: 700; }
.compare-page-table .no { color: var(--brand-muted); }
.feature-list-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.feature-list-page article {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
}
.feature-list-page h3 {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 750;
  margin: 0 0 0.45rem;
  color: var(--brand-ink);
}
.feature-list-page p {
  font-size: 0.92rem;
  color: var(--brand-muted);
  margin: 0;
  line-height: 1.55;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--brand-border);
}
.related-links a {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--brand-ink-mid);
  text-decoration: none;
}
.related-links a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .blog-grid, .feature-list-page { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .marketing-nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-ink-mid);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  }
  .marketing-nav .nav-links.is-open { display: flex; }
  .marketing-nav .nav-links a {
    margin-left: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    min-height: 48px;
  }
  .marketing-nav .nav-links .btn-nav {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }
  .marketing-nav { position: sticky; flex-wrap: wrap; }
  /* Override mockup hide-links on small screens — we use the toggle instead */
  .nav-links a:not(.btn-nav) { display: inline-flex !important; }
}
