:root {
      --bg: #080b10;
      --panel: #101722;
      --panel-2: #0c131d;
      --line: #26364a;
      --ink: #f1f6f8;
      --muted: #9cafc0;
      --mint: #7be495;
      --cyan: #61e6d1;
      --amber: #ffba6b;
      --max: 1180px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
    a { color: var(--cyan); }
    img { display: block; max-width: 100%; height: auto; }
    .wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
    .mono { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
    .eyebrow { color: var(--mint); font: 700 12px/1.2 "SFMono-Regular", Consolas, monospace; letter-spacing: .14em; text-transform: uppercase; }
    .topbar { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(8, 11, 16, .88); backdrop-filter: blur(14px); }
    .topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 20px; }
    .brand { color: var(--ink); text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
    .brand span { color: var(--muted); font: 500 11px "SFMono-Regular", Consolas, monospace; letter-spacing: .1em; text-transform: uppercase; margin-left: 10px; }
    nav { display: flex; gap: 18px; }
    nav a { color: var(--muted); font-size: 13px; text-decoration: none; }
    nav a:hover { color: var(--ink); }
    .hero { padding: 96px 0 72px; border-bottom: 1px solid var(--line); }
    .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
    h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -.035em; }
    h1 { max-width: 800px; margin: 18px 0 24px; font-size: clamp(42px, 6.4vw, 84px); }
    h1 em { color: var(--mint); font-style: normal; }
    .lede { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(18px, 2vw, 23px); line-height: 1.45; }
    .hero-note { margin-top: 32px; padding: 18px 20px; border: 1px solid var(--line); background: var(--panel-2); color: var(--muted); font-size: 14px; }
    .hero-note strong { color: var(--ink); }
    .hero-shot { overflow: hidden; border: 1px solid var(--line); background: var(--panel); box-shadow: 0 26px 70px rgba(0,0,0,.35); }
    .hero-shot img { width: 100%; }
    .shot-caption { display: flex; justify-content: space-between; gap: 12px; padding: 11px 14px; border-top: 1px solid var(--line); color: var(--muted); font: 11px "SFMono-Regular", Consolas, monospace; }
    .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 22px; }
    .stat { padding: 16px; border: 1px solid var(--line); background: var(--panel); }
    .stat b { display: block; color: var(--mint); font: 700 24px/1 "SFMono-Regular", Consolas, monospace; }
    .stat span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }
    section { padding: 88px 0; border-bottom: 1px solid var(--line); }
    .section-head { max-width: 820px; margin-bottom: 42px; }
    h2 { margin-top: 14px; font-size: clamp(32px, 4.6vw, 58px); }
    h3 { font-size: 22px; }
    .section-head p, .copy p { color: var(--muted); font-size: 18px; }
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
    .quote { margin: 0; color: var(--ink); font-size: clamp(28px, 3.7vw, 48px); line-height: 1.08; letter-spacing: -.04em; }
    .quote span { color: var(--mint); }
    .copy { display: grid; gap: 18px; }
    .copy p { margin: 0; }
    .project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .project { overflow: hidden; border: 1px solid var(--line); background: var(--panel); display: flex; flex-direction: column; }
    .project img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
    .project-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
    .project-body h3 { margin: 12px 0 12px; font-size: 28px; }
    .project-body p { margin: 0 0 16px; color: var(--muted); flex: 1; }
    .project-body .mono { font-size: .85em; color: var(--ink); }
    .project-body .tag { display: inline-block; align-self: flex-start; margin-bottom: 10px; color: var(--mint); font: 700 11px "SFMono-Regular", Consolas, monospace; letter-spacing: .1em; text-transform: uppercase; }
    .project-body a { font-size: 14px; }
    .flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .flow-card { min-height: 190px; padding: 20px; border: 1px solid var(--line); background: var(--panel); }
    .flow-card .n { color: var(--amber); font: 700 12px "SFMono-Regular", Consolas, monospace; }
    .flow-card h3 { margin: 18px 0 10px; font-size: 19px; }
    .flow-card p { margin: 0; color: var(--muted); font-size: 14px; }
    .gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    figure { margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--panel); display: flex; flex-direction: column; }
    figure img { width: 100%; }
    figcaption { margin-top: auto; padding: 12px 14px; border-top: 1px solid var(--line); color: var(--muted); font: 12px/1.4 "SFMono-Regular", Consolas, monospace; }
    .wide { grid-column: 1 / -1; }
    .compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .compare-card { padding: 26px; border: 1px solid var(--line); background: var(--panel); }
    .compare-card h3 { margin: 12px 0 14px; font-size: 26px; }
    .compare-card p { color: var(--muted); }
    .compare-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
    .compare-card li + li { margin-top: 9px; }
    .limits { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; }
    .limit-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
    .limit-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
    .limit-list li::before { content: "—"; color: var(--mint); }
    .limit-list strong { display: block; color: var(--ink); margin-bottom: 3px; }
    .cta { padding: 80px 0 100px; }
    .cta-box { padding: 34px; border: 1px solid var(--line); background: linear-gradient(135deg, var(--panel), var(--panel-2)); }
    .cta-box h2 { max-width: 760px; }
    .links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 26px; margin: 26px 0 0; }
    .links a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
    .links a:hover { color: var(--mint); }
    .footer { padding: 26px 0 50px; color: var(--muted); font-size: 13px; }
    .footer-inner { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-top: 22px; }
    .lead-links { margin-top: 32px; }
    .preset-flow { margin-top: 20px; }
    .detail-col { margin-top: 48px; gap: 40px; }
    .tight-list { margin-top: 18px; }
    .spaced-para { margin-top: 28px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
    .mobile-nav { display: none; }
    @media (max-width: 900px) { .hero-grid, .two-col, .limits, .project-grid, .compare { grid-template-columns: 1fr; gap: 34px; } .stats, .flow { grid-template-columns: repeat(2, 1fr); } .gallery { grid-template-columns: 1fr; } .wide { grid-column: auto; } .desktop-nav { display: none; } .mobile-nav { display: flex; flex-wrap: wrap; gap: 8px 16px; padding: 0 0 12px; } .mobile-nav a { color: var(--muted); font: 600 12px/1.4 "SFMono-Regular", Consolas, monospace; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; } .mobile-nav a:hover { color: var(--mint); } }
    @media (max-width: 480px) { .wrap { width: min(calc(100% - 28px), var(--max)); } .hero { padding-top: 64px; } .stats, .flow, .links { grid-template-columns: 1fr; } .cta-box { padding: 24px; } }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }
    .cta a, .project-body a, .compare-card a, .spaced-para a { display: inline-block; padding: 8px 0; }
