@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/fraunces-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/fraunces-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/geist-normal.woff2") format("woff2");
}


  :root {
    /* next/font used to set these two on a wrapper class. The faces are now
       vendored under assets/fonts and declared in fonts.css, which the build
       concatenates ahead of this block — so the families are already
       registered by the time these resolve. The fallbacks stay: with
       font-display:swap the page paints in them first. */
    --font-sans: "Geist";
    --font-display: "Fraunces";
    --ink: #101c17;
    --ink-soft: #3a4a43;
    --muted: #66756e;
    --hairline: #e4ddd2;
    --hairline-strong: #d4cdc0;
    --ground: #f3eee4;
    --surface: #fffcf7;
    --accent: #0e6a4e;
    --accent-soft: #e3f4eb;
    --night: #07140f;
    --night-2: #0c1f18;
    --mint: #7aebc0;
    --mint-ink: #06281c;
    --clay: #c45a3a;
    --gold: #b0893a;
    --w-prose: 40rem;
    --w-wide: 72rem;
    --radius: 14px;
    color-scheme: light;
  }

  * { box-sizing: border-box; }
  .m-site, .m-site * { min-width: 0; }
  .m-site .btn, .m-site .chip, .m-site .wordmark, .m-site .bar-end { min-width: auto; }

  /* Marketing chrome owns the page when it renders; the dashboard Shell
     injects its own body rule and does not load this file. */
  body { margin: 0; }

  .m-site {
    min-height: 100vh;
    background: var(--surface);
    color: var(--ink);
    font: 16px/1.6 var(--font-sans), ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
  }

  .m-site a { color: var(--accent); }
  /* The element+class selector above beats .btn--primary, so without these
     the primary label is accent-on-accent and disappears. Hero/CTA invert it. */
  .m-site a.btn--primary { color: #fff; }
  .m-site a.btn--ghost { color: var(--ink); }
  .m-hero a.btn--primary,
  .m-cta a.btn--primary { color: var(--mint-ink); }
  .m-hero a.btn--ghost,
  .m-cta a.btn--ghost { color: #dcece4; }

  .skip {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 40;
    padding: 0.5rem 0.85rem;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
  }
  .skip:focus { top: 0.75rem; }

  /* --- top bar ------------------------------------------------------------ */

  .m-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0.9rem 1.75rem;
    background: rgba(255, 252, 247, 0.82);
    backdrop-filter: saturate(1.5) blur(14px);
    border-bottom: 1px solid var(--hairline);
  }
  .m-bar .wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display), Georgia, serif;
    font-weight: 560;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.2rem;
  }
  .m-bar .wordmark svg { display: block; flex: none; }
  .m-nav-desktop {
    display: flex;
    gap: 0.15rem;
    font-size: 0.925rem;
  }
  .m-nav-desktop a {
    color: var(--muted);
    text-decoration: none;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
  }
  .m-nav-desktop a:hover { color: var(--ink); background: var(--ground); }
  .m-nav-desktop a[aria-current="page"] {
    color: var(--ink);
    background: var(--ground);
  }
  .m-nav-mobile { display: none; }
  .m-nav-mobile summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0.3rem 0.5rem;
  }
  .m-nav-mobile summary::-webkit-details-marker { display: none; }
  .m-nav-mobile nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1.1rem 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--hairline);
  }
  .m-nav-mobile nav a {
    padding: 0.65rem 0.4rem;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--hairline);
  }
  .m-bar .bar-end {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.925rem;
  }
  .m-bar .bar-end .plain { color: var(--muted); text-decoration: none; }
  .m-bar .bar-end .plain:hover { color: var(--ink); }

  /* --- buttons ------------------------------------------------------------ */

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.68rem 1.15rem;
    border-radius: 9px;
    font-size: 0.95rem;
    font-weight: 560;
    text-decoration: none;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  }
  .btn:active { transform: translateY(1px); }
  .btn--primary { background: var(--accent); color: #fff; }
  .btn--primary:hover { background: #0b5840; }
  .btn--ghost { border-color: var(--hairline-strong); color: var(--ink); background: var(--surface); }
  .btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
  .btn--sm { padding: 0.45rem 0.9rem; font-size: 0.9rem; }
  .m-hero .btn--primary { background: var(--mint); color: var(--mint-ink); }
  .m-hero .btn--primary:hover { background: #93f0cc; }
  .m-hero .btn--ghost {
    background: transparent;
    color: #dcece4;
    border-color: rgba(220, 236, 228, 0.28);
  }
  .m-hero .btn--ghost:hover { border-color: var(--mint); color: var(--mint); }

  /* --- hero --------------------------------------------------------------- */

  .m-hero {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(56rem 28rem at 82% -8%, rgba(122, 235, 192, 0.16), transparent 58%),
      radial-gradient(40rem 20rem at 8% 110%, rgba(14, 106, 78, 0.35), transparent 55%),
      linear-gradient(165deg, var(--night-2) 0%, var(--night) 72%);
    color: #e8f2ec;
    border-bottom: 1px solid #1b3529;
  }
  .m-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(122, 235, 192, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(122, 235, 192, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 80% 70% at 75% 0%, black 10%, transparent 72%);
    pointer-events: none;
  }
  .m-hero .inner {
    position: relative;
    width: 100%;
    max-width: var(--w-wide);
    margin: 0 auto;
    padding: 3.25rem 1.75rem 3.5rem;
    display: grid;
    gap: 3.25rem;
    align-items: center;
    min-width: 0;
  }
  .m-hero .inner > * { min-width: 0; max-width: 100%; }
  .m-hero--split .inner {
    padding: 5.25rem 1.75rem 5.5rem;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }
  .m-kicker {
    display: inline-block;
    margin: 0 0 0.7rem;
    font-size: 0.72rem;
    font-weight: 620;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .m-hero .m-kicker { color: var(--mint); margin-bottom: 1rem; }
  .m-hero h1 {
    font-family: var(--font-display), Georgia, serif;
    font-size: clamp(2.35rem, 4.6vw, 3.55rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1.2rem;
    text-wrap: balance;
    max-width: 16ch;
  }
  .m-hero h1 em {
    font-style: italic;
    color: #b8e6d0;
    font-weight: 450;
  }
  .m-hero .lede {
    font-size: 1.14rem;
    line-height: 1.6;
    color: #b8cec4;
    margin: 0 0 1.9rem;
    max-width: min(44ch, 100%);
    text-wrap: pretty;
  }
  .m-hero .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
  .m-hero .reassure {
    margin: 1.45rem 0 0;
    font-size: 0.86rem;
    color: #8ba79b;
  }

  /* --- product window ----------------------------------------------------- */

  .m-window {
    background: var(--surface);
    color: var(--ink);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-shadow:
      0 40px 80px -28px rgba(0, 0, 0, 0.62),
      0 0 0 1px rgba(255, 255, 255, 0.08);
  }
  .m-window__bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 0.95rem;
    background: #efeae1;
    border-bottom: 1px solid #e2dcd2;
  }
  .m-window__dot {
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background: #d4cdc0;
  }
  .m-window__dot:nth-child(1) { background: #d9a09a; }
  .m-window__dot:nth-child(2) { background: #d4c08a; }
  .m-window__dot:nth-child(3) { background: #9cbfa8; }
  .m-window__url {
    margin-left: 0.5rem;
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.01em;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .m-window__tag {
    margin-left: auto;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .m-window__body { padding: 0.85rem 0.9rem 1rem; }

  .m-panel {
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
  }
  .m-panel + .m-panel { margin-top: 0.7rem; }
  .m-panel h3 {
    margin: 0 0 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 640;
  }
  .m-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.42rem 0;
    font-size: 0.88rem;
    border-top: 1px solid var(--hairline);
    min-width: 0;
  }
  .m-row > span:first-child { min-width: 0; }
  .m-row:first-of-type { border-top: 0; }
  .m-row .sub { display: block; font-size: 0.76rem; color: var(--muted); }
  .chip {
    flex: none;
    font-size: 0.72rem;
    font-weight: 620;
    padding: 0.14rem 0.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
  }
  .chip--yes { background: var(--accent-soft); color: var(--accent); border-color: #b7dcc9; }
  .chip--no { background: #f8e8e2; color: var(--clay); border-color: #edcfc4; }
  .chip--flat { background: #f0ebe3; color: var(--ink-soft); border-color: var(--hairline); }
  .chip--wait { background: #f7eedc; color: var(--gold); border-color: #e6d4a8; }

  /* --- compact header ----------------------------------------------------- */

  .m-head {
    background:
      radial-gradient(40rem 18rem at 90% 0%, rgba(14, 106, 78, 0.06), transparent 60%),
      var(--ground);
    border-bottom: 1px solid var(--hairline);
  }
  .m-head .inner {
    max-width: var(--w-wide);
    margin: 0 auto;
    padding: 2.4rem 1.75rem 2.9rem;
  }
  .m-head h1 {
    font-family: var(--font-display), Georgia, serif;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.028em;
    margin: 0 0 0.75rem;
    max-width: 22ch;
    text-wrap: balance;
  }
  .m-head .lede {
    font-size: 1.12rem;
    color: var(--ink-soft);
    margin: 0;
    max-width: 58ch;
    text-wrap: pretty;
  }

  .m-crumbs { font-size: 0.85rem; color: var(--muted); margin: 0 0 1.15rem; }
  .m-crumbs a { color: var(--muted); text-decoration: none; }
  .m-crumbs a:hover { color: var(--accent); text-decoration: underline; }
  .m-crumbs span::before { content: "/"; margin: 0 0.45rem; color: var(--hairline-strong); }

  /* --- bands -------------------------------------------------------------- */

  .band { border-top: 1px solid transparent; }
  .band--tint { background: var(--ground); border-top-color: var(--hairline); }
  .band + .band--plain { border-top-color: var(--hairline); }
  .band > .inner {
    width: 100%;
    max-width: var(--w-wide);
    margin: 0 auto;
    padding: 4.25rem 1.75rem;
    min-width: 0;
  }
  .band--tight > .inner { padding-top: 2.4rem; padding-bottom: 2.4rem; }
  .band h2 {
    font-family: var(--font-display), Georgia, serif;
    font-size: clamp(1.55rem, 2.6vw, 2.05rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.024em;
    margin: 0 0 1.7rem;
    max-width: 24ch;
    text-wrap: balance;
  }
  .band .prose { max-width: var(--w-prose); }
  .band .prose p { margin: 0 0 1.1rem; text-wrap: pretty; color: var(--ink-soft); }
  .band .prose p:last-child { margin-bottom: 0; }

  /* --- stats -------------------------------------------------------------- */

  .m-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem 1.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .m-stat { min-width: 0; }
  .m-stat__value {
    font-family: var(--font-display), Georgia, serif;
    font-size: clamp(1.8rem, 2.4vw, 2.35rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--accent);
  }
  .m-stat__label {
    display: block;
    margin: 0.45rem 0 0.25rem;
    font-weight: 620;
    font-size: 0.95rem;
  }
  .m-stat__note { margin: 0; font-size: 0.86rem; color: var(--muted); line-height: 1.45; }

  /* --- split (copy + figure) ---------------------------------------------- */

  .m-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3.25rem;
    align-items: center;
    min-width: 0;
  }
  .m-split--flip .m-split__copy { order: 2; }
  .m-split--flip .m-split__figure { order: 1; }
  .m-split .prose p { color: var(--ink-soft); }

  /* --- figures (the drawn product, not screenshots) ----------------------- */

  .m-fig {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 1rem;
    min-width: 0;
    max-width: 100%;
    box-shadow: 0 18px 40px -28px rgba(16, 28, 23, 0.45);
  }
  .band--plain .m-fig { background: #fff; }
  .m-fig--dark {
    background: var(--night-2);
    border-color: #1b3529;
    color: #e8f2ec;
    box-shadow: 0 22px 44px -28px rgba(0, 0, 0, 0.55);
  }
  .m-fig--dark .m-panel {
    background: rgba(7, 20, 15, 0.55);
    border-color: rgba(160, 205, 185, 0.16);
    color: #e8f2ec;
  }
  .m-fig--dark .m-panel h3 { color: #8fb5a4; }
  .m-fig--dark .m-row { border-top-color: rgba(160, 205, 185, 0.12); }
  .m-fig--dark .m-row .sub { color: #7fa494; }
  .m-fig--dark .chip--yes {
    background: rgba(122, 235, 192, 0.14);
    color: var(--mint);
    border-color: rgba(122, 235, 192, 0.28);
  }
  .m-fig--dark .chip--no {
    background: rgba(214, 122, 96, 0.14);
    color: #e59a80;
    border-color: rgba(214, 122, 96, 0.28);
  }
  .m-fig--dark .chip--flat {
    background: rgba(200, 214, 208, 0.1);
    color: #a8bdb3;
    border-color: rgba(200, 214, 208, 0.2);
  }

  .m-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    align-items: stretch;
  }
  .m-group__col h3 {
    margin: 0 0 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .m-chip-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.4rem 0.55rem;
    margin: 0 0 0.35rem;
    border-radius: 8px;
    background: var(--ground);
    font-size: 0.78rem;
    color: var(--muted);
  }
  .m-cause {
    padding: 0.75rem 0.8rem;
    border-radius: 10px;
    border: 1px solid var(--hairline);
    background: #fff;
    margin: 0 0 0.5rem;
  }
  .m-cause strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
  .m-cause span { font-size: 0.76rem; color: var(--muted); }
  .m-cause--top { border-color: #b7dcc9; background: var(--accent-soft); }

  .m-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
  .m-control__col {
    padding: 0.9rem 0.95rem;
    border-radius: 10px;
    border: 1px solid var(--hairline);
    background: #fff;
  }
  .m-control__col h3 {
    margin: 0 0 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .m-control__delta {
    font-family: var(--font-display), Georgia, serif;
    font-size: 1.85rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .m-control__delta--up { color: var(--accent); }
  .m-control__delta--flat { color: var(--muted); }
  .m-control__meta { margin: 0.4rem 0 0; font-size: 0.78rem; color: var(--muted); }

  /* --- cards -------------------------------------------------------------- */

  .m-cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.95rem;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  }
  .m-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 1.3rem 1.3rem 1.4rem;
    transition: border-color 0.14s ease, transform 0.14s ease, box-shadow 0.14s ease;
  }
  .band--tint .m-card { box-shadow: 0 1px 2px rgba(16, 28, 23, 0.04); }
  .m-card:hover {
    border-color: #9fc4b4;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px -18px rgba(16, 28, 23, 0.28);
  }
  .m-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    letter-spacing: -0.015em;
    font-family: var(--font-display), Georgia, serif;
    font-weight: 520;
  }
  .m-card h3 a { text-decoration: none; color: var(--ink); }
  .m-card h3 a::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); }
  .m-card:hover h3 a { color: var(--accent); }
  .m-card p { margin: 0; font-size: 0.925rem; color: var(--muted); line-height: 1.55; }

  /* --- feature list ------------------------------------------------------- */

  .m-feats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem 2.25rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
  .m-feats li { position: relative; padding-left: 1.15rem; }
  .m-feats li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--accent);
  }
  .m-feats b { display: block; font-weight: 620; margin-bottom: 0.25rem; }
  .m-feats span { color: var(--ink-soft); }
  .m-feats--single { grid-template-columns: minmax(0, var(--w-prose)); }

  /* --- steps -------------------------------------------------------------- */

  .m-steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  }
  .m-steps li {
    counter-increment: step;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 1.25rem 1.2rem 1.3rem;
  }
  .m-steps li::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-display), Georgia, serif;
    font-size: 1.35rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.03em;
    color: var(--accent);
    margin-bottom: 0.65rem;
  }
  .m-steps b { display: block; font-weight: 620; margin-bottom: 0.3rem; }
  .m-steps span { color: var(--muted); font-size: 0.92rem; }

  /* --- pair --------------------------------------------------------------- */

  .m-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .m-pair > div {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 1.35rem 1.3rem;
  }
  .m-pair h3 {
    margin: 0 0 0.6rem;
    font-family: var(--font-display), Georgia, serif;
    font-weight: 520;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
  }
  .m-pair p { margin: 0; color: var(--ink-soft); text-wrap: pretty; }

  /* --- pricing ------------------------------------------------------------ */

  .m-tiers {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
  }
  .m-tier {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 1.4rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .m-tier--featured {
    border-color: var(--accent);
    box-shadow: 0 18px 36px -24px rgba(14, 106, 78, 0.55);
    background: #f4fbf7;
  }
  .m-tier__name {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 660;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .m-tier--featured .m-tier__name { color: var(--accent); }
  .m-tier__flag {
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    text-transform: none;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    padding: 0.12rem 0.5rem;
  }
  .m-tier__price {
    font-family: var(--font-display), Georgia, serif;
    font-size: 2.05rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  .m-tier__unit { font-size: 0.85rem; font-weight: 400; font-family: var(--font-sans), sans-serif; color: var(--muted); letter-spacing: 0; }
  .m-tier__meters { list-style: none; padding: 0; margin: 0.15rem 0; font-size: 0.92rem; }
  .m-tier__meters li { padding: 0.3rem 0; border-top: 1px solid var(--hairline); }
  .m-tier__meters li:first-child { border-top: 0; }
  .m-tier__note { margin: 0; font-size: 0.86rem; color: var(--muted); line-height: 1.5; }

  /* --- faq ---------------------------------------------------------------- */

  .m-faq { display: grid; gap: 0; }
  .m-faq details {
    padding: 0.15rem 0;
    border-top: 1px solid var(--hairline);
  }
  .m-faq details:first-child { border-top: 0; }
  .m-faq summary {
    cursor: pointer;
    font-weight: 620;
    font-size: 1.04rem;
    padding: 1.05rem 1.6rem 1.05rem 0;
    list-style: none;
    position: relative;
  }
  .m-faq summary::-webkit-details-marker { display: none; }
  .m-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 1.05rem;
    color: var(--accent);
    font-weight: 500;
    font-size: 1.2rem;
  }
  .m-faq details[open] summary::after { content: "–"; }
  .m-faq details p {
    margin: 0 0 1.15rem;
    color: var(--ink-soft);
    max-width: 64ch;
    text-wrap: pretty;
  }

  /* --- note --------------------------------------------------------------- */

  .m-note {
    max-width: var(--w-prose);
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 0.95rem 1.15rem;
    margin: 1.75rem 0 0;
    font-size: 0.96rem;
    color: var(--ink-soft);
  }
  .band .prose + .m-note { margin-top: 1.75rem; }

  /* --- closing call to action --------------------------------------------- */

  .m-cta {
    background:
      radial-gradient(50rem 22rem at 18% 0%, rgba(122, 235, 192, 0.14), transparent 62%),
      linear-gradient(160deg, var(--night-2), var(--night));
    color: #e8f2ec;
  }
  .m-cta .inner {
    max-width: var(--w-wide);
    margin: 0 auto;
    padding: 4rem 1.75rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .m-cta h2 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display), Georgia, serif;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: -0.028em;
    max-width: 16ch;
  }
  .m-cta p { margin: 0; color: #b8cec4; max-width: 46ch; }
  .m-cta .btn--primary { background: var(--mint); color: var(--mint-ink); }
  .m-cta .btn--primary:hover { background: #93f0cc; }
  .m-cta .btn--ghost { background: transparent; color: #dcece4; border-color: rgba(220, 236, 228, 0.28); }
  .m-cta .btn--ghost:hover { border-color: var(--mint); color: var(--mint); }
  .m-cta .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

  /* --- read next ---------------------------------------------------------- */

  .m-related .inner { padding-top: 2.6rem; padding-bottom: 2.6rem; }
  .m-related h2 {
    font-family: var(--font-sans), sans-serif;
    font-size: 0.74rem;
    font-weight: 640;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin: 0 0 0.95rem;
  }
  .m-related ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .m-related li a {
    display: inline-block;
    padding: 0.42rem 0.9rem;
    border: 1px solid var(--hairline-strong);
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--ink-soft);
    background: var(--surface);
  }
  .m-related li a:hover { border-color: var(--accent); color: var(--accent); }

  /* --- footer ------------------------------------------------------------- */

  .m-foot {
    border-top: 1px solid var(--hairline);
    background: var(--ground);
    padding: 3.5rem 1.75rem 2.6rem;
  }
  .m-foot .cols {
    max-width: var(--w-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(10rem, 1fr));
    gap: 2.25rem;
  }
  .m-foot .brand .wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display), Georgia, serif;
    font-weight: 560;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.2rem;
  }
  .m-foot .brand .wordmark svg { display: block; flex: none; }
  .m-foot .brand p {
    margin: 0.85rem 0 0;
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 28ch;
    line-height: 1.5;
  }
  .m-foot h2 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin: 0 0 0.75rem;
    font-family: var(--font-sans), sans-serif;
    font-weight: 640;
  }
  .m-foot ul { list-style: none; padding: 0; margin: 0; font-size: 0.92rem; }
  .m-foot li { margin: 0 0 0.5rem; }
  .m-foot li a { color: var(--ink-soft); text-decoration: none; }
  .m-foot li a:hover { color: var(--accent); }
  .m-foot .fine {
    max-width: var(--w-wide);
    margin: 2.6rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hairline);
    font-size: 0.85rem;
    color: var(--muted);
  }

  @media (max-width: 70rem) {
    .m-tiers { grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr)); }
  }

  @media (max-width: 64rem) {
    .m-hero--split .inner { grid-template-columns: minmax(0, 1fr); padding: 3.6rem 1.5rem 3.8rem; }
    .m-split { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
    .m-split--flip .m-split__copy,
    .m-split--flip .m-split__figure { order: 0; }
    .m-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .m-pair { grid-template-columns: 1fr; }
    .m-foot .cols { grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); }
  }

  @media (max-width: 46rem) {
    .m-bar { gap: 0.75rem; padding: 0.75rem 1.1rem; }
    .m-nav-desktop { display: none; }
    .m-nav-mobile { display: block; }
    .m-bar .plain { display: none; }
    .m-bar .bar-end { display: none; }
    .band > .inner { padding: 2.9rem 1.1rem; }
    .m-hero .inner,
    .m-hero--split .inner,
    .m-head .inner,
    .band > .inner,
    .m-cta .inner,
    .m-foot {
      width: auto;
      max-width: calc(100vw - 2.2rem);
      margin-left: 1.1rem;
      margin-right: 1.1rem;
      padding-left: 0;
      padding-right: 0;
    }
    .m-bar { padding-left: 1.1rem; padding-right: 1.1rem; width: 100%; }
    .m-hero h1 { max-width: 13ch; font-size: 2.15rem; text-wrap: wrap; }
    .m-hero .lede { max-width: 100%; text-wrap: wrap; }
    .band h2, .band .prose p { text-wrap: wrap; }
    .m-stats { grid-template-columns: 1fr; gap: 1.35rem; }
    .m-group, .m-control { grid-template-columns: 1fr; }
    .m-window__tag { display: none; }
    .m-row {
      flex-wrap: wrap;
      gap: 0.35rem 0.6rem;
    }
    .m-row > span:first-child { flex: 1 1 10rem; }
    .m-bar .btn--sm { padding: 0.4rem 0.7rem; font-size: 0.82rem; }
    .m-cta h2 { font-size: 1.7rem; }
    .band .prose, .m-stat__note, .m-card p, .m-feats span, .m-steps span {
      overflow-wrap: break-word;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .btn, .m-card { transition: none; }
    .m-card:hover { transform: none; }
  }
