  :root {
    /* Warm editorial palette — credible alternative to the dark site */
    --paper:        #f5ede1;   /* warm cream paper */
    --paper-deep:   #ece2d0;   /* slightly stronger cream for cards */
    --paper-shade:  #e3d6bf;   /* divider / soft shadow */
    --ink:          #1a1410;   /* near-black with a warm bias */
    --ink-soft:     #4a3f33;   /* secondary text */
    --ink-faint:    #7a6b59;   /* tertiary text */
    --brand:        #ff7a3d;   /* signature orange */
    --brand-deep:   #e85c1a;   /* signature deep orange */
    --brand-ink:    #7a2f0a;   /* dark version for text on cream */
    --rule:         #d6c8ad;   /* hairline rule */
    --leaf:         #2f5d44;   /* forest accent (sparingly) */
    --plum:         #5a2740;   /* plum accent (sparingly) */
    --radius:       18px;
    --radius-sm:    10px;
    --shadow-soft:  0 1px 0 rgba(26,20,16,.04), 0 8px 24px -12px rgba(26,20,16,.18);
    --shadow-card:  0 1px 0 rgba(26,20,16,.05), 0 22px 50px -28px rgba(26,20,16,.35);
    --grain:        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  body::before {
    /* Paper grain overlay — subtle texture, the magazine feel */
    content: "";
    position: fixed; inset: 0;
    background-image: var(--grain);
    background-size: 220px 220px;
    pointer-events: none;
    z-index: 100;
    mix-blend-mode: multiply;
    opacity: .55;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; }
  .wrap { width: min(1180px, 92%); margin: 0 auto; }

  /* ============ Typography ============ */
  .display, h1, h2, h3 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
    letter-spacing: -0.025em;
    line-height: 1.02;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
  }
  .mono { font-family: 'JetBrains Mono', ui-monospace, "SF Mono", monospace; }

  /* Safety net: any inline SVG without an explicit width attribute defaults to 1em
     (≈16px at body font size). Prevents naked viewBox SVGs from rendering at
     full container width. Explicit width="..." or context selectors override. */
  svg:not([width]) { width: 1em; height: 1em; flex-shrink: 0; vertical-align: -2px; }

  /* Browser-frame portfolio preview (used on niche pages — iframe-embeds a
     portfolio page and scales it down so the whole layout reads at a glance) */
  .preview-browser {
    background: var(--paper-deep);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }
  .pb-bar {
    display: flex; align-items: center; gap: 8px;
    background: var(--paper-shade);
    padding: 10px 14px;
    border-bottom: 1px solid var(--rule);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--ink-faint);
  }
  .pb-bar .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
  .pb-bar .dot.r { background: #ff5f57; }
  .pb-bar .dot.y { background: #febc2e; }
  .pb-bar .dot.g { background: #28c840; }
  .pb-bar .url { margin-left: 10px; }
  .pb-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 70%;            /* aspect ratio */
    overflow: hidden;
    background: var(--paper);
  }
  .pb-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 250%;                    /* render iframe at 2.5× container width */
    height: 250%;
    transform: scale(0.4);          /* scale back down so the whole site shows */
    transform-origin: top left;
    border: 0;
    pointer-events: none;           /* preview only — clicks go to "view live" link */
  }
  .preview-caption {
    text-align: center;
    font-size: 13px;
    color: var(--ink-faint);
    margin-top: 14px;
  }
  .preview-caption a { color: var(--brand-deep); text-decoration: none; border-bottom: 1px dotted var(--brand-deep); }
  .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand-deep);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 22px; height: 1px;
    background: var(--brand-deep);
  }
  /* Centered eyebrows get a matching dash on the RIGHT side too */
  .eyebrow[style*="center"]::after {
    content: "";
    width: 22px; height: 1px;
    background: var(--brand-deep);
  }

  /* ============ Top ribbon ============ */
  .ribbon {
    background: var(--ink);
    color: var(--paper);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: .08em;
    text-align: center;
    padding: 9px 16px;
    position: relative;
    z-index: 60;
  }
  .ribbon .dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: #4cc2a0; margin-right: 8px; vertical-align: middle;
    box-shadow: 0 0 0 3px rgba(76,194,160,.25);
    animation: pulse 1.9s ease-in-out infinite;
  }
  @keyframes pulse { 50% { opacity: .4; } }
  .ribbon a { color: var(--brand); text-decoration: none; border-bottom: 1px dotted var(--brand); margin-left: 12px; }

  /* ============ Nav ============ */
  header.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(245,237,225,.86);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--rule);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0;
  }
  .brand-mark {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "WONK" 1;
    font-size: 22px; font-weight: 600;
    color: var(--ink); text-decoration: none;
    letter-spacing: -0.02em;
  }
  .brand-mark .seal {
    width: 36px; height: 36px;
    background: var(--ink);
    color: var(--paper);
    display: grid; place-items: center;
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 600; font-size: 20px;
    border-radius: 50%;
    transform: rotate(-5deg);
  }
  .brand-mark small {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
    color: var(--ink-faint); font-weight: 500;
    display: block; line-height: 1; margin-top: 4px;
  }
  nav.links { display: none; gap: 28px; font-size: 14px; }
  nav.links a { color: var(--ink-soft); text-decoration: none; font-weight: 500; transition: color .15s; }
  nav.links a:hover { color: var(--brand-deep); }
  @media (min-width: 860px) { nav.links { display: flex; } }

  /* Mobile hamburger menu */
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; margin-right: 10px;
    background: transparent; border: 1px solid var(--rule);
    border-radius: 8px; color: var(--ink); cursor: pointer; padding: 0;
  }
  .nav-toggle:hover { background: var(--paper-deep); }
  .nav-toggle svg { width: 20px; height: 20px; }
  @media (min-width: 860px) { .nav-toggle { display: none; } }

  @media (max-width: 859px) {
    nav.links[data-open="true"] {
      display: flex; flex-direction: column; gap: 0;
      position: absolute; top: 100%; left: 0; right: 0;
      background: rgba(245,237,225,.98); backdrop-filter: blur(12px);
      padding: 14px 20px; border-bottom: 1px solid var(--rule);
      box-shadow: 0 8px 24px rgba(26,20,16,.18);
    }
    nav.links[data-open="true"] a {
      padding: 14px 0; border-bottom: 1px solid var(--rule);
      color: var(--ink); font-size: 16px;
    }
    nav.links[data-open="true"] a:last-child { border-bottom: none; }
  }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px;
    background: var(--ink); color: var(--paper);
    border-radius: 999px; text-decoration: none;
    font-weight: 600; font-size: 14px;
    transition: background .15s, transform .15s;
  }
  .nav-cta:hover { background: var(--brand-deep); transform: translateY(-1px); }
  .nav-cta svg { width: 14px; height: 14px; }

  /* ============ Hero — editorial cover ============ */
  .hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
  .hero::before {
    content: ""; position: absolute;
    width: 520px; height: 520px; right: -180px; top: -120px;
    background: radial-gradient(closest-side, rgba(255,122,61,.32), transparent 70%);
    pointer-events: none; z-index: 0;
  }
  .hero::after {
    content: ""; position: absolute;
    width: 380px; height: 380px; left: -160px; bottom: -180px;
    background: radial-gradient(closest-side, rgba(232,92,26,.18), transparent 70%);
    pointer-events: none; z-index: 0;
  }
  .hero-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  @media (min-width: 980px) {
    .hero-grid { grid-template-columns: 1.35fr 1fr; gap: 60px; align-items: end; }
  }

  .hero-eyebrow-row {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px 6px 9px;
    background: var(--paper-deep); border: 1px solid var(--rule); border-radius: 999px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .08em;
    color: var(--ink-soft); font-weight: 500;
  }
  .badge .pip {
    width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
    box-shadow: 0 0 0 3px rgba(255,122,61,.2);
  }

  h1.headline {
    font-size: clamp(46px, 8.4vw, 104px);
    line-height: .94;
    font-weight: 400;
    letter-spacing: -0.035em;
    font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
    margin: 0 0 28px;
  }
  h1.headline em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-weight: 400;
    background: linear-gradient(105deg, var(--brand) 0%, var(--brand-deep) 60%, #c43a0a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: .04em;
  }
  h1.headline .ampersand {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    color: var(--brand);
  }

  .lede {
    font-size: clamp(17px, 1.8vw, 21px);
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 0 36px;
    line-height: 1.5;
  }
  .lede strong { color: var(--ink); font-weight: 600; }

  .cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600; font-size: 15px;
    text-decoration: none;
    border: 0; cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  }
  .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
  .btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff;
    box-shadow: 0 12px 30px -8px rgba(232,92,26,.55), inset 0 1px 0 rgba(255,255,255,.25);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(232,92,26,.6); }
  .btn-ghost {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--ink);
  }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); }
  .btn-paper {
    background: var(--paper); color: var(--ink);
    border: 1.5px solid var(--ink);
  }
  .btn-paper:hover { background: var(--ink); color: var(--paper); }

  .meta-row {
    display: flex; flex-wrap: wrap; gap: 22px;
    margin-top: 32px; padding-top: 26px;
    border-top: 1px solid var(--rule);
    font-size: 13px; color: var(--ink-soft);
  }
  .meta-row .meta-item {
    display: inline-flex; align-items: center; gap: 8px;
  }
  .meta-row svg { width: 16px; height: 16px; color: var(--brand-deep); }

  /* Hero side card — folded magazine corner */
  .hero-card {
    position: relative;
    background: var(--paper-deep);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 32px 30px 28px;
    box-shadow: var(--shadow-card);
    transform: rotate(1.2deg);
    transition: transform .3s ease;
  }
  .hero-card:hover { transform: rotate(0deg); }
  .hero-card::after {
    /* folded corner */
    content: ""; position: absolute; bottom: 0; right: 0;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, transparent 50%, var(--paper) 50%);
    border-radius: 0 0 var(--radius) 0;
  }
  .hero-card-label {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint);
    margin-bottom: 22px; display: flex; justify-content: space-between;
  }
  .hero-card-title {
    font-family: 'Fraunces', serif; font-size: 26px; line-height: 1.12;
    font-weight: 500; font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    color: var(--ink); margin: 0 0 18px;
  }
  .hero-card-list { list-style: none; padding: 0; margin: 0 0 26px; }
  .hero-card-list li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed var(--rule);
    font-size: 14.5px; color: var(--ink-soft);
  }
  .hero-card-list li:last-child { border-bottom: 0; }
  .hero-card-list li::before {
    content: "✓"; color: var(--brand-deep); font-weight: 700; flex-shrink: 0;
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    margin-top: 2px;
  }
  .hero-founder {
    display: flex; align-items: center; gap: 14px;
    padding-top: 18px; border-top: 1px solid var(--rule);
  }
  .hero-founder .ava {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff; display: grid; place-items: center;
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 600; font-size: 19px;
    flex-shrink: 0;
  }
  .hero-founder .name { font-weight: 600; font-size: 14px; color: var(--ink); line-height: 1.2; }
  .hero-founder .role { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-faint); letter-spacing: .04em; }

  /* ============ Stat strip ============ */
  .stat-strip {
    background: var(--ink); color: var(--paper);
    padding: 28px 0;
    position: relative; z-index: 1;
  }
  .stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 36px;
    align-items: center;
  }
  @media (min-width: 760px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
  .stat { display: flex; flex-direction: column; gap: 4px; }
  .stat-num {
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: 38px; line-height: 1;
    color: var(--paper);
    font-variation-settings: "opsz" 144;
  }
  .stat-num .accent {
    background: linear-gradient(105deg, var(--brand), #ffb27a);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .stat-label {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(245,237,225,.65);
  }

  /* ============ Industries strip ============ */
  .industries {
    padding: 26px 0; border-bottom: 1px solid var(--rule);
    background: var(--paper);
  }
  .industries-inner {
    display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
    justify-content: space-between;
  }
  .industries .label {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: .15em; text-transform: uppercase; color: var(--ink-faint);
  }
  .industries .chips { display: flex; gap: 10px; flex-wrap: wrap; }
  .industries .chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--paper-deep); border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 13px; font-weight: 500; color: var(--ink-soft);
    text-decoration: none; transition: all .15s;
  }
  .industries .chip svg { width: 14px; height: 14px; color: var(--brand-deep); }
  .industries .chip:hover { border-color: var(--brand); color: var(--ink); background: #fff; transform: translateY(-1px); }

  /* ============ Section base ============ */
  section { padding: 100px 0; position: relative; }
  .section-head { max-width: 720px; margin-bottom: 56px; }
  .section-head h2 {
    font-size: clamp(34px, 5vw, 58px);
    margin: 14px 0 18px;
    font-weight: 400;
    letter-spacing: -0.03em;
  }
  .section-head h2 em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    color: var(--brand-deep);
  }
  .section-head p {
    font-size: 18px; color: var(--ink-soft); max-width: 560px; margin: 0;
  }

  /* ============ Pain — bento style ============ */
  .pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  @media (min-width: 720px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
  .pain-card {
    background: var(--paper-deep);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: transform .2s, box-shadow .2s;
  }
  .pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
  .pain-card .pain-num {
    font-family: 'Fraunces', serif; font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-size: 64px; line-height: 1; font-weight: 400;
    color: var(--brand-deep);
    margin-bottom: 18px;
    display: block;
  }
  .pain-card h3 {
    font-size: 22px; line-height: 1.2; margin: 0 0 12px;
    font-weight: 500;
  }
  .pain-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

  /* ============ Process ============ */
  .process-wrap { background: var(--ink); color: var(--paper); }
  .process-wrap .section-head h2 { color: var(--paper); }
  .process-wrap .section-head h2 em { color: var(--brand); }
  .process-wrap .section-head p { color: rgba(245,237,225,.7); }
  .process-wrap .eyebrow { color: var(--brand); }
  .process-wrap .eyebrow::before { background: var(--brand); }
  .process {
    display: grid; gap: 22px;
    grid-template-columns: 1fr;
    position: relative;
  }
  @media (min-width: 820px) {
    .process { grid-template-columns: repeat(3, 1fr); }
  }
  .step {
    padding: 32px 28px 28px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(245,237,225,.12);
    border-radius: var(--radius);
    position: relative;
    backdrop-filter: blur(6px);
  }
  .step-num {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500;
    letter-spacing: .1em;
    color: var(--brand);
    margin-bottom: 22px;
  }
  .step-num::before {
    content: ""; width: 28px; height: 1px; background: var(--brand); margin-right: 10px;
  }
  .step h3 {
    font-size: 24px; font-weight: 500; color: var(--paper);
    margin: 0 0 10px;
    font-variation-settings: "opsz" 144;
  }
  .step p { color: rgba(245,237,225,.65); font-size: 15px; line-height: 1.55; margin: 0; }
  .step-time {
    margin-top: 22px; padding-top: 16px;
    border-top: 1px dashed rgba(245,237,225,.18);
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: rgba(245,237,225,.5); letter-spacing: .1em; text-transform: uppercase;
  }

  /* ============ Pricing — editorial cards ============ */
  .pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
  }
  @media (min-width: 900px) {
    .pricing { grid-template-columns: repeat(3, 1fr); }
  }
  .pkg {
    background: var(--paper-deep);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 36px 32px 32px;
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s;
    position: relative;
  }
  .pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
  .pkg.featured {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -20px rgba(26,20,16,.45);
  }
  .pkg.featured:hover { transform: translateY(-16px) scale(1.02); }
  .pkg.featured::before {
    content: "Most chosen";
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  }
  .pkg-name {
    font-family: 'Fraunces', serif; font-size: 30px; line-height: 1;
    font-weight: 500; margin: 0 0 8px;
    font-variation-settings: "opsz" 144, "WONK" 1;
  }
  .pkg.featured .pkg-name { color: var(--paper); }
  .pkg-tag {
    font-size: 14px; color: var(--ink-faint); margin: 0 0 26px;
    line-height: 1.4;
  }
  .pkg.featured .pkg-tag { color: rgba(245,237,225,.55); }
  .pkg-price {
    display: flex; align-items: baseline; gap: 8px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
  }
  .pkg.featured .pkg-price { border-color: rgba(245,237,225,.15); }
  .pkg-price .currency {
    font-family: 'Fraunces', serif; font-size: 26px;
    color: var(--ink-faint); font-weight: 500;
    font-variation-settings: "opsz" 144;
  }
  .pkg.featured .pkg-price .currency { color: rgba(245,237,225,.5); }
  .pkg-price .amount {
    font-family: 'Fraunces', serif; font-size: 56px;
    line-height: 1; font-weight: 500;
    letter-spacing: -0.03em;
    font-variation-settings: "opsz" 144;
    color: var(--ink);
  }
  .pkg.featured .pkg-price .amount { color: var(--paper); }
  .pkg.featured .pkg-price .amount {
    background: linear-gradient(135deg, var(--brand), #ffb27a);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .pkg-price .unit {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--ink-faint); letter-spacing: .1em; text-transform: uppercase;
  }
  .pkg.featured .pkg-price .unit { color: rgba(245,237,225,.5); }
  .pkg-list { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; }
  .pkg-list li {
    padding: 11px 0;
    border-bottom: 1px dashed var(--rule);
    font-size: 14.5px;
    color: var(--ink-soft);
    display: flex; gap: 12px; align-items: flex-start;
    line-height: 1.45;
  }
  .pkg.featured .pkg-list li { color: rgba(245,237,225,.78); border-color: rgba(245,237,225,.12); }
  .pkg-list li::before {
    content: "✓";
    color: var(--brand-deep); font-weight: 700;
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    flex-shrink: 0; margin-top: 1px;
  }
  .pkg.featured .pkg-list li::before { color: var(--brand); }
  .pkg .btn { width: 100%; justify-content: center; }

  /* ============ Pull quote / testimonial ============ */
  .quote-section { padding: 110px 0; position: relative; }
  .quote-section::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(closest-side at 80% 20%, rgba(255,122,61,.18), transparent 60%),
      radial-gradient(closest-side at 10% 80%, rgba(232,92,26,.12), transparent 60%);
    pointer-events: none;
  }
  .pull-quote {
    position: relative;
    max-width: 880px; margin: 0 auto;
    text-align: center;
    padding: 0 20px;
  }
  .pull-quote .qmark {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-size: 180px; line-height: .7;
    color: var(--brand);
    display: block; margin: 0 auto 0;
    font-weight: 400;
    height: 90px;
  }
  .pull-quote blockquote {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    color: var(--ink);
    margin: 0 0 32px;
    letter-spacing: -0.015em;
  }
  .pull-quote blockquote em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    color: var(--brand-deep);
  }
  .pull-quote cite {
    display: block; font-style: normal;
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-faint);
  }
  .pull-quote cite strong { color: var(--ink); font-weight: 600; }
  .quote-todo {
    margin: 24px auto 0; max-width: 520px;
    padding: 10px 16px;
    background: rgba(232,92,26,.08);
    border: 1px dashed var(--brand-deep);
    border-radius: 10px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--brand-ink);
    text-align: center;
  }

  /* ============ Founder strip ============ */
  .founder {
    padding: 100px 0; background: var(--paper-deep);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
  }
  @media (min-width: 860px) {
    .founder-grid { grid-template-columns: 260px 1fr; gap: 70px; }
  }
  .founder-card {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 65%, #c43a0a 100%);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(232,92,26,.45);
    transform: rotate(-2deg);
    transition: transform .3s ease;
  }
  .founder-card:hover { transform: rotate(0); }
  .founder-card::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(closest-side at 30% 30%, rgba(255,255,255,.25), transparent 70%);
  }
  .founder-card .initial {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: 'Fraunces', serif; font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-size: 200px; color: rgba(255,255,255,.85);
    font-weight: 500;
    text-shadow: 0 4px 30px rgba(0,0,0,.15);
  }
  .founder-card .sig {
    position: absolute; left: 22px; right: 22px; bottom: 22px;
    color: #fff; font-weight: 600; font-size: 15px; letter-spacing: -.01em;
  }
  .founder-card .sig small {
    display: block; font-weight: 400; font-size: 12px; opacity: .82;
    font-family: 'JetBrains Mono', monospace; letter-spacing: .08em;
    margin-top: 4px;
  }
  .founder-text h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    margin: 14px 0 22px;
    font-weight: 400;
    letter-spacing: -0.025em;
  }
  .founder-text h2 em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    color: var(--brand-deep);
  }
  .founder-text p {
    color: var(--ink-soft); font-size: 17px;
    margin: 0 0 16px; line-height: 1.6;
    max-width: 580px;
  }
  .founder-text p strong { color: var(--ink); font-weight: 600; }
  .founder-sig {
    margin-top: 30px;
    font-family: 'Fraunces', serif; font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-size: 28px;
    color: var(--brand-deep);
    font-weight: 500;
  }

  /* ============ Final CTA ============ */
  .final {
    padding: 120px 0;
    background: var(--ink); color: var(--paper);
    position: relative; overflow: hidden;
  }
  .final::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(closest-side at 80% 20%, rgba(255,122,61,.5), transparent 50%),
      radial-gradient(closest-side at 20% 80%, rgba(232,92,26,.35), transparent 50%);
    pointer-events: none;
  }
  .final-inner {
    position: relative; text-align: center;
    max-width: 760px; margin: 0 auto;
  }
  .final h2 {
    color: var(--paper);
    font-size: clamp(40px, 6vw, 76px);
    margin: 18px 0 24px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .final h2 em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    background: linear-gradient(105deg, var(--brand), #ffb27a);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .final p {
    font-size: 19px;
    color: rgba(245,237,225,.75);
    max-width: 560px; margin: 0 auto 38px;
    line-height: 1.55;
  }
  .final .eyebrow { color: var(--brand); }
  .final .eyebrow::before { background: var(--brand); }
  .final .cta-row { justify-content: center; }
  .final .btn-paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
  .final .btn-paper:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
  .final .btn-ghost { color: var(--paper); border-color: rgba(245,237,225,.4); }
  .final .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

  /* ============ Footer ============ */
  footer {
    background: var(--paper);
    padding: 60px 0 40px;
    border-top: 1px solid var(--rule);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  @media (min-width: 780px) {
    .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; }
  }
  .foot-brand p { color: var(--ink-soft); font-size: 14px; max-width: 320px; margin: 14px 0 0; line-height: 1.55; }
  .foot-col h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
    color: var(--ink-faint); margin: 0 0 18px; font-weight: 600;
  }
  .foot-col a {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    color: var(--ink); text-decoration: none;
    font-size: 14.5px; font-weight: 500;
    transition: color .15s;
  }
  .foot-col a:hover { color: var(--brand-deep); }
  .foot-col a svg { width: 16px; height: 16px; color: var(--brand-deep); flex-shrink: 0; }
  .foot-bottom {
    padding-top: 28px; border-top: 1px solid var(--rule);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: .08em; color: var(--ink-faint);
  }
  .foot-bottom a { color: var(--ink-faint); text-decoration: none; }
  .foot-bottom a:hover { color: var(--ink); }

  /* ============ Floating WhatsApp ============ */
  .wa-float {
    position: fixed; bottom: 22px; right: 22px; z-index: 80;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366;
    box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 4px rgba(37,211,102,.15);
    display: grid; place-items: center;
    color: #fff;
    text-decoration: none;
    transition: transform .15s;
  }
  .wa-float:hover { transform: scale(1.08); }
  .wa-float svg { width: 30px; height: 30px; }

  /* ============ Shared small ink chrome (allowed dark elements) ============ */
  /* These are the small ink elements the design system allows on cream pages: */
  /* (a) 30px topline mini-seal logo used inside vs- pages, (b) 44px promise seal,  */
  /* (c) 22px form check toggle. Defined here so pages don't need their own dark rules. */
  .logo-topline .mini-seal { width: 30px; height: 30px; background: var(--ink); color: var(--paper); display: grid; place-items: center; border-radius: 50%; font-style: italic; font-size: 16px; font-weight: 600; transform: rotate(-5deg); }
  .promise .seal { width: 44px; height: 44px; background: var(--ink); color: var(--brand); display: grid; place-items: center; font-family: 'Fraunces', serif; font-style: italic; font-weight: 600; font-size: 24px; border-radius: 50%; transform: rotate(-5deg); flex-shrink: 0; }
  .chip.selected .check { background: var(--ink); border-color: var(--ink); color: var(--paper); }

  /* ============ Cream-variant Final CTA (used by all non-home pages) ============ */
  /* Add `class="final cream"` to flip the dark final section to a cream paper one. */
  .final.cream { background: var(--paper-deep); color: var(--ink); border-top: 1px solid var(--rule); }
  .final.cream::before { background: radial-gradient(closest-side at 80% 20%, rgba(255,122,61,.28), transparent 55%), radial-gradient(closest-side at 20% 80%, rgba(232,92,26,.18), transparent 55%); }
  .final.cream h2 { color: var(--ink); }
  .final.cream h2 em { background: linear-gradient(105deg, var(--brand-deep), var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .final.cream p { color: var(--ink-soft); }
  .final.cream .eyebrow { color: var(--brand-deep); }
  .final.cream .eyebrow::before { background: var(--brand-deep); }
  .final.cream .btn-paper { background: var(--paper); color: var(--ink); border: 1.5px solid var(--ink); }
  .final.cream .btn-paper:hover { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }
  .final.cream .btn-ghost { color: var(--ink); border: 1.5px solid var(--ink); background: transparent; }
  .final.cream .btn-ghost:hover { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }

  /* ============ Journal article pages (shared, cream paper) ============ */
  .article-hero { padding: 56px 0 36px; position: relative; overflow: hidden; }
  .article-hero::before {
    content: ""; position: absolute;
    width: 460px; height: 460px; right: -180px; top: -140px;
    background: radial-gradient(closest-side, rgba(255,122,61,.22), transparent 70%);
    pointer-events: none; z-index: 0;
  }
  .article-hero .wrap { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; width: min(820px, 92%); }
  .crumb { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 22px; }
  .crumb a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px dotted var(--rule); }
  .crumb a:hover { color: var(--brand-deep); border-color: var(--brand-deep); }
  .article-hero h1 {
    font-size: clamp(34px, 5.4vw, 60px);
    line-height: 1.04; font-weight: 400; letter-spacing: -.025em;
    margin: 18px 0 22px;
    font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  }
  .article-hero h1 em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    background: linear-gradient(105deg, var(--brand), var(--brand-deep) 70%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .article-hero .dek { font-size: clamp(17px, 1.7vw, 20px); color: var(--ink-soft); line-height: 1.55; margin: 0 0 28px; max-width: 680px; }
  .article-meta {
    display: flex; flex-wrap: wrap; gap: 18px 22px;
    padding: 18px 0; margin-top: 12px;
    border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: .08em; color: var(--ink-faint);
  }
  .article-meta .author { color: var(--ink); font-weight: 600; }

  .article-body { padding: 50px 0 90px; }
  .article-body .wrap { max-width: 720px; width: min(720px, 92%); margin: 0 auto; }
  .article-body p { font-size: 18px; line-height: 1.72; color: var(--ink-soft); margin: 0 0 1.25em; hyphens: auto; -webkit-hyphens: auto; }
  .article-body p strong { color: var(--ink); font-weight: 600; }
  .article-body p em { color: var(--ink); font-style: italic; }
  .article-body a { color: var(--brand-deep); text-decoration: none; border-bottom: 1px solid var(--rule); transition: border-color .15s; }
  .article-body a:hover { border-color: var(--brand-deep); }
  .article-body h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.15; font-weight: 500; letter-spacing: -.02em;
    color: var(--ink); margin: 56px 0 18px;
    font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  }
  .article-body h2 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; color: var(--brand-deep); }
  .article-body h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px; line-height: 1.22; font-weight: 500;
    color: var(--ink); margin: 36px 0 12px;
    font-variation-settings: "opsz" 144;
  }
  .article-body ul, .article-body ol { padding-left: 1.4em; margin: 0 0 1.5em; }
  .article-body li { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 10px; }
  .article-body li strong { color: var(--ink); font-weight: 600; }
  .article-body li::marker { color: var(--brand-deep); }
  .article-body code { font-family: 'JetBrains Mono', monospace; font-size: .88em; background: var(--paper-deep); padding: 2px 7px; border-radius: 5px; border: 1px solid var(--rule); color: var(--brand-ink); }
  .article-body hr { border: 0; border-top: 1px solid var(--rule); margin: 48px 0; }
  .article-body .lede-para::first-letter {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-weight: 500; font-style: italic;
    float: left; font-size: 5.2em; line-height: .82;
    padding: 6px 12px 0 0;
    color: var(--brand-deep);
  }

  .tldr { background: var(--paper-deep); border: 1px solid var(--rule); border-left: 4px solid var(--brand-deep); border-radius: var(--radius-sm); padding: 22px 26px; margin: 0 0 40px; }
  .tldr .label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--brand-deep); margin-bottom: 8px; font-weight: 600; }
  .tldr p { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--ink); }

  .checklist { background: var(--paper-deep); border: 1px solid var(--rule); border-radius: var(--radius-sm); padding: 26px 28px 18px; margin: 32px 0; }
  .checklist h3 { margin: 0 0 14px; font-size: 18px; font-family: 'Fraunces', serif; font-weight: 500; color: var(--ink); }
  .checklist ul { list-style: none; padding: 0; margin: 0; }
  .checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; border-bottom: 1px dashed var(--rule); font-size: 16px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
  .checklist li:last-child { border-bottom: 0; }
  .checklist li::before { content: "✓"; color: var(--brand-deep); font-weight: 700; flex-shrink: 0; font-family: 'JetBrains Mono', monospace; font-size: 13px; margin-top: 2px; }
  .checklist li::marker { content: none; }

  .callout { background: linear-gradient(135deg, var(--paper-deep), var(--paper-shade)); border: 1px solid var(--rule); border-radius: var(--radius); padding: 28px 30px; margin: 40px 0; text-align: center; }
  .callout h3 { font-family: 'Fraunces', serif; font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; font-size: 22px; color: var(--ink); margin: 0 0 8px; }
  .callout p { margin: 0 auto 18px; font-size: 15.5px; color: var(--ink-soft); max-width: 520px; }
  .callout .btn { display: inline-flex; }

  .pull-quote-inline { margin: 44px 0; padding: 28px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .pull-quote-inline blockquote { font-family: 'Fraunces', serif; font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1; font-size: clamp(22px, 2.6vw, 28px); line-height: 1.28; font-weight: 400; color: var(--ink); margin: 0; }
  .pull-quote-inline blockquote em { color: var(--brand-deep); }

  .more-journal { padding: 70px 0 30px; background: var(--paper-deep); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .more-journal .section-head { max-width: 1180px; margin: 0 auto 36px; width: 92%; }
  .more-journal .section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 10px 0 0; font-weight: 400; letter-spacing: -.02em; }
  .more-journal .section-head h2 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; color: var(--brand-deep); }
  .more-grid { display: grid; gap: 18px; grid-template-columns: 1fr; width: min(1180px, 92%); margin: 0 auto; }
  @media (min-width: 760px) { .more-grid { grid-template-columns: repeat(3, 1fr); } }
  .more-card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-sm); padding: 22px 22px 20px; text-decoration: none; color: var(--ink); transition: transform .2s, box-shadow .2s, border-color .2s; display: flex; flex-direction: column; }
  .more-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--brand); }
  .more-card .mc-issue { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-deep); margin-bottom: 10px; }
  .more-card h3 { font-family: 'Fraunces', serif; font-size: 19px; line-height: 1.22; font-weight: 500; margin: 0 0 8px; color: var(--ink); font-variation-settings: "opsz" 144; }
  .more-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

  /* ============ Journal index listing ============ */
  .journal-hero { padding: 70px 0 50px; position: relative; overflow: hidden; }
  .journal-hero::before { content: ""; position: absolute; width: 480px; height: 480px; right: -160px; top: -100px; background: radial-gradient(closest-side, rgba(255,122,61,.28), transparent 70%); pointer-events: none; z-index: 0; }
  .journal-hero .wrap { position: relative; z-index: 1; }
  .journal-hero h1 { font-size: clamp(46px, 8vw, 96px); line-height: .96; font-weight: 400; letter-spacing: -.035em; margin: 22px 0 26px; font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0; }
  .journal-hero h1 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; background: linear-gradient(105deg, var(--brand), var(--brand-deep) 60%, #c43a0a); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .journal-hero .lede { max-width: 620px; }
  .journal-list { padding: 60px 0 110px; border-top: 1px solid var(--rule); }
  .list-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 36px; flex-wrap: wrap; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-faint); }
  .list-head .count { color: var(--brand-deep); }
  .post-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
  @media (min-width: 820px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
  .post-card { background: var(--paper-deep); border: 1px solid var(--rule); border-radius: var(--radius); padding: 32px 30px 28px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; }
  .post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--brand); }
  .post-card .issue { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; display: flex; justify-content: space-between; }
  .post-card .issue .tag { color: var(--brand-deep); }
  .post-card h2 { font-family: 'Fraunces', serif; font-size: 26px; line-height: 1.15; font-weight: 500; letter-spacing: -.018em; font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0; margin: 0 0 14px; }
  .post-card h2 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; color: var(--brand-deep); }
  .post-card a.title-link { color: var(--ink); text-decoration: none; }
  .post-card a.title-link:hover { color: var(--brand-deep); }
  .post-card .dek { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin: 0 0 22px; flex: 1; }
  .post-card .pcard-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px dashed var(--rule); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .08em; color: var(--ink-faint); }
  .post-card .read-link { color: var(--brand-deep); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
  .post-card .read-link:hover { color: var(--ink); }

  /* ============ Reduced motion ============ */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    .hero-card, .pkg.featured, .founder-card { transform: none !important; }
  }

/* a11y primitives (added 2026-06-08) */
:focus-visible{outline:3px solid var(--brand-deep);outline-offset:2px;border-radius:4px}
.skip-link{position:absolute;left:-9999px;top:0;z-index:200;background:var(--ink);color:#fff;padding:10px 16px;font-weight:600}
.skip-link:focus{left:0}
@media (prefers-reduced-motion: reduce){*,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}}
