:root {
    --bg: #2e2c3b;
    --bg-deeper: #232231;
    --bg-deepest: #1a1924;
    --ink: #f6f3e8;
    --ink-dim: rgba(246, 243, 232, 0.62);
    --ink-faint: rgba(246, 243, 232, 0.32);
    --siren-yellow: #ffd400;
    --siren-red: #ff2b3a;
    --accent-warn: #ff8a1e;
    --grid-line: rgba(246, 243, 232, 0.06);
    --rule: rgba(246, 243, 232, 0.14);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { background: var(--bg); color: var(--ink); }
  body {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Texture noise + scanline overlay (page-wide) */
  body::before {
    content: "";
    position: fixed; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, rgba(0,0,0,0.18) 0 1px, transparent 1px 3px);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
    opacity: 0.35;
  }
  body::after {
    content: "";
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
  }

  /* === Typography === */
  .h-display {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.92;
  }
  .h-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--ink-dim);
    font-weight: 500;
  }
  .h-section {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
  }
  .mono {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.18em;
  }

  /* === Layout === */
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

  /* === Nav === */
  nav.topnav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(46, 44, 59, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
  }
  .topnav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
    max-width: 1280px; margin: 0 auto;
    padding: 0 32px;
  }
  .brand {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 16px;
  }
  .brand-mark {
    width: 28px; height: 28px;
    display: grid; place-items: center;
    background: var(--siren-yellow);
    color: #1a1924;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--siren-red);
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
  }
  .nav-links {
    display: flex; gap: 32px; align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
  }
  .nav-links a { color: var(--ink-dim); text-decoration: none; transition: color .2s; }
  .nav-links a:hover { color: var(--siren-yellow); }
  .nav-cta {
    display: flex; align-items: center; gap: 6px;
    background: var(--siren-yellow); color: #1a1924 !important;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 700;
  }

  /* === Hero === */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    overflow: hidden;
    background:
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,43,58,0.18), transparent 60%),
      radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,212,0,0.10), transparent 60%),
      var(--bg);
  }
  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--grid-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }
  .hero-left { position: relative; z-index: 2; }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 12px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    margin-bottom: 28px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--ink-dim);
  }
  .hero-tag .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--siren-red);
    box-shadow: 0 0 0 0 rgba(255,43,58, 0.7);
    animation: pulse 1.6s ease-out infinite;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,43,58, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(255,43,58, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255,43,58, 0); }
  }

  .hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(64px, 9.5vw, 160px);
    line-height: 0.86;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    position: relative;
  }
  .hero h1 .line {
    display: block;
    position: relative;
  }
  .hero h1 .pursue {
    color: var(--siren-yellow);
    position: relative;
    display: inline-block;
  }
  /* Glitch effect */
  .hero h1 .glitch {
    position: relative;
    display: inline-block;
  }
  .hero h1 .glitch::before,
  .hero h1 .glitch::after {
    content: attr(data-text);
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
  }
  .hero h1 .glitch::before {
    color: var(--siren-red);
    transform: translate(3px, 0);
    mix-blend-mode: screen;
    clip-path: inset(0 0 55% 0);
    animation: glitch1 3.6s infinite steps(1);
  }
  .hero h1 .glitch::after {
    color: #00e5ff;
    transform: translate(-3px, 0);
    mix-blend-mode: screen;
    clip-path: inset(55% 0 0 0);
    animation: glitch2 4.2s infinite steps(1);
  }
  @keyframes glitch1 {
    0%, 92%, 100% { transform: translate(3px, 0); clip-path: inset(0 0 55% 0); }
    93% { transform: translate(-6px, 1px); clip-path: inset(15% 0 60% 0); }
    95% { transform: translate(4px, -2px); clip-path: inset(30% 0 40% 0); }
    97% { transform: translate(-2px, 0); clip-path: inset(0 0 70% 0); }
  }
  @keyframes glitch2 {
    0%, 90%, 100% { transform: translate(-3px, 0); clip-path: inset(55% 0 0 0); }
    91% { transform: translate(5px, -1px); clip-path: inset(60% 0 10% 0); }
    94% { transform: translate(-4px, 2px); clip-path: inset(45% 0 25% 0); }
    96% { transform: translate(2px, 0); clip-path: inset(70% 0 0 0); }
  }

  .hero-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--ink-dim);
    max-width: 520px;
    margin-bottom: 40px;
    text-wrap: pretty;
  }

  .stores {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .store-btn {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 22px;
    background: #0e0d14;
    border: 1px solid #2c2b3a;
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    min-width: 200px;
  }
  .store-btn:hover {
    transform: translateY(-2px);
    border-color: var(--siren-yellow);
    box-shadow: 0 0 0 1px var(--siren-yellow), 0 8px 28px rgba(255,212,0,0.18);
  }
  .store-btn-icon { width: 28px; height: 28px; flex-shrink: 0; }
  .store-btn-text { display: flex; flex-direction: column; line-height: 1; }
  .store-btn-text .small { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 5px; }
  .store-btn-text .big { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

  .hero-stats {
    display: flex; gap: 0;
    border-top: 1px solid var(--rule);
    padding-top: 24px;
    max-width: 520px;
  }
  .hero-stat {
    flex: 1;
    border-right: 1px solid var(--rule);
    padding-right: 16px;
  }
  .hero-stat:last-child { border-right: none; padding-left: 16px; padding-right: 0; }
  .hero-stat:not(:first-child) { padding-left: 16px; }
  .hero-stat .num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: var(--siren-yellow);
  }
  .hero-stat .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-top: 6px;
  }

  /* === Hero phone === */
  .hero-right {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    min-height: 640px;
  }
  .phone-stack {
    position: relative;
    width: 320px;
    aspect-ratio: 9 / 19.5;
  }
  .phone-stack::before {
    content: "";
    position: absolute;
    inset: -80px -120px;
    background:
      radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,43,58,0.35), transparent 60%);
    filter: blur(20px);
    z-index: 0;
  }
  .siren-flash {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
  }
  .siren-flash.red {
    top: -60px; left: -100px;
    background: var(--siren-red);
    animation: siren-r 1.2s ease-in-out infinite;
  }
  .siren-flash.blue {
    bottom: -60px; right: -100px;
    background: #1a7dff;
    animation: siren-b 1.2s ease-in-out infinite;
  }
  @keyframes siren-r {
    0%, 50%, 100% { opacity: 0.15; }
    25% { opacity: 0.55; }
  }
  @keyframes siren-b {
    0%, 50%, 100% { opacity: 0.55; }
    25% { opacity: 0.15; }
    75% { opacity: 0.55; }
  }

  .phone {
    position: relative;
    width: 100%; height: 100%;
    border-radius: 38px;
    background: #0a0910;
    border: 2px solid #14131c;
    box-shadow:
      0 0 0 6px #0a0910,
      0 0 0 7px #2c2b3a,
      0 30px 80px rgba(0,0,0,0.5),
      0 0 60px rgba(255,212,0,0.08);
    overflow: hidden;
    z-index: 1;
    transform: rotate(-3deg);
  }
  .phone-screen {
    position: absolute; inset: 8px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--bg);
  }
  .phone-notch {
    position: absolute;
    top: 14px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 22px;
    background: #0a0910;
    border-radius: 12px;
    z-index: 3;
  }

  /* Hero shot crossfade stack */
  .hero-shot-stack {
    position: absolute; inset: 0;
    overflow: hidden;
    background: var(--bg-deeper);
  }
  .hero-shot {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .hero-shot.active { opacity: 1; }
  .hero-shot-stack::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 2;
  }

  /* === Section general === */
  section.block {
    position: relative;
    padding: 120px 0;
    border-top: 1px solid var(--rule);
  }
  .block-head {
    margin-bottom: 64px;
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 48px;
  }
  .block-head h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 0.92;
    letter-spacing: -0.005em;
    max-width: 760px;
    text-wrap: balance;
  }
  .block-head .right-meta {
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-dim);
    line-height: 1.6;
    flex-shrink: 0;
    align-self: flex-end;
  }
  .section-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--siren-yellow);
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    display: block;
  }
  .accent-bar {
    width: 48px; height: 3px; background: var(--siren-yellow);
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
  }

  /* === Powerups === */
  .powerups {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deeper) 100%);
  }
  .powerups-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .powerup-card {
    position: relative;
    background: var(--bg-deeper);
    padding: 28px 24px 28px;
    min-height: 380px;
    display: flex; flex-direction: column;
    transition: background .25s ease;
  }
  .powerup-card:hover { background: #2a283a; }
  .powerup-card .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-faint);
    letter-spacing: 0.2em;
    margin-bottom: 32px;
  }
  .powerup-icon {
    width: 96px; height: 96px;
    margin-bottom: 28px;
    display: grid; place-items: center;
  }
  .powerup-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    line-height: 1;
  }
  .powerup-card .ptype {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--siren-yellow);
    margin-bottom: 14px;
  }
  .powerup-card p {
    font-size: 15px;
    color: var(--ink-dim);
    line-height: 1.5;
    text-wrap: pretty;
  }

  /* === Rage Mode === */
  .rage {
    background: var(--bg-deepest);
    overflow: hidden;
  }
  .rage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
  }
  .rage-meter {
    position: relative;
    border: 1px solid var(--rule);
    padding: 32px;
    background: linear-gradient(135deg, rgba(255,43,58,0.08), transparent);
  }
  .rage-meter-label {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ink-dim);
  }
  .rage-meter-bar {
    height: 24px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
  }
  .rage-meter-fill {
    height: 100%;
    width: 92%;
    background: linear-gradient(90deg, var(--siren-yellow), var(--siren-red));
    box-shadow: 0 0 24px rgba(255,43,58,0.5);
    position: relative;
  }
  .rage-meter-fill::after {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(0,0,0,0.18) 8px 16px);
  }
  .rage-meter-ticks {
    display: flex; justify-content: space-between;
    margin-top: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--ink-faint);
    letter-spacing: 0.2em;
  }
  .rage-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
  .rage-stat { padding: 14px 0; border-top: 1px solid var(--rule); }
  .rage-stat .v { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; line-height: 1; color: var(--siren-yellow); }
  .rage-stat .l { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-dim); margin-top: 6px; }

  .rage h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.88;
    letter-spacing: -0.01em;
  }
  .rage h2 em {
    font-style: normal;
    color: var(--siren-red);
    -webkit-text-stroke: 0;
    position: relative;
    display: inline-block;
  }
  .rage h2 em::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 6px;
    background: var(--siren-yellow);
    transform: skewX(-10deg);
  }
  .rage p {
    margin-top: 28px;
    font-size: 18px;
    color: var(--ink-dim);
    line-height: 1.55;
    max-width: 460px;
    text-wrap: pretty;
  }

  /* === Screenshots === */
  .shots {
    background: var(--bg);
    overflow: hidden;
  }
  .shots-marquee {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: marquee 40s linear infinite;
    will-change: transform;
  }
  .shots-marquee:hover { animation-play-state: paused; }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .phone-frame {
    flex-shrink: 0;
    width: 240px;
    aspect-ratio: 9 / 19.5;
    border-radius: 32px;
    background: #0a0910;
    border: 2px solid #14131c;
    padding: 6px;
    box-shadow: 0 0 0 4px #0a0910, 0 0 0 5px #2c2b3a, 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
  }
  .phone-frame.tilt-l { transform: rotate(-2deg) translateY(8px); }
  .phone-frame.tilt-r { transform: rotate(2deg) translateY(-8px); }
  .phone-frame .scr {
    width: 100%; height: 100%;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: var(--bg-deeper);
  }
  .phone-frame .scr image-slot {
    width: 100%; height: 100%;
    display: block;
  }
  .shot-caption {
    position: absolute; bottom: 16px; left: 16px; right: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  }

  /* === CTA Banner === */
  .cta-banner {
    background:
      radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,43,58,0.25), transparent 60%),
      radial-gradient(ellipse 50% 70% at 20% 50%, rgba(255,212,0,0.18), transparent 60%),
      var(--bg-deepest);
    padding: 100px 0;
    border-top: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: repeating-linear-gradient(90deg, var(--siren-yellow) 0 40px, transparent 40px 80px, var(--siren-red) 80px 120px, transparent 120px 160px);
    opacity: 0.7;
  }
  .cta-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
  }
  .cta-banner h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.92;
    letter-spacing: -0.005em;
  }
  .cta-banner h2 span { color: var(--siren-yellow); }
  .cta-banner p {
    margin-top: 12px;
    color: var(--ink-dim);
    font-size: 17px;
    max-width: 540px;
  }

  /* === Footer === */
  footer {
    background: #1a1924;
    padding: 64px 0 32px;
    border-top: 1px solid var(--rule);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .foot-brand { max-width: 320px; }
  .foot-brand .logo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
  }
  .foot-brand p {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.55;
  }
  .foot-col h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ink-faint);
    margin-bottom: 18px;
  }
  .foot-col ul { list-style: none; }
  .foot-col li { margin-bottom: 10px; }
  .foot-col a {
    color: var(--ink-dim);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
    transition: color .15s;
  }
  .foot-col a:hover { color: var(--siren-yellow); }
  .foot-bottom {
    border-top: 1px solid var(--rule);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ink-faint);
  }

  /* Glitch slice line */
  .slice-line {
    position: relative; height: 1px; background: var(--rule);
    overflow: hidden;
  }
  .slice-line::after {
    content: "";
    position: absolute; top: 0; left: -20%; width: 20%; height: 1px;
    background: var(--siren-yellow);
    animation: slice 6s linear infinite;
  }
  @keyframes slice {
    0% { left: -20%; }
    100% { left: 120%; }
  }

  /* responsive (rough) */
  @media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right { min-height: 480px; }
    .powerups-grid { grid-template-columns: repeat(2, 1fr); }
    .rage-inner { grid-template-columns: 1fr; gap: 48px; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .cta-banner-inner { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .block-head { flex-direction: column; align-items: flex-start; }
    .block-head .right-meta { text-align: left; }
  }
