  :root {
    --bg: #0a0a0a;
    --bg-deep: #050505;
    --bg-elev: #131313;
    --surface: #161616;
    --border: #232323;
    --border-bright: #3a3a3a;
    --fg: #ede8dd;
    --fg-dim: #8a857a;
    --fg-mute: #4d4943;
    --red: #c8102e;
    --red-bright: #e8334d;
    --red-deep: #8b0a1f;
    --red-glow: rgba(200, 16, 46, 0.5);
    --green: #4ade80;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { background: var(--bg); }
  body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'PT Serif', Georgia, serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  ::selection { background: var(--red); color: var(--fg); }

  body::after {
    content: '';
    position: fixed; inset: 0; z-index: 200;
    pointer-events: none; opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
  }
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
  }

  /* CURSOR */
  .cursor-dot {
    position: fixed; width: 6px; height: 6px;
    background: var(--red); pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%); transition: opacity 0.2s;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1px solid var(--red); pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, border-color 0.25s;
    opacity: 0.6;
  }
  .cursor-ring::before, .cursor-ring::after {
    content: ''; position: absolute; background: var(--red); opacity: 0.4;
  }
  .cursor-ring::before {
    left: 50%; top: -8px; bottom: -8px; width: 1px; transform: translateX(-50%);
  }
  .cursor-ring::after {
    top: 50%; left: -8px; right: -8px; height: 1px; transform: translateY(-50%);
  }
  body.hovering .cursor-ring { width: 60px; height: 60px; opacity: 1; }
  body.hovering .cursor-dot { opacity: 0; }
  @media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
  }

  /* STATUS BAR */
  .status-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 60;
    background: var(--bg-deep); border-bottom: 1px solid var(--border);
    padding: 0.4rem 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
    color: var(--fg-mute); letter-spacing: 0.05em; text-transform: uppercase;
  }
  .status-bar .left, .status-bar .right {
    display: flex; gap: 1.5rem; align-items: center;
  }
  .status-bar .dot-green {
    width: 6px; height: 6px; background: var(--green); border-radius: 50%;
    display: inline-block; margin-right: 0.4rem;
    box-shadow: 0 0 8px var(--green);
    animation: blink 2s ease-in-out infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  @media (max-width: 720px) {
    .status-bar .hide-mobile { display: none; }
  }

  /* NAV */
  nav {
    position: fixed; top: 28px; left: 0; right: 0; z-index: 50;
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none; color: var(--fg);
  }
  .nav-logo img { height: 28px; width: auto; }
  .nav-logo .nav-sublabel {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.15em;
    color: var(--red); text-transform: uppercase;
    border-left: 1px solid var(--border-bright);
    padding-left: 0.75rem; font-weight: 600;
  }
  .nav-links { display: flex; gap: 0.5rem; align-items: center; }
  .nav-links a {
    color: var(--fg-dim); text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.6rem 1rem; transition: color 0.2s; position: relative;
  }
  .nav-links a:hover { color: var(--fg); }
  .nav-links a::before {
    content: '['; color: var(--red); opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    margin-right: 0.3rem; transform: translateX(5px); display: inline-block;
  }
  .nav-links a::after {
    content: ']'; color: var(--red); opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    margin-left: 0.3rem; transform: translateX(-5px); display: inline-block;
  }
  .nav-links a:hover::before, .nav-links a:hover::after {
    opacity: 1; transform: translateX(0);
  }
  .nav-cta {
    color: var(--fg) !important; background: var(--red);
    padding: 0.6rem 1.2rem !important;
    transition: background 0.2s, transform 0.2s !important;
    border: 1px solid var(--red);
  }
  .nav-cta:hover { background: transparent; color: var(--red) !important; }
  .nav-cta::before, .nav-cta::after { display: none !important; }
  @media (max-width: 768px) {
    .nav-links a:not(.nav-cta) { display: none; }
  }

  /* HERO */
  .hero {
    position: relative; min-height: 100vh;
    padding: 8rem 2rem 5rem;
    display: flex; flex-direction: column; justify-content: center;
    z-index: 1; border-bottom: 1px solid var(--border);
  }
  .hero-grid {
    max-width: 1400px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 0.5fr;
    gap: 4rem; align-items: center;
  }
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { display: none; }
  }

  .hero-meta {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0; transform: translateY(15px);
  }
  .hero-meta-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--red);
    padding: 0.35rem 0.6rem; border: 1px solid var(--red);
    background: rgba(200, 16, 46, 0.08); font-weight: 600;
  }
  .hero-meta-line { flex: 1; height: 1px; background: var(--border); }
  .hero-meta-code {
    font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
    color: var(--fg-mute); letter-spacing: 0.1em;
  }

  h1.hero-title {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: clamp(2.5rem, 7.5vw, 6.5rem);
    line-height: 0.98; letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 2rem; color: var(--fg);
  }
  h1.hero-title .word {
    display: inline-block; overflow: hidden; vertical-align: bottom;
  }
  h1.hero-title .word-inner {
    display: inline-block; transform: translateY(110%);
  }
  h1.hero-title .red-text {
    color: var(--red); font-family: 'PT Serif', serif;
    font-style: italic; font-weight: 400;
    text-transform: none; letter-spacing: -0.02em;
  }

  .hero-sub {
    font-family: 'PT Serif', serif;
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    color: var(--fg-dim); max-width: 580px; line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0; transform: translateY(15px);
  }
  .hero-sub em { color: var(--fg); font-style: italic; }
  .hero-sub strong { color: var(--fg); font-weight: 700; }

  .hero-cta {
    display: flex; gap: 0; opacity: 0;
    transform: translateY(15px); flex-wrap: wrap;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 1.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border-bright);
    background: var(--bg-elev); color: var(--fg);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    position: relative;
  }
  .btn:hover {
    background: var(--red); border-color: var(--red); color: var(--fg);
  }
  .btn-primary {
    background: var(--red); border-color: var(--red);
  }
  .btn-primary:hover {
    background: var(--red-bright); border-color: var(--red-bright);
  }
  .btn .arrow { transition: transform 0.2s; font-family: monospace; }
  .btn:hover .arrow { transform: translateX(4px); }

  .hero-side { position: relative; }
  .terminal {
    background: var(--bg-deep); border: 1px solid var(--border-bright);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem; line-height: 1.7; color: var(--fg-dim);
    box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.08), 0 30px 60px rgba(0,0,0,0.6);
    opacity: 0; transform: translateY(20px);
  }
  .terminal-header {
    display: flex; align-items: center; padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--border);
    font-size: 0.7rem; color: var(--fg-mute);
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .terminal-dots { display: flex; gap: 6px; margin-right: 0.75rem; }
  .terminal-dots span {
    width: 10px; height: 10px; background: var(--fg-mute);
    border-radius: 50%; opacity: 0.4;
  }
  .terminal-dots span:nth-child(1) { background: var(--red); opacity: 0.7; }
  .terminal-body { padding: 1.25rem 1rem; min-height: 300px; }
  .terminal-line { opacity: 0; }
  .terminal-prompt { color: var(--red); margin-right: 0.5rem; }
  .terminal-cmd { color: var(--fg); }
  .terminal-out { color: var(--fg-dim); padding-left: 1rem; }
  .terminal-ok { color: var(--green); }
  .terminal-warn { color: var(--red-bright); }
  .terminal-comment { color: var(--fg-mute); font-style: italic; }
  .terminal-cursor {
    display: inline-block; width: 8px; height: 1em;
    background: var(--red); vertical-align: text-bottom;
    animation: cursorBlink 1.1s steps(1) infinite; margin-left: 2px;
  }
  @keyframes cursorBlink { 50% { opacity: 0; } }

  /* DIVIDER */
  .section-divider {
    border-bottom: 1px solid var(--border); background: var(--bg-deep);
    padding: 1.25rem 2rem; overflow: hidden; position: relative; z-index: 1;
  }
  .divider-track {
    display: flex; gap: 3rem; white-space: nowrap;
    animation: scroll 60s linear infinite;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem; color: var(--fg-mute);
    letter-spacing: 0.2em; text-transform: uppercase;
  }
  .divider-track span {
    display: flex; align-items: center; gap: 3rem;
  }
  .divider-track span::after { content: '◆'; color: var(--red); }
  @keyframes scroll { to { transform: translateX(-50%); } }

  /* CLARITY BAND */
  .clarity-band {
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 2rem;
    position: relative; z-index: 1;
  }
  .clarity-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; flex-direction: column;
    gap: 1.1rem; align-items: flex-start;
  }
  .clarity-lead {
    font-family: 'PT Serif', serif; font-weight: 700;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    line-height: 1.4; color: var(--fg); max-width: 60ch;
  }
  .clarity-pillars {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 0.5rem 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.72rem, 1.05vw, 0.85rem);
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .clarity-pillars .pillar { color: var(--fg-dim); white-space: nowrap; }
  .clarity-pillars .sep { color: var(--red); }

  /* SECTIONS */
  section.content {
    position: relative; z-index: 1;
    padding: 7rem 2rem; max-width: 1400px; margin: 0 auto;
  }
  .section-header {
    display: flex; align-items: baseline; gap: 2rem;
    margin-bottom: 4rem; padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .section-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem; color: var(--red);
    letter-spacing: 0.1em; font-weight: 600;
    flex-shrink: 0; width: 80px;
  }
  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--fg-dim); flex: 1;
  }
  .section-classification {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.2em;
    color: var(--fg-mute); text-transform: uppercase;
  }
  h2 {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    line-height: 1; letter-spacing: -0.005em;
    text-transform: uppercase; color: var(--fg);
    margin-bottom: 1.5rem; max-width: 900px;
  }
  h2 .italic {
    font-family: 'PT Serif', serif; font-style: italic;
    font-weight: 400; text-transform: none;
    color: var(--red); letter-spacing: -0.02em;
  }
  .section-lead {
    font-family: 'PT Serif', serif;
    font-size: 1.15rem; color: var(--fg-dim);
    max-width: 720px; line-height: 1.7; margin-bottom: 4rem;
  }
  .section-lead em { color: var(--fg); font-style: italic; }

  /* SERVICES */
  .services {
    display: grid; grid-template-columns: 1fr;
    border-top: 1px solid var(--border);
  }
  .service {
    position: relative;
    border-bottom: 1px solid var(--border);
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 100px 1fr 1.5fr 100px;
    gap: 3rem; align-items: start;
    cursor: pointer;
    transition: background 0.3s, padding 0.3s;
  }
  .service::before {
    content: ''; position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0; background: var(--red);
    transition: width 0.3s ease;
  }
  .service:hover {
    background: rgba(255, 255, 255, 0.015);
    padding-left: 3rem;
  }
  .service:hover::before { width: 3px; }
  .service-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem; color: var(--red);
    letter-spacing: 0.1em; font-weight: 600;
  }
  .service-name {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    text-transform: uppercase; letter-spacing: -0.005em;
    line-height: 1.1; color: var(--fg);
  }
  .service:hover .service-name { color: var(--red); }
  .service-body {
    font-family: 'PT Serif', serif;
    color: var(--fg-dim); font-size: 1rem; line-height: 1.7;
  }
  .service-body strong { color: var(--fg); font-weight: 700; }
  .service-body em { color: var(--fg); font-style: italic; }
  .service-examples {
    margin-top: 1.25rem;
    display: flex; flex-wrap: wrap; gap: 0.4rem;
  }
  .service-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.05em;
    color: var(--fg-dim);
    padding: 0.3rem 0.65rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
  }
  .service-arrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem; color: var(--fg-mute);
    text-align: right; transition: color 0.3s, transform 0.3s;
  }
  .service:hover .service-arrow {
    color: var(--red); transform: translateX(8px);
  }
  @media (max-width: 900px) {
    .service { grid-template-columns: 1fr; gap: 1rem; }
    .service-arrow { display: none; }
  }

  /* AI DIFFERENTIATOR (NEW SECTION) */
  .ai-edge {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 8rem 2rem;
    position: relative; z-index: 1;
  }
  .ai-edge-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem; align-items: center;
  }
  @media (max-width: 900px) {
    .ai-edge-inner { grid-template-columns: 1fr; gap: 3rem; }
  }
  .ai-edge-body p {
    color: var(--fg-dim); font-size: 1.1rem;
    line-height: 1.8; margin-bottom: 1.5rem;
  }
  .ai-edge-body strong { color: var(--fg); font-weight: 700; }
  .ai-edge-body em { color: var(--red); font-style: italic; }

  .ai-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--border);
    border: 1px solid var(--border);
  }
  .ai-stat {
    background: var(--bg); padding: 2rem 1.75rem;
  }
  .ai-stat-num {
    font-family: 'Oswald', sans-serif;
    font-weight: 500; font-size: 2.75rem;
    line-height: 1; color: var(--red);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }
  .ai-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem; color: var(--fg-dim);
    letter-spacing: 0.1em; text-transform: uppercase;
    line-height: 1.5;
  }

  /* ABOUT */
  .about-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem; align-items: start;
  }
  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  }
  .about-text p {
    color: var(--fg-dim); font-size: 1.1rem;
    line-height: 1.8; margin-bottom: 1.5rem;
  }
  .about-text p strong { color: var(--fg); font-weight: 700; }
  .about-text p em { color: var(--red); font-style: italic; }
  .about-text p.about-pledge {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-style: italic;
  }
  .about-quote {
    border-left: 2px solid var(--red);
    padding: 0.5rem 1.5rem; margin: 2rem 0;
    font-style: italic; color: var(--fg);
    font-size: 1.15rem; line-height: 1.6;
  }
  .about-quote::before {
    content: '"';
    font-family: 'PT Serif', serif;
    font-size: 2rem; color: var(--red);
    margin-right: 0.5rem; line-height: 0; vertical-align: -0.5rem;
  }
  .spec-panel {
    background: var(--bg-deep);
    border: 1px solid var(--border-bright);
    padding: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .spec-header {
    padding: 0.75rem 1.25rem;
    background: rgba(200, 16, 46, 0.08);
    border-bottom: 1px solid var(--border-bright);
    display: flex; justify-content: space-between; align-items: center;
    color: var(--red); letter-spacing: 0.15em;
    text-transform: uppercase; font-size: 0.7rem; font-weight: 600;
  }
  .spec-header::before { content: '/// '; }
  .spec-row {
    display: flex; padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border); gap: 1rem;
  }
  .spec-row:last-child { border-bottom: none; }
  .spec-row .label {
    color: var(--fg-mute); flex: 0 0 110px;
    text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.7rem;
  }
  .spec-row .value { color: var(--fg); flex: 1; }
  .spec-row .value .accent { color: var(--red); }
  .spec-row .value .status {
    display: inline-block; width: 6px; height: 6px;
    background: var(--green); border-radius: 50%;
    margin-right: 0.5rem; vertical-align: middle;
    box-shadow: 0 0 6px var(--green);
  }

  .capabilities {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); margin-top: 3rem;
  }
  .capability {
    background: var(--bg); padding: 2rem 1.5rem;
    position: relative; transition: background 0.3s;
  }
  .capability:hover { background: var(--bg-elev); }
  .capability-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; color: var(--red);
    letter-spacing: 0.15em; margin-bottom: 1rem;
  }
  .capability-title {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    text-transform: uppercase; font-size: 1.15rem;
    letter-spacing: 0.02em; color: var(--fg); margin-bottom: 0.5rem;
  }
  .capability-desc {
    font-family: 'PT Serif', serif; font-size: 0.9rem;
    color: var(--fg-dim); line-height: 1.55;
  }
  @media (max-width: 900px) {
    .capabilities { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 500px) {
    .capabilities { grid-template-columns: 1fr; }
  }

  /* WHO WE WORK WITH (NEW SECTION) */
  .audience {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); margin-top: 3rem;
  }
  .audience-cell {
    background: var(--bg); padding: 2rem 1.5rem;
  }
  .audience-icon {
    color: var(--red); font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.15em; margin-bottom: 1rem;
  }
  .audience-title {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    text-transform: uppercase; font-size: 1.15rem;
    color: var(--fg); margin-bottom: 0.5rem;
  }
  .audience-desc {
    font-family: 'PT Serif', serif; font-size: 0.9rem;
    color: var(--fg-dim); line-height: 1.55;
  }
  @media (max-width: 900px) {
    .audience { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 500px) {
    .audience { grid-template-columns: 1fr; }
  }

  /* CONTACT */
  .contact {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 8rem 2rem;
    position: relative; z-index: 1;
  }
  .contact-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  @media (max-width: 900px) {
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  }
  .contact-meta {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px; background: var(--border);
    border: 1px solid var(--border);
  }
  .contact-cell { background: var(--bg); padding: 1.5rem; }
  .contact-cell .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; color: var(--fg-mute);
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 0.75rem; display: block;
  }
  .contact-cell .value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem; color: var(--fg); font-weight: 500;
  }
  .contact-cell a.value {
    text-decoration: none; transition: color 0.2s;
  }
  .contact-cell a.value:hover { color: var(--red); }

  .contact-form-card {
    background: var(--bg); border: 1px solid var(--border-bright);
    padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  }
  .form-label {
    display: block; font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; color: var(--fg-mute);
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .form-input, .form-textarea {
    width: 100%; background: var(--bg-deep);
    border: 1px solid var(--border); color: var(--fg);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem; padding: 0.85rem 1rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-input:focus, .form-textarea:focus {
    outline: none; border-color: var(--red); background: var(--bg);
  }
  .form-textarea {
    resize: vertical; min-height: 120px;
    font-family: 'PT Serif', serif; line-height: 1.6;
  }
  .form-submit {
    width: 100%; padding: 1.1rem;
    background: var(--red); border: 1px solid var(--red);
    color: var(--fg);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .form-submit:hover {
    background: var(--red-bright); border-color: var(--red-bright);
  }
  .form-note {
    text-align: center; font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; color: var(--fg-mute);
    margin-top: 1rem; letter-spacing: 0.05em;
  }

  /* FOOTER */
  footer {
    background: var(--bg); padding: 5rem 2rem 2rem;
    position: relative; z-index: 1;
  }
  .footer-inner { max-width: 1400px; margin: 0 auto; }
  .footer-main {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem; padding-bottom: 4rem;
    border-bottom: 1px solid var(--border); margin-bottom: 2rem;
  }
  @media (max-width: 768px) {
    .footer-main { grid-template-columns: 1fr; gap: 3rem; }
  }
  .footer-brand img { height: 60px; margin-bottom: 1rem; }
  .footer-brand p {
    color: var(--fg-dim); font-size: 0.95rem;
    max-width: 380px; line-height: 1.6;
    font-family: 'PT Serif', serif;
  }
  .footer-col h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; color: var(--red);
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 1.25rem; font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.6rem; }
  .footer-col a, .footer-col span {
    color: var(--fg-dim); text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem; transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--fg); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; color: var(--fg-mute);
    letter-spacing: 0.05em; text-transform: uppercase;
  }

  .reveal { opacity: 0; transform: translateY(25px); }

  /* Margin utilities (used in place of inline style= for strict CSP) */
  .mb-2   { margin-bottom: 2rem !important; }
  .mb-2-5 { margin-bottom: 2.5rem !important; }
  /* Honeypot — visually hidden from humans, visible to naive bots that scrape DOM */
  .hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px; height: 1px;
    overflow: hidden;
  }

  /* Turnstile widget spacing */
  .cf-turnstile { margin: 0.5rem 0 1.5rem; }

  /* Submit button states */
  .form-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

  /* Form result message */
  .form-result {
    min-height: 1.25rem;
    margin-top: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
  }
  .form-result-success { color: var(--green); }
  .form-result-error   { color: var(--red-bright); }
  /* Footer location line (replaces an inline style attribute to stay CSP-compliant) */
  .footer-location {
    margin-top: 1rem;
    color: var(--fg-mute);
    font-size: 0.85rem;
  }