/* SmartSolveAI — site-wide stylesheet, shared by every page. */
:root {
    --ink: #0a0a0a;
    --ink-soft: #1f242b;
    --paper: #eef0f2;
    --paper-warm: #e3e7ec;
    --paper-bright: #f7f8fa;
    --accent: #8a0d1f;
    --accent-soft: #b13a4a;
    --rule: #c4ccd4;
    --muted: #5c6773;
    --highlight: #dfe5ec;
    --serif: 'Fraunces', 'Times New Roman', serif;
    --sans: 'Inter Tight', system-ui, sans-serif;
    --mono: 'JetBrains Mono', 'Courier New', monospace;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(10,10,10,0.06) 1px, transparent 0);
    background-size: 24px 24px;
  }

  /* ------------- NAVIGATION ------------- */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(238, 240, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
  }
  .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
  }
  .brand-svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .brand:hover .brand-svg {
    transform: rotate(-90deg);
  }
  .brand-mark {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.02em;
    font-style: italic;
    line-height: 1;
  }
  .brand-mark-ai {
    color: var(--accent);
  }
  .brand-tag {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    border-left: 1px solid var(--rule);
    padding-left: 14px;
    line-height: 1.4;
    align-self: center;
  }
  .topnav {
    display: flex;
    gap: 28px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
  }
  .topnav a {
    color: var(--ink-soft);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
  }
  .topnav a:hover { color: var(--accent); }
  .topnav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.25s;
  }
  .topnav a:hover::after { width: 100%; }

  /* Hamburger: hidden on desktop, the only way into the nav below 960px. */
  .nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    margin: -8px -8px -8px 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--ink);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .nav-toggle-bars {
    position: relative;
    display: block;
    width: 22px;
    height: 14px;
  }
  .nav-toggle-bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s, opacity 0.2s;
  }
  .nav-toggle-bars span:nth-child(1) { top: 0; }
  .nav-toggle-bars span:nth-child(2) { top: 6.25px; }
  .nav-toggle-bars span:nth-child(3) { top: 12.5px; }
  .nav-toggle[aria-expanded="true"] { color: var(--accent); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
    transform: translateY(6.25px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-6.25px) rotate(-45deg);
  }

  /* ------------- HERO ------------- */
  .hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .hero-meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
  }
  .hero-meta::before {
    content: '';
    width: 36px; height: 1px;
    background: var(--accent);
  }
  .hero-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--ink);
    font-variation-settings: "opsz" 144;
  }
  .hero-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
  }
  .hero-rule {
    height: 1px;
    background: var(--ink);
    margin: 40px 0 0;
    width: 100%;
  }
  .hero-side {
    padding-bottom: 8px;
  }
  .hero-lede {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    font-weight: 400;
  }
  .hero-lede strong {
    background: var(--highlight);
    padding: 1px 6px;
    font-weight: 500;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  .hero-banner-note {
    margin-top: 24px;
    padding: 14px 18px;
    background: var(--paper-bright);
    border-left: 3px solid var(--accent);
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-soft);
  }
  .hero-banner-note .pulse {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 10px;
    animation: pulse 1.8s ease-in-out infinite;
    vertical-align: middle;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
  }

  /* Decorative matrix art in hero */
  .matrix-art {
    position: absolute;
    top: 90px;
    right: -40px;
    width: 220px;
    height: 220px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
  }

  /* ------------- METRICS BAR ------------- */
  .metrics {
    max-width: 1280px;
    margin: 60px auto 0;
    padding: 0 40px;
  }
  .metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 2px solid var(--ink);
    border-bottom: 1px solid var(--rule);
  }
  .metric {
    padding: 28px 24px 28px 0;
    border-right: 1px solid var(--rule);
  }
  .metric:last-child { border-right: none; padding-right: 0; }
  .metric:not(:first-child) { padding-left: 24px; }
  .metric-num {
    font-family: var(--serif);
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
  .metric-num sup {
    font-size: 18px;
    color: var(--accent);
    font-weight: 500;
    margin-left: 2px;
    top: -1.4em;
  }
  .metric-label {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-top: 12px;
  }

  /* ------------- SECTION SCAFFOLDING ------------- */
  section.content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 40px 0;
  }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 56px;
    align-items: start;
  }
  .section-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow .num {
    font-size: 10px;
    color: var(--muted);
    border: 1px solid var(--rule);
    padding: 3px 7px;
    border-radius: 2px;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 400;
    margin-top: 20px;
  }
  .section-title em { font-style: italic; color: var(--accent); }
  .section-lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 56ch;
  }

  /* ------------- METHODOLOGY · PIPELINE ------------- */
  .pipeline {
    background: var(--paper-bright);
    border: 1px solid var(--rule);
    padding: 32px 24px;
    overflow-x: auto;
  }
  .pipeline svg {
    width: 100%;
    height: auto;
    min-width: 900px;
    display: block;
  }

  /* ------------- PUBLICATIONS ------------- */
  .pubs-list {
    border-top: 2px solid var(--ink);
  }
  .pub {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
    align-items: start;
    transition: background 0.25s;
  }
  .pub:hover { background: rgba(232, 220, 184, 0.25); padding-left: 12px; padding-right: 12px; }
  .pub-year {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--muted);
    padding-top: 3px;
  }
  .pub-content { font-family: var(--serif); }
  .pub-title {
    font-size: 19px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .pub-title em { font-style: italic; }
  .award-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 3px 8px 2px;
    margin-left: 8px;
    vertical-align: middle;
    white-space: nowrap;
    font-weight: 500;
    line-height: 1.4;
    transform: translateY(-2px);
  }
  .kind-tag-deprecated {
    border-style: dashed;
    opacity: 0.85;
  }
  .kind-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--muted);
    border: 1px solid var(--rule);
    padding: 3px 8px 2px;
    margin-left: 8px;
    vertical-align: middle;
    white-space: nowrap;
    font-weight: 500;
    line-height: 1.4;
    transform: translateY(-2px);
  }
  .pub-authors {
    font-size: 14px;
    color: var(--ink-soft);
    font-family: var(--sans);
    margin-bottom: 6px;
  }
  .pub-venue {
    font-size: 13px;
    color: var(--muted);
    font-family: var(--sans);
    font-style: italic;
  }
  .pub-venue a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px dotted var(--rule);
    transition: color 0.2s, border-color 0.2s;
  }
  .pub-venue a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    border-bottom-style: solid;
  }
  .pub-link {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    align-self: center;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .pub-link:hover { color: var(--accent); border-color: var(--accent); }
  .pub-link.preparing { border: 1px dashed var(--muted); padding: 6px 10px; border-bottom: 1px dashed var(--muted); color: var(--muted); }
  .pub-link.pub-link-pending {
    color: var(--muted);
    border-bottom-color: var(--muted);
    border-bottom-style: dashed;
    pointer-events: none;
  }
  .pub-link.pub-link-pending::after {
    content: ' (link soon)';
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .pub-actions-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    align-self: center;
  }
  .pub-bib {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    background: none;
    border: none;
    border-bottom: 1px dashed var(--muted);
    padding-bottom: 2px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .pub-bib:hover { color: var(--accent); border-color: var(--accent); border-bottom-style: solid; }
  .pub-bib-all-bar {
    display: flex;
    justify-content: flex-end;
    padding: 14px 0;
    border-bottom: 2px solid var(--ink);
    margin-bottom: 0;
  }
  .pub-bib-all {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    background: none;
    border: none;
    border-bottom: 1px dashed var(--muted);
    padding-bottom: 2px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .pub-bib-all:hover { color: var(--accent); border-color: var(--accent); border-bottom-style: solid; }

  /* ------------- TALKS ------------- */
  .talks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  .talk-card {
    background: var(--paper-bright);
    border: 1px solid var(--rule);
    padding: 28px;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .talk-card:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
  }
  .talk-venue {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .talk-title {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-style: italic;
    margin-bottom: 16px;
    flex: 1;
  }
  .talk-meta {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .talk-arrow {
    font-family: var(--mono);
    font-size: 14px;
    transition: transform 0.25s;
  }
  .talk-card:hover .talk-arrow { transform: translateX(4px); color: var(--accent); }

  /* ------------- SOFTWARE ------------- */
  .software-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .code-window {
    background: var(--ink);
    border-radius: 6px;
    overflow: hidden;
    font-family: var(--mono);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.25);
  }
  .code-header {
    background: #1a1a1a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #2a2a2a;
  }
  .code-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    background: #3a3a3a;
  }
  .code-dot.r { background: #ff5f56; }
  .code-dot.y { background: #ffbd2e; }
  .code-dot.g { background: #27c93f; }
  .code-filename {
    margin-left: 12px;
    color: #888;
    font-size: 12px;
  }
  .code-body {
    padding: 22px 24px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #e8e8e8;
    overflow-x: auto;
  }
  .code-body .kw { color: #ff8896; }
  .code-body .fn { color: #ffd58a; }
  .code-body .str { color: #a8d995; }
  .code-body .com { color: #6a6a6a; font-style: italic; }
  .code-body .var { color: #9bbcff; }
  .code-body .prompt { color: #ff8896; font-weight: 600; margin-right: 4px; }

  .poc-block { margin-bottom: 24px; }
  .poc-block:last-child { margin-bottom: 0; }
  .code-row {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }
  .code-row .poc-block { margin-bottom: 0; }
  .poc-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .poc-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
  }

  .software-info h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .software-info p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }
  .software-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s;
    border: 1px solid var(--ink);
  }
  .btn-primary {
    background: var(--ink);
    color: var(--paper);
  }
  .btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
  }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
  }
  .btn-ghost:hover {
    background: var(--ink);
    color: var(--paper);
  }
  .btn-arrow {
    font-family: var(--mono);
    font-size: 14px;
  }
  .software-citation {
    margin-top: 28px;
    padding: 18px 20px;
    background: var(--paper-bright);
    border-left: 2px solid var(--rule);
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.7;
    color: var(--muted);
  }

  /* ------------- PRODUCT BLOCKS ------------- */
  .product-block {
    margin-bottom: 80px;
  }
  .product-block:last-child {
    margin-bottom: 0;
  }
  .product-badge {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--rule);
  }
  .product-badge-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--accent);
  }
  .product-badge-name {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .product-badge-kind {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Inline links inside product descriptions */
  .inline-link {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    transition: color 0.2s, border-color 0.2s;
  }
  .inline-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }

  /* Pending CTA — sits on top of btn-primary, keeps the dark ground but signals "not yet live" */
  .btn.btn-pending {
    opacity: 0.55;
    pointer-events: none;
    cursor: not-allowed;
  }
  .btn.btn-pending::after {
    content: ' · coming soon';
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-left: 4px;
    opacity: 0.85;
  }

  /* Discovery flow micro-diagram */
  .discovery-flow {
    width: 100%;
    height: auto;
    display: block;
    background: var(--paper-bright);
    border: 1px solid var(--rule);
    padding: 18px;
  }

  /* Multi-paragraph spacing inside software-info */
  .software-info p + p {
    margin-top: 14px;
  }

  /* ------------- TEAM ------------- */
  .julia-inline {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 1px;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
  }
  .julia-inline:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }
  .julia-dot-mark {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 16px;
    vertical-align: -3px;
    margin-right: 6px;
  }
  .julia-dot-mark .dot {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
  }
  /* triangle: red on top, purple bottom-left, green bottom-right */
  .julia-dot-mark .dot-r { top: 0; left: 50%; transform: translateX(-50%); background: #cb3c33; }
  .julia-dot-mark .dot-p { bottom: 0; left: 0; background: #9558b2; }
  .julia-dot-mark .dot-g { bottom: 0; right: 0; background: #389826; }
  .ext-arrow {
    display: inline-block;
    margin-left: 4px;
    font-family: var(--mono);
    font-size: 0.85em;
    color: var(--muted);
  }
  .julia-inline:hover .ext-arrow { color: var(--accent); }

  /* ------------- ACKNOWLEDGEMENTS ------------- */
  .ack-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .ack-card {
    background: var(--paper-bright);
    border: 1px solid var(--rule);
    padding: 36px 28px 28px;
    text-decoration: none;
    color: var(--ink);
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 220px;
  }
  .ack-card:hover {
    background: var(--paper-warm);
    border-color: var(--ink);
  }
  .ack-logo {
    height: 70px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .ack-logo img {
    max-height: 70px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s;
  }
  .ack-card:hover .ack-logo img { opacity: 0.85; }
  .ack-logo-fallback {
    display: none;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 38px;
    letter-spacing: 0.04em;
    color: var(--ink);
    line-height: 1;
  }
  .ack-card:hover .ack-logo-fallback { color: var(--accent); }
  .ack-card .ack-name {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .ack-card .ack-desc {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--muted);
    transition: color 0.3s;
    margin-top: 4px;
  }

  /* ------------- FOOTER ------------- */
  footer {
    margin-top: 140px;
    background: var(--ink);
    color: var(--paper);
    padding: 80px 0 32px;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(238,240,242,0.15);
  }
  .footer-mark {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: block;
  }
  .footer-brand {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    font-style: italic;
    margin-bottom: 18px;
  }
  .footer-brand::first-letter { color: inherit; }
  .footer-brand-ai { color: var(--accent-soft); }
  .footer-tagline {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.55;
    color: rgba(238,240,242,0.75);
    max-width: 38ch;
  }
  .footer-col .footer-head {
    font-weight: 600;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 20px;
  }
  .footer-col ul {
    list-style: none;
  }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(238,240,242,0.85);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--accent-soft); }
  .footer-addr {
    font-family: var(--serif);
    font-size: 13px;
    line-height: 1.55;
    color: rgba(238,240,242,0.55);
    font-style: italic;
  }
  .mit-lockup {
    display: inline-block;
    margin-top: 26px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .mit-lockup:hover { opacity: 0.75; }
  .mit-lockup img {
    height: 56px;
    width: auto;
    display: block;
  }
  .mit-lockup-fallback {
    display: none;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 500;
    color: rgba(238,240,242,0.85);
    letter-spacing: 0.01em;
    line-height: 1.25;
    max-width: 260px;
    border-top: 1px solid rgba(238,240,242,0.18);
    padding-top: 14px;
  }
  .footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(238,240,242,0.5);
    text-transform: uppercase;
  }
  .footer-bottom a {
    color: rgba(238,240,242,0.7);
    text-decoration: none;
  }
  .footer-bottom a:hover { color: var(--accent-soft); }


  /* ------------- SMARTSOLVE DESIGNER ------------- */
  .designer-flow {
    background: var(--paper-bright);
    border: 1px solid var(--rule);
    padding: 32px 24px;
    overflow-x: auto;
  }
  .designer-flow svg {
    width: 100%;
    height: auto;
    min-width: 900px;
    display: block;
  }
  .designer-split {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
  }
  .wizard-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .wizard-step {
    background: var(--paper-bright);
    padding: 16px 18px 18px;
    transition: background 0.25s;
  }
  .wizard-step:hover { background: #fff; }
  .wizard-step:last-child { grid-column: 1 / -1; }
  .wizard-step-num {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--accent);
  }
  .wizard-step-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-top: 6px;
  }
  .wizard-step-desc {
    font-family: var(--sans);
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--muted);
    margin-top: 5px;
  }
  .artifact-list {
    list-style: none;
    border-top: 2px solid var(--ink);
  }
  .artifact {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
  }
  .artifact-file {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink);
    word-break: break-word;
  }
  .artifact-desc {
    font-family: var(--sans);
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--muted);
  }
  .designer-note {
    margin-top: 26px;
    padding: 16px 18px;
    background: var(--paper-bright);
    border-left: 2px solid var(--accent);
    font-family: var(--sans);
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--muted);
  }
  .designer-note strong { color: var(--ink-soft); font-weight: 600; }
  .designer-note + .designer-note { border-left-color: var(--rule); }
  .designer-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 52px;
  }


  /* ------------- DESIGNER · UNIFIED STAGE ------------- */
  .stage-wrap {
    --slide-dur: 3800ms;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 36px;
    align-items: start;
  }
  .stage {
    position: relative;
    aspect-ratio: 929 / 540;
    background: var(--paper-bright);
    border: 1px solid var(--rule);
    overflow: hidden;
  }
  .stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.55s ease;
  }
  .stage img.is-on { opacity: 1; }

  .stage-ticks {
    display: flex;
    gap: 4px;
    margin-top: 14px;
  }
  .stage-tick {
    flex: 1;
    height: 3px;
    padding: 0;
    border: 0;
    background: var(--rule);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .stage-tick.is-act { flex: 1.6; }
  .stage-tick.tick-sep { margin-left: 20px; }
  .stage-tick::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
  }
  .stage-tick.is-done::after { transform: scaleX(1); }
  .stage-tick.is-active::after { animation: tickFill var(--slide-dur) linear forwards; }
  .stage-wrap.is-paused .stage-tick.is-active::after { animation-play-state: paused; }
  @keyframes tickFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

  .stage-caption {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 24px;
    min-height: 52px;
  }
  .cap-label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .cap-q {
    display: block;
    margin-top: 7px;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
  }
  .stage-tools {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .stage-open {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 2px;
    margin-right: 6px;
    transition: color 0.2s, border-color 0.2s;
  }
  .stage-open:hover { color: var(--accent); border-bottom-color: var(--accent); }
  .stage-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--rule);
    background: transparent;
    color: var(--ink-soft);
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .stage-btn:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .stage-toggle svg { fill: currentColor; display: block; }
  .stage-toggle .ic-play { display: none; }
  .stage-wrap.is-stopped .stage-toggle .ic-pause { display: none; }
  .stage-wrap.is-stopped .stage-toggle .ic-play { display: block; }

  .stage-rail {
    list-style: none;
    border-top: 2px solid var(--ink);
  }
  .rail-btn {
    width: 100%;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: baseline;
    text-align: left;
    padding: 9px 10px;
    border: 0;
    border-bottom: 1px solid var(--rule);
    border-left: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .rail-btn:hover { background: var(--paper-bright); }
  .rail-btn.is-active {
    background: var(--paper-bright);
    border-left-color: var(--accent);
  }
  .rail-n {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .rail-btn.is-active .rail-n { color: var(--accent); }
  .rail-t {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--ink-soft);
  }
  .rail-btn.is-active .rail-t { color: var(--ink); }
  .rail-btn.rail-act .rail-t { font-style: italic; }
  .rail-div {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 15px 10px 8px;
    border-bottom: 1px solid var(--rule);
  }

  @media (prefers-reduced-motion: reduce) {
    .stage-tick.is-active::after { animation: none; transform: scaleX(1); }
    .stage img { transition: none; }
  }


  /* ------------- TEAM ROSTER ------------- */
  .team-group { margin-top: 52px; }
  .team-group:first-of-type { margin-top: 8px; }
  .team-group-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
  }
  .team-group-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 34px 24px;
  }
  .person {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .person-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--paper-bright);
    border: 1px solid var(--rule);
    display: grid;
    place-items: center;
    /* portraits come from a dozen different cameras and backdrops — desaturating
       them holds the row together; colour returns on hover */
    filter: grayscale(1) contrast(1.02);
    transition: filter 0.45s ease, border-color 0.3s ease;
  }
  .person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  a.person:hover .person-photo {
    filter: grayscale(0);
    border-color: var(--accent);
  }
  .person-mono {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--muted);
  }
  .person-name {
    font-family: var(--serif);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-top: 14px;
  }
  a.person:hover .person-name { color: var(--accent); }
  .person-role {
    font-family: var(--sans);
    font-size: 12.5px;
    line-height: 1.4;
    color: var(--muted);
    margin-top: 3px;
  }
  .person-affil {
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.4;
    color: var(--muted);
    opacity: 0.8;
    margin-top: 2px;
  }
  @media (max-width: 960px) {
    .team-grid { grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 26px 18px; }
    .team-group { margin-top: 40px; }
    .person-name { font-size: 14.5px; }
  }

  /* ------------- RESPONSIVE ------------- */
  @media (max-width: 960px) {
    .topbar-inner { padding: 14px 24px; gap: 16px; }
    .nav-toggle { display: flex; }

    /* The nav drops out of the bar and becomes a panel under it, opened by
       the hamburger. Hidden — not just off-screen — so it stays out of the
       tab order while closed. */
    .topnav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      display: none;
      flex-direction: column;
      gap: 0;
      padding: 6px 24px 18px;
      font-size: 15px;
      background: var(--paper);
      border-bottom: 1px solid var(--rule);
      box-shadow: 0 18px 30px -22px rgba(10, 10, 10, 0.45);
      max-height: calc(100vh - 100%);
      overflow-y: auto;
    }
    .topbar.nav-open .topnav { display: flex; }
    .topnav a {
      padding: 13px 0;
      border-bottom: 1px solid var(--rule);
    }
    .topnav a:last-child { border-bottom: 0; }
    /* The underline sweep is a pointer affordance; the panel uses colour only. */
    .topnav a::after, .topnav a.is-active::after { display: none; }
    .hero { padding: 50px 24px 40px; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .matrix-art { display: none; }
    .metrics { padding: 0 24px; }
    .metrics-row { grid-template-columns: repeat(2, 1fr); }
    .metric:nth-child(2) { border-right: none; }
    .metric:nth-child(3), .metric:nth-child(4) { border-top: 1px solid var(--rule); }
    section.content { padding: 70px 24px 0; }
    .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
    .method-grid { grid-template-columns: 1fr; }
    .pipeline { padding: 20px 12px; }
    .pipeline svg { min-width: 880px; }
    .pub { grid-template-columns: 1fr; gap: 8px; }
    .pub-year { padding-top: 0; }
    .award-tag { display: inline-block; margin-left: 0; margin-top: 4px; transform: none; }
    .kind-tag { display: inline-block; margin-left: 0; margin-top: 4px; transform: none; }
    .talks { grid-template-columns: 1fr; }
    .software-block { grid-template-columns: 1fr; gap: 32px; }
    .code-row { grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
    .product-badge { flex-wrap: wrap; gap: 8px 16px; }
    .product-badge-kind { margin-left: 0; width: 100%; }
    .product-block { margin-bottom: 56px; }
    .designer-flow { padding: 20px 12px; }
    .designer-flow svg { min-width: 880px; }
    .designer-split { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
    .wizard-steps { grid-template-columns: 1fr; }
    .artifact { grid-template-columns: 1fr; gap: 4px; }
    .designer-actions { margin-top: 36px; }
    .stage-caption { grid-template-columns: 1fr; gap: 14px; }
    .stage-tools { justify-content: flex-start; }
    .stage-wrap { grid-template-columns: 1fr; gap: 32px; }
    .ack-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .footer-brand { font-size: 40px; }
  }

  /* Reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    /* Keep a gentle fade but drop the movement for reduced-motion users */
    .reveal { transform: none; transition: opacity 0.8s ease; }
  }

  /* ------------- SIBLING PROJECTS ------------- */
  .siblings { margin-top: 96px; }
  .siblings-lede {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 68ch;
    margin-bottom: 34px;
  }
  .sibling-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .sibling-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--paper-bright);
    border: 1px solid var(--rule);
    padding: 26px 28px 24px;
    transition: border-color 0.25s, background 0.25s;
  }
  .sibling-card:hover { border-color: var(--ink); background: #fff; }
  .sibling-name {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -0.015em;
  }
  .sibling-card:hover .sibling-name { color: var(--accent); }
  .sibling-desc {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-top: 12px;
  }
  .sibling-repo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: var(--muted);
  }
  .sibling-card:hover .sibling-repo { color: var(--accent); }
  @media (max-width: 960px) {
    .siblings { margin-top: 64px; }
    .sibling-grid { grid-template-columns: 1fr; gap: 20px; }
  }
  /* ============================================================
     MULTIPAGE — styles the split site needs on top of the section styles
     ============================================================ */

  /* Active page in the top nav */
  .topnav a.is-active { color: var(--accent); }
  .topnav a.is-active::after { width: 100%; }

  /* Compact page header, used in place of the home page's full hero */
  .page-head {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 40px 0;
    position: relative;
  }
  .page-head-inner { max-width: 62ch; }
  .page-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .page-eyebrow::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--accent);
  }
  .page-title {
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.03;
    letter-spacing: -0.03em;
    font-weight: 400;
    margin-top: 22px;
  }
  .page-title em { font-style: italic; color: var(--accent); }
  .page-lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-top: 26px;
  }
  .page-rule {
    max-width: 1280px;
    margin: 56px auto 0;
    padding: 0 40px;
  }
  .page-rule::after {
    content: '';
    display: block;
    border-top: 1px solid var(--rule);
  }
  /* A page header replaces the section head, so the first section sits tighter */
  .page-head + .page-rule + section.content { padding-top: 64px; }

  /* Home: the featured Designer card */
  .feature {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .feature-shot {
    display: block;
    border: 1px solid var(--rule);
    background: var(--paper-bright);
    line-height: 0;
    position: relative;
    overflow: hidden;
  }
  .feature-shot img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .feature-shot:hover img { transform: scale(1.02); }
  .feature-kicker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .feature-title {
    font-family: var(--serif);
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    font-weight: 400;
    margin-top: 18px;
  }
  .feature-title em { font-style: italic; color: var(--accent); }
  .feature p {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-top: 20px;
  }
  .feature .software-actions { margin-top: 28px; }

  /* Home: "latest" teasers that point into the Research page */
  .latest {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .latest-head {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ink);
  }
  .latest-head::after {
    content: '';
    flex: 1;
    height: 1px;
    background: transparent;
  }
  .latest-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
  }
  .latest-item-title {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
  }
  .latest-item-meta {
    font-family: var(--sans);
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 6px;
  }
  .latest-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
  }
  .latest-more:hover { color: var(--accent); border-bottom-color: var(--accent); }

  /* Cross-page footer navigation at the end of each sub-page */
  .page-next {
    max-width: 1280px;
    margin: 110px auto 0;
    padding: 0 40px;
  }
  .page-next-inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    flex-wrap: wrap;
    border-top: 2px solid var(--ink);
    padding-top: 22px;
  }
  .page-next-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .page-next-link {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
  }
  .page-next-link:hover { color: var(--accent); }
  .page-next-link .arr {
    font-family: var(--mono);
    font-size: 0.7em;
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.25s;
  }
  .page-next-link:hover .arr { transform: translateX(5px); }

  @media (max-width: 960px) {
    .page-head { padding: 48px 24px 0; }
    .page-rule { padding: 0 24px; margin-top: 40px; }
    .page-head + .page-rule + section.content { padding-top: 44px; }
    .feature { grid-template-columns: 1fr; gap: 32px; }
    .latest { grid-template-columns: 1fr; gap: 40px; }
    .page-next { padding: 0 24px; margin-top: 70px; }
  }

  /* Sub-page section divider: the page header carries the title, so inner
     sections only need a label. Keeps one big title per page. */
  .section-mark {
    font-family: var(--mono);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 34px;
  }
  .section-mark::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
  }

  /* Slider: the stage + rail block is capped and centred inside the content
     column rather than filling it. */
  .stage-wrap {
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Section and roster labels are <h2> for document structure; neutralise the
     heading defaults so they still read as small mono labels. */
  h2.section-mark, h2.team-group-label { font-weight: 400; font-size: 11px; }

  /* Keyboard users shouldn't have to tab the whole nav on every page. */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    padding: 12px 18px;
    text-decoration: none;
  }
  .skip-link:focus { left: 12px; top: 12px; }

  /* "See more of our software" sits at the far end of the Designer action row,
     reusing the .latest-more link style. */
  .designer-actions { align-items: center; }
  .designer-more { margin-left: auto; margin-top: 0; }
  @media (max-width: 960px) {
    .designer-more { margin-left: 0; margin-top: 6px; }
  }
