:root {
      --bg: #000000;
      --surface: #0a0a0a;
      --text: #ffffff;
      --muted: #a3a3a3;
      --border: #333333;
      --accent: #4f46e5;
      --accent-muted: #4338ca;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: var(--text);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.15s;
    }
    a:hover { color: var(--muted); }
    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(0, 0, 0, 0.92);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(8px);
    }
    .nav-inner {
      max-width: 56rem;
      margin: 0 auto;
      padding: 0.85rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      text-decoration: none !important;
      font-weight: 600;
      font-size: 0.95rem;
    }
    .nav-brand img { width: 28px; height: 28px; }
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem 1rem;
      list-style: none;
      font-size: 0.85rem;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--muted);
    }
    .nav-links a:hover { color: var(--text); }
    .wrap {
      max-width: 56rem;
      margin: 0 auto;
      padding: 0 1.5rem 4rem;
    }
    .hero {
      padding: 3.5rem 0 2.5rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 0.5rem;
    }
    .hero .eyebrow {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
      margin-bottom: 0.85rem;
    }
    h1 {
      font-size: clamp(1.7rem, 3.6vw, 2.25rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.22;
      max-width: 38rem;
      margin-bottom: 1rem;
    }
    .hero-lead {
      color: var(--muted);
      max-width: 34rem;
      margin-bottom: 1.5rem;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1rem;
      align-items: center;
    }
    .btn {
      display: inline-block;
      padding: 0.65rem 1.25rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none !important;
      transition: background 0.15s, border-color 0.15s;
    }
    .btn-primary {
      background: #ffffff;
      color: #000000 !important;
    }
    .btn-primary:hover { background: #e5e5e5; }
    .btn-ghost {
      border: 1px solid var(--border);
      color: var(--text) !important;
      background: transparent;
    }
    .btn-ghost:hover { border-color: var(--accent); }
    section {
      padding: 2.75rem 0 0.25rem;
      border-bottom: 1px solid var(--border);
    }
    section:last-of-type { border-bottom: none; }
    .section-label {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
      margin: 0 0 0.5rem;
      line-height: 1.4;
    }
    h2 {
      font-size: 1.45rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.3;
      margin-bottom: 0.75rem;
    }
    h2.section-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      line-height: 1.4;
      margin-bottom: 0.5rem;
    }
    h3.cta-heading {
      font-size: 1.45rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.3;
      margin-bottom: 0.75rem;
    }
    .section-intro {
      color: var(--muted);
      max-width: 38rem;
      margin-bottom: 1.5rem;
    }
    .service-teaser-types {
      font-size: 1.05rem;
      margin-bottom: 0.65rem;
      line-height: 1.5;
    }
    .service-teaser-types a {
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
    }
    .service-teaser-types a:hover { border-color: var(--accent); }
    .service-teaser-link {
      margin-bottom: 0.5rem;
    }
    .service-teaser-link a {
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
    }
    .service-teaser-link a:hover { border-color: var(--accent); }
    .service-teaser-also {
      color: var(--muted);
      font-size: 0.9rem;
      max-width: 38rem;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    @media (min-width: 720px) {
      .grid-2 { grid-template-columns: 1fr 1fr; }
    }
    .service-rows {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .service-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      background: var(--surface);
      transition: border-color 0.2s ease;
    }
    .service-row:hover { border-color: var(--accent); }
    @media (min-width: 720px) {
      .service-row {
        grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
      }
    }
    .service-row-media {
      display: block;
      border-bottom: 1px solid var(--border);
      background: #050505;
      line-height: 0;
    }
    @media (min-width: 720px) {
      .service-row-media {
        border-bottom: none;
        border-right: 1px solid var(--border);
      }
    }
    .service-row-media img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 11rem;
      object-fit: cover;
      object-position: top center;
    }
    @media (min-width: 720px) {
      .service-row-media img { min-height: 13.5rem; }
    }
    .service-row-body {
      padding: 1.25rem 1.4rem;
    }
    .service-row-body h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }
    .service-row-body p {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
    }
    .service-row-body .card-links { margin-top: 0.5rem; }
    .service-row-body .card-links a {
      font-size: 0.9rem;
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
    }
    .service-row-body .card-links a:hover { border-color: var(--accent); }
    .card {
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.25rem 1.4rem;
      background: var(--surface);
      transition: border-color 0.2s ease;
    }
    .card:hover { border-color: var(--accent); }
    .card h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }
    .card p {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
    }
    .card p:last-child { margin-bottom: 0; }
    .card a {
      font-size: 0.9rem;
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
    }
    .card a:hover { border-color: var(--accent); }
    .card-links { margin-top: 0.35rem; }
    .card-links a + a { margin-left: 0.85rem; }
    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.85rem;
    }
    .chip {
      font-size: 0.75rem;
      color: var(--muted);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 0.2rem 0.65rem;
    }
    .fit-list {
      list-style: none;
      margin: 0;
    }
    .fit-list li {
      padding: 0.7rem 0;
      border-top: 1px solid var(--border);
      color: var(--muted);
    }
    .fit-list li:first-child { border-top: none; padding-top: 0; }
    .fit-list strong { color: var(--text); }
    .about-points {
      list-style: none;
      margin: 0;
    }
    .about-points li {
      padding: 0.85rem 0;
      border-top: 1px solid var(--border);
    }
    .about-points li:first-child {
      border-top: none;
      padding-top: 0;
    }
    .about-points strong {
      display: block;
      margin-bottom: 0.2rem;
    }
    .about-points span { color: var(--muted); font-size: 0.95rem; }
    .stack-line {
      color: var(--muted);
      font-size: 0.95rem;
    }
    .cta-block {
      margin-top: 0.5rem;
      padding: 1.75rem 1.5rem;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: var(--surface);
    }
    .cta-block h2 { margin-bottom: 0.5rem; }
    .cta-block p { color: var(--muted); margin-bottom: 1rem; }
    footer {
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      font-size: 0.8rem;
      color: var(--muted);
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.25rem;
      justify-content: space-between;
    }
    footer a {
      color: var(--muted);
      text-decoration: none;
    }
    footer a:hover { color: var(--text); }
    .lead {
      color: var(--muted);
      max-width: 40rem;
      margin-bottom: 1.5rem;
    }
    .page-h2 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 2.25rem 0 0.75rem;
      letter-spacing: -0.01em;
    }
    section p { color: var(--muted); }
    section p strong { color: var(--text); font-weight: 600; }
    section ul { margin: 0 0 1rem 1.15rem; color: var(--muted); }
    section li { margin-bottom: 0.45rem; }
    section li strong { color: var(--text); }
    .note {
      font-size: 0.9rem;
      color: var(--muted);
      border-left: 2px solid var(--border);
      padding-left: 0.85rem;
      margin: 1rem 0 1.5rem;
    }
    .shot {
      margin: 1.25rem 0 1.75rem;
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      background: var(--surface);
    }
    .shot img {
      display: block;
      width: 100%;
      height: auto;
    }
    .shot figcaption {
      font-size: 0.8rem;
      color: var(--muted);
      padding: 0.65rem 0.9rem;
      border-top: 1px solid var(--border);
    }
    .meta {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.75rem;
      margin: 1rem 0 1.5rem;
    }
    @media (min-width: 640px) {
      .meta { grid-template-columns: 1fr 1fr; }
    }
    .meta div {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.85rem 1rem;
      background: var(--surface);
    }
    .meta dt {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--muted);
      margin-bottom: 0.25rem;
    }
    .meta dd { color: var(--text); font-size: 0.95rem; }
    .case-block {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }
    .case-block .eyebrow { margin-bottom: 0.5rem; }
    .back-link {
      display: inline-block;
      margin-top: 2rem;
      font-size: 0.9rem;
      color: var(--muted);
      text-decoration: none;
    }
    .back-link:hover { color: var(--text); }
    .demo-access {
      margin: 1.5rem 0 1.75rem;
      padding: 1.35rem 1.4rem;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: var(--surface);
    }
    .demo-access h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.45rem;
    }
    .demo-access > p {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }
    .demo-creds {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.5rem;
      margin: 1rem 0 0.75rem;
      font-size: 0.9rem;
    }
    @media (min-width: 480px) {
      .demo-creds { grid-template-columns: repeat(3, 1fr); }
    }
    .demo-creds div {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.65rem 0.85rem;
    }
    .demo-creds dt {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--muted);
      margin-bottom: 0.2rem;
    }
    .demo-creds dd { color: var(--text); margin: 0; }
    .demo-creds code {
      font-family: ui-monospace, monospace;
      font-size: 0.85rem;
    }
