:root {
    --bg: #0b0908;
    --bg-2: #141110;
    --bg-3: #1c1816;
    --fg: #f4efe9;
    --muted: #8b827a;
    --red: #d62828;
    --red-deep: #a31d1d;
    --line: rgba(244, 239, 233, 0.08);
    --line-strong: rgba(244, 239, 233, 0.14);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }

  /* ─── Accessibility: focus + skip link + reduced motion ── */
  .skip-link {
    position: absolute;
    left: 12px; top: -100px;
    z-index: 9999;
    padding: 12px 20px;
    background: var(--red);
    color: #fff;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 12px; outline: 2px solid #fff; outline-offset: 2px; }

  :focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 2px;
  }
  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 4px;
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
    .cursor, .cursor-glow { display: none !important; }
    body { cursor: auto !important; }
    a, button { cursor: pointer !important; }
  }

  /* Respect touch / no-hover devices: show system cursor */
  @media (hover: none), (pointer: coarse) {
    .cursor, .cursor-glow { display: none !important; }
    body { cursor: auto !important; }
    a, button { cursor: pointer !important; }
  }

  /* ─── Text selection highlight ────────────── */
  ::selection {
    background: var(--red);
    color: #fff;
    text-shadow: none;
  }
  ::-moz-selection {
    background: var(--red);
    color: #fff;
    text-shadow: none;
  }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
  }

  a { color: inherit; text-decoration: none; }
  button { background: none; border: none; font: inherit; color: inherit; cursor: none; }

  /* ─── Grain overlay ────────────────────────────────── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 200;
    opacity: 0.09;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg aria-hidden="true" viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  /* ─── Custom cursor ────────────────────────────────── */
  .cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
    mix-blend-mode: difference;
  }
  .cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, rgba(214,40,40,0.10) 0%, rgba(214,40,40,0) 70%);
    transform: translate(-50%, -50%);
    transition: opacity .4s;
  }
  .cursor.hover { width: 48px; height: 48px; background: transparent; border: 1px solid var(--red); }

  /* ─── Noise-enabled gradient mesh (subtle) ───────── */
  .mesh {
    position: fixed;
    inset: -20%;
    z-index: 0;
    background:
      radial-gradient(60% 50% at 80% 10%, rgba(214,40,40,0.12), transparent 60%),
      radial-gradient(50% 40% at 10% 70%, rgba(214,40,40,0.05), transparent 60%);
    pointer-events: none;
  }

  /* ─── NAV ─────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(11, 9, 8, 0.55);
    border-bottom: 1px solid var(--line);
  }

  .logo {
    display: inline-flex;
    align-items: center;
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), filter .4s;
  }
  .logo:hover { transform: scale(1.03); }
  .logo-img {
    height: 32px;
    width: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
  }

  nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  nav ul a {
    opacity: 0.65;
    transition: opacity .25s, color .25s;
    position: relative;
  }
  nav ul a::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  nav ul a:hover { opacity: 1; color: var(--red); }
  nav ul a:hover::after { transform: scaleX(1); }

  .nav-cta {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    transition: all .3s;
  }
  .nav-cta:hover { border-color: var(--red); color: var(--red); }

  /* ─── HERO ───────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    padding: 130px 40px 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 72px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
  }
  .hero-content { min-width: 0; }

  .hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 640px;
    justify-self: end;
    opacity: 0;
    transform: scale(0.95);
    animation: heroVisualIn 1.4s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes heroVisualIn {
    to { opacity: 1; transform: scale(1); }
  }
  #heroGlobe {
    width: 100%;
    height: 100%;
    display: block;
  }
  .hud-ring {
    position: absolute;
    inset: 6%;
    width: 88%;
    height: 88%;
    pointer-events: none;
    animation: rotate 120s linear infinite;
  }
  @keyframes rotate { to { transform: rotate(360deg); } }

  .hud {
    position: absolute;
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    pointer-events: none;
    z-index: 3;
  }
  .hud-tl { top: 8px;    left: 8px; }
  .hud-tr { top: 8px;    right: 8px; }
  .hud-bl { bottom: 8px; left: 8px; }
  .hud-br { bottom: 8px; right: 8px; }
  .hud .pulse-dot {
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(214, 40, 40, 0.8);
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
  }

  .hero-meta {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s .2s forwards;
  }
  .hero-meta .dot { color: var(--red); }

  .hero h1 {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 5.4vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    max-width: 20ch;
  }
  .hero h1 .line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
  }
  .hero h1 .line > span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hero h1 .line > span.in {
    opacity: 1;
    transform: translateY(0);
  }
  .hero h1 em { font-style: italic; color: var(--red); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }

  .hero-bottom {
    margin-top: 40px;
    opacity: 0;
    animation: fadeUp 1s 1s forwards;
  }
  .hero-sub {
    max-width: 460px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted);
  }
  .hero-sub strong { color: var(--fg); font-weight: 500; }

  .scroll-hint {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 12px;
    writing-mode: vertical-rl;
    position: absolute;
    right: 40px;
    bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s 1.3s forwards;
  }
  .scroll-hint .line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--red));
  }

  /* ─── DIVIDER ──────────────────────────────────── */
  .section-divider {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
  }
  .section-divider .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line-strong) 40%, var(--line-strong) 60%, transparent);
  }
  .section-divider .divider-mark {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--red);
    display: grid;
    place-items: center;
    animation: rotate 40s linear infinite;
    filter: drop-shadow(0 0 12px rgba(214, 40, 40, 0.35));
  }
  .section-divider .divider-mark svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .section-divider .divider-mark svg circle {
    transform-origin: center;
  }
  .section-divider .divider-mark svg circle:nth-child(2) {
    animation: counterRotate 20s linear infinite;
  }
  @keyframes counterRotate {
    to { transform: rotate(-360deg); }
  }

  /* ─── SECTIONS GENERAL ─────────────────────────── */
  section { position: relative; z-index: 1; }

  .section-head {
    padding: 110px 40px 50px;
    max-width: 1400px;
  }
  .section-label {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--red);
  }
  .section-title {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1;
    letter-spacing: -0.025em;
    max-width: 22ch;
  }
  .section-title em { color: var(--red); font-style: italic; }

  /* ─── SERVICES ───────────────────────────────────── */
  .services {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1px;
    background: var(--line-strong);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
  }
  .service {
    background: var(--bg);
    padding: 48px 44px 44px;
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 22px;
    overflow: hidden;
    transition: background 0.5s;
  }
  .service > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .service.in > * { opacity: 1; transform: translateY(0); }
  .service.in > *:nth-child(2) { transition-delay: 0.1s; }
  .service.in > *:nth-child(3) { transition-delay: 0.2s; }
  .service:nth-child(1) { grid-column: 1 / 7; }
  .service:nth-child(2) { grid-column: 7 / 13; }
  .service:nth-child(3) { grid-column: 1 / 7; }
  .service:nth-child(4) { grid-column: 7 / 13; }
  .service:nth-child(5) { grid-column: 1 / 7; }
  .service:nth-child(6) { grid-column: 7 / 13; }

  .service:hover { background: var(--bg-2); }

  .service-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--muted);
  }
  .service-num { color: var(--red); }

  .service h3 {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 0;
    padding-right: 80px;
  }
  .service h3 em { font-style: italic; color: var(--red); }

  .service p {
    color: var(--muted);
    margin-top: 0;
    font-size: 14.5px;
    line-height: 1.55;
    max-width: 52ch;
  }

  .service-cases {
    margin-top: 4px;
    background: rgba(214, 40, 40, 0.04);
    border-left: 2px solid var(--red);
    border-radius: 2px;
    padding: 18px 20px 18px 22px;
    max-width: 56ch;
  }
  .service-cases-label {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: block;
  }
  .service-cases ul {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
  }
  .service-cases ul li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
  }
  .service-cases ul li::marker { content: none; }
  .service-cases ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .service-cases li {
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--fg);
    opacity: 0.88;
    padding-left: 18px;
    position: relative;
  }
  .service-cases li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
  }

  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
  }
  .service-tags span {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 5px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
  }

  .service-arrow {
    position: absolute;
    bottom: 36px;
    right: 36px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: grid;
    place-items: center;
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .service-arrow svg { width: 16px; height: 16px; transition: transform .4s; }
  .service:hover .service-arrow {
    background: var(--red);
    border-color: var(--red);
  }
  .service:hover .service-arrow svg { transform: translate(2px, -2px); }

  .service::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0;
    background: var(--red);
    transition: width .6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .service:hover::before { width: 100%; }

  /* decorative for forensics card */
  .service.forensics::after {
    content: '01001110 01000101 01010100 01010111 01001111 01010010 01001011';
    position: absolute;
    top: 48px;
    right: 36px;
    font-family: 'Geist Mono', monospace;
    font-size: 9px;
    color: rgba(214, 40, 40, 0.35);
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
    opacity: 0;
    transition: opacity .5s;
  }
  .service.forensics:hover::after { opacity: 1; }

  /* ─── CLIENTS ────────────────────────────────────── */
  .clients {
    padding: 0 40px 100px;
  }
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line-strong);
  }
  .client {
    padding: 60px 40px 60px 0;
    border-right: 1px solid var(--line-strong);
    position: relative;
  }
  .client:last-child { border-right: none; padding-right: 0; }
  .client:not(:first-child) { padding-left: 40px; }

  .client-num {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 20px;
  }
  .client h4 {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .client h4 em { font-style: italic; color: var(--red); }
  .client p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    max-width: 36ch;
  }

  /* ─── APPROACH / STATEMENT ───────────────────────── */
  .approach {
    padding: 100px 40px 110px;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .approach::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 1px;
    height: 80px;
    background: var(--red);
  }
  .approach-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .approach .label {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    text-align: center;
    margin-bottom: 40px;
  }
  .approach-statement {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
  }
  .approach-statement em { color: var(--red); font-style: italic; }
  .approach-statement .fade {
    color: var(--muted);
  }

  .pillars {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--line);
  }
  .pillar {
    background: var(--bg-2);
    padding: 32px 24px;
  }
  .pillar-num {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 16px;
  }
  .pillar h5 {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }
  .pillar p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
  }

  /* ─── CONTACT ────────────────────────────────────── */
  .contact {
    padding: 110px 40px 60px;
    text-align: center;
  }
  .contact .label {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 28px;
  }
  .contact h2 {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(44px, 5.8vw, 74px);
    line-height: 0.95;
    letter-spacing: -0.03em;
  }
  .contact h2 em { color: var(--red); font-style: italic; }
  .contact-mail {
    display: inline-block;
    margin-top: 60px;
    font-family: 'Geist', sans-serif;
    font-style: italic;
    font-size: clamp(28px, 3.5vw, 48px);
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 8px;
    transition: all .35s;
  }
  .contact-mail:hover { color: var(--red); border-color: var(--red); }

  .contact-meta {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .contact-meta span strong { display: block; color: var(--fg); margin-bottom: 4px; font-weight: 500; }

  /* ─── FOOTER ─────────────────────────────────────── */
  footer {
    padding: 40px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 16px;
  }
  footer a:hover { color: var(--red); }
  footer .dot { color: var(--red); margin: 0 10px; }

  /* ─── Scroll Progress Bar ────────────────────── */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--red) 0%, var(--red-deep) 100%);
    z-index: 999;
    box-shadow: 0 0 12px rgba(214, 40, 40, 0.5);
    transition: width 0.1s linear;
  }

  /* ─── Scramble text decode ───────────────────── */
  [data-scramble] { display: inline-block; }

  /* ─── Approach word reveal ───────────────────── */
  .approach-statement .word {
    display: inline-block;
    opacity: 0.15;
    transition: opacity 0.4s ease, color 0.4s ease;
    margin-right: 0.18em;
  }
  .approach-statement .word.em-word { color: inherit; }
  .approach-statement .word.lit { opacity: 1; }

  /* ─── Generic scroll reveal ──────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal[data-delay="1"] { transition-delay: 0.1s; }
  .reveal[data-delay="2"] { transition-delay: 0.2s; }
  .reveal[data-delay="3"] { transition-delay: 0.3s; }
  .reveal[data-delay="4"] { transition-delay: 0.4s; }

  /* ─── Service 3D tilt ────────────────────────── */
  .service {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
  }

  /* ─── Ticker hover pause ─────────────────────── */
  /* ─── Ticker hover pause (removed) ─────────── */

  /* ─── Magnetic element ───────────────────────── */
  .magnet {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  /* ─── Contact headline reveal ────────────────── */
  .contact h2 .line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.05em;
  }
  .contact h2 .line > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .contact.in h2 .line:nth-child(1) > span { transform: translateY(0); transition-delay: 0.1s; }
  .contact.in h2 .line:nth-child(2) > span { transform: translateY(0); transition-delay: 0.25s; }

  /* ─── Hero parallax ──────────────────────────── */
  .hero-inner { will-change: transform; }

  /* ─── Threat feed inside hero visual ───────── */
  .threat-feed {
    position: absolute;
    left: 8px;
    bottom: 40px;
    width: min(240px, 45%);
    font-family: 'Geist Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.04em;
    line-height: 1.6;
    color: var(--muted);
    pointer-events: none;
    z-index: 4;
    max-height: 110px;
    overflow: hidden;
    mask-image: linear-gradient(to top, #000 60%, transparent);
    -webkit-mask-image: linear-gradient(to top, #000 60%, transparent);
  }
  .threat-feed .tf-line {
    opacity: 0;
    transform: translateY(6px);
    animation: tfIn .4s forwards;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .threat-feed .tf-line.alert { color: var(--red); }
  .threat-feed .tf-line.ok { color: #8aa992; }
  .threat-feed .tf-line .ts { color: rgba(244,239,233,0.35); margin-right: 6px; }
  @keyframes tfIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── Service animated icons ─────────────── */
  .service-icon {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 48px;
    right: 36px;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity .4s, transform .4s;
  }
  .service:hover .service-icon { opacity: 1; }
  .service-icon svg { width: 100%; height: 100%; display: block; }
  .service-icon svg * { transform-origin: center; }

  .ico-scan .scan-line { animation: scanSweep 2.2s ease-in-out infinite; }
  @keyframes scanSweep {
    0%, 100% { transform: translateY(-16px); opacity: 0; }
    15%, 85% { opacity: 1; }
    50% { transform: translateY(16px); opacity: 1; }
  }
  .ico-scan .target-ring {
    animation: ringPulse 2.2s ease-in-out infinite;
  }
  @keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }

  .ico-code .bracket-l { animation: codeL 2.4s cubic-bezier(.4,0,.2,1) infinite; }
  .ico-code .bracket-r { animation: codeR 2.4s cubic-bezier(.4,0,.2,1) infinite; }
  @keyframes codeL { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-3px); } }
  @keyframes codeR { 0%,100% { transform: translateX(0); } 50% { transform: translateX(3px); } }
  .ico-code .cursor-line { animation: cursorBlink 1s steps(2) infinite; }
  @keyframes cursorBlink { 50% { opacity: 0; } }

  .ico-server .rack-led { animation: ledBlink 1.6s ease-in-out infinite; }
  .ico-server .rack-led:nth-child(2) { animation-delay: .3s; }
  .ico-server .rack-led:nth-child(3) { animation-delay: .6s; }
  @keyframes ledBlink {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
  }

  .ico-forensic .magnifier { animation: forensicMove 4s cubic-bezier(.4,0,.2,1) infinite; }
  @keyframes forensicMove {
    0%, 100% { transform: translate(-4px, -4px); }
    33% { transform: translate(3px, 2px); }
    66% { transform: translate(-2px, 3px); }
  }
  .ico-forensic .hit-mark { animation: hitBlink 4s steps(1) infinite; }
  @keyframes hitBlink {
    0%, 45%, 100% { opacity: 0; }
    50%, 60% { opacity: 1; }
  }

  .ico-web .browser-line { animation: browserType 3s cubic-bezier(.4,0,.2,1) infinite; transform-origin: left; }
  @keyframes browserType {
    0%, 100% { transform: scaleX(0.2); }
    50% { transform: scaleX(1); }
  }

  .ico-design .design-shape { animation: designPulse 3.6s cubic-bezier(.4,0,.2,1) infinite; transform-origin: center; transform-box: fill-box; }
  @keyframes designPulse {
    0%, 100% { opacity: .35; transform: scale(.85); }
    50% { opacity: 1; transform: scale(1); }
  }

  @media (max-width: 720px) {
    .service-icon { width: 40px; height: 40px; top: 36px; right: 22px; }
  }

  /* ─── Terminal / Log stream section ─────── */
  .terminal-wrap {
    padding: 20px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .terminal {
    background: #08070b;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    overflow: hidden;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    position: relative;
    box-shadow: 0 30px 80px -30px rgba(214, 40, 40, 0.25);
  }
  .terminal-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.02);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .terminal-bar .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(244,239,233,0.2);
  }
  .terminal-bar .dot.red { background: var(--red); box-shadow: 0 0 8px var(--red); }
  .terminal-bar .title { margin-left: auto; }
  .terminal-body {
    padding: 22px 22px 26px;
    max-height: 420px;
    overflow-y: auto;
    scroll-behavior: smooth;
    line-height: 1.75;
    color: var(--fg);
  }
  .terminal-body::-webkit-scrollbar { width: 8px; }
  .terminal-body::-webkit-scrollbar-track { background: transparent; }
  .terminal-body::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
  .terminal-body .ln { display: block; white-space: pre-wrap; }
  .terminal-body .prompt { color: var(--red); }
  .terminal-body .dim { color: var(--muted); }
  .terminal-body .ok { color: #8aa992; }
  .terminal-body .warn { color: #d19a3a; }
  .terminal-body .hit { color: var(--red); }
  .terminal-caret {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--red);
    vertical-align: text-bottom;
    margin-left: 2px;
    animation: caretBlink 1s steps(2) infinite;
  }
  @keyframes caretBlink { 50% { opacity: 0; } }

  @media (max-width: 720px) {
    .terminal-wrap { padding: 10px 20px 70px; }
    .terminal-body { padding: 16px 14px 20px; min-height: 240px; font-size: 11px; }
    .terminal-bar { padding: 10px 12px; font-size: 9px; }
  }

  /* ─── Press / TV appearances ──────────────── */
  .press {
    padding: 0 40px 100px;
  }
  .press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-strong);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
  }
  .press-card {
    background: var(--bg);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: background .5s;
  }
  .press-card:hover { background: var(--bg-2); }
  .press-card::before {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    height: 1px; width: 0;
    background: var(--red);
    transition: width .6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .press-card:hover::before { width: 100%; }

  .press-thumb {
    aspect-ratio: 16/9;
    background: #0a0809;
    border: 1px solid var(--line-strong);
    position: relative;
    overflow: hidden;
  }
  .press-thumb::before {
    content: '';
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(0deg, rgba(214,40,40,0.04) 0, rgba(214,40,40,0.04) 1px, transparent 1px, transparent 3px);
  }
  .press-thumb-inner {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(214,40,40,0.55);
    transition: color .3s, transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .press-card:hover .press-thumb-inner { color: var(--red); transform: scale(1.04); }
  .press-thumb-inner svg { width: 42px; height: 42px; }
  .press-thumb-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.15) contrast(1.05) brightness(0.92);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), filter .4s;
    z-index: 0;
  }
  .press-thumb-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.55) 100%),
                radial-gradient(circle at 70% 40%, transparent 40%, rgba(214,40,40,0.12) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .press-card:hover .press-thumb-img img {
    transform: scale(1.06);
    filter: grayscale(0) contrast(1.1) brightness(1);
  }
  .press-live {
    position: absolute;
    top: 10px; left: 10px;
    font-family: 'Geist Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(11,9,8,0.8);
    border: 1px solid rgba(214,40,40,0.4);
    border-radius: 2px;
    z-index: 2;
  }
  .press-live::before {
    content: '';
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--red);
    animation: pulse 1.2s ease-in-out infinite;
    box-shadow: 0 0 6px var(--red);
  }
  .press-duration {
    position: absolute;
    bottom: 10px; right: 10px;
    font-family: 'Geist Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--fg);
    padding: 3px 6px;
    background: rgba(11,9,8,0.8);
    border-radius: 2px;
    z-index: 2;
  }
  .press-channel {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .press-channel .bar {
    flex: 1; height: 1px; background: var(--line-strong);
  }
  .press-card h4 {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .press-card h4 em { font-style: italic; color: var(--red); }
  .press-card p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.55;
  }
  .press-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .press-meta .watch { color: var(--red); }

  .press-quote {
    margin-top: 60px;
    padding: 48px 40px;
    border: 1px solid var(--line-strong);
    position: relative;
    background: linear-gradient(90deg, rgba(214,40,40,0.04), transparent 60%);
  }
  .press-quote-mark {
    position: absolute;
    top: -20px; left: 30px;
    font-family: 'Geist', serif;
    font-style: italic;
    font-size: 80px;
    line-height: 1;
    color: var(--red);
    background: var(--bg);
    padding: 0 12px;
  }
  .press-quote p {
    font-family: 'Geist', sans-serif;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.4;
    letter-spacing: -0.01em;
    max-width: 70ch;
  }
  .press-quote cite {
    display: block;
    margin-top: 20px;
    font-family: 'Geist Mono', monospace;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  @media (max-width: 1024px) {
    .press { padding: 0 24px 70px; }
    .press-grid { grid-template-columns: repeat(2, 1fr); }
    .press-card:nth-child(3) { grid-column: 1 / -1; }
    .press-quote { padding: 36px 28px; margin-top: 44px; }
  }
  @media (max-width: 720px) {
    .press { padding: 0 20px 56px; }
    .press-grid { grid-template-columns: 1fr; }
    .press-card:nth-child(3) { grid-column: auto; }
    .press-card { padding: 24px 22px; }
    .press-card h4 { font-size: 19px; }
    .press-quote { padding: 28px 22px; margin-top: 36px; }
    .press-quote-mark { font-size: 60px; top: -16px; left: 18px; }
  }

  /* ─── Burger menu ─────────────────────────────── */
  .nav-burger {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 60;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .nav-burger span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 1.5px;
    background: var(--fg);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-burger span:nth-child(1) { top: 14px; }
  .nav-burger span:nth-child(2) { top: 21.5px; width: 16px; }
  .nav-burger span:nth-child(3) { top: 27px; }
  .nav-burger.active span { background: var(--red); }
  .nav-burger.active span:nth-child(1) { top: 21.5px; transform: rotate(45deg); }
  .nav-burger.active span:nth-child(2) { opacity: 0; }
  .nav-burger.active span:nth-child(3) { top: 21.5px; width: 24px; transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 55;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(40% 30% at 50% 20%, rgba(214,40,40,0.14), transparent 70%),
      radial-gradient(50% 40% at 50% 90%, rgba(214,40,40,0.06), transparent 70%);
    pointer-events: none;
  }
  .mobile-menu.active { opacity: 1; pointer-events: all; }
  .mobile-menu ul {
    list-style: none;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .mobile-menu ul li { overflow: hidden; padding: 4px 0; }
  .mobile-menu ul a {
    font-family: 'Geist', sans-serif;
    font-size: clamp(40px, 10vw, 68px);
    font-style: italic;
    line-height: 1.3;
    letter-spacing: -0.02em;
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
  }
  .mobile-menu.active ul a { transform: translateY(0); }
  .mobile-menu.active ul li:nth-child(1) a { transition-delay: 0.15s; }
  .mobile-menu.active ul li:nth-child(2) a { transition-delay: 0.22s; }
  .mobile-menu.active ul li:nth-child(3) a { transition-delay: 0.29s; }
  .mobile-menu.active ul li:nth-child(4) a { transition-delay: 0.36s; }
  .mobile-menu ul a:hover,
  .mobile-menu ul a:active { color: var(--red); }
  .mobile-menu-mail {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 10px 20px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.5s 0.6s, color 0.3s, border-color 0.3s;
    position: relative;
    z-index: 2;
  }
  .mobile-menu.active .mobile-menu-mail { opacity: 1; }
  .mobile-menu-mail:hover { color: var(--red); border-color: var(--red); }

  /* ─── Responsive ─────────────────────────────────── */

  /* Large desktop → Tablet landscape */
  @media (max-width: 1200px) {
    nav { padding: 16px 28px; }
    .hero { padding: 130px 28px 60px; }
    .section-head { padding: 90px 28px 40px; }
    .clients { padding: 0 28px 80px; }
    .approach { padding: 80px 28px 90px; }
    .contact { padding: 90px 28px 50px; }
    footer { padding: 36px 28px; }
  }

  /* Tablet — switch to 2-col services, burger menu */
  @media (max-width: 1024px) {
    body { cursor: auto; }
    button, a { cursor: pointer !important; }
    .cursor, .cursor-glow { display: none; }

    nav { padding: 16px 24px; }
    nav ul { display: none; }
    .nav-cta { display: none; }
    .nav-burger { display: block; }

    /* Services: 2-col grid */
    .services {
      grid-template-columns: repeat(2, 1fr);
    }
    .service { grid-column: auto !important; min-height: 380px; padding: 40px 32px; }

    /* Hero */
    .hero { padding: 110px 24px 60px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 560px; justify-self: center; margin: 10px auto 0; }
    .hero h1 { font-size: clamp(44px, 7.2vw, 76px); }
    .hud { font-size: 9px; }

    /* Sections */
    .section-head { padding: 80px 24px 36px; }
    .section-title { font-size: clamp(36px, 5vw, 54px); }

    /* Clients stay 3-col but tighter */
    .clients { padding: 0 24px 70px; }
    .client { padding: 40px 24px 40px 0; }
    .client:not(:first-child) { padding-left: 24px; }
    .client h4 { font-size: clamp(26px, 4vw, 36px); }

    /* Approach */
    .approach { padding: 70px 24px 80px; }
    .approach-statement { font-size: clamp(26px, 4vw, 44px); }
    .pillars { grid-template-columns: repeat(2, 1fr); margin-top: 64px; }

    /* Contact */
    .contact { padding: 80px 24px 40px; }
    .contact h2 { font-size: clamp(44px, 6.5vw, 68px); }

    /* Footer */
    footer { padding: 32px 24px; font-size: 9px; }

    /* Ticker */
    /* Divider */
    .section-divider { padding: 0 24px; gap: 20px; }
    .section-divider .divider-mark { width: 32px; height: 32px; }

    /* Scroll hint hidden on tablet */
    .scroll-hint { display: none; }
  }

  /* Mobile — single column, tighter everything */
  @media (max-width: 720px) {
    nav { padding: 14px 20px; }

    /* Hero */
    .hero { padding: 120px 20px 48px; min-height: auto; }
    .hero-grid { gap: 32px; }
    .hero-visual { max-width: 420px; margin-top: 8px; }
    .hero h1 {
      font-size: clamp(40px, 9vw, 64px);
      letter-spacing: -0.025em;
      line-height: 1.02;
    }
    .hero-bottom { margin-top: 28px; }
    .hero-sub { font-size: 15px; line-height: 1.55; max-width: 100%; }

    /* Services: single column */
    .services { grid-template-columns: 1fr; }
    .service,
    .service:nth-child(5) { grid-column: 1 / -1 !important; }
    .service { min-height: auto; padding: 36px 22px 30px; }
    .service h3 {
      font-size: clamp(26px, 7.5vw, 36px);
      margin-top: 0;
      padding-right: 60px;
      min-height: 0; /* on mobile single-column we don't need the equalizer */
    }
    .service p { font-size: 14px; margin-top: 14px; }
    .service-cases { margin-top: 28px; padding: 14px 16px 14px 18px; }
    .service-cases-label { font-size: 9px; margin-bottom: 10px; letter-spacing: 0.2em; }
    .service-cases ul { gap: 8px; }
    .service-cases li { font-size: 13px; }
    .service-tags { margin-top: 22px; gap: 5px; }
    .service-tags span { font-size: 9px; padding: 4px 8px; letter-spacing: 0.08em; }
    .service-arrow { width: 40px; height: 40px; bottom: 28px; right: 24px; }
    .service.forensics::after { display: none; }

    /* Sections */
    .section-head { padding: 64px 20px 28px; }
    .section-label { font-size: 10px; margin-bottom: 18px; letter-spacing: 0.18em; }
    .section-title { font-size: clamp(36px, 9.5vw, 56px); }

    /* Clients: single column */
    .clients { padding: 0 20px 56px; }
    .clients-grid { grid-template-columns: 1fr; }
    .client {
      border-right: none;
      border-bottom: 1px solid var(--line-strong);
      padding: 36px 0 !important;
    }
    .client:last-child { border-bottom: none; }
    .client h4 { font-size: clamp(28px, 7.5vw, 40px); }
    .client p { font-size: 14px; }

    /* Approach */
    .approach { padding: 56px 20px 64px; }
    .approach-statement {
      font-size: clamp(24px, 6vw, 36px);
      line-height: 1.25;
    }
    .pillars { grid-template-columns: 1fr; gap: 1px; margin-top: 44px; }
    .pillar { padding: 26px 22px; }
    .pillar h5 { font-size: 24px; }
    .pillar p { font-size: 13.5px; }

    /* Contact */
    .contact { padding: 64px 20px 40px; }
    .contact h2 { font-size: clamp(38px, 11vw, 76px); line-height: 0.95; letter-spacing: -0.035em; }
    .contact h2 .line > span { white-space: normal; max-width: 100%; }
    .contact-mail {
      font-size: clamp(22px, 6vw, 32px);
      margin-top: 40px;
    }
    .contact-meta {
      margin-top: 60px;
      gap: 24px 36px;
      font-size: 10px;
    }

    /* Footer */
    footer {
      padding: 28px 20px;
      flex-direction: column;
      text-align: center;
      gap: 14px;
      font-size: 9px;
    }

    /* Ticker */
    /* Divider */
    .section-divider { padding: 0 20px; gap: 16px; }
    .section-divider .divider-mark { width: 28px; height: 28px; }
  }

  /* Small mobile — extra tight */
  @media (max-width: 420px) {
    .hero { padding: 110px 18px 40px; }
    .hero-visual { max-width: 340px; }
    .hero h1 { font-size: clamp(34px, 8.6vw, 46px); }
    .hud { font-size: 8.5px; letter-spacing: 0.12em; }
    .section-head { padding: 70px 18px 32px; }
    .section-title { font-size: clamp(30px, 9.5vw, 44px); }
    .service { padding: 32px 20px 28px; }
    .service h3 { font-size: clamp(24px, 8vw, 32px); margin-top: 0; }
    .clients { padding: 0 18px 72px; }
    .client h4 { font-size: clamp(26px, 8vw, 36px); }
    .approach { padding: 60px 18px 80px; }
    .approach-statement { font-size: clamp(22px, 6.2vw, 32px); }
    .contact { padding: 72px 18px 36px; }
    .contact h2 { font-size: clamp(32px, 11vw, 56px); }
    footer { padding: 24px 18px; }
  }
  /* ─── Cookie Banner ─────────────────────────── */
  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(20, 17, 16, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 239, 233, 0.12);
    border-left: 2px solid var(--red);
    border-radius: 3px;
    z-index: 1000;
    padding: 20px 24px 22px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .cookie-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
  }
  .cookie-banner-label {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 7px;
  }
  .cookie-banner p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--fg);
    opacity: 0.9;
    margin: 0;
    max-width: 52ch;
  }
  .cookie-banner p strong { font-weight: 500; opacity: 1; }
  .cookie-banner p a {
    color: var(--red);
    text-decoration: underline;
    text-decoration-color: rgba(214, 40, 40, 0.45);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.25s;
  }
  .cookie-banner p a:hover { text-decoration-color: var(--red); }

  .cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }
  .cookie-btn {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    background: transparent;
    color: var(--fg);
  }
  .cookie-btn-reject {
    border: 1px solid rgba(244, 239, 233, 0.18);
  }
  .cookie-btn-reject:hover {
    border-color: var(--fg);
    color: var(--fg);
  }
  .cookie-btn-accept {
    background: var(--red);
    border: 1px solid var(--red);
    color: #fff;
  }
  .cookie-btn-accept:hover {
    background: #b01e1e;
    border-color: #b01e1e;
  }

  @media (max-width: 720px) {
    .cookie-banner {
      left: 12px;
      right: 12px;
      bottom: 12px;
      padding: 18px 20px 20px;
    }
    .cookie-banner-inner {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .cookie-banner p { font-size: 13px; max-width: 100%; }
    .cookie-banner-actions {
      flex-direction: row-reverse;
      gap: 8px;
      width: 100%;
    }
    .cookie-btn { flex: 1; padding: 12px 18px; text-align: center; }
  }

  /* ─── Live Ops: hide on mobile (layout-breaking terminal) ─── */
  @media (max-width: 720px) {
    .live-ops-section { display: none; }
  }

  /* ─── Mobile: Services als horizontaler Slider ───────── */
  @media (max-width: 720px) {
    .services {
      display: flex !important;
      flex-direction: row !important;
      grid-template-columns: none !important;
      gap: 14px !important;
      background: transparent !important;
      border-top: none !important;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
      scroll-padding: 20px;
      padding: 0 20px;
      margin: 0 -20px;
      scrollbar-width: none;
      touch-action: pan-x pan-y;
    }
    .services::-webkit-scrollbar { display: none; }

    .services .service,
    .services .service:nth-child(5) {
      grid-column: auto !important;
      flex: 0 0 calc(100vw - 40px);
      scroll-snap-align: center;
      min-height: auto;
    }

    /* Scroll-Hint: subtile Andeutung dass rechts mehr kommt */
    .services::after {
      content: '';
      flex: 0 0 20px;
    }
  }

  /* ─── Mobile: Press als horizontaler Slider ──────────── */
  @media (max-width: 720px) {
    .press-grid {
      display: flex !important;
      grid-template-columns: none !important;
      gap: 16px !important;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
      padding: 0 20px;
      margin: 0 -20px;
      scrollbar-width: none;
      touch-action: pan-x pan-y;
    }
    .press-grid::-webkit-scrollbar { display: none; }

    .press-grid .press-card,
    .press-grid .press-card:nth-child(3) {
      grid-column: auto !important;
      flex: 0 0 calc(100vw - 40px);
      scroll-snap-align: center;
    }

    .press-grid::after {
      content: '';
      flex: 0 0 4px;
    }

    /* Press-Quote bleibt full-width, nicht im Slider */
    .press-quote {
      margin-left: 0;
      margin-right: 0;
    }
  }

  /* ─── Slider Pagination Dots ───────────────────────── */
  .slider-dots {
    display: none;
  }

  @media (max-width: 720px) {
    .slider-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 22px 20px 8px;
      max-width: 100vw;
      margin: 0 auto;
    }
    .slider-dots .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(244, 239, 233, 0.18);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      flex-shrink: 0;
    }
    .slider-dots .dot.active {
      background: var(--red);
      width: 22px;
      border-radius: 4px;
    }
  }

  /* ═══════════════════════════════════════════════
     ACCESSIBILITY WIDGET
     ═══════════════════════════════════════════════ */

  /* Toggle button — bottom left, fixed */
  .a11y-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(214, 40, 40, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.25s;
  }
  .a11y-toggle:hover,
  .a11y-toggle:focus-visible {
    transform: scale(1.08);
    background: #b01e1e;
    outline: none;
  }
  .a11y-toggle:focus-visible {
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--red);
  }

  /* Panel */
  .a11y-panel {
    position: fixed;
    bottom: 88px;
    left: 20px;
    width: 320px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: rgba(20, 17, 16, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 239, 233, 0.12);
    border-left: 2px solid var(--red);
    border-radius: 3px;
    z-index: 998;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .a11y-panel.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .a11y-panel-header {
    padding: 20px 22px 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(244, 239, 233, 0.08);
  }
  .a11y-panel-label {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .a11y-panel-header h3 {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--fg);
    margin: 0;
    letter-spacing: -0.01em;
  }
  .a11y-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
  }
  .a11y-close:hover,
  .a11y-close:focus-visible {
    color: var(--fg);
    outline: none;
  }

  .a11y-panel-body {
    padding: 18px 22px 22px;
  }
  .a11y-group {
    margin-bottom: 18px;
  }
  .a11y-group-label {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .a11y-btn-row {
    display: flex;
    gap: 6px;
  }
  .a11y-btn {
    flex: 1;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 9px 8px;
    border-radius: 2px;
    background: rgba(244, 239, 233, 0.04);
    border: 1px solid rgba(244, 239, 233, 0.12);
    color: var(--fg);
    cursor: pointer;
    transition: all 0.18s;
  }
  .a11y-btn:hover,
  .a11y-btn:focus-visible {
    border-color: rgba(244, 239, 233, 0.3);
    background: rgba(244, 239, 233, 0.07);
    outline: none;
  }
  .a11y-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
  }

  .a11y-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--fg);
    cursor: pointer;
    user-select: none;
  }
  .a11y-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--red);
    cursor: pointer;
    flex-shrink: 0;
  }

  .a11y-reset {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(244, 239, 233, 0.15);
    border-radius: 2px;
    color: var(--muted);
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
  }
  .a11y-reset:hover,
  .a11y-reset:focus-visible {
    color: var(--fg);
    border-color: var(--fg);
    outline: none;
  }
  .a11y-note {
    margin-top: 16px;
    font-size: 11px;
    line-height: 1.5;
    color: var(--muted);
    opacity: 0.7;
  }

  /* ═══════════════════════════════════════════════
     ACCESSIBILITY STATE CLASSES — applied to <html>
     ═══════════════════════════════════════════════ */

  /* Font size — use zoom to scale ALL text (incl. fixed px values) */
  html.a11y-font-large { zoom: 1.15; }
  html.a11y-font-xlarge { zoom: 1.30; }

  /* High contrast — pure black/white, stronger red */
  html.a11y-high-contrast {
    --bg: #000000;
    --bg-2: #0a0a0a;
    --fg: #ffffff;
    --muted: #d0d0d0;
    --red: #ff3030;
    --red-deep: #cc0000;
    --line: rgba(255, 255, 255, 0.2);
    --line-strong: rgba(255, 255, 255, 0.35);
  }
  html.a11y-high-contrast body,
  html.a11y-high-contrast .section-title,
  html.a11y-high-contrast .hero h1,
  html.a11y-high-contrast .service h3 {
    color: #ffffff !important;
  }
  html.a11y-high-contrast .hero p,
  html.a11y-high-contrast .service p,
  html.a11y-high-contrast .client p {
    color: #e5e5e5 !important;
  }

  /* Underline all content links */
  html.a11y-underline-links main a,
  html.a11y-underline-links footer a {
    text-decoration: underline !important;
    text-decoration-thickness: 1.5px !important;
    text-underline-offset: 3px !important;
  }

  /* Readable font — override Geist with system sans that many prefer */
  html.a11y-readable-font,
  html.a11y-readable-font body,
  html.a11y-readable-font h1,
  html.a11y-readable-font h2,
  html.a11y-readable-font h3,
  html.a11y-readable-font h4,
  html.a11y-readable-font p,
  html.a11y-readable-font a,
  html.a11y-readable-font li,
  html.a11y-readable-font span:not(.line):not([class*="icon"]) {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    letter-spacing: 0 !important;
    line-height: 1.6 !important;
  }
  html.a11y-readable-font em { font-style: normal !important; font-weight: 600 !important; }

  /* Reduce motion — disables all animations */
  html.a11y-reduce-motion *,
  html.a11y-reduce-motion *::before,
  html.a11y-reduce-motion *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  html.a11y-reduce-motion .reveal,
  html.a11y-reduce-motion .reveal > *,
  html.a11y-reduce-motion .hero h1 .line > span,
  html.a11y-reduce-motion .service > * {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Hide decorative animated elements */
  html.a11y-reduce-motion #heroGlobe,
  html.a11y-reduce-motion .divider-mark,
  html.a11y-reduce-motion .terminal {
    display: none !important;
  }

  /* Large cursor — hides custom cursor, uses big native cursor */
  html.a11y-large-cursor,
  html.a11y-large-cursor * {
    cursor: auto !important;
  }
  html.a11y-large-cursor .cursor,
  html.a11y-large-cursor .cursor-dot {
    display: none !important;
  }
  html.a11y-large-cursor a,
  html.a11y-large-cursor button {
    cursor: pointer !important;
  }

  /* Mobile adjustments for the widget itself */
  @media (max-width: 720px) {
    .a11y-toggle {
      bottom: 16px;
      left: 16px;
      width: 48px;
      height: 48px;
    }
    .a11y-panel {
      bottom: 76px;
      left: 16px;
      right: 16px;
      width: auto;
      max-width: none;
    }
  }

  /* ═══════════════════════════════════════════════
     MOBILE POLISH — sammel-fixes
     ═══════════════════════════════════════════════ */
  @media (max-width: 720px) {
    /* Section-label auf Mobile lesbarer */
    .section-label { font-size: 11px; letter-spacing: 0.2em; }

    /* Service-Card Content: bessere Lesbarkeit */
    .service h3 { font-size: clamp(24px, 6.8vw, 32px); line-height: 1.1; }
    .service p { font-size: 14.5px; line-height: 1.55; }

    /* Service-Cases padding etwas luftiger */
    .service-cases { margin-top: 20px; padding: 14px 16px 14px 18px; }
    .service-cases li { font-size: 13.5px; line-height: 1.5; padding-left: 18px; }

    /* Press-Cards: Titel etwas kleiner, Text komfortabler */
    .press-card h4 { font-size: 18px; line-height: 1.2; }
    .press-card p { font-size: 14px; line-height: 1.55; }

    /* Tap-Targets: "Ansehen →" Link mindestens 44px Tap-Höhe (iOS Standard) */
    .press-meta .watch {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      padding: 6px 0;
    }

    /* Contact E-Mail-Link: größerer Tap-Bereich */
    .contact-mail {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      padding: 8px 0;
      word-break: break-word;
    }

    /* Hero: enger am Viewport-Rand, weniger Padding oben */
    .hero { padding: 100px 20px 40px; }

    /* Hero-Canvas: deutlich kleiner auf Mobile — spart Battery */
    .hero-visual { max-width: 360px; opacity: 0.85; }

    /* Pillars: Grid-Rahmen weg auf Mobile, dunkler Hintergrund statt Grid-Linien */
    .pillars {
      background: transparent !important;
      border: none !important;
    }
    .pillar {
      background: var(--bg-2);
      border-bottom: 1px solid var(--line);
    }
    .pillar:last-child { border-bottom: none; }

    /* A11y-Button: weiter oben, damit Browser-UI (iOS Safari Bottom-Bar) nicht überlappt */
    .a11y-toggle {
      bottom: 20px;
      left: 16px;
      width: 46px;
      height: 46px;
    }
    .a11y-toggle svg { width: 22px; height: 22px; }

    /* Cookie-Banner: mehr Luft zum a11y-Button wenn beide sichtbar */
    .cookie-banner {
      left: 12px;
      right: 12px;
      bottom: 80px;
    }

    /* Mobile-Menu-Links: größere Tap-Targets */
    .mobile-menu ul a {
      min-height: 48px;
      display: flex;
      align-items: center;
    }

    /* Footer: Links mehr Abstand für Tap-Genauigkeit */
    footer a {
      display: inline-block;
      padding: 6px 2px;
      min-height: 36px;
    }
    footer .dot { display: inline-block; padding: 0 4px; }

    /* Divider: weniger space */
    .section-divider { padding: 40px 20px; }

    /* Smooth-Scroll komplett deaktivieren auf Mobile — bessere Performance */
    html { scroll-behavior: auto; }
  }

  /* Sehr kleine Screens (< 380px) — extra-tight */
  @media (max-width: 380px) {
    .hero h1 { font-size: 34px; }
    .section-title { font-size: 30px; }
    .contact h2 { font-size: 32px; }
    .a11y-toggle { bottom: 16px; left: 12px; width: 44px; height: 44px; }
    .a11y-toggle svg { width: 20px; height: 20px; }
  }

  /* ═══════════════════════════════════════════════
     DESKTOP POLISH — Container-Breite & ultra-wide Fix
     ═══════════════════════════════════════════════ */

  /* Max-Breite aller Sections — verhindert full-bleed auf >1440px Monitoren */
  @media (min-width: 721px) {
    .section-head,
    .services,
    .clients,
    .press,
    .contact,
    .live-ops-section {
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Footer: auch zentriert */
    footer {
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Nav bleibt full-width für den dunklen Header-Hintergrund,
       aber inhaltlich auf 1400px zentriert */
    nav {
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
  }

  /* Auf ULTRA-wide (>1600px) zusätzlich etwas Luft an den Seiten */
  @media (min-width: 1600px) {
    body {
      background: var(--bg);
    }
    /* Subtiler vertikaler Trenner an den Seiten bei sehr breiten Viewports */
  }

  /* ─── Mittleres Desktop (1024–1400px): Gap-Verhältnisse ───── */
  @media (min-width: 1025px) and (max-width: 1400px) {
    /* Hero etwas tighter bei kleineren Desktops */
    .hero { padding-top: 120px; }
  }

  /* ─── Sehr breite Desktops: Text und Cards füllen noch angenehm ───── */
  @media (min-width: 1440px) {
    /* Service-Cards dürfen bei viel Platz auch großzügiger werden */
    .service {
      padding: 44px 40px 44px;
    }
    .service p {
      max-width: 44ch;
    }
    /* Section-titles dürfen etwas größer werden bei viel Platz */
    .section-title {
      font-size: clamp(44px, 3.8vw, 64px);
    }
    /* Hero h1 wird bei sehr breitem Screen dominanter */
    .hero h1 {
      font-size: clamp(52px, 4.6vw, 82px);
    }
  }


/* ═══════════════════════════════════════════════
   FIX PASS — review-driven improvements
   ═══════════════════════════════════════════════ */

/* H3 styling: clients (was h4), press (was h4), pillars (was h5) keep their original visuals */
.client h3.hx-large {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.client h3.hx-large em { font-style: italic; color: var(--red); }

.press-card h3.press-h {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.press-card h3.press-h em { font-style: italic; color: var(--red); }

.pillar h3.pillar-h {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

/* Tap-target compliance (mobile) — at least 44×44 */
@media (max-width: 720px) {
  .client h3.hx-large { font-size: clamp(28px, 7.5vw, 40px); }
  .press-card h3.press-h { font-size: 18px; line-height: 1.2; }
  .pillar h3.pillar-h { font-size: 24px; }

  /* Footer links: 44px tap height */
  footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 4px;
  }

  /* Mobile menu mail pill: 44px */
  .mobile-menu-mail {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Skip-link: 44px */
  .skip-link { min-height: 44px; display: inline-flex; align-items: center; }
}

/* Cursor fallback — show system cursor until JS upgrades to custom */
@media (hover: hover) and (pointer: fine) {
  html:not(.cursor-ready) body { cursor: auto; }
  html:not(.cursor-ready) a,
  html:not(.cursor-ready) button { cursor: pointer; }
}

/* Cookie banner — more compact on small phones */
@media (max-width: 480px) {
  .cookie-banner {
    padding: 14px 16px 16px;
    bottom: 84px;
  }
  .cookie-banner-label { font-size: 9px; margin-bottom: 4px; }
  .cookie-banner p { font-size: 12.5px; line-height: 1.45; }
  .cookie-btn { padding: 10px 14px; font-size: 12.5px; }
}

/* Prevent hero parallax on touch (no JS dependency) */
@media (hover: none), (pointer: coarse) {
  .hero h1, .hero-sub { transform: none !important; }
}

/* Footer copyright + meta: 11px minimum (was 9–10px) */
footer { font-size: 10.5px; }
@media (max-width: 720px) {
  footer { font-size: 10px; }
}
.contact-meta { font-size: 11px; }

/* Section regions: announce role for screen readers */
section[aria-labelledby] { /* no-op visual; declarative */ }

/* Tap-target compliance — round 2 (logo, cookie buttons, inline link) */
@media (max-width: 720px) {
  .logo {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .cookie-btn {
    min-height: 44px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cookie-banner p a {
    display: inline-block;
    padding: 6px 0;
    min-height: 32px;
  }
}
