/*
 * DemandAtlas landing page styles.
 * Generated from the approved prototype. Every rule is scoped to
 * .da-landing so other plugins' CSS cannot bleed into the page.
 * Palette mirrors frontend/src/ui/tokens.js -- update tokens there first.
 */

/* ============================================================
     Tokens — mirrored from frontend/src/ui/tokens.js ("Atlas").
     Any hex here should trace back to a token in that file.
     ============================================================ */
  :root {
    /* Cartographic brand */
    --ink:        #1e3a5f;
    --ink-dark:   #162a44;
    --ink-soft:   #3b557a;
    --parchment:  #f7f3eb;
    --bone:       #fdfbf7;
    --isoline:    #d9cfbf;

    /* Semantic score scale — NOT decoration */
    --sage:       #6b8e7f;
    --sage-soft:  #e8efeb;
    --terracotta: #c27664;
    --terracotta-soft: #f6e8e3;
    --clay:       #a05a4a;
    --clay-soft:  #f3e3df;

    /* Surfaces / text, resolved through the ground */
    --ground:      var(--parchment);
    --surface:     var(--bone);
    --surface-alt: #f2ece1;
    --rule:        var(--isoline);
    --rule-soft:   #e6ded1;
    --text:        #26303c;
    --text-muted:  #6a6357;
    --text-faint:  #736a5f;
    --display:     var(--ink);

    --shadow-sm: 0 1px 2px rgba(30, 58, 95, 0.06);
    --shadow-md: 0 2px 8px rgba(30, 58, 95, 0.08);
    --shadow-lg: 0 8px 24px rgba(30, 58, 95, 0.10);

    /* Type stacks — system faces, per tokens.js "no webfont cost" */
    --font-sans:  -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: "Iowan Old Style", "Palatino Linotype", "Palatino", "Georgia Pro", Georgia, serif;
    --font-mono:  ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

    /* Scale */
    --fs-xs: 11px;  --fs-sm: 12.5px; --fs-base: 15px; --fs-md: 17px;
    --fs-lg: 20px;  --fs-xl: 26px;   --fs-2xl: 34px;  --fs-3xl: 44px;

    --sheet: 1140px;
    --pad: clamp(20px, 5vw, 56px);
  }

  /* Night survey — a chart read under a lamp, not a naive inversion */
  .da-landing @media (prefers-color-scheme: dark) {
    :root {
      --ground:      #101c2b;
      --surface:     #16263a;
      --surface-alt: #1b2e45;
      --rule:        #2c4763;
      --rule-soft:   #223850;
      --text:        #dfe3e0;
      --text-muted:  #9aa7b4;
      --text-faint:  #8e9dad;
      --display:     #f0ece3;
      --isoline:     #2c4763;
      --sage:        #8fb3a2;
      --sage-soft:   #1e3a30;
      --terracotta:  #d99a86;
      --terracotta-soft: #3a2620;
      --clay:        #c87c68;
      --clay-soft:   #3a231c;
      --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.30);
      --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.36);
      --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.44);
    }
  }
  :root[data-theme="dark"] {
    --ground:      #101c2b;
    --surface:     #16263a;
    --surface-alt: #1b2e45;
    --rule:        #2c4763;
    --rule-soft:   #223850;
    --text:        #dfe3e0;
    --text-muted:  #9aa7b4;
    --text-faint:  #8e9dad;
    --display:     #f0ece3;
    --isoline:     #2c4763;
    --sage:        #8fb3a2;
    --sage-soft:   #1e3a30;
    --terracotta:  #d99a86;
    --terracotta-soft: #3a2620;
    --clay:        #c87c68;
    --clay-soft:   #3a231c;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.30);
    --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.36);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.44);
  }
  :root[data-theme="light"] {
    --ground:      #f7f3eb;
    --surface:     #fdfbf7;
    --surface-alt: #f2ece1;
    --rule:        #d9cfbf;
    --rule-soft:   #e6ded1;
    --text:        #26303c;
    --text-muted:  #6a6357;
    --text-faint:  #736a5f;
    --display:     #1e3a5f;
    --isoline:     #d9cfbf;
    --sage:        #6b8e7f;
    --sage-soft:   #e8efeb;
    --terracotta:  #c27664;
    --terracotta-soft: #f6e8e3;
    --clay:        #a05a4a;
    --clay-soft:   #f3e3df;
    --shadow-sm: 0 1px 2px rgba(30, 58, 95, 0.06);
    --shadow-md: 0 2px 8px rgba(30, 58, 95, 0.08);
    --shadow-lg: 0 8px 24px rgba(30, 58, 95, 0.10);
  }

  /* ============================================================
     Base
     ============================================================ */
  .da-landing * { box-sizing: border-box; }

  body.da-landing {
    margin: 0;
    background: var(--ground);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  .da-landing h1, .da-landing h2, .da-landing h3 {
    font-family: var(--font-serif);
    color: var(--display);
    font-weight: 600;
    text-wrap: balance;
    margin: 0;
    letter-spacing: -0.015em;
    line-height: 1.15;
  }

  .da-landing p { margin: 0; }
  .da-landing a { color: inherit; }

  .da-landing :focus-visible {
    outline: 2px solid var(--ink-soft);
    outline-offset: 3px;
    border-radius: 2px;
  }@media (prefers-color-scheme: dark) {
    .da-landing :focus-visible { outline-color: var(--sage); }
  }
  :root[data-theme="dark"] .da-landing :focus-visible { outline-color: var(--sage); }

  .da-landing .num, .da-landing [data-numeric] {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
  }

  /* Map furniture: the small caps label used on every section */
  .da-landing .eyebrow {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
    display: block;
  }

  /* ============================================================
     Sheet shell + margin ticks
     ============================================================ */
  .da-landing .sheet {
    max-width: var(--sheet);
    margin: 0 auto;
    padding: 0 var(--pad);
    position: relative;
  }

  .da-landing .ticks {
    position: absolute;
    top: 0; bottom: 0;
    width: 14px;
    pointer-events: none;
    background-image: repeating-linear-gradient(
      to bottom,
      var(--rule) 0, var(--rule) 1px,
      transparent 1px, transparent 16px
    );
    opacity: 0.55;
  }
  .da-landing .ticks--left { left: 10px; }
  .da-landing .ticks--right { right: 10px; }@media (max-width: 1180px) { .da-landing .ticks { display: none; } }

  /* ============================================================
     Masthead
     ============================================================ */
  .da-landing .masthead {
    border-bottom: 1px solid var(--rule);
    background: color-mix(in srgb, var(--ground) 88%, transparent);
    backdrop-filter: saturate(140%) blur(8px);
    position: sticky;
    top: 0;
    z-index: 40;
  }
  .da-landing .masthead__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .da-landing .wordmark {
    display: flex;
    align-items: baseline;
    gap: 9px;
    text-decoration: none;
  }
  .da-landing .wordmark__name {
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--display);
    letter-spacing: -0.01em;
  }
  .da-landing .wordmark__rule {
    width: 26px; height: 1px;
    background: var(--rule);
    display: inline-block;
  }
  .da-landing .wordmark__parent {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
  }@media (max-width: 720px) { .da-landing .wordmark__rule, .da-landing .wordmark__parent { display: none; } }

  .da-landing .mastnav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  /* Scoped to .mastnav__link, never bare `a` — a descendant selector here
     outranks .btn--primary and would repaint the CTA's label. */
  .da-landing .mastnav__link {
    font-size: var(--fs-sm);
    text-decoration: none;
    color: var(--text-muted);
    transition: color 140ms ease;
  }
  .da-landing .mastnav__link:hover { color: var(--display); }@media (max-width: 860px) { .da-landing .mastnav .mastnav__link { display: none; } }

  /* ============================================================
     Buttons
     ============================================================ */
  .da-landing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 18px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 150ms ease, border-color 150ms ease, transform 80ms ease;
  }
  .da-landing .btn--primary {
    background: var(--ink);
    border: 1px solid var(--ink);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
  }
  .da-landing .btn--primary:hover { background: var(--ink-dark); border-color: var(--ink-dark); }
  .da-landing .btn--primary:active { transform: translateY(1px); }
  .da-landing .btn--secondary {
    background: var(--surface);
    border: 1px solid var(--rule);
    color: var(--display);
  }
  .da-landing .btn--secondary:hover { border-color: var(--ink-soft); }
  .da-landing .btn--secondary:active { transform: translateY(1px); }
  .da-landing .btn--lg { height: 46px; padding: 0 24px; font-size: var(--fs-md); }

  /* In dark, the ink primary loses contrast against a navy ground —
     lift it to the parchment so the CTA still reads as the loudest thing. */
  .da-landing @media (prefers-color-scheme: dark) {
    .da-landing .btn--primary { background: #e9e3d6; border-color: #e9e3d6; color: #16263a; }
    .da-landing .btn--primary:hover { background: #ffffff; border-color: #ffffff; }
  }
  :root[data-theme="dark"] .da-landing .btn--primary { background: #e9e3d6; border-color: #e9e3d6; color: #16263a; }
  :root[data-theme="dark"] .da-landing .btn--primary:hover { background: #ffffff; border-color: #ffffff; }

  /* ============================================================
     Hero
     ============================================================ */
  .da-landing .hero {
    position: relative;
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
  }
  .da-landing #topo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
  }
  .da-landing .hero__inner {
    position: relative;
    z-index: 2;
    padding-top: clamp(56px, 9vw, 104px);
    padding-bottom: clamp(48px, 8vw, 88px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
  }@media (max-width: 940px) {
    .da-landing .hero__inner { grid-template-columns: minmax(0, 1fr); }
  }

  .da-landing .hero h1 {
    font-size: clamp(2.5rem, 6.4vw, 4.1rem);
    letter-spacing: -0.025em;
    margin: 16px 0 0;
  }
  .da-landing .hero h1 em {
    font-style: italic;
    color: var(--sage);
  }
  .da-landing .hero__lede {
    margin-top: 20px;
    font-size: var(--fs-md);
    line-height: 1.62;
    color: var(--text-muted);
    max-width: 60ch;
  }
  .da-landing .hero__actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .da-landing .hero__note {
    margin-top: 18px;
    font-size: var(--fs-sm);
    color: var(--text-faint);
  }

  /* ============================================================
     Sample market sheet (the hero's right-hand artifact)
     ============================================================ */
  .da-landing .card {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
  }
  .da-landing .msheet__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .da-landing .msheet__place {
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    color: var(--display);
    font-weight: 600;
    line-height: 1.25;
  }
  .da-landing .msheet__zip {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.08em;
    color: var(--text-faint);
    text-transform: uppercase;
  }
  .da-landing .chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .da-landing .chip--sage { background: var(--sage-soft); color: var(--sage); border: 1px solid color-mix(in srgb, var(--sage) 35%, transparent); }
  .da-landing .chip__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

  .da-landing .msheet__scores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--rule-soft);
  }
  .da-landing .stat { padding: 16px 20px; }
  .da-landing .stat + .stat { border-left: 1px solid var(--rule-soft); }
  .da-landing .stat__label {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
  }
  .da-landing .stat__value {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    font-size: 30px;
    font-weight: 600;
    color: var(--display);
    line-height: 1.15;
    margin-top: 6px;
  }
  .da-landing .stat__value .unit { font-size: 14px; color: var(--text-faint); font-weight: 400; }
  .da-landing .stat__sub { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 3px; }
  .da-landing .stat__value--sage { color: var(--sage); }

  /* Meter — the score's position on the 0–100 band */
  .da-landing .meter {
    height: 5px;
    border-radius: 3px;
    background: var(--surface-alt);
    margin-top: 12px;
    position: relative;
    overflow: hidden;
  }
  .da-landing .meter__fill { height: 100%; border-radius: 3px; background: var(--sage); }

  .da-landing .msheet__drivers { padding: 16px 20px 18px; }
  .da-landing .drivers__title {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 12px;
  }
  .da-landing .driver {
    display: grid;
    grid-template-columns: 1fr 62px 46px;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: var(--fs-sm);
  }
  .da-landing .driver + .driver { border-top: 1px dotted var(--rule-soft); }
  .da-landing .driver__name { color: var(--text); }
  .da-landing .driver__bar {
    height: 4px;
    border-radius: 2px;
    background: var(--surface-alt);
    overflow: hidden;
  }
  .da-landing .driver__bar span { display: block; height: 100%; background: var(--sage); border-radius: 2px; }
  .da-landing .driver__val {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    text-align: right;
    color: var(--text-muted);
    font-size: var(--fs-xs);
  }
  .da-landing .msheet__foot {
    border-top: 1px solid var(--rule-soft);
    padding: 10px 20px;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* ============================================================
     Generic section rhythm
     ============================================================ */
  .da-landing .band { border-bottom: 1px solid var(--rule); }
  .da-landing .band--alt { background: var(--surface-alt); }
  .da-landing .band__inner { padding-top: clamp(52px, 7vw, 88px); padding-bottom: clamp(52px, 7vw, 88px); }

  .da-landing .section-head { max-width: 68ch; }
  .da-landing .section-head h2 {
    font-size: clamp(1.7rem, 3.4vw, var(--fs-3xl));
    margin-top: 14px;
  }
  .da-landing .section-head p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: var(--fs-md);
    max-width: 62ch;
  }

  /* ============================================================
     Method — a real 3-step sequence, so numbering is honest
     ============================================================ */
  .da-landing .steps {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
  }@media (max-width: 860px) { .da-landing .steps { grid-template-columns: minmax(0, 1fr); } }

  .da-landing .step {
    background: var(--surface);
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .da-landing .step__no {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    color: var(--sage);
  }
  .da-landing .step h3 { font-size: var(--fs-lg); }
  .da-landing .step p { color: var(--text-muted); font-size: var(--fs-base); }
  .da-landing .step__detail {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px dotted var(--rule);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    line-height: 1.7;
    color: var(--text-faint);
  }

  /* ============================================================
     Legend — the score scale, explained as map furniture
     ============================================================ */
  .da-landing .legend {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }@media (max-width: 780px) { .da-landing .legend { grid-template-columns: minmax(0, 1fr); } }

  .da-landing .legend__item {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 18px 20px 20px;
  }
  .da-landing .legend__swatch {
    height: 6px;
    border-radius: 3px;
    margin-bottom: 14px;
  }
  .da-landing .legend__band {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
  }
  .da-landing .legend__item h3 { font-size: var(--fs-md); margin-top: 6px; }
  .da-landing .legend__item p { margin-top: 8px; font-size: var(--fs-sm); color: var(--text-muted); }

  /* ============================================================
     Coverage figures
     ============================================================ */
  .da-landing .figures {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
  }@media (max-width: 860px) { .da-landing .figures { grid-template-columns: repeat(2, minmax(0, 1fr)); } }@media (max-width: 460px) { .da-landing .figures { grid-template-columns: minmax(0, 1fr); } }

  .da-landing .figure { background: var(--surface); padding: 22px 20px; }
  .da-landing .figure__n {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    font-size: 28px;
    font-weight: 600;
    color: var(--display);
    line-height: 1.1;
  }
  .da-landing .figure__l { margin-top: 6px; font-size: var(--fs-sm); color: var(--text-muted); }

  /* ============================================================
     Vertical index — set like a real index, not a card grid
     ============================================================ */
  .da-landing .index {
    margin-top: 36px;
    columns: 4;
    column-gap: 28px;
  }@media (max-width: 900px) { .da-landing .index { columns: 3; } }@media (max-width: 640px) { .da-landing .index { columns: 2; } }@media (max-width: 400px) { .da-landing .index { columns: 1; } }

  .da-landing .index__row {
    break-inside: avoid;
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 5px 0;
    font-size: var(--fs-sm);
    color: var(--text);
    border-bottom: 1px dotted var(--rule);
  }
  .da-landing .index__row .dots { flex: 1; }
  .da-landing .index__naics {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    font-size: var(--fs-xs);
    color: var(--text-faint);
  }

  /* ============================================================
     The deliverable — ungated report preview.
     Proof is free; personalization is what's gated.
     ============================================================ */
  .da-landing .report {
    margin-top: 44px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 5vw, 60px);
    align-items: center;
  }@media (max-width: 900px) { .da-landing .report { grid-template-columns: minmax(0, 1fr); } }

  .da-landing .contents { margin-top: 22px; }
  .da-landing .contents__row {
    display: flex;
    gap: 12px;
    align-items: baseline;
    padding: 11px 0;
    border-bottom: 1px dotted var(--rule);
    font-size: var(--fs-base);
  }
  .da-landing .contents__row:last-child { border-bottom: none; }
  .da-landing .contents__mark {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--sage);
    flex: none;
    width: 20px;
  }
  .da-landing .contents__row strong { color: var(--display); font-weight: 600; }
  .da-landing .contents__row .t { color: var(--text-muted); }

  .da-landing .gate-note {
    margin-top: 24px;
    padding: 14px 16px;
    background: var(--sage-soft);
    border: 1px solid color-mix(in srgb, var(--sage) 32%, transparent);
    border-radius: 8px;
    font-size: var(--fs-sm);
    color: var(--text);
  }
  .da-landing .gate-note strong { color: var(--display); }

  /* stacked paper — the report as a physical object */
  .da-landing .stack { position: relative; }
  .da-landing .paper {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 3px;
    box-shadow: var(--shadow-lg);
  }
  .da-landing .paper--back {
    position: absolute;
    inset: 0;
    transform: rotate(-1.5deg) translate(-12px, 12px);
    z-index: 0;
  }
  .da-landing .paper--front { position: relative; z-index: 1; }

  .da-landing .cover { padding: 26px 26px 20px; }
  .da-landing .cover__brand {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.18em;
    color: var(--text-faint);
  }
  .da-landing .cover__title {
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--display);
    margin-top: 10px;
    line-height: 1.2;
  }
  .da-landing .cover__for {
    margin-top: 8px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
  }
  .da-landing .cover__for strong { color: var(--display); font-weight: 600; }
  .da-landing .cover__note {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--rule-soft);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.55;
  }
  .da-landing .cover__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }
  .da-landing .cstat__n {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--display);
  }
  .da-landing .cstat__l {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-top: 2px;
  }
  .da-landing .cover__rows { margin-top: 18px; border-top: 1px solid var(--rule-soft); }
  .da-landing .crow {
    display: grid;
    grid-template-columns: 22px 1fr 46px;
    gap: 10px;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dotted var(--rule-soft);
    font-size: var(--fs-sm);
  }
  .da-landing .crow__r {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-faint);
  }
  .da-landing .crow__n { color: var(--text); }
  .da-landing .crow__s {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    text-align: right;
    color: var(--sage);
    font-weight: 600;
  }
  .da-landing .cover__foot {
    margin-top: 14px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-faint);
  }

  /* ============================================================
     Offers — the report leads; access follows
     ============================================================ */
  /* Sticky masthead is ~62px — keep anchored sections clear of it */
  .da-landing section[id] { scroll-margin-top: 84px; }

  .da-landing .offers {
    margin-top: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 20px;
  }@media (max-width: 900px) { .da-landing .offers { grid-template-columns: minmax(0, 1fr); } }

  .da-landing .offers__side { display: grid; gap: 20px; }

  .da-landing .offer {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .da-landing .offer--featured {
    border-color: color-mix(in srgb, var(--sage) 55%, var(--rule));
    box-shadow: var(--shadow-md);
  }
  .da-landing .offer__tag {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
  }
  .da-landing .offer__name {
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--display);
    line-height: 1.2;
  }
  .da-landing .offer__price {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    font-size: 34px;
    font-weight: 600;
    color: var(--display);
    line-height: 1.1;
  }
  .da-landing .offer__price .per {
    font-size: 14px;
    color: var(--text-faint);
    font-weight: 400;
    letter-spacing: 0;
  }
  .da-landing .offer__blurb { font-size: var(--fs-base); color: var(--text-muted); }
  .da-landing .offer ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .da-landing .offer li {
    display: flex;
    gap: 10px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.5;
  }
  .da-landing .offer li::before {
    content: "—";
    color: var(--sage);
    flex: none;
  }
  .da-landing .offer__meta {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--rule-soft);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .da-landing .offer__meta-l {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
  }
  .da-landing .offer__meta-v {
    display: block;
    margin-top: 4px;
    font-size: var(--fs-base);
    color: var(--display);
    font-weight: 500;
  }

  .da-landing .offer .btn { margin-top: 6px; align-self: flex-start; }
  /* featured card matches the stacked side column — CTA pinned to the base */
  .da-landing .offer--featured .btn { margin-top: auto; }
  .da-landing .offer--sm .offer__price { font-size: 26px; }
  /* a non-numeric price shouldn't wear the tabular-figure treatment */
  .da-landing .offer__price--text {
    font-family: var(--font-serif);
    font-size: 24px;
    letter-spacing: -0.01em;
  }

  .da-landing .fine-print {
    margin-top: 20px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    max-width: 70ch;
  }

  /* ============================================================
     Closing call
     ============================================================ */
  .da-landing .closer { text-align: center; }
  .da-landing .closer h2 { font-size: clamp(1.8rem, 4vw, var(--fs-3xl)); }
  .da-landing .closer p { margin: 18px auto 0; max-width: 54ch; color: var(--text-muted); font-size: var(--fs-md); }
  .da-landing .closer .hero__actions { justify-content: center; }

  /* ============================================================
     Footer
     ============================================================ */
  .da-landing .footer__inner {
    padding-top: 34px;
    padding-bottom: 44px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    font-size: var(--fs-sm);
    color: var(--text-muted);
  }
  .da-landing .footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
  .da-landing .footer__links a { text-decoration: none; color: var(--text-muted); }
  .da-landing .footer__links a:hover { color: var(--display); }@media (prefers-reduced-motion: reduce) {
    .da-landing * { animation: none !important; transition: none !important; }
  }
