  :root {
    --bg: #FAFAF7;
    --surface: #FFFFFF;
    --text: #0A0A0A;
    --text-muted: #5A5A5A;
    --text-faint: #9A958C;
    --border: #E5E2DC;
    --border-strong: #C9C4BB;
    --accent: #D4502B;
    --accent-hover: #B84221;
    --highlight: #F5D547;
    --positive: #2D6A4F;
    --negative: #A8A29E;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    --container: min(1180px, 100% - 2.5rem);
    --container-narrow: min(960px, 100% - 2.5rem);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  /* Paper texture overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.04, 0 0 0 0 0.04, 0 0 0 0 0.03, 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
  }

  main, header, footer { position: relative; z-index: 2; }

  a { color: inherit; text-decoration: none; }

  ::selection { background: var(--highlight); color: var(--text); }

  .skip-link {
    position: absolute; left: -9999px; top: 1rem;
    background: var(--text); color: var(--bg); padding: 0.5rem 1rem;
    border-radius: 4px; z-index: 100;
  }
  .skip-link:focus { left: 1rem; }

  /* ---------- NAV ---------- */
  header.site-nav {
    position: sticky; top: 0;
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 50;
  }
  .nav-inner {
    width: var(--container);
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .logo {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    display: flex; align-items: baseline; gap: 0.15rem;
  }
  .logo .dot { color: var(--accent); }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    font-size: 0.94rem;
    color: var(--text-muted);
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--text);
    color: var(--bg);
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--accent); color: var(--bg); }
  @media (max-width: 760px) {
    .nav-links { display: none; }
    .nav-inner { gap: 0.8rem; }
    .nav-actions { gap: 0.8rem; }
    .nav-login { font-size: 0.88rem; }
    .nav-cta { padding: 0.5rem 0.9rem; font-size: 0.85rem; }
  }

  /* ---------- LOGIN ---------- */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1.4rem;
  }
  .nav-login {
    background: none;
    border: 0;
    padding: 0.4rem 0;
    font-family: var(--font-body);
    font-size: 0.94rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.15s;
  }
  .nav-login:hover { color: var(--text); }
  .nav-login:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
    color: var(--text);
  }

  .login-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s, visibility 0.18s;
  }
  .login-modal.is-open {
    opacity: 1;
    visibility: visible;
  }
  .login-modal__panel {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.9rem 1.6rem 1.6rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 30px 60px -15px rgba(10, 10, 10, 0.25);
    transform: translateY(8px);
    transition: transform 0.18s;
  }
  .login-modal.is-open .login-modal__panel { transform: translateY(0); }
  .login-modal__close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    background: none;
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
  }
  .login-modal__close:hover { background: var(--surface); color: var(--text); }
  .login-modal__close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    color: var(--text);
  }
  .login-modal__heading {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
  }
  .login-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .login-modal__label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
  }
  .login-modal__input {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    width: 100%;
  }
  .login-modal__input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 80, 43, 0.18);
  }
  .login-modal__helper {
    font-size: 0.82rem;
    color: var(--text-faint);
  }
  .login-modal__error {
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 0.8rem;
    display: none;
  }
  .login-modal__error.is-visible { display: block; }
  .login-modal__continue {
    margin-top: 1.2rem;
    width: 100%;
    background: var(--text);
    color: var(--bg);
    border: 0;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
  }
  .login-modal__continue:hover { background: var(--accent); }
  @media (max-width: 480px) {
    .login-modal__panel { padding: 1.6rem 1.2rem 1.3rem; }
    .login-modal__heading { font-size: 1.25rem; }
  }

  /* ---------- SHARED ---------- */
  .section {
    width: var(--container);
    margin: 0 auto;
    padding: 5.5rem 0;
  }
  .section--narrow { width: var(--container-narrow); }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }
  .eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--text-muted);
  }

  h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--text);
    font-variation-settings: "opsz" 96, "SOFT" 30;
  }
  h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
  h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
  em {
    font-style: italic;
    font-family: var(--font-display);
    font-variation-settings: "opsz" 96, "SOFT" 100;
  }

  .marker {
    background: linear-gradient(180deg, transparent 55%, var(--highlight) 55%, var(--highlight) 92%, transparent 92%);
    padding: 0 0.1em;
  }

  .lede {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 38em;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 500;
    transition: transform 0.15s, background 0.2s, color 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-primary { background: var(--text); color: var(--bg); }
  .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
  }
  .btn-secondary:hover { border-color: var(--text); }
  .btn .arrow {
    display: inline-block;
    transition: transform 0.2s;
  }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ---------- HERO ---------- */
  .hero {
    width: var(--container);
    margin: 0 auto;
    padding: 5rem 0 6rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
  }
  @media (max-width: 940px) {
    .hero { grid-template-columns: 1fr; padding: 3rem 0 4rem; gap: 3rem; }
  }
  .hero-content { animation: fadeUp 0.8s 0.1s both; }
  .hero h1 {
    margin-bottom: 1.3rem;
  }
  .hero h1 .accent-word {
    color: var(--accent);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100;
  }
  .hero .lede { margin-bottom: 2rem; }
  .cta-row { display: flex; gap: 0.8rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
  .hero .supporting {
    font-size: 0.9rem;
    color: var(--text-faint);
    font-family: var(--font-mono);
  }
  .hero .supporting strong { color: var(--text-muted); font-weight: 500; }

  /* Hero visual — stacked phone mockups */
  .hero-visual {
    position: relative;
    animation: fadeUp 0.9s 0.3s both;
    height: 560px;
    perspective: 1200px;
  }
  .phone-mock {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(10, 10, 10, 0.2);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    aspect-ratio: 9 / 17;
  }
  .phone-mock img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .phone-front {
    width: 56%;
    max-width: 260px;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 3;
  }
  .phone-left {
    width: 42%;
    max-width: 200px;
    top: 60px;
    left: 0;
    transform: rotate(-7deg);
    z-index: 1;
  }
  .phone-right {
    width: 42%;
    max-width: 200px;
    top: 0;
    right: 0;
    transform: rotate(6deg);
    z-index: 2;
  }
  .hero-visual:hover .phone-front { transform: translateX(-50%) rotate(-3deg) translateY(-8px); }
  .hero-visual:hover .phone-left { transform: rotate(-9deg) translateY(-4px); }
  .hero-visual:hover .phone-right { transform: rotate(8deg) translateY(2px); }

  @media (max-width: 940px) {
    .hero-visual { height: 480px; max-width: 460px; margin: 0 auto; }
  }
  @media (max-width: 480px) {
    .hero-visual { display: none; }
  }

  /* ---------- PAIN ---------- */
  .pain { background: var(--text); color: var(--bg); padding: 6rem 0; }
  .pain .pain-inner { width: var(--container); margin: 0 auto; }
  .pain h2 { color: var(--bg); margin-bottom: 1.3rem; max-width: 18ch; }
  .pain h2 em { color: var(--highlight); }
  .pain .eyebrow { color: var(--text-faint); }
  .pain .eyebrow::before { background: var(--text-faint); }
  .pain .lede { color: rgba(250, 250, 247, 0.7); margin-bottom: 3.5rem; max-width: 40em; }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .pain-card {
    border: 1px solid rgba(250, 250, 247, 0.12);
    padding: 1.6rem;
    border-radius: 10px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .pain-card:hover { border-color: var(--accent); transform: translateY(-2px); }
  .pain-card .num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
  }
  .pain-card h3 {
    color: var(--bg);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
  }
  .pain-card p { color: rgba(250, 250, 247, 0.65); font-size: 0.92rem; line-height: 1.5; }

  /* ---------- COMPARE ---------- */
  .compare h2 { margin-bottom: 1.2rem; max-width: 20ch; }
  .compare h2 em { color: var(--accent); }
  .compare .lede { margin-bottom: 3rem; }

  .compare-table {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
  }
  .compare-table > div {
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    line-height: 1.4;
  }
  .compare-table > div:nth-last-child(-n+4) { border-bottom: none; }
  .compare-table .col-h {
    background: var(--bg);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    padding: 1.4rem 1.2rem;
  }
  .compare-table .col-h.mtt { background: var(--text); color: var(--bg); }
  .compare-table .col-h.mtt em { color: var(--highlight); }
  .compare-table .col-h .sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-faint);
    font-weight: 400;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .compare-table .col-h.mtt .sub { color: rgba(250, 250, 247, 0.5); }
  .compare-table .row-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    background: #FCFBF8;
  }
  .compare-table .neg { color: var(--text-muted); }
  .compare-table .pos { color: var(--positive); font-weight: 500; }
  .compare-table .mtt-cell { background: rgba(212, 80, 43, 0.04); border-left: 1px solid rgba(212, 80, 43, 0.15); border-right: 1px solid rgba(212, 80, 43, 0.15); color: var(--text); font-weight: 500; }
  .compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1.25rem;
    padding: 0 1.25rem;
  }
  @media (max-width: 820px) {
    .compare-table {
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      min-width: 640px;
    }
    .compare-table .col-h:first-child,
    .compare-table .row-label {
      display: block;
    }
  }

  /* ---------- WHY MTT EXISTS ---------- */
  .why {
    text-align: center;
    padding: 5.5rem 0;
  }
  .why .eyebrow { margin-bottom: 2.5rem; }
  .why .eyebrow::before { background: var(--text-muted); }
  .founder-quote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    line-height: 1.22;
    letter-spacing: -0.01em;
    max-width: 22ch;
    margin: 0 auto 1.5rem;
    font-weight: 400;
    color: var(--text);
    font-style: normal;
    font-variation-settings: "opsz" 96, "SOFT" 30;
    quotes: "“" "”";
  }
  .founder-quote::before { content: open-quote; color: var(--accent); margin-right: 0.05em; }
  .founder-quote::after { content: close-quote; color: var(--accent); margin-left: 0.05em; }
  .founder-quote em {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
  }
  .founder-attribution {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 4rem;
  }
  .proof-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 3rem;
    max-width: 800px;
    margin: 0 auto;
  }
  @media (max-width: 760px) {
    .proof-row { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 2rem; }
  }
  .proof-item { text-align: center; }
  .proof-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-variation-settings: "opsz" 144, "SOFT" 100;
  }
  .proof-num .unit {
    font-size: 0.45em;
    vertical-align: super;
    margin-left: 0.05em;
  }
  .proof-label {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 22ch;
    margin: 0 auto;
    line-height: 1.4;
  }

  /* ---------- HOW IT WORKS ---------- */
  .how h2 { margin-bottom: 1.2rem; }
  .how h2 em { color: var(--accent); }
  .how .lede { margin-bottom: 4rem; }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
  }
  @media (max-width: 820px) {
    .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  }
  .step {
    position: relative;
  }
  .step-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 1rem;
    font-variation-settings: "opsz" 144, "SOFT" 100;
  }
  .step h3 { margin-bottom: 0.6rem; }
  .step p { color: var(--text-muted); font-size: 0.95rem; }

  /* ---------- FEATURES ---------- */
  .features { background: linear-gradient(180deg, var(--bg) 0%, #F2EFE8 100%); padding: 6rem 0; }
  .features-inner { width: var(--container); margin: 0 auto; }
  .features h2 { max-width: 22ch; margin-bottom: 1.2rem; }
  .features h2 em { color: var(--accent); }
  .features .lede { margin-bottom: 3.5rem; }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }
  .feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -8px rgba(10, 10, 10, 0.08);
  }
  .feature-card .icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--text);
    color: var(--bg);
    display: grid; place-items: center;
    margin-bottom: 1.3rem;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
  }
  .feature-card h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
  .feature-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
  .feature-card .tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
  .feature-card .tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
  }

  /* ---------- INTEGRATIONS ---------- */
  .integrations {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0;
  }
  .integrations-inner { width: var(--container); margin: 0 auto; }
  .integrations h2 { max-width: 22ch; margin-bottom: 1.2rem; }
  .integrations h2 em { color: var(--accent); }
  .integrations .lede { margin-bottom: 3rem; }

  .integration-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  @media (max-width: 760px) {
    .integration-groups { grid-template-columns: 1fr; }
  }
  .integration-group {
    padding: 1.8rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
  }
  .integration-group .group-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.4rem;
  }
  .integration-group .group-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }
  .integration-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .integration-pill {
    font-family: var(--font-body);
    font-size: 0.88rem;
    padding: 0.4rem 0.85rem;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--text);
    font-weight: 500;
    transition: border-color 0.15s, transform 0.15s;
  }
  .integration-pill:hover { border-color: var(--accent); transform: translateY(-1px); }

  /* ---------- COMPLETE CAPABILITIES (inside Features) ---------- */
  .capabilities {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
  }
  .capabilities-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 2rem;
  }
  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
  }
  @media (max-width: 1024px) {
    .capabilities-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  }
  @media (max-width: 700px) {
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 460px) {
    .capabilities-grid { grid-template-columns: 1fr; }
  }
  .cap-group {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1.3rem;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .cap-group:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -10px rgba(10, 10, 10, 0.08);
  }
  .cap-group h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-variation-settings: "opsz" 96, "SOFT" 30;
  }
  .cap-group ul {
    list-style: none;
    display: grid;
    gap: 0.55rem;
  }
  .cap-group li {
    font-size: 0.86rem;
    color: var(--text);
    line-height: 1.4;
    padding-left: 0.85rem;
    position: relative;
  }
  .cap-group li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
  }

  /* ---------- STOP DOING ---------- */
  .stop h2 { margin-bottom: 1.2rem; max-width: 20ch; }
  .stop h2 em { color: var(--accent); }
  .stop .lede { margin-bottom: 3rem; }

  .stop-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
  }
  .stop-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1.02rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    transition: transform 0.15s;
  }
  .stop-list li:hover { transform: translateX(4px); }
  .stop-list .x {
    font-family: var(--font-mono);
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    font-size: 1.1rem;
  }
  .stop-list li > span:not(.x) { text-decoration: inherit; }

  /* ---------- FOUNDING CUSTOMER PROGRAM ---------- */
  .program {
    padding: 6rem 0;
  }
  .program-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }
  @media (max-width: 880px) {
    .program-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  .program-narrative h2 {
    margin-bottom: 1.5rem;
    max-width: 14ch;
  }
  .program-narrative h2 em { color: var(--accent); }
  .program-narrative .lede { margin-bottom: 1.4rem; }
  .program-narrative .btn { margin-top: 0.6rem; }

  .program-benefits {
    background: var(--text);
    color: var(--bg);
    padding: 2.3rem 2.1rem;
    border-radius: 16px;
    position: sticky;
    top: 88px;
  }
  @media (max-width: 880px) {
    .program-benefits { position: static; }
  }
  .benefit-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--highlight);
    margin-bottom: 1.6rem;
  }
  .benefit-list {
    list-style: none;
    display: grid;
    gap: 1.3rem;
  }
  .benefit-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1.3rem;
    position: relative;
  }
  .benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
  }
  .benefit-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bg);
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .benefit-desc {
    font-size: 0.88rem;
    color: rgba(250, 250, 247, 0.7);
    line-height: 1.5;
  }

  /* ---------- PRICING ---------- */
  .pricing { background: var(--text); color: var(--bg); padding: 6rem 0; }
  .pricing-inner { width: var(--container-narrow); margin: 0 auto; }
  .pricing .eyebrow { color: var(--text-faint); }
  .pricing .eyebrow::before { background: var(--text-faint); }
  .pricing h2 { color: var(--bg); margin-bottom: 1.2rem; }
  .pricing h2 em { color: var(--accent); }
  .pricing .lede { color: rgba(250, 250, 247, 0.65); margin-bottom: 3rem; }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  @media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }

  .price-card {
    background: var(--bg);
    color: var(--text);
    border-radius: 16px;
    padding: 2.2rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .price-card.founding {
    background: linear-gradient(135deg, var(--accent) 0%, #B84221 100%);
    color: var(--bg);
  }
  .price-card .label {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
  }
  .price-card.founding .label { color: rgba(250, 250, 247, 0.85); }
  .price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
  }
  .price-amount .dollar {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.04em;
  }
  .price-card.founding .price-amount .dollar { color: var(--bg); }
  .price-amount .per {
    font-size: 0.88rem;
    color: var(--text-muted);
  }
  .price-card.founding .price-amount .per { color: rgba(250, 250, 247, 0.85); }
  .price-sub {
    font-size: 0.88rem;
    margin-bottom: 1.6rem;
    color: var(--text-muted);
  }
  .price-card.founding .price-sub { color: rgba(250, 250, 247, 0.9); }
  .price-list { list-style: none; margin-bottom: 1.6rem; }
  .price-list li {
    padding: 0.45rem 0;
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .price-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
  }
  .price-card.founding .price-list li::before { color: var(--bg); }
  .price-card .btn-primary { width: 100%; justify-content: center; }
  .price-card.founding .btn-primary { background: var(--bg); color: var(--accent); }
  .price-card.founding .btn-primary:hover { background: var(--text); color: var(--bg); }

  .scarcity-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 80, 43, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    margin-bottom: 1.2rem;
  }
  .scarcity-banner .pulse {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  /* ---------- WHO IT'S FOR ---------- */
  .who h2 { margin-bottom: 1.2rem; }
  .who h2 em { color: var(--accent); }
  .who .lede { margin-bottom: 3rem; }
  .who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 820px) { .who-grid { grid-template-columns: 1fr; } }
  .who-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    transition: border-color 0.2s;
  }
  .who-card:hover { border-color: var(--text); }
  .who-card .who-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.7rem;
  }
  .who-card h3 { margin-bottom: 1rem; font-size: 1.4rem; }
  .who-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.2rem; }
  .who-card .price-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text);
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .who-card .price-tag strong { color: var(--accent); }

  /* ---------- FAQ ---------- */
  .faq h2 { margin-bottom: 3rem; }
  .faq h2 em { color: var(--accent); }
  .faq-list { display: grid; gap: 0.6rem; }
  details.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    transition: border-color 0.2s;
  }
  details.faq-item[open] { border-color: var(--text); }
  details.faq-item summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  details.faq-item summary::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  details.faq-item[open] summary::after { transform: rotate(45deg); }
  details.faq-item .answer {
    padding-top: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.97rem;
  }

  /* ---------- TRUST STRIP ---------- */
  .trust-strip {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
  }
  .trust-inner {
    width: var(--container);
    margin: 0 auto;
    text-align: center;
  }
  .trust-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 1.4rem;
  }
  .trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 0.94rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.8;
  }
  .trust-item {
    padding: 0 0.9rem;
  }
  .trust-divider {
    color: var(--text-faint);
  }
  @media (max-width: 760px) {
    .trust-items { flex-direction: column; gap: 0.4rem; }
    .trust-divider { display: none; }
    .trust-item { padding: 0; }
  }

  /* ---------- CTA STRIP ---------- */
  .cta-strip {
    width: var(--container-narrow);
    margin: 0 auto;
    padding: 5rem 0;
    text-align: center;
  }
  .cta-strip h2 { margin-bottom: 1.2rem; }
  .cta-strip h2 em { color: var(--accent); }
  .cta-strip p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }

  /* ---------- Legal/info document layout ---------- */
  /* Scoped to .legal-doc — used by /privacy/, /terms/, /security/, /about/.
     Deliberately drops the marketing display scale (the ~4.6rem serif H1),
     loose whitespace, and orange serif-italic flourishes so legal and
     company documents read as serious, document-like pages: a tighter,
     denser, narrower column. Header (site-nav) and footer are unaffected. */
  .legal-doc {
    max-width: 720px;
    margin: 0 auto;
    padding-block: 4rem;
    padding-inline: 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
  }
  .legal-doc .eyebrow { margin-bottom: 1.1rem; }
  .legal-doc h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 40, "SOFT" 0;
    margin-bottom: 0.5rem;
  }
  /* Effective Date / Last Updated — small, muted, above the lead */
  .legal-doc .doc-meta {
    font-size: 0.82rem;
    color: var(--text-faint);
    margin: 0 0 1.6rem;
  }
  .legal-doc .lede {
    font-family: var(--font-body);
    font-size: 1.08rem;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: none;
    margin-bottom: 0.3rem;
  }
  .legal-doc h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.45rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 40, "SOFT" 0;
    margin-top: 2.6rem;
    margin-bottom: 0.65rem;
  }
  .legal-doc h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.3;
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" 40, "SOFT" 0;
    margin-top: 1.8rem;
    margin-bottom: 0.4rem;
  }
  .legal-doc h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.4rem;
    margin-bottom: 0.3rem;
  }
  .legal-doc p {
    margin-top: 0.85rem;
    color: var(--text);
    max-width: none;
  }
  .legal-doc ul, .legal-doc ol {
    margin: 0.9rem 0;
    padding-left: 1.4rem;
    color: var(--text);
  }
  .legal-doc li { margin-top: 0.45rem; line-height: 1.55; }
  .legal-doc a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .legal-doc a:hover { color: var(--accent-hover); }
  .legal-doc strong { font-weight: 600; color: var(--text); }
  /* Neutralize the marketing serif-italic accent flourish inside documents */
  .legal-doc em {
    font-family: var(--font-body);
    font-style: italic;
    color: inherit;
    font-variation-settings: normal;
  }
  .legal-doc code {
    font-family: var(--font-mono);
    font-size: 0.88em;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.1em 0.4em;
    border-radius: 4px;
    color: var(--text);
  }
  .legal-doc blockquote {
    margin: 1.8rem 0;
    padding: 0.2rem 0 0.2rem 1.2rem;
    border-left: 3px solid var(--border-strong);
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
  }
  /* Data tables (e.g. Privacy §4.2 sub-processors): clean horizontal
     rules, comfortable padding, no accent colors */
  .legal-doc table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4rem 0;
    font-size: 0.92rem;
  }
  .legal-doc th, .legal-doc td {
    text-align: left;
    padding: 0.7rem 1.1rem 0.7rem 0;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }
  .legal-doc thead th {
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border-strong);
  }
  @media (max-width: 600px) {
    .legal-doc { padding-block: 2.5rem; }
    .legal-doc h1 { font-size: 2.1rem; }
  }

  /* ---------- FOOTER ---------- */
  footer {
    border-top: 1px solid var(--border);
    background: var(--bg);
    padding: 3rem 0 2rem;
    margin-top: 2rem;
  }
  .footer-inner {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
  @media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
  .footer-brand .logo { margin-bottom: 0.8rem; }
  .footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 28em; }
  .footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
  .footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.15s; }
  .footer-col a:hover { color: var(--text); }
  .footer-bottom {
    width: var(--container);
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-bottom p { color: var(--text-faint); font-size: 0.82rem; }
  .built-with {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
  }
  .built-with .dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
  }

  /* ---------- CHAT WIDGET (placeholder) ---------- */
  .chat-bubble {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--text);
    color: var(--bg);
    padding: 0.85rem 1.3rem 0.85rem 1.1rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 8px 24px -6px rgba(10, 10, 10, 0.25);
    cursor: pointer;
    z-index: 40;
    font-size: 0.88rem;
    transition: transform 0.2s, background 0.2s;
    animation: fadeUp 0.6s 1.5s both;
  }
  .chat-bubble:hover { background: var(--accent); transform: translateY(-2px); }
  .chat-bubble .chat-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    font-style: italic;
  }
  .chat-bubble:hover .chat-icon { background: var(--bg); color: var(--accent); }
  @media (max-width: 480px) {
    .chat-bubble span:last-child { display: none; }
  }

  /* ---------- MULTI-STATE OVERTIME ---------- */
  .multistate h2 { margin-bottom: 1.2rem; max-width: 20ch; }
  .multistate h2 em { color: var(--accent); }
  .multistate .lede { margin-bottom: 3rem; }
  .multistate .ms-closer { margin-bottom: 0; margin-top: 3rem; }

  .ms-example {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: stretch;
  }
  @media (max-width: 820px) {
    .ms-example { grid-template-columns: 1fr; }
  }
  .ms-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
  }
  .ms-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 1.4rem;
  }
  .ms-week-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-mono);
    font-size: 0.9rem;
  }
  .ms-week-table th {
    text-align: left;
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    padding: 0 0.6rem 0.7rem 0;
    border-bottom: 1px solid var(--border);
  }
  .ms-week-table th.ms-num, .ms-week-table td.ms-num { text-align: right; }
  .ms-week-table td {
    padding: 0.6rem 0.6rem 0.6rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  .ms-week-table tr:last-child td { border-bottom: none; }
  .ms-state {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.1rem 0.45rem;
    border-radius: 4px;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
  }
  .ms-note { color: var(--accent); font-weight: 500; }
  .ms-week-table td.ms-note { white-space: nowrap; }

  .ms-split { display: grid; gap: 1.1rem; align-content: start; }
  .ms-total {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--border);
    font-variation-settings: "opsz" 96, "SOFT" 30;
  }
  .ms-total em { color: var(--accent); font-style: italic; }
  .ms-split-row {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
  }
  .ms-split-row .ms-state { flex-shrink: 0; }
  .ms-split-row .ms-figs { color: var(--text); }
  .ms-split-row .ms-figs strong { color: var(--accent); font-weight: 600; }
  .ms-caption {
    font-size: 0.82rem;
    color: var(--text-faint);
    line-height: 1.5;
    margin-top: 0.4rem;
  }

  /* ---------- ANIMATIONS ---------- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
