  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    /* Light editorial theme — semantic-drift note: --ink is now light bg, --white is now dark text */
    --ink: #FBFAF7;         /* warm off-white page bg */
    --ink-mid: #F3F1EC;     /* subtle warm gray for cards */
    --ink-low: #ECE9E3;     /* slightly deeper warm gray */
    --red: #0F6E56;         /* now: brand teal-green (from logo) */
    --red-dim: #0A4F3D;
    --amber: #14B8A6;       /* brighter teal for highlights */
    --teal: #0F6E56;
    --white: #0A0E1A;       /* now: primary dark text */
    --white-dim: #3A3F4C;   /* secondary text */
    --muted: #6B7280;       /* tertiary text — works both themes */
    --line: rgba(10,14,26,0.09);
    --mono: 'IBM Plex Mono', monospace;
    --display: 'Syne', sans-serif;
    --body: 'DM Sans', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--ink);
    color: var(--white);
    font-family: var(--body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }
  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
  }
  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-logo {
    font-family: var(--display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
  }
  .nav-logo span { color: var(--red); }
  .nav-logo small { display: block; font-family: var(--mono); font-size: 9px; font-weight: 400; color: var(--muted); letter-spacing: 0.15em; margin-top: 2px; }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink) !important;
    background: var(--white);
    padding: 10px 20px;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s !important;
  }
  .nav-cta:hover { background: var(--red) !important; color: #FBFAF7 !important; }
  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 140px 48px 80px;
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(251,250,247,0.55) 0%, rgba(251,250,247,0.78) 55%, rgba(251,250,247,0.95) 100%),
      url('images/hero-bg.jpg') center/cover no-repeat #dfe3e0;
  }
  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(10,14,26,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10,14,26,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
  }
  .hero-gradient {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
    pointer-events: none;
  }
  .hero-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }
  .hero h1 {
    font-family: var(--display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.02em;
    max-width: 960px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--red);
  }
  .hero-sub {
    margin-top: 32px;
    max-width: 560px;
    font-size: 17px;
    color: var(--white-dim);
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }
  .hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }
  .btn-primary {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: var(--red);
    color: #FBFAF7;
    padding: 16px 32px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--red-dim); transform: translateY(-1px); }
  .btn-ghost {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--muted);
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); border-color: var(--white); }
  /* STATS */
  .stats-section {
    padding: 0 48px 100px;
    position: relative;
  }
  .stats-banner {
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    padding: 64px;
    background: var(--ink-mid);
    position: relative;
    overflow: hidden;
  }
  .stats-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(15,110,86,0.07) 0%, transparent 60%);
    pointer-events: none;
  }
  .stats-intro {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .stats-headline {
    font-family: var(--display);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    max-width: 780px;
    margin-bottom: 12px;
  }
  .stats-sub {
    font-size: 16px;
    color: var(--white-dim);
    margin-bottom: 64px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    margin-bottom: 48px;
  }
  .stat-card {
    background: var(--ink-mid);
    padding: 40px 32px;
    position: relative;
  }
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .stat-card:hover::before { transform: scaleX(1); }
  .stat-who {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .stat-number {
    font-family: var(--display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .stat-desc {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .stat-source {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    line-height: 1.5;
  }
  .stats-blockquote {
    border-left: 4px solid var(--amber);
    padding: 24px 32px;
    background: rgba(20, 184, 166, 0.06);
    margin-bottom: 16px;
  }
  .stats-blockquote p {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
  }
  .stats-blockquote cite {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    display: block;
    margin-top: 12px;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  .stats-pivot {
    font-size: 17px;
    color: var(--white-dim);
    max-width: 780px;
    line-height: 1.7;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
  }
  .stats-pivot strong { color: var(--white); font-weight: 500; }
  /* SHARED SECTION STYLES */
  .section-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .section-title {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    max-width: 780px;
  }
  .section-sub {
    font-size: 17px;
    color: var(--white-dim);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 72px;
  }
  /* HOW IT WORKS */
  .how-section { padding: 0 48px 120px; }
  .chain {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 72px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .chain-node { flex-shrink: 0; text-align: center; }
  .chain-box {
    padding: 14px 24px;
    border: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--muted);
    white-space: nowrap;
  }
  .chain-box.highlight {
    border-color: var(--red);
    color: var(--white);
    background: rgba(15,110,86,0.08);
    font-weight: 500;
  }
  .chain-arrow {
    flex-shrink: 0;
    padding: 0 8px;
    color: var(--muted);
    font-size: 14px;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
  }
  .step-card {
    background: var(--ink);
    padding: 48px 36px;
    position: relative;
  }
  .step-number {
    font-family: var(--display);
    font-size: 72px;
    font-weight: 800;
    color: rgba(15,110,86,0.22);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
  }
  .step-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
  }
  .step-body {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.7;
  }
  /* DETECTION */
  .detection-section { padding: 0 48px 120px; }
  .detection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 64px;
  }
  .detection-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .rule-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: var(--ink-mid);
    border-left: 2px solid transparent;
    transition: border-color 0.2s, background 0.2s;
  }
  .rule-item:hover {
    border-left-color: var(--red);
    background: rgba(10,14,26,0.04);
  }
  .rule-badge {
    flex-shrink: 0;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    padding: 4px 8px;
    background: rgba(15,110,86,0.12);
    color: var(--red);
    text-transform: uppercase;
    margin-top: 2px;
    white-space: nowrap;
  }
  .rule-name {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
  }
  .rule-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
  }
  .detection-right {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
  .terminal {
    background: #0D1117;
    border: 1px solid rgba(247,245,240,0.08);
    overflow: hidden;
  }
  .terminal-bar {
    background: #161B22;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(247,245,240,0.06);
  }
  .terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
  .terminal-bar span {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    margin-left: 8px;
  }
  .terminal-body {
    padding: 24px;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.9;
  }
  .t-comment { color: #4B5563; }
  .t-key { color: #58A6FF; }
  .t-val { color: #A5D6FF; }
  .t-str { color: #79C0FF; }
  .t-alert { color: var(--red); font-weight: 500; }
  .t-ok { color: #3FB950; }
  .t-warn { color: var(--amber); }
  .t-dim { color: #4B5563; }
  /* ARCHITECTURE */
  .arch-section { padding: 0 48px 120px; }
  .arch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    margin-top: 64px;
  }
  .arch-card { background: var(--ink); padding: 48px 40px; }
  .arch-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .arch-title {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .arch-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .arch-list li {
    font-size: 14px;
    color: var(--white-dim);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
  }
  .arch-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 12px;
  }
  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    margin-top: 1px;
  }
  .trust-item {
    background: var(--ink-mid);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .trust-icon { font-size: 24px; margin-bottom: 4px; }
  .trust-title {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
  }
  .trust-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
  /* PILOT / PROOF */
  .pilot-section { padding: 0 48px 120px; }
  .pilot-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 32px;
  }
  .pilot-left h2 { margin-bottom: 24px; }
  .pilot-left p {
    color: var(--white-dim);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 520px;
  }
  .pilot-card {
    background: linear-gradient(180deg, var(--ink-mid), var(--ink-low));
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
  }
  .pilot-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(15,110,86,0.08), transparent 70%);
    pointer-events: none;
  }
  .pilot-card-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
  }
  .pilot-card h3 {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    position: relative;
  }
  .pilot-card-location {
    color: var(--white-dim);
    font-size: 15px;
    margin-bottom: 24px;
    position: relative;
  }
  .pilot-divider {
    height: 1px;
    background: var(--line);
    margin: 28px 0;
    position: relative;
  }
  .pilot-advisor {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
  }
  .pilot-advisor-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-dim), var(--red));
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    color: #FBFAF7;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  .pilot-advisor-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .pilot-hospital-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ink-low);
    margin-bottom: 24px;
    position: relative;
  }
  .pilot-hospital-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pilot-advisor-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
  }
  .pilot-advisor-role { font-size: 13px; color: var(--white-dim); line-height: 1.5; }
  /* TEAM */
  .team-section { padding: 0 48px 120px; }
  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--line);
    margin-top: 64px;
  }
  .team-card {
    background: var(--ink);
    padding: 40px 36px;
    transition: background 0.2s;
  }
  .team-card:hover { background: var(--ink-low); }
  .team-header-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .team-avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-dim), var(--red));
    border: 1px solid transparent;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 26px;
    color: #FBFAF7;
    letter-spacing: 0;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  .team-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .team-name {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    color: var(--white);
    line-height: 1.2;
  }
  .team-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(15,110,86,0.12);
    color: var(--red);
    border: 1px solid rgba(15,110,86,0.3);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .team-bio {
    font-size: 14.5px;
    color: var(--white-dim);
    line-height: 1.7;
  }
  .team-bio p { margin-bottom: 14px; }
  .team-bio p:last-child { margin-bottom: 0; }
  /* WHO IT'S FOR */
  .audience-section { padding: 0 48px 120px; }
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    margin-top: 64px;
  }
  .audience-card {
    background: var(--ink);
    padding: 48px 36px;
    transition: background 0.2s;
  }
  .audience-card:hover { background: var(--ink-mid); }
  .audience-role {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .audience-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .audience-body {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .audience-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .audience-bullets li {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
  }
  .audience-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
  }
  /* WAITLIST */
  .waitlist-section { padding: 0 48px 120px; }
  .waitlist-inner {
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    padding: 80px;
    background: var(--ink-mid);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    overflow: hidden;
  }
  .waitlist-inner::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15,110,86,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .waitlist-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }
  .waitlist-perks li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.5;
  }
  .perk-check {
    flex-shrink: 0;
    width: 20px; height: 20px;
    background: rgba(15,110,86,0.15);
    border: 1px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--red);
    margin-top: 2px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
  }
  .form-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .form-input, .form-select {
    background: #FFFFFF;
    border: 1px solid rgba(10,14,26,0.15);
    color: var(--white);
    padding: 14px 16px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 300;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-input:focus, .form-select:focus { border-color: var(--red); }
  .form-input::placeholder { color: var(--muted); }
  .form-select option { background: #FFFFFF; color: var(--white); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-submit {
    width: 100%;
    background: var(--red);
    color: #FBFAF7;
    border: none;
    padding: 18px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .form-submit:hover { background: var(--red-dim); transform: translateY(-1px); }
  .form-note {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.6;
  }
  /* FOOTER */
  footer {
    padding: 48px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo {
    font-family: var(--display);
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
  }
  .footer-logo span { color: var(--red); }
  .footer-meta {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    text-align: right;
    line-height: 1.8;
  }
  .footer-meta a { color: var(--muted); text-decoration: none; }
  .footer-meta a:hover { color: var(--white); }
  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Hero cursor blink */
  .hero h1::after {
    content: '_';
    display: inline-block;
    color: var(--red);
    margin-left: 6px;
    animation: cursorBlink 1.1s steps(2, jump-none) infinite;
    font-weight: 400;
  }
  @keyframes cursorBlink {
    50% { opacity: 0; }
  }

  /* Chain arrow flow pulse */
  @keyframes chainPulse {
    0%, 55%, 100% { opacity: 0.35; color: var(--muted); transform: translateX(0); }
    28% { opacity: 1; color: var(--red); transform: translateX(2px); }
  }
  .chain > .chain-arrow {
    animation: chainPulse 2.6s ease-in-out infinite;
    display: inline-block;
    transition: none;
  }
  .chain > .chain-arrow:nth-child(2) { animation-delay: 0s; }
  .chain > .chain-arrow:nth-child(4) { animation-delay: 0.35s; }
  .chain > .chain-arrow:nth-child(6) { animation-delay: 0.7s; }
  .chain > .chain-arrow:nth-child(8) { animation-delay: 1.05s; }

  /* Terminal typing reveal */
  .terminal-body.pre-animate > div,
  .terminal-body.pre-animate > br { opacity: 0; }
  .terminal-body.playing > div,
  .terminal-body.playing > br {
    animation: terminalLine 0.18s ease-out forwards;
  }
  @keyframes terminalLine {
    from { opacity: 0; transform: translateY(2px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Stat counter — no CSS needed, handled in JS */

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .hero h1::after,
    .chain > .chain-arrow,
    .terminal-body.playing > div,
    .terminal-body.playing > br { animation: none !important; opacity: 1 !important; }
  }
  .success-msg {
    display: none;
    text-align: center;
    padding: 48px 24px;
  }
  .success-msg.show { display: block; }
  .success-msg h3 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
  }
  .success-msg p { font-size: 15px; color: var(--white-dim); }
  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { padding: 120px 24px 60px; }
    .stats-section, .how-section, .detection-section,
    .arch-section, .pilot-section, .team-section,
    .audience-section, .waitlist-section { padding-left: 24px; padding-right: 24px; }
    .stats-banner { padding: 40px 28px; }
    .stats-grid, .steps-grid, .audience-grid, .arch-grid, .trust-row, .team-grid { grid-template-columns: 1fr; }
    .detection-grid, .pilot-inner { grid-template-columns: 1fr; }
    .detection-right { position: static; }
    .waitlist-inner { grid-template-columns: 1fr; padding: 40px 28px; gap: 48px; }
    footer { flex-direction: column; gap: 24px; text-align: center; }
    .footer-meta { text-align: center; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ==================================================================
     BLOG STYLES
     ================================================================== */
  .blog-hero {
    padding: 140px 48px 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--ink-mid);
  }
  .blog-hero-inner { max-width: var(--max-w, 1200px); margin: 0 auto; }
  .blog-hero .eyebrow { color: var(--red); }
  .blog-hero h1 {
    font-family: var(--display);
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    max-width: 820px;
  }
  .blog-hero p {
    font-size: 18px;
    color: var(--white-dim);
    max-width: 640px;
    line-height: 1.65;
  }

  .blog-list-section { padding: 80px 48px 120px; }
  .blog-list-inner { max-width: 1200px; margin: 0 auto; }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .blog-card {
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }
  .blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: 0 20px 40px -20px rgba(15,110,86,0.18);
  }
  .blog-card-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--ink-mid), var(--ink-low));
    position: relative;
    overflow: hidden;
  }
  .blog-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .blog-card:hover .blog-card-image img { transform: scale(1.04); }
  .blog-card-image-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(15,110,86,0.35);
    font-family: var(--display);
    font-weight: 800;
    font-size: 42px;
  }
  .blog-card-body {
    padding: 28px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
  }
  .blog-card-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
  }
  .blog-card-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--white);
  }
  .blog-card-excerpt {
    font-size: 14.5px;
    color: var(--white-dim);
    line-height: 1.6;
    flex: 1;
  }
  .blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
  }
  .blog-card-author { color: var(--white-dim); font-weight: 500; }

  /* Article page (individual blog post) */
  .article-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 140px 48px 100px;
  }
  .article-header { margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
  .article-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .article-title {
    font-family: var(--display);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.04em;
    flex-wrap: wrap;
  }
  .article-meta strong { color: var(--white); font-weight: 500; font-family: var(--body); font-size: 14px; letter-spacing: 0; }
  .article-body { font-size: 17px; line-height: 1.75; color: var(--white); }
  .article-body p { margin-bottom: 22px; }
  .article-body h2 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 44px 0 20px;
  }
  .article-body h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin: 36px 0 16px;
  }
  .article-body a { color: var(--red); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
  .article-body blockquote {
    border-left: 3px solid var(--red);
    padding: 8px 24px;
    margin: 28px 0;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
    font-style: italic;
  }
  .article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    transition: color 0.2s;
  }
  .article-back:hover { color: var(--red); }

  @media (max-width: 900px) {
    .blog-hero { padding: 120px 24px 40px; }
    .blog-list-section { padding: 60px 24px 80px; }
    .blog-grid { grid-template-columns: 1fr; }
    .article-wrap { padding: 120px 24px 80px; }
  }

  /* Coming Soon state on blog cards */
  .blog-card--pending { cursor: default; }
  .blog-card--pending:hover {
    transform: none;
    border-color: var(--line);
    box-shadow: none;
  }
  .blog-card--pending:hover .blog-card-image img { transform: none; }
  .blog-card-status {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    background: rgba(15,110,86,0.92);
    color: #FBFAF7;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  /* Article body — additional prose styles */
  .article-body ul, .article-body ol {
    padding-left: 0;
    margin: 20px 0 26px;
    list-style: none;
  }
  .article-body ul li, .article-body ol li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    line-height: 1.7;
  }
  .article-body ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 600;
    font-size: 15px;
    top: 2px;
  }
  .article-body ol { counter-reset: list-item; }
  .article-body ol li::before {
    counter-increment: list-item;
    content: counter(list-item) ".";
    position: absolute;
    left: 0;
    color: var(--red);
    font-family: var(--mono);
    font-weight: 500;
    font-size: 13px;
    top: 4px;
  }
  .article-body strong { font-weight: 600; color: var(--white); }
  .article-body em { font-style: italic; }

  /* Callout — for Cecurus/product plugs inside articles */
  .article-callout {
    background: linear-gradient(180deg, var(--ink-mid), var(--ink-low));
    border: 1px solid var(--line);
    border-left: 3px solid var(--red);
    border-radius: 6px;
    padding: 32px 36px;
    margin: 40px 0;
  }
  .article-callout .callout-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .article-callout h3 {
    margin-top: 0 !important;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
  }
  .article-callout p { margin-bottom: 12px; }
  .article-callout p:last-child { margin-bottom: 0; }

  /* References */
  .article-references {
    margin-top: 60px;
    padding: 32px 0 0;
    border-top: 1px solid var(--line);
  }
  .article-references h2 {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    margin: 0 0 20px !important;
    font-weight: 500;
  }
  .article-references ol {
    counter-reset: ref;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .article-references li {
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: var(--white-dim);
    line-height: 1.55;
    position: relative;
  }
  .article-references li::before {
    counter-increment: ref;
    content: "[" counter(ref) "]";
    position: absolute;
    left: 0;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 12px;
    top: 1px;
  }
  .article-references a { color: var(--red); text-decoration: none; word-break: break-word; }
  .article-references a:hover { text-decoration: underline; }

  /* ==================================================================
     DESIGN 1 — BENTO STATS
     ================================================================== */
  .stats-bento {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .bento-hero {
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }
  .bento-hero::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(15,110,86,0.10), transparent 70%);
    pointer-events: none;
  }
  .bento-hero-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    position: relative;
  }
  .bento-hero-number {
    font-family: var(--display);
    font-size: clamp(96px, 14vw, 176px);
    font-weight: 900;
    color: var(--red);
    line-height: 0.92;
    letter-spacing: -0.045em;
    position: relative;
    font-variant-numeric: tabular-nums;
  }
  .bento-hero-desc {
    font-size: 18px;
    color: var(--white);
    line-height: 1.5;
    max-width: 500px;
    position: relative;
    font-weight: 400;
  }
  .bento-hero-source {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    letter-spacing: 0.05em;
    position: relative;
  }
  .bento-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }
  .bento-side-card {
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.25s ease;
    position: relative;
    overflow: hidden;
  }
  .bento-side-card:hover { border-color: var(--red); }
  .bento-side-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .bento-side-number {
    font-family: var(--display);
    font-size: clamp(38px, 5vw, 54px);
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
  }
  .bento-side-desc {
    font-size: 14px;
    color: var(--white-dim);
    line-height: 1.5;
    flex: 1;
  }
  .bento-side-source {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.05em;
  }
  @media (max-width: 900px) {
    .stats-bento { grid-template-columns: 1fr; }
    .bento-hero { padding: 36px 28px; min-height: auto; }
    .bento-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .bento-side-card { padding: 24px 20px; }
  }
  @media (max-width: 600px) {
    .bento-side { grid-template-columns: 1fr; }
  }

  /* ==================================================================
     DESIGN 2 — TRUST BOUNDARY SYSTEM DIAGRAM
     ================================================================== */
  .arch-diagram-wrap {
    margin-top: 40px;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
  }
  .arch-diagram-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
  }
  .arch-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
  }
  .arch-box {
    padding: 32px 28px;
    border-radius: 10px;
    position: relative;
    background: var(--ink-mid);
  }
  .arch-box.arch-onprem {
    border: 2px solid var(--red);
  }
  .arch-box.arch-cloud {
    border: 2px dashed rgba(10,14,26,0.25);
    background: transparent;
  }
  .arch-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }
  .arch-box-title {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--white);
  }
  .arch-box-badge {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
  }
  .arch-box.arch-onprem .arch-box-badge {
    background: var(--red);
    color: #FBFAF7;
  }
  .arch-box.arch-cloud .arch-box-badge {
    background: rgba(10,14,26,0.08);
    color: var(--muted);
    border: 1px solid var(--line);
  }
  .arch-box-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }
  .arch-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .arch-item svg { width: 12px; height: 12px; flex: none; color: var(--red); }
  .arch-item.arch-item--cloud {
    background: transparent;
    color: var(--muted);
  }
  .arch-item.arch-item--cloud svg { color: var(--muted); }
  .arch-item.arch-item--excluded {
    text-decoration: line-through;
    text-decoration-color: rgba(10,14,26,0.35);
    opacity: 0.45;
  }
  .arch-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
    min-width: 140px;
  }
  .arch-arrow-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    text-align: center;
    line-height: 1.4;
  }
  .arch-arrow-svg {
    width: 100%;
    height: 20px;
    color: var(--red);
  }
  .arch-arrow-note {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-align: center;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .arch-diagram-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
    flex-wrap: wrap;
    gap: 12px;
  }
  .arch-diagram-footer strong {
    color: var(--red);
    font-weight: 500;
  }
  @media (max-width: 900px) {
    .arch-diagram { grid-template-columns: 1fr; gap: 20px; }
    .arch-arrow { min-width: auto; flex-direction: row; padding: 8px 0; }
    .arch-arrow-svg { width: 24px; height: 24px; transform: rotate(90deg); }
    .arch-box-items { grid-template-columns: 1fr; }
  }

  /* ==================================================================
     DESIGN 3 — DASHBOARD MOCKUP
     ================================================================== */
  .product-section { padding: 0 48px 120px; }
  .product-inner { max-width: 1240px; margin: 0 auto; }
  .product-header {
    max-width: 720px;
    margin-bottom: 48px;
  }
  .product-header h2 { margin-bottom: 16px; }
  .dash-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: var(--ink);
    border: 1px solid var(--line);
    box-shadow: 0 40px 90px -50px rgba(10,14,26,0.55), 0 4px 14px -8px rgba(10,14,26,0.15);
  }
  .dash-chrome {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    background: var(--ink-mid);
    border-bottom: 1px solid var(--line);
  }
  .dash-chrome-dots {
    display: flex;
    gap: 8px;
    flex: none;
  }
  .dash-chrome-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(10,14,26,0.15);
  }
  .dash-chrome-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 8px;
    flex: none;
  }
  .dash-chrome-mark {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: var(--red);
  }
  .dash-chrome-name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.02em;
  }
  .dash-chrome-url {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .dash-chrome-url-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 6px 14px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    max-width: 420px;
  }
  .dash-chrome-url-inner svg { width: 12px; height: 12px; color: var(--red); }
  .dash-chrome-url-host { color: var(--red); }
  .dash-chrome-user {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
  }
  .dash-chrome-user-name {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .dash-chrome-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    color: #FBFAF7;
    font-family: var(--mono);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dash-body {
    display: grid;
    grid-template-columns: 212px minmax(0, 1fr);
  }
  .dash-sidebar {
    border-right: 1px solid var(--line);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--ink);
  }
  .dash-sidebar-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 10px 10px;
    opacity: 0.65;
  }
  .dash-nav-item {
    padding: 9px 10px;
    border-radius: 6px;
    font-size: 14.5px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dash-nav-item.active {
    background: var(--ink-mid);
    color: var(--white);
    font-weight: 500;
    box-shadow: inset 2px 0 0 var(--red);
  }
  .dash-nav-count {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--red);
  }
  .dash-sidebar-footer {
    margin-top: auto;
    padding: 14px 10px 0;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    line-height: 1.9;
    color: var(--muted);
  }
  .dash-sidebar-footer .dash-egress { color: var(--red); }
  .dash-main { min-width: 0; }
  .dash-main-header {
    padding: 22px 26px 18px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .dash-main-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.025em;
    margin: 0;
  }
  .dash-main-meta {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-top: 7px;
  }
  .dash-scan {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .dash-scan-bar {
    position: relative;
    overflow: hidden;
    width: 120px;
    height: 4px;
    border-radius: 2px;
    background: rgba(10,14,26,0.07);
  }
  .dash-scan-bar-fill {
    position: absolute;
    inset: 0;
    width: 30%;
    background: var(--amber);
    border-radius: 2px;
    animation: dashScan 2.6s ease-in-out infinite;
  }
  @keyframes dashScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(320%); }
  }
  .dash-scan-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--red);
  }
  .dash-table-head {
    display: grid;
    grid-template-columns: 148px 128px 84px 108px 128px minmax(0, 1fr);
    padding: 12px 26px;
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(10,14,26,0.02);
  }
  .dash-row {
    display: grid;
    grid-template-columns: 148px 128px 84px 108px 128px minmax(0, 1fr);
    align-items: center;
    padding: 16px 26px;
    border-bottom: 1px solid rgba(10,14,26,0.05);
    transition: background 0.18s ease;
  }
  .dash-row:hover { background: rgba(10,14,26,0.03); }
  .dash-row-id {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--white);
  }
  .dash-row-chev {
    width: 9px;
    height: 9px;
    flex: none;
    color: var(--muted);
  }
  .dash-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    border-radius: 3px;
    padding: 3px 8px;
  }
  .dash-badge--prior-auth {
    border: 1px solid rgba(15,110,86,0.3);
    color: var(--red);
  }
  .dash-badge--duplicate,
  .dash-badge--coding {
    border: 1px solid var(--line);
    color: var(--muted);
  }
  .dash-sev {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    border-radius: 999px;
    padding: 3px 9px;
    display: inline-block;
  }
  .dash-sev--high { background: rgba(217,119,6,0.12); color: #B45309; }
  .dash-sev--med { background: rgba(15,110,86,0.10); color: var(--red); }
  .dash-sev--low { background: rgba(10,14,26,0.06); color: var(--muted); }
  .dash-risk {
    font-family: var(--mono);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
  }
  .dash-status { font-size: 13.5px; color: var(--white); }
  .dash-status--resolved,
  .dash-status--dismissed { color: var(--muted); }
  .dash-timestamp {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
  }
  .dash-row-detail {
    padding: 4px 26px 26px;
    background: var(--ink-mid);
    border-bottom: 1px solid rgba(10,14,26,0.05);
  }
  .dash-row-detail-inner {
    border-left: 2px solid var(--red);
    padding: 4px 0 4px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .dash-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-family: var(--mono);
    font-size: 12px;
  }
  .dash-detail-meta-label { color: var(--muted); }
  .dash-detail-meta-value { color: var(--red); }
  .dash-detail-meta-value--num { color: var(--white); }
  .dash-detail-desc {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 78ch;
    color: var(--white);
  }
  .dash-detail-hint {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 78ch;
    color: var(--muted);
  }
  .dash-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
  }
  .dash-btn {
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: default;
    display: inline-block;
  }
  .dash-btn--primary { background: var(--red); color: #FBFAF7; }
  .dash-btn--ghost { border: 1px solid var(--line); color: var(--white); }
  .dash-btn--muted { border: 1px solid var(--line); color: var(--muted); }
  .dash-detail-phi {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-top: 2px;
  }
  .dash-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    padding: 14px 26px;
    border-top: 1px solid var(--line);
    background: rgba(10,14,26,0.02);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .dash-footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
  }
  .dash-footer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    animation: dashBlink 2s ease-in-out infinite;
  }
  @keyframes dashBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
  }
  .dash-caption {
    max-width: 1240px;
    margin: 20px auto 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
  }

  @media (max-width: 900px) {
    .product-section { padding: 0 24px 80px; }
    .dash-body { grid-template-columns: 1fr; }
    .dash-sidebar { flex-direction: row; overflow-x: auto; padding: 12px; gap: 8px; border-right: none; border-bottom: 1px solid var(--line); }
    .dash-sidebar-label, .dash-sidebar-footer { display: none; }
    .dash-nav-item { padding: 8px 12px; white-space: nowrap; font-size: 13px; }
    .dash-nav-item.active { box-shadow: inset 0 -2px 0 var(--red); }
    .dash-table-head { display: none; }
    .dash-row { grid-template-columns: 1fr auto; gap: 6px; padding: 14px 18px; }
    .dash-row-id { grid-column: 1 / -1; }
    .dash-timestamp { grid-column: 1 / -1; font-size: 11px; }
  }

  /* ==================================================================
     DESIGN 4 — TEAM (FEATURED FOUNDER + STRIP)
     ================================================================== */
  .team-featured {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 48px;
    margin-top: 64px;
    padding: 40px;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    align-items: stretch;
  }
  .team-featured-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red-dim), var(--red));
    display: grid;
    place-items: center;
    color: #FBFAF7;
    font-family: var(--display);
    font-weight: 800;
    font-size: 80px;
    position: relative;
    align-self: start;
  }
  .team-featured-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .team-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0;
    min-height: 300px;
  }
  .team-featured-name {
    font-family: var(--display);
    font-size: clamp(24px, 2.6vw, 30px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 28px;
    line-height: 1.1;
  }
  .team-manifesto {
    position: relative;
    padding-left: 42px;
    margin: 0 0 32px;
    border: none;
  }
  .team-manifesto-mark {
    position: absolute;
    left: -2px;
    top: -14px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 62px;
    line-height: 1;
    color: var(--amber);
    opacity: 0.9;
  }
  .team-manifesto p {
    margin: 0;
    font-family: var(--display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(19px, 1.8vw, 22px);
    line-height: 1.45;
    letter-spacing: -0.012em;
    max-width: 44ch;
    color: var(--white);
  }
  .team-featured-creds {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .team-divider {
    border: none;
    border-top: 1px solid var(--line);
    margin: 72px 0 56px;
  }

  .team-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
  .team-strip-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 4px;
    transition: transform 0.35s cubic-bezier(.2,.7,.3,1);
  }
  .team-strip-card:hover { transform: translateY(-3px); }
  .team-strip-photo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red-dim), var(--red));
    display: grid;
    place-items: center;
    color: #FBFAF7;
    font-family: var(--display);
    font-weight: 800;
    font-size: 26px;
    position: relative;
    flex: none;
  }
  .team-strip-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .team-badge--sm {
    font-size: 9.5px;
    padding: 2px 8px;
    letter-spacing: 0.12em;
  }
  .team-strip-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .team-strip-name {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 8px 0 0;
    line-height: 1.2;
  }
  .team-strip-role {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: var(--red);
    margin: 0;
    line-height: 1.2;
  }
  .team-strip-bio {
    font-size: 14.5px;
    color: var(--white-dim);
    line-height: 1.65;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  @media (max-width: 900px) {
    .team-featured {
      grid-template-columns: 1fr;
      padding: 28px;
      gap: 24px;
    }
    .team-featured-photo { max-width: 220px; font-size: 60px; }
    .team-featured-body { min-height: auto; }
    .team-strip { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ==================================================================
     DARK GREEN SECTION VARIANT — mix with light theme for visual rhythm
     ================================================================== */
  :root {
    --dark-bg: #062821;              /* deep teal-black */
    --dark-bg-mid: #0A3B32;          /* card fill on dark */
    --dark-bg-low: #0F5044;          /* deepest surface on dark */
    --dark-text: #E8ECEB;            /* body text on dark */
    --dark-text-dim: #A5B0AE;        /* secondary text on dark */
    --dark-line: rgba(255,255,255,0.09);
  }
  .dark-section {
    background: var(--dark-bg);
    color: var(--dark-text);
    position: relative;
  }
  .dark-section .section-title,
  .dark-section .product-header h2,
  .dark-section .pilot-left h2 { color: var(--dark-text); }
  .dark-section .section-sub,
  .dark-section .product-header p,
  .dark-section .pilot-left p { color: var(--dark-text-dim); }
  .dark-section .section-label { color: var(--amber); }
  .dark-section .dash-caption { color: var(--dark-text-dim); }

  /* Pilot card on dark section */
  .dark-section .pilot-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--red);
  }
  .dark-section .pilot-card::before {
    background: radial-gradient(circle, rgba(20,184,166,0.14), transparent 70%);
  }
  .dark-section .pilot-card h3,
  .dark-section .pilot-advisor-name { color: var(--dark-text); }
  .dark-section .pilot-card-location,
  .dark-section .pilot-advisor-role { color: var(--dark-text-dim); }
  .dark-section .pilot-card-label { color: var(--amber); }
  .dark-section .pilot-divider { background: rgba(255,255,255,0.09); }

  /* Dashboard on dark section — dashboard itself stays light, section around it darkens */
  .dark-section .dash-wrap {
    box-shadow: 0 40px 90px -30px rgba(0,0,0,0.65), 0 4px 20px -6px rgba(0,0,0,0.35);
  }

  /* ==================================================================
     BLOG CARD IMAGES — img now overlays fallback
     ================================================================== */
  .blog-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    transition: transform 0.4s ease;
  }
  .blog-card:hover .blog-card-image img { transform: scale(1.04); }
