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

  :root {
    --bg: #09090d;
    --bg2: #0f1015;
    --bg3: #141418;
    --fg: #e2e2dc;
    --fg2: #8a8a82;
    --fg3: #555550;
    --accent: #7eb8c8;
    --accent2: #c8a96e;
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
  }

  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--fg); font-family: var(--font-display); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    background: linear-gradient(to bottom, rgba(9,9,13,0.95), transparent);
  }
  .nav-logo { font-size: 18px; font-weight: 700; letter-spacing: 0.15em; color: var(--fg); text-decoration: none; display: inline-flex; align-items: center; }
  .nav-logo img { height: 59px; width: auto; display: block; }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links > a, .nav-links .nav-item > a { color: var(--fg2); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
  .nav-links > a:hover, .nav-links .nav-item > a:hover { color: var(--fg); }
  .nav-links > a.active, .nav-links .nav-item.active > a { color: var(--fg); }
  .nav-cta { background: var(--accent); border: 1px solid var(--accent); color: #09090d; padding: 8px 20px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: var(--font-display); font-weight: 600; transition: opacity 0.2s; text-decoration: none; display: inline-flex; align-items: center; }
  .nav-cta:hover { opacity: 0.85; }

  /* NAV — Dropdown */
  .nav-item { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
  .nav-item > a::after {
    content: ''; display: inline-block;
    width: 6px; height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    margin-left: 8px;
    opacity: 0.55;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-item:hover > a::after, .nav-item:focus-within > a::after { opacity: 1; transform: translateY(0) rotate(45deg) scale(1.05); }
  .nav-dropdown-menu {
    position: absolute; top: 100%; right: 0;
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 0; min-width: 220px;
    opacity: 0; pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.15s, transform 0.15s;
    box-shadow: 0 18px 48px rgba(0,0,0,0.5);
    z-index: 200;
  }
  .nav-item:hover .nav-dropdown-menu, .nav-item:focus-within .nav-dropdown-menu {
    opacity: 1; pointer-events: auto; transform: translateY(0);
  }
  .nav-dropdown-menu a {
    display: flex; flex-direction: column; gap: 3px;
    padding: 12px 22px;
    font-size: 12px; letter-spacing: 0.06em;
    color: var(--fg); text-decoration: none;
    text-transform: none;
    transition: background 0.15s, color 0.15s;
    border-left: 2px solid transparent;
  }
  .nav-dropdown-menu a .sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; color: var(--fg3); text-transform: uppercase; }
  .nav-dropdown-menu a:hover, .nav-dropdown-menu a.active {
    background: rgba(200,169,110,0.06);
    color: var(--accent);
    border-left-color: var(--accent);
  }
  .nav-dropdown-menu a:hover .sub, .nav-dropdown-menu a.active .sub { color: var(--accent); }

  /* SUBNAV */
  .subnav {
    position: relative; z-index: 1;
    background: rgba(9,9,13,0.92);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .subnav-inner {
    max-width: 1600px; margin: 0 auto;
    display: flex; align-items: center; gap: 0;
    padding: 0 48px;
    overflow-x: auto;
  }
  .subnav-crumb {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--fg3); padding: 18px 0;
    margin-right: 28px; white-space: nowrap;
  }
  .subnav-crumb .accent { color: var(--accent); }
  .subnav-links { display: flex; gap: 0; flex-wrap: nowrap; }
  .subnav-links a {
    font-family: var(--font-display);
    font-size: 12px; letter-spacing: 0.08em;
    color: var(--fg2); text-decoration: none;
    padding: 18px 18px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
  }
  .subnav-links a:hover { color: var(--fg); }
  .subnav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
  @media (max-width: 768px) {
    .subnav-inner { padding: 0 20px; }
    .subnav-crumb { margin-right: 16px; }
    .subnav-links a { padding: 16px 12px; font-size: 11px; }
  }

  /* HERO */
  .hero {
    height: 100vh; min-height: 700px;
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 64px 48px 24px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(160deg, #1a1f2e 0%, #0d1118 40%, #09090d 100%);
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(126,184,200,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(126,184,200,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  }
  .hero-content { position: relative; z-index: 2; }
  .hero-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--accent); text-transform: uppercase; margin-bottom: 24px; }
  .hero-headline {
    font-size: clamp(32px, 5.5vw, 88px);
    font-weight: 700; line-height: 0.95;
    letter-spacing: -0.02em;
    max-width: none;
    white-space: nowrap;
  }
  .hero-sub { margin-top: 32px; font-size: 15px; color: var(--fg2); max-width: 440px; line-height: 1.7; }
  .btn-primary { background: var(--accent); color: #09090d; border: none; padding: 14px 32px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: var(--font-display); transition: opacity 0.2s; text-decoration: none; display: inline-flex; align-items: center; }
  .btn-primary:hover { opacity: 0.85; }
  .btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--fg3); padding: 14px 32px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: var(--font-display); transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; }
  .btn-ghost:hover { border-color: var(--fg2); }

  /* SECTION BASICS */
  section { padding: 120px 48px; }
  .section-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.25em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
  .section-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--accent); }
  .section-title { font-size: clamp(36px, 5vw, 72px); font-weight: 700; line-height: 1.0; letter-spacing: -0.02em; }
  hr.divider { border: none; border-top: 1px solid var(--fg3); opacity: 0.3; margin: 0 48px; }

  /* TECHNOLOGY SECTION */
  .tech-section { background: var(--bg); }
  .tech-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 100px; }
  .tech-intro-right { padding-top: 60px; }
  .tech-intro-right p { font-size: 15px; color: var(--fg2); line-height: 1.8; margin-bottom: 20px; }
  .tech-machine {
    margin-top: 80px;
    background: var(--bg2); border: 1px solid rgba(255,255,255,0.05);
    padding: 80px 60px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .machine-img-placeholder {
    aspect-ratio: 4/3; background: var(--bg3); border: 1px dashed var(--fg3);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; color: var(--fg3); font-family: var(--font-mono); font-size: 10px; text-align: center;
    position: relative; overflow: hidden;
  }
  .machine-img-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.015) 8px, rgba(255,255,255,0.015) 9px);
  }
  .machine-img-placeholder.has-image { background: transparent; border: none; }
  .machine-img-placeholder.has-image::before { display: none; }
  .machine-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
  .stat-item { border-top: 1px solid var(--fg3); padding-top: 16px; }
  .stat-value { font-size: 32px; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; }
  .stat-unit { font-size: 14px; color: var(--fg2); }
  .stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; color: var(--fg3); text-transform: uppercase; margin-top: 4px; }

  /* PRINT SUITE */
  .print-suite { background: var(--bg2); }
  .suite-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; }
  .suite-components { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .suite-component { background: var(--bg3); padding: 40px 32px; border-top: 2px solid transparent; transition: border-color 0.3s; cursor: default; }
  .suite-component:hover { border-color: var(--accent); }
  .suite-component-num { font-family: var(--font-mono); font-size: 11px; color: var(--fg3); margin-bottom: 16px; }
  .suite-component-name { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
  .suite-component-desc { font-size: 13px; color: var(--fg2); line-height: 1.7; }

  /* SPECS PAGE */
  .specs-hero {
    height: 40vh; min-height: 340px;
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 48px 48px 32px; overflow: hidden; background: #0c1018;
  }
  .specs-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #111820 0%, #090c10 60%, #09090d 100%); }
  .specs-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,13,0.8) 0%, transparent 60%); }
  .specs-content { position: relative; z-index: 2; }
  .specs-title { font-size: clamp(64px, 10vw, 140px); font-weight: 700; letter-spacing: -0.02em; line-height: 0.9; }
  .specs-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 80px 48px; align-items: start; }
  .specs-intro-img { aspect-ratio: 4/3; background: var(--bg2); border: 1px dashed var(--fg3); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--fg3); font-family: var(--font-mono); font-size: 10px; }
  .specs-intro-img::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.015) 8px, rgba(255,255,255,0.015) 9px); }

  /* Spec Table */
  .spec-table { display: flex; flex-direction: column; gap: 24px; }
  .spec-table-group { border: 1px solid rgba(255,255,255,0.08); background: var(--bg2); }
  .spec-table-head { padding: 12px 16px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--fg); text-transform: uppercase; }
  .spec-table-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 11px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); align-items: start; }
  .spec-table-row:last-child { border-bottom: none; }
  .spec-table-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--fg2); text-transform: uppercase; line-height: 1.5; }
  .spec-table-value { font-family: var(--font-mono); font-size: 11px; color: var(--fg); letter-spacing: 0.04em; line-height: 1.5; }
  .spec-table-value .metric { color: var(--fg3); font-size: 10px; }

  .quick-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .quick-stat { padding: 40px 48px; border-right: 1px solid rgba(255,255,255,0.08); }
  .quick-stat:last-child { border-right: none; }
  .qs-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; color: var(--fg3); text-transform: uppercase; margin-bottom: 12px; }
  .qs-value { font-size: 28px; font-weight: 700; color: var(--fg); }
  .qs-unit { font-size: 13px; color: var(--fg2); margin-top: 4px; }

  /* PRINT ENVELOPE */
  .print-envelope { background: var(--bg); padding: 100px 48px; }
  .envelope-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 80px; }
  .envelope-diagram { background: var(--bg2); border: 1px solid rgba(255,255,255,0.06); padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .envelope-visual { display: flex; align-items: center; justify-content: center; }
  .spec-row { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 0; font-size: 13px; }
  .spec-row-label { color: var(--fg2); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; }
  .spec-row-value { color: var(--fg); font-weight: 600; }

  /* FULL SPECS TABLE */
  .full-specs { background: var(--bg); padding: 100px 48px; }
  .specs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid rgba(255,255,255,0.06); margin-top: 60px; }
  .specs-group { padding: 40px 36px; border-right: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .specs-group:nth-child(3n) { border-right: none; }
  .specs-group-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--accent); text-transform: uppercase; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid rgba(200,169,110,0.2); }
  .spec-item { margin-bottom: 16px; }
  .spec-item-label { font-size: 11px; color: var(--fg3); margin-bottom: 4px; letter-spacing: 0.05em; }
  .spec-item-value { font-size: 14px; color: var(--fg); font-weight: 500; }

  /* WALL SYSTEM */
  .wall-hero { height: 70vh; min-height: 560px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 64px 48px; overflow: hidden; }
  .wall-hero-bg { position: absolute; inset: 0; }
  .wall-content { position: relative; z-index: 2; }
  .wall-title { font-size: clamp(64px, 10vw, 130px); font-weight: 700; letter-spacing: -0.02em; line-height: 0.9; }
  .wall-intro { padding: 80px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .wall-intro p { font-size: 15px; color: var(--fg2); line-height: 1.8; margin-bottom: 16px; }
  .wall-cross-section { padding: 100px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
  .cross-info h3 { font-size: 32px; font-weight: 700; margin-bottom: 20px; }
  .cross-info p { font-size: 14px; color: var(--fg2); line-height: 1.8; margin-bottom: 20px; }
  .layer-list { margin-top: 32px; }
  .layer-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06); }
  .layer-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
  .layer-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
  .layer-desc { font-size: 12px; color: var(--fg3); }

  /* COMPARE SLIDER */
  .compare-wrap { position: relative; width: 100%; aspect-ratio: 16/10; max-height: 720px; overflow: hidden; user-select: none; border: 1px solid rgba(255,255,255,0.08); background: #111; cursor: ew-resize; }
  .compare-img { position: absolute; inset: 0; }
  .compare-img img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
  .compare-after { clip-path: inset(0 0 0 50%); }
  .compare-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--accent); transform: translateX(-1px); pointer-events: none; box-shadow: 0 0 20px rgba(200,169,110,0.4); }
  .compare-handle { position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; transform: translate(-50%, -50%); background: var(--accent); color: #09090d; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
  .compare-label { position: absolute; top: 20px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; background: rgba(9,9,13,0.7); padding: 6px 12px; color: var(--fg); backdrop-filter: blur(4px); }
  .compare-label-left { left: 20px; }
  .compare-label-right { right: 20px; color: var(--accent); }
  .compare-key { font-family: var(--font-mono); font-size: 14px; color: var(--accent); font-weight: 700; width: 32px; height: 32px; border: 1px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
  .compare-key-label { font-size: 13px; color: var(--fg2); line-height: 1.5; }

  /* FORMCRETE */
  .formcrete-section { background: #f2f1ed; color: #1a1a1a; padding: 100px 48px 0; }
  .formcrete-inner { max-width: 1400px; margin: 0 auto; }
  .formcrete-label { color: #1a1a1a !important; }
  .formcrete-label::before { background: #1a1a1a !important; }
  .formcrete-header { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; margin-bottom: 40px; align-items: start; }
  .formcrete-title { font-size: clamp(28px, 3vw, 44px); font-weight: 500; line-height: 1.15; color: #1a1a1a; letter-spacing: -0.01em; margin-bottom: 24px; }
  .formcrete-lede { font-size: 15px; color: #3a3a3a; line-height: 1.7; max-width: 480px; }
  .formcrete-copy { padding-top: 60px; }
  .formcrete-copy p { font-size: 13px; line-height: 1.7; color: #444; }
  .formcrete-hero { margin: 40px 0 0; position: relative; width: 100vw; margin-left: calc(50% - 50vw); }
  .formcrete-hero-img { width: 100%; height: auto; display: block; }

  /* REGULATORY */
  .regulatory-section { background: #f2f1ed; color: #1a1a1a; padding: 24px 48px 120px; border-top: 1px solid rgba(0,0,0,0.08); }
  .reg-inner { max-width: 1400px; margin: 0 auto; }
  .reg-label { color: #1a1a1a !important; }
  .reg-label::before { background: #1a1a1a !important; }
  .reg-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
  .reg-nav { display: flex; gap: 12px; }
  .reg-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.3); background: transparent; color: #1a1a1a; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
  .reg-arrow:hover { background: #1a1a1a; color: #f2f1ed; }
  .reg-arrow:disabled { opacity: 0.3; cursor: default; }
  .reg-arrow:disabled:hover { background: transparent; color: #1a1a1a; }
  .reg-track-wrap { overflow: hidden; }
  .reg-track { display: flex; gap: 48px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
  .reg-card { flex: 0 0 calc((100% - 96px) / 3); min-width: 0; }
  .reg-card-title { font-size: 22px; font-weight: 500; line-height: 1.25; color: #1a1a1a; margin-bottom: 20px; letter-spacing: -0.01em; }
  .reg-card-body { font-size: 13px; line-height: 1.7; color: #444; }
  @media (max-width: 900px) {
    .formcrete-header { grid-template-columns: 1fr; gap: 24px; }
    .formcrete-copy { padding-top: 0; }
    .reg-card { flex: 0 0 calc(100% - 24px); }
  }

  /* DOCUMENTS STRIP */
  .docs-strip { background: var(--bg); padding: 64px 48px 72px; border-top: 1px solid rgba(255,255,255,0.06); }
  .docs-strip-inner { max-width: 1600px; margin: 0 auto; }
  .docs-strip-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 4px; }
  .docs-strip-note { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg3); }
  .docs-strip-list { display: flex; flex-direction: column; }
  .docs-strip-item { display: grid; grid-template-columns: 180px 1fr 24px; gap: 24px; align-items: center; padding: 18px 4px; border-bottom: 1px solid rgba(255,255,255,0.04); text-decoration: none; color: var(--fg); transition: background 0.15s, color 0.15s; }
  .docs-strip-item:last-child { border-bottom: none; }
  .docs-strip-item:hover { background: rgba(255,255,255,0.02); color: var(--accent); }
  .docs-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; }
  .docs-name { font-size: 14px; font-weight: 500; }
  .docs-arrow { color: var(--fg3); font-size: 14px; text-align: right; }
  .docs-strip-item:hover .docs-arrow { color: var(--accent); }
  @media (max-width: 700px) {
    .docs-strip-item { grid-template-columns: 1fr 24px; }
    .docs-strip-item .docs-tag { display: none; }
  }

  /* RESOURCES */
  .resources { background: var(--bg2); padding: 100px 48px; }
  .resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
  .resource-card { background: var(--bg3); padding: 40px 36px; transition: background 0.2s; cursor: pointer; }
  .resource-card:hover { background: #1c1c22; }
  .resource-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; color: var(--accent); text-transform: uppercase; margin-bottom: 20px; }
  .resource-title { font-size: 20px; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
  .resource-desc { font-size: 13px; color: var(--fg2); line-height: 1.7; margin-bottom: 24px; }
  .resource-link { font-size: 11px; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); display: flex; align-items: center; gap: 8px; }
  .resource-link::after { content: '→'; }

  /* CTA */
  .cta-section {
    background: var(--bg); padding: 160px 48px;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative; overflow: hidden;
  }
  .cta-bg-image {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url('assets/uploads/69810c8de50d621ea1c9bb96_non planar surface.webp') center/cover no-repeat;
    opacity: 0.8; z-index: 0;
  }
  .cta-bg-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(9,9,13,0.75) 0%, rgba(9,9,13,0.45) 60%, rgba(9,9,13,0.25) 100%);
    z-index: 1;
  }
  .cta-section > h2, .cta-section > p, .cta-section > div.cta-actions { position: relative; z-index: 2; }
  .cta-headline { font-size: clamp(56px, 8vw, 110px); font-weight: 700; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 48px; }
  .cta-sub { font-size: 16px; color: var(--fg2); max-width: 480px; line-height: 1.7; margin-bottom: 48px; }
  .cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

  /* FOOTER */
  footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 48px 40px; }
  .footer-top { display: grid; grid-template-columns: 200px 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
  .footer-brand { font-size: 18px; font-weight: 700; letter-spacing: 0.15em; }
  .footer-brand img { height: 68px; width: auto; display: block; }
  .footer-brand-sub { font-size: 12px; color: var(--fg3); margin-top: 8px; line-height: 1.5; }
  .footer-col-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--fg3); text-transform: uppercase; margin-bottom: 20px; }
  .footer-col a { display: block; font-size: 13px; color: var(--fg2); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--fg); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; }
  .footer-copy { font-size: 11px; color: var(--fg3); font-family: var(--font-mono); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 11px; color: var(--fg3); text-decoration: none; }

  /* ====== BUILDER PITCH SECTIONS ====== */

  .hero-stats {
    position: absolute; left: 48px; right: 48px; bottom: 40px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; z-index: 3;
    border-top: 1px solid rgba(255,255,255,0.18); padding-top: 20px;
  }
  .hero-stat { padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.12); }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-value { font-size: clamp(24px, 2.4vw, 36px); font-weight: 700; letter-spacing: -0.01em; color: var(--fg); }
  .hero-stat-value .accent { color: var(--accent); }
  .hero-stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--fg2); text-transform: uppercase; margin-top: 8px; }

  /* Why Builders */
  .why-builders { background: var(--bg); padding: 140px 48px; }
  .why-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
  .why-header h2 { font-size: clamp(36px, 5vw, 72px); font-weight: 700; line-height: 1.0; letter-spacing: -0.02em; }
  .why-header p { font-size: 15px; color: var(--fg2); line-height: 1.8; max-width: 480px; }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .why-grid.why-grid-5 { grid-template-columns: repeat(5, 1fr); }
  .biz-subhead { margin-top: 100px; margin-bottom: 40px; max-width: 880px; }
  .biz-subhead-title { font-size: clamp(28px, 3.6vw, 48px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 18px; }
  .biz-subhead-body { font-size: 15px; color: var(--fg2); line-height: 1.75; max-width: 640px; }
  .why-card { padding: 40px 36px 48px; border-right: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 16px; }
  .why-card:last-child { border-right: none; }
  .why-card-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--accent); }
  .why-card-title { font-size: 18px; font-weight: 600; line-height: 1.35; }
  .why-card-body { font-size: 13px; color: var(--fg2); line-height: 1.7; margin-top: 8px; }
  .why-takeaway { margin-top: 48px; padding: 28px 40px; background: var(--bg2); border-left: 2px solid var(--accent); font-size: 15px; line-height: 1.7; color: var(--fg); max-width: 880px; }

  /* Shell Replaces */
  .replaces-section { background: var(--bg2); padding: 140px 48px; }
  .replaces-header { margin-bottom: 60px; max-width: 720px; }
  .replaces-header h2 { font-size: clamp(36px, 5vw, 72px); font-weight: 700; line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 24px; }
  .replaces-header p { font-size: 15px; color: var(--fg2); line-height: 1.8; }
  .replaces-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,0.08); }
  .replaces-col { padding: 40px 44px; }
  .replaces-col.traditional { border-right: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.01); }
  .replaces-col.printed { background: rgba(200,169,110,0.04); }
  .replaces-col-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
  .replaces-col.traditional .replaces-col-tag { color: var(--fg3); }
  .replaces-col.printed .replaces-col-tag { color: var(--accent); }
  .replaces-col-title { font-size: 22px; font-weight: 700; margin-bottom: 28px; line-height: 1.25; }
  .replaces-list { list-style: none; padding: 0; margin: 0; }
  .replaces-list li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; line-height: 1.5; display: flex; gap: 14px; align-items: flex-start; }
  .replaces-list li:last-child { border-bottom: none; }
  .replaces-list li::before { content: ''; flex-shrink: 0; width: 6px; height: 1px; background: var(--fg3); margin-top: 11px; }
  .replaces-col.printed .replaces-list li::before { background: var(--accent); }
  .replaces-list li .muted { color: var(--fg3); font-style: italic; font-size: 12px; margin-left: 6px; }

  /* Business case grid (standalone section and embedded) */
  .business-case { background: var(--bg); padding: 140px 48px; }
  .biz-header { margin-bottom: 80px; max-width: 880px; }
  .biz-header h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; }
  .biz-header p { font-size: 16px; color: var(--fg2); line-height: 1.7; max-width: 640px; }
  .biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
  .biz-item { padding: 36px 32px; background: var(--bg); display: flex; flex-direction: column; gap: 14px; }
  .biz-item-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--accent); }
  .biz-item-title { font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--fg); }
  .biz-pull { margin-top: 64px; padding: 36px 0 0; border-top: 1px solid rgba(255,255,255,0.08); max-width: 920px; }
  .biz-pull-text { font-size: clamp(20px, 2.2vw, 28px); font-weight: 500; line-height: 1.45; letter-spacing: -0.01em; color: var(--fg); }

  /* Code / Trust */
  .code-section { background: var(--bg2); padding: 140px 48px; }
  .code-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 60px; }
  .code-header h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
  .code-header p { font-size: 15px; color: var(--fg2); line-height: 1.8; max-width: 460px; }
  .code-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .code-stat { padding: 40px 32px 44px; border-right: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 8px; }
  .code-stat:last-child { border-right: none; }
  .code-stat-value { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; letter-spacing: -0.01em; line-height: 1; color: var(--fg); }
  .code-stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--accent); text-transform: uppercase; margin-top: 4px; }
  .code-stat-detail { font-size: 12px; color: var(--fg2); line-height: 1.6; margin-top: 12px; }
  .code-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.06); }
  .code-summary h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--accent); text-transform: uppercase; margin-bottom: 18px; }
  .code-summary ul { list-style: none; padding: 0; margin: 0; }
  .code-summary li { padding: 10px 0; font-size: 14px; line-height: 1.6; color: var(--fg); display: flex; gap: 12px; align-items: flex-start; }
  .code-summary li::before { content: ''; flex-shrink: 0; width: 6px; height: 1px; background: var(--accent); margin-top: 11px; }
  .code-bottom-line { font-size: 16px; line-height: 1.7; color: var(--fg); }

  /* Market proof */
  .market-section { background: var(--bg); padding: 140px 48px; }
  .market-header { margin-bottom: 60px; max-width: 800px; }
  .market-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
  .market-header h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; }
  .market-header p { font-size: 15px; color: var(--fg2); line-height: 1.8; }
  .market-trajectory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 60px; }
  .market-tnode { padding: 48px 36px; border-right: 1px solid rgba(255,255,255,0.06); }
  .market-tnode:last-child { border-right: none; }
  .market-tnode-value { font-size: clamp(40px, 5vw, 72px); font-weight: 700; line-height: 1; letter-spacing: -0.02em; color: var(--fg); }
  .market-tnode-when { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; margin-top: 14px; }
  .market-tnode-detail { font-size: 13px; color: var(--fg2); line-height: 1.6; margin-top: 12px; }
  .market-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .market-detail h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--accent); text-transform: uppercase; margin-bottom: 18px; }
  .market-detail-list { list-style: none; padding: 0; margin: 0; }
  .market-detail-list li { padding: 10px 0; font-size: 14px; line-height: 1.6; color: var(--fg); display: flex; gap: 12px; align-items: flex-start; }
  .market-detail-list li::before { content: ''; flex-shrink: 0; width: 6px; height: 1px; background: var(--fg3); margin-top: 11px; }
  .market-bottom-line { margin-top: 60px; padding: 32px 40px; background: var(--bg2); border-left: 2px solid var(--accent); font-size: 16px; line-height: 1.7; max-width: 920px; }

  /* Partner Process */
  .partner-section { background: var(--bg2); padding: 140px 48px; }
  .partner-header { margin-bottom: 64px; max-width: 760px; }
  .partner-header h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 20px; }
  .partner-header p { font-size: 15px; color: var(--fg2); line-height: 1.8; }
  .partner-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .partner-step { padding: 40px 36px 48px; border-right: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 16px; }
  .partner-step:last-child { border-right: none; }
  .partner-step-num { font-family: var(--font-mono); font-size: 36px; font-weight: 400; color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
  .partner-step-title { font-size: 16px; font-weight: 600; line-height: 1.35; color: var(--fg); margin-top: 8px; }
  .partner-step-body { font-size: 13px; color: var(--fg2); line-height: 1.7; }
  .partner-ask { margin-top: 56px; padding: 32px 40px; background: var(--bg); border: 1px solid rgba(200,169,110,0.3); display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
  .partner-ask-text { font-size: 15px; color: var(--fg); line-height: 1.6; max-width: 640px; }
  .partner-ask-text strong { color: var(--accent); font-weight: 500; }

  /* Depth backgrounds */
  .depth-bg { position: relative; overflow: hidden; isolation: isolate; }
  .depth-bg > * { position: relative; z-index: 2; }
  .depth-bg::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(126,184,200,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(126,184,200,0.035) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: radial-gradient(ellipse 110% 90% at 50% 30%, rgba(0,0,0,1) 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 110% 90% at 50% 30%, rgba(0,0,0,1) 0%, transparent 75%);
    pointer-events: none; z-index: 0;
  }
  .depth-bg::after {
    content: ''; position: absolute;
    width: 70vw; height: 70vw; max-width: 1100px; max-height: 1100px;
    top: -18vw; right: -16vw;
    background: radial-gradient(circle, rgba(126,184,200,0.10) 0%, rgba(126,184,200,0.04) 35%, transparent 65%);
    pointer-events: none; z-index: 1; filter: blur(40px);
  }
  .depth-bg.depth-bl::after { top: auto; bottom: -18vw; right: auto; left: -16vw; }
  .depth-bg.depth-tl::after { right: auto; left: -16vw; }
  .depth-bg.depth-br::after { top: auto; bottom: -18vw; }
  .depth-bg.depth-dual::before {
    background-image:
      linear-gradient(rgba(126,184,200,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(126,184,200,0.035) 1px, transparent 1px),
      radial-gradient(circle at 15% 75%, rgba(200,169,110,0.06) 0%, transparent 35%);
    background-size: 88px 88px, 88px 88px, 100% 100%;
  }

  /* Mobile */
  @media (max-width: 900px) {
    .why-grid, .biz-grid, .code-stats, .replaces-grid, .market-trajectory, .partner-steps, .market-detail-grid, .why-header, .code-header, .code-summary { grid-template-columns: 1fr; }
    .why-card, .partner-step, .biz-item, .code-stat, .market-tnode { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .why-card:last-child, .partner-step:last-child, .biz-item:last-child, .code-stat:last-child, .market-tnode:last-child { border-bottom: none; }
    .replaces-col.traditional { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  }

  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex !important; }
    section { padding: 80px 20px; }
    .tech-intro, .suite-header, .specs-intro, .wall-intro, .wall-cross-section, .envelope-diagram { grid-template-columns: 1fr; }
    .suite-components { grid-template-columns: 1fr; }
    .quick-stats { grid-template-columns: 1fr 1fr; }
    .specs-grid, .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top { gap: 32px 24px; }
    .footer-top > div:first-child { grid-column: 1 / -1; margin-bottom: 8px; }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
    .hero { padding: 64px 20px 24px; min-height: 600px; }
    .hero-headline { font-size: clamp(34px, 9vw, 56px) !important; line-height: 1.0 !important; }
    .section-title { font-size: clamp(34px, 9vw, 56px); }
    h2 { font-size: clamp(28px, 7.5vw, 48px); }
    .why-builders, .replaces-section, .market-section, .partner-section,
    .code-section, .cta-section, .business-case { padding: 80px 20px; }
    .full-specs, .print-envelope, .formcrete-section, .regulatory-section { padding: 80px 20px; }
    .specs-intro { padding: 60px 20px; }
    .wall-comparison { padding: 60px 20px !important; }
    .quick-stat { padding: 28px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .quick-stat:last-child { border-bottom: none; }
    .docs-strip { padding: 48px 20px 56px; }
    .btn-primary, .btn-ghost, .nav-cta { padding: 14px 22px; min-height: 48px; }
    .depth-bg::after { width: 120vw; height: 120vw; filter: blur(60px); }
    .partner-ask { padding: 24px 22px; }
    .spec-table-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 14px; }
  }

  @media (max-width: 420px) {
    nav { padding: 12px 16px; }
    .nav-logo { font-size: 16px; }
    .nav-cta { padding: 7px 12px; font-size: 10px; }
    section { padding: 70px 18px; }
    .specs-title { font-size: clamp(48px, 16vw, 96px); }
    .wall-title { font-size: clamp(48px, 16vw, 96px); }
    .quick-stats, .footer-top, .specs-grid { grid-template-columns: 1fr; }
    .footer-top > div:first-child { margin-bottom: 0; }
  }

  /* MOBILE NAV TOGGLE + DRAWER */
  .nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 40px; height: 40px;
    background: transparent; border: none; padding: 0;
    cursor: pointer; z-index: 1100; position: relative;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 1.5px; background: var(--fg);
    transition: transform 0.3s, opacity 0.2s; transform-origin: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed; inset: 0; z-index: 1050;
    background: rgba(9,9,13,0.985); backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transition: opacity 0.25s; overflow-y: auto;
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu-inner { padding: 88px 28px 56px; max-width: 600px; margin: 0 auto; }
  .mobile-menu-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
  .mobile-menu-links { display: flex; flex-direction: column; }
  .mobile-menu-links > a {
    display: block; font-family: var(--font-display);
    font-size: 30px; font-weight: 700; letter-spacing: -0.01em;
    color: var(--fg); text-decoration: none;
    padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
  }
  .mobile-menu-links > a:hover { color: var(--accent); }
  .mobile-menu-cta {
    display: inline-block; margin-top: 36px;
    background: var(--accent); color: #09090d;
    padding: 16px 32px; min-height: 48px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; text-decoration: none; text-align: center;
    border: none; cursor: pointer; font-family: var(--font-display);
  }
  .mobile-menu-foot {
    margin-top: 48px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.18em; color: var(--fg3); text-transform: uppercase;
  }
  body.menu-open { overflow: hidden; }

  /* CONTACT PAGE */
  .contact-page { background: var(--bg); padding: 120px 48px 160px; min-height: calc(100vh - 80px); }
  .contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-headline { font-size: clamp(40px, 5vw, 76px); font-weight: 700; line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 24px; }
  .contact-lede { font-size: 16px; color: var(--fg2); line-height: 1.75; margin-bottom: 28px; max-width: 460px; }
  .contact-form { display: grid; gap: 18px; }
  .contact-form label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg3); margin-bottom: 8px; font-family: var(--font-mono); }
  .contact-form input, .contact-form textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--fg); padding: 14px 16px; font-size: 15px; border-radius: 2px; font-family: inherit; }
  .contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
  .contact-form textarea { min-height: 140px; resize: vertical; }
  .contact-form button { margin-top: 8px; }
  .contact-status { font-size: 13px; padding: 12px 16px; border-radius: 2px; }
  .contact-status.ok { background: rgba(0, 200, 120, 0.12); color: rgb(120, 230, 170); border: 1px solid rgba(0, 200, 120, 0.3); }
  .contact-status.err { background: rgba(220, 80, 80, 0.12); color: rgb(255, 160, 160); border: 1px solid rgba(220, 80, 80, 0.3); }
  @media (max-width: 900px) {
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-page { padding: 80px 24px 100px; }
  }

  /* ADMIN PAGE */
  .admin-page { background: var(--bg); padding: 60px 32px 100px; min-height: 100vh; }
  .admin-inner { max-width: 1500px; margin: 0 auto; }
  .admin-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; gap: 24px; flex-wrap: wrap; }
  .admin-head h1 { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -0.02em; }
  .admin-filters { display: flex; gap: 8px; }
  .admin-filters button { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--fg2); padding: 8px 16px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-mono); cursor: pointer; border-radius: 2px; }
  .admin-filters button.active { background: var(--accent); color: #000; border-color: var(--accent); }
  .admin-table { width: 100%; border-collapse: collapse; }
  .admin-table th, .admin-table td { padding: 14px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; vertical-align: top; }
  .admin-table th { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg3); font-family: var(--font-mono); font-weight: 500; }
  .admin-table tr.handled td { opacity: 0.5; }
  .admin-source { display: inline-block; padding: 2px 8px; background: rgba(255,255,255,0.06); border-radius: 2px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg2); }
  .admin-action { background: none; border: 1px solid rgba(255,255,255,0.12); color: var(--fg2); padding: 4px 10px; font-size: 11px; cursor: pointer; border-radius: 2px; }
  .admin-action:hover { border-color: var(--accent); color: var(--accent); }
  .admin-empty { padding: 80px 0; text-align: center; color: var(--fg3); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
