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

    :root {
      --black:      #0f0f0f;
      --surface:    #ffffff;
      --surface-2:  #f2f2f2;
      --border:     #e4e4e4;
      --border-2:   #d4d4d4;
      --yellow:     #FFD200;
      --yellow-dim: #cca600;
      --blue:       #1565C0;
      --blue-mid:   #1976D2;
      --blue-light: #1565C0;
      --white:      #111111;
      --muted:      #777777;
      --muted-2:    #444444;
      --muted-3:    #333333;
      --green:      #2e7d32;
      --red:        #c62828;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #f8f8f8;
      color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 64px;
      padding: 0 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(248,248,248,0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(0,0,0,0.09);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-s {
      width: 30px;
      height: 30px;
      border-radius: 6px;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: 900;
      color: var(--yellow);
      letter-spacing: -1px;
      flex-shrink: 0;
    }

    .nav-wordmark {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.25rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--muted-3);
      text-decoration: none;
      transition: color 0.18s;
    }

    .nav-links a:hover { color: var(--white); }

    .nav-cta {
      background: var(--yellow) !important;
      color: var(--black) !important;
      padding: 0.5rem 1.2rem !important;
      border-radius: 8px !important;
      font-weight: 700 !important;
      letter-spacing: 0 !important;
      transition: background 0.18s, transform 0.12s !important;
    }

    .nav-cta:hover {
      background: var(--yellow-dim) !important;
      transform: translateY(-1px);
    }

    /* ─── HERO ─── */
    .hero-wrap {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 64px;
      overflow: hidden;
    }

    .hero {
      max-width: 1180px;
      margin: 0 auto;
      padding: 80px 2.5rem 80px;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 5rem;
      align-items: center;
      width: 100%;
    }

    .hero-eyebrow {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue-light);
      margin-bottom: 1.75rem;
    }

    .hero-h1 {
      font-size: clamp(3rem, 5.5vw, 5rem);
      font-weight: 900;
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin-bottom: 1.5rem;
    }

    .hero-h1 .preface {
      display: block;
      font-size: 0.48em;
      font-weight: 400;
      color: var(--muted-2);
      letter-spacing: -0.01em;
      line-height: 1.4;
      margin-bottom: 0.4em;
    }

    .hero-h1 .main-line {
      display: block;
      color: var(--white);
    }

    .hero-h1 .yellow { color: var(--yellow); }

    .hero-sub {
      font-size: 1.26rem;
      color: var(--muted-2);
      line-height: 1.75;
      max-width: 450px;
      margin-bottom: 2.75rem;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--yellow);
      color: var(--black);
      padding: 0.85rem 1.6rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.875rem;
      text-decoration: none;
      transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
      box-shadow: 0 4px 20px rgba(255,210,0,0.2);
    }

    .btn-primary:hover {
      background: var(--yellow-dim);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(255,210,0,0.3);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--muted-3);
      font-size: 0.875rem;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.18s;
    }

    .btn-ghost:hover { color: var(--white); }

    /* ─── DASHBOARD MOCKUP ─── */
    .dash {
      background: var(--surface-2);
      border: 1px solid var(--border-2);
      border-radius: 18px;
      padding: 1.5rem;
      box-shadow:
        0 32px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.03),
        inset 0 1px 0 rgba(255,255,255,0.04);
      position: relative;
    }

    .dash::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 12%;
      right: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,210,0,0.35), transparent);
    }

    .dash-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.25rem;
    }

    .dash-title {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .dash-live {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.65rem;
      color: #4CAF50;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .dash-live::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #4CAF50;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.35; }
    }

    /* KPI Row */
    .kpi-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .kpi {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.9rem 0.85rem;
    }

    .kpi-label {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }

    .kpi-val {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .kpi-delta {
      font-size: 0.6rem;
      font-weight: 700;
      margin-top: 0.3rem;
    }

    .up   { color: #4CAF50; }
    .down { color: #EF5350; }

    /* Chart row */
    .chart-row {
      display: grid;
      grid-template-columns: 1fr 130px;
      gap: 0.75rem;
    }

    .chart-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.9rem 0.85rem;
    }

    .chart-label {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.85rem;
    }

    /* Bar chart */
    .bars {
      display: flex;
      align-items: flex-end;
      gap: 5px;
      height: 72px;
    }

    .bar {
      flex: 1;
      border-radius: 3px 3px 0 0;
      transform-origin: bottom;
      animation: growBar 1s cubic-bezier(0.34,1.56,0.64,1) forwards;
      opacity: 0;
    }

    .bar:nth-child(1)  { animation-delay: 0.5s;  height: 42%; background: var(--blue); }
    .bar:nth-child(2)  { animation-delay: 0.58s; height: 55%; background: var(--blue); }
    .bar:nth-child(3)  { animation-delay: 0.66s; height: 38%; background: var(--blue); }
    .bar:nth-child(4)  { animation-delay: 0.74s; height: 62%; background: var(--blue-mid); }
    .bar:nth-child(5)  { animation-delay: 0.82s; height: 50%; background: var(--blue); }
    .bar:nth-child(6)  { animation-delay: 0.90s; height: 74%; background: var(--blue-mid); }
    .bar:nth-child(7)  { animation-delay: 0.98s; height: 90%; background: var(--yellow); }

    @keyframes growBar {
      from { opacity: 0; transform: scaleY(0); }
      to   { opacity: 1; transform: scaleY(1); }
    }

    /* Line sparkline */
    .sparkline-wrap {
      display: flex;
      flex-direction: column;
    }

    .sparkline-top {
      display: flex;
      flex-direction: column;
      margin-bottom: 0.85rem;
    }

    .spark-val {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .spark-delta {
      font-size: 0.6rem;
      font-weight: 700;
      color: #4CAF50;
      margin-top: 0.25rem;
    }

    .sparkline {
      flex: 1;
      display: flex;
      align-items: flex-end;
    }

    .sparkline svg {
      width: 100%;
      height: 48px;
    }

    /* Source tags */
    .source-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 0.75rem;
    }

    .source-tag {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.2rem 0.55rem;
      border-radius: 4px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--muted);
    }

    .source-tag.active {
      background: rgba(21,101,192,0.15);
      border-color: rgba(21,101,192,0.3);
      color: var(--blue-light);
    }

    /* Floating glow blobs */
    .glow-blue {
      position: absolute;
      bottom: -60px;
      left: -50px;
      width: 200px;
      height: 200px;
      background: var(--blue);
      border-radius: 50%;
      opacity: 0.06;
      filter: blur(60px);
      pointer-events: none;
      z-index: -1;
    }

    .glow-yellow {
      position: absolute;
      top: -40px;
      right: -40px;
      width: 160px;
      height: 160px;
      background: var(--yellow);
      border-radius: 50%;
      opacity: 0.06;
      filter: blur(50px);
      pointer-events: none;
      z-index: -1;
    }

    /* ─── TRUTH SECTION ─── */
    .truth {
      padding: 110px 2.5rem;
      border-top: 1px solid var(--border);
    }

    .truth-inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .section-tag {
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #ffffff;
      background: #0f0f0f;
      padding: 0.55rem 0.95rem;
      margin-bottom: 1.5rem;
      display: inline-block;
      border-radius: 0;
    }

    .truth h2 {
      font-size: clamp(2rem, 3.8vw, 2.9rem);
      font-weight: 800;
      line-height: 1.14;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 2rem;
    }

    .truth p {
      font-size: 1.2rem;
      color: var(--muted-2);
      line-height: 1.85;
      margin-bottom: 1.1rem;
    }

    .truth p strong {
      color: var(--muted-3);
      font-weight: 600;
    }

    .truth-closer {
      margin-top: 2.25rem;
      padding-top: 2.25rem;
      border-top: 1px solid var(--border);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--white);
    }

    /* ─── SERVICES ─── */
    .services {
      padding: 110px 2.5rem;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .services-inner { max-width: 1180px; margin: 0 auto; }

    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      gap: 3rem;
      margin-bottom: 3.5rem;
    }

    .services-header h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.6rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.03em;
    }

    .services-header p {
      font-size: 1.14rem;
      color: var(--muted-2);
      line-height: 1.75;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--border-2);
      border-radius: 16px;
      overflow: hidden;
    }

    .svc {
      background: var(--black);
      padding: 2.5rem 2rem;
      border-right: 1px solid var(--border-2);
      transition: background 0.2s;
      position: relative;
      overflow: hidden;
    }

    .svc:last-child { border-right: none; }

    .svc::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--blue), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .svc:hover { background: #0c0c0c; }
    .svc:hover::after { transform: scaleX(1); }

    .svc-num {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      color: var(--yellow);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .svc-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(21,101,192,0.12);
      border: 1px solid rgba(21,101,192,0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      margin-bottom: 1.4rem;
    }

    .svc h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
      letter-spacing: -0.015em;
      margin-bottom: 0.9rem;
    }

    .svc p {
      font-size: 1.05rem;
      color: var(--muted-2);
      line-height: 1.78;
    }

    .svc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 1.5rem;
    }

    .svc-tag {
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 0.22rem 0.55rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      color: var(--muted);
      border-radius: 4px;
    }

    /* ─── LEGACY BUSINESSES SECTION ─── */
    .legacy-section {
      padding: 120px 2.5rem;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .legacy-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4.5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .legacy-copy h2 {
      font-size: clamp(2rem, 3.8vw, 2.9rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .legacy-copy h2 .yellow { color: var(--yellow-dim); }

    .legacy-copy p {
      font-size: 1.14rem;
      color: var(--muted-2);
      line-height: 1.78;
      margin-bottom: 1.1rem;
    }

    .legacy-copy p strong { color: var(--white); font-weight: 700; }

    .legacy-copy .legacy-closer {
      font-weight: 700;
      color: var(--white);
      margin-top: 1.5rem;
    }

    .legacy-visual {
      position: relative;
      padding: 2.5rem;
      background: linear-gradient(135deg, #fdfbf4 0%, #fff8e1 100%);
      border: 1px solid #f0e6b8;
      border-radius: 18px;
      box-shadow: 0 18px 50px rgba(21,101,192,0.08);
    }

    .legacy-visual h4 {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1.25rem;
    }

    .legacy-list {
      list-style: none;
      padding: 0;
    }

    .legacy-list li {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      font-size: 1rem;
      color: var(--muted-2);
      line-height: 1.55;
      display: flex;
      gap: 0.9rem;
      align-items: flex-start;
    }

    .legacy-list li:last-child { border-bottom: none; padding-bottom: 0; }
    .legacy-list li:first-child { padding-top: 0; }

    .legacy-list li div { flex: 1; }

    .legacy-list li strong {
      display: block;
      color: var(--white);
      font-weight: 700;
      margin-bottom: 3px;
      font-size: 1.02rem;
    }

    .legacy-num {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 7px;
      background: var(--blue);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 800;
    }

    /* ─── PRICING STRIP ─── */
    .price-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      max-width: 1180px;
      margin: 3rem auto 0;
      padding: 1.5rem 1.75rem;
      background: rgba(21,101,192,0.05);
      border: 1px solid rgba(21,101,192,0.15);
      border-radius: 12px;
      flex-wrap: wrap;
    }

    .price-strip-copy {
      font-size: 0.98rem;
      color: var(--muted-2);
      line-height: 1.5;
    }

    .price-strip-copy strong { color: var(--white); font-weight: 700; }

    .price-strip a {
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      text-decoration: none;
      padding-bottom: 2px;
      border-bottom: 1.5px solid var(--blue);
      white-space: nowrap;
    }

    /* ─── CASE STUDIES TEASER ─── */
    .cases-teaser {
      padding: 110px 2.5rem;
      background: var(--black);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .cases-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .cases-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      gap: 3rem;
      margin-bottom: 3.5rem;
    }

    .cases-header h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.6rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.03em;
    }

    .cases-header p {
      font-size: 1.14rem;
      color: var(--muted-2);
      line-height: 1.75;
    }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .case-card {
      display: block;
      background: var(--surface);
      border: 1px solid var(--border-2);
      border-radius: 14px;
      padding: 2rem 1.75rem;
      text-decoration: none;
      color: inherit;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .case-card:hover {
      transform: translateY(-4px);
      border-color: var(--blue);
      box-shadow: 0 12px 32px rgba(21,101,192,0.15);
    }

    .case-tag {
      display: inline-block;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1rem;
    }

    .case-card h3 {
      font-size: 1.3rem;
      font-weight: 800;
      line-height: 1.24;
      letter-spacing: -0.02em;
      margin-bottom: 0.95rem;
      color: var(--white);
    }

    .case-card p {
      font-size: 1rem;
      line-height: 1.68;
      color: var(--muted-2);
      margin-bottom: 1.25rem;
    }

    .case-link {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--blue);
      padding-bottom: 2px;
      border-bottom: 1.5px solid var(--blue);
    }

    .cases-footer {
      text-align: center;
    }

    /* ─── WHY SECTION ─── */
    .why {
      padding: 110px 2.5rem;
    }

    .why-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .why-left h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.6rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }

    .why-left > p {
      font-size: 1.14rem;
      color: var(--muted-2);
      line-height: 1.78;
      margin-bottom: 0.9rem;
    }

    .why-features {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .why-item {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      padding: 1.75rem 0;
      border-bottom: 1px solid var(--border);
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .why-item:first-child { border-top: 1px solid var(--border); }

    .why-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .why-item:nth-child(2) { transition-delay: 0.08s; }
    .why-item:nth-child(3) { transition-delay: 0.16s; }

    .why-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: rgba(255,210,0,0.09);
      border: 1px solid rgba(255,210,0,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .why-copy h4 {
      font-size: 1.0rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.35rem;
      letter-spacing: -0.01em;
    }

    .why-copy p {
      font-size: 1.02rem;
      color: var(--muted-2);
      line-height: 1.7;
    }

    /* Stat block in the why section */
    .stat-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border-2);
      border: 1px solid var(--border-2);
      border-radius: 14px;
      overflow: hidden;
      margin-top: 2.5rem;
    }

    .stat-cell {
      background: var(--surface);
      padding: 1.75rem 1.5rem;
    }

    .stat-num {
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 0.4rem;
    }

    .stat-num span { color: var(--yellow); }

    .stat-desc {
      font-size: 0.96rem;
      color: var(--muted-2);
      line-height: 1.5;
    }

    /* ─── CTA SECTION ─── */
    .cta-section {
      background: var(--yellow);
      padding: 110px 2.5rem;
    }

    .cta-inner {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
    }

    .cta-inner h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 900;
      color: var(--black);
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 1.25rem;
    }

    .cta-inner p {
      font-size: 1.2rem;
      color: rgba(8,8,8,0.65);
      line-height: 1.72;
      margin-bottom: 2.75rem;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--black);
      color: var(--white);
      padding: 0.875rem 1.65rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.18s, transform 0.12s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .btn-dark:hover {
      background: #1a1a1a;
      transform: translateY(-2px);
    }

    .cta-secondary {
      font-size: 0.85rem;
      color: rgba(8,8,8,0.5);
      font-weight: 500;
    }

    /* ─── FOOTER ─── */
    footer {
      padding: 2.5rem 2.5rem;
      border-top: 1px solid var(--border);
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
    }

    .footer-s {
      width: 26px;
      height: 26px;
      background: var(--blue);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 900;
      color: var(--yellow);
      flex-shrink: 0;
    }

    .footer-wordmark {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .footer-note {
      font-size: 0.75rem;
      color: var(--muted);
    }

    /* ─── SCROLL ANIMATIONS ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── DATA FLOW GRAPHIC (v2) ─── */
    .flow-container {
      position: relative;
      height: 260px;
      margin: 0.25rem 0 1rem;
    }

    .flow-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .flow-svg path {
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-dasharray: 4 6;
      animation: flow 3s linear infinite;
    }

    @keyframes flow {
      from { stroke-dashoffset: 0; }
      to   { stroke-dashoffset: -40; }
    }

    .source-chip {
      position: absolute;
      left: 0;
      width: 150px;
      background: var(--surface);
      border: 1px solid var(--border-2);
      border-radius: 8px;
      padding: 0.55rem 0.7rem;
      display: flex;
      align-items: center;
      gap: 0.55rem;
      z-index: 2;
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }

    .chip-tag {
      font-size: 0.55rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 2px 5px;
      border-radius: 3px;
      flex-shrink: 0;
      line-height: 1;
    }

    .chip-tag.xls  { background: rgba(76,175,80,0.18);  color: #2E7D32; border: 1px solid rgba(76,175,80,0.3); }
    .chip-tag.api  { background: rgba(21,101,192,0.18); color: #1565C0; border: 1px solid rgba(21,101,192,0.3); }
    .chip-tag.csv  { background: rgba(255,193,7,0.25);  color: #8a6400; border: 1px solid rgba(255,193,7,0.5); }
    .chip-tag.json { background: rgba(156,39,176,0.15); color: #6A1B9A; border: 1px solid rgba(156,39,176,0.3); }
    .chip-tag.gs   { background: rgba(255,152,0,0.18);  color: #E65100; border: 1px solid rgba(255,152,0,0.3); }

    .chip-name {
      font-size: 0.72rem;
      font-weight: 600;
      color: #ddd;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .data-hub {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 130px;
      background: linear-gradient(135deg, rgba(21,101,192,0.18), rgba(255,210,0,0.12));
      border: 1.5px solid rgba(255,210,0,0.45);
      border-radius: 12px;
      padding: 1rem 0.85rem;
      text-align: center;
      z-index: 2;
      box-shadow: 0 0 36px rgba(255,210,0,0.15), 0 8px 24px rgba(0,0,0,0.3);
    }

    .hub-label {
      font-size: 0.55rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 0.5rem;
    }

    .hub-value {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.02em;
      line-height: 1.18;
      margin-bottom: 0.45rem;
    }

    .hub-sub {
      font-size: 0.6rem;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .hub-pulse {
      position: absolute;
      inset: -2px;
      border-radius: 12px;
      border: 1.5px solid rgba(255,210,0,0.45);
      animation: hubPulse 2.6s ease-out infinite;
      pointer-events: none;
    }

    @keyframes hubPulse {
      0%   { opacity: 0.7; transform: scale(1); }
      100% { opacity: 0;   transform: scale(1.18); }
    }

    .flow-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 0.95rem;
      border-top: 1px solid var(--border);
      font-size: 0.62rem;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .flow-meta strong {
      color: var(--white);
    }

    /* ─── LIGHT THEME OVERRIDES ─── */

    /* Hero gets a clean white strip */
    .hero-wrap { background: #ffffff; }

    /* Eyebrow label, blue on white is readable */
    .hero-eyebrow { color: var(--blue); }

    /* Section tags keep their black rectangle styling on white backgrounds */
    .section-tag { color: #ffffff; background: #0f0f0f; }

    /* Dashboard card */
    .dash {
      background: #ffffff;
      border-color: #ddd;
      box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
    }
    .dash::before { background: linear-gradient(90deg, transparent, rgba(21,101,192,0.25), transparent); }
    .dash-title { color: #888; }

    /* Flow graphic on light bg */
    .source-chip {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
    }
    .chip-name { color: #333; }
    .data-hub {
      background: linear-gradient(135deg, rgba(21,101,192,0.08), rgba(255,210,0,0.18));
      border: 1.5px solid rgba(21,101,192,0.35);
      box-shadow: 0 0 32px rgba(255,210,0,0.25), 0 8px 24px rgba(0,0,0,0.08);
    }
    .hub-label { color: var(--blue); }
    .hub-value { color: #0f0f0f; }
    .hub-sub { color: #888; }
    .hub-pulse { border-color: rgba(21,101,192,0.35); }
    .flow-meta { color: #888; border-top-color: #e8e8e8; }
    .flow-meta strong { color: #0f0f0f; }

    /* Glow blobs: more visible on light */
    .glow-blue { opacity: 0.08; }
    .glow-yellow { opacity: 0.1; }

    /* Truth section */
    .truth { background: #f8f8f8; border-top-color: #e8e8e8; }
    .truth p strong { color: #222; }
    .truth-closer { border-top-color: #e0e0e0; }

    /* Case studies teaser in light theme */
    .cases-teaser { background: #f8f8f8; border-top-color: #e8e8e8; border-bottom-color: #e8e8e8; }
    .case-card { background: #ffffff; border-color: #e0e0e0; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
    .case-card:hover { border-color: var(--blue); box-shadow: 0 12px 32px rgba(21,101,192,0.12); }
    .case-card h3 { color: #0f0f0f; }
    .case-card p { color: #555; }

    /* Services section */
    .services { background: #ffffff; border-top-color: #e8e8e8; border-bottom-color: #e8e8e8; }
    .services-grid { border-color: #ddd; background: #ddd; }
    .svc { background: #f8f8f8; border-right-color: #ddd; }
    .svc:hover { background: #f2f2f2; }
    .svc::after { background: linear-gradient(90deg, var(--blue), transparent); }

    /* Service tags on light card bg */
    .svc-tag {
      background: rgba(0,0,0,0.05);
      border: 1px solid rgba(0,0,0,0.1);
      color: #777;
    }

    /* Why section */
    .why { background: #f8f8f8; }
    .why-item { border-bottom-color: #e4e4e4; }
    .why-item:first-child { border-top-color: #e4e4e4; }

    /* Stat block */
    .stat-block { background: #ddd; border-color: #ddd; }
    .stat-cell { background: #f2f2f2; }

    /* CTA yellow section stays yellow, darken text for readability */
    .cta-inner p { color: rgba(10,10,10,0.7); }
    .cta-secondary { color: rgba(10,10,10,0.5); }

    /* Fix the dark CTA button (was unreadable since --white = #111 in light) */
    .btn-dark {
      background: #0f0f0f;
      color: #ffffff;
    }
    .btn-dark:hover { background: #222; }

    /* Footer */
    footer { background: #ffffff; border-top-color: #e4e4e4; }
    .footer-wordmark { color: #999; }
    .footer-note { color: #aaa; }

    /* Nav scroll highlight */
    nav { box-shadow: 0 1px 0 rgba(0,0,0,0.07); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1000px) {
      .hero { grid-template-columns: 1fr; gap: 3rem; }
      .services-header { grid-template-columns: 1fr; }
      .cases-header { grid-template-columns: 1fr; }
      .cases-grid { grid-template-columns: 1fr; }
      .why-inner { grid-template-columns: 1fr; gap: 3.5rem; }
      .legacy-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    }

    @media (max-width: 760px) {
      nav { padding: 0 1.25rem; }
      .nav-links li:not(:last-child) { display: none; }
      .hero { padding: 60px 1.25rem 60px; }
      .truth, .services, .why, .cta-section, .cases-teaser, .legacy-section { padding: 70px 1.25rem; }
      .services-grid { grid-template-columns: 1fr; border-radius: 0; }
      .svc { border-right: none; border-bottom: 1px solid var(--border-2); }
      .svc:last-child { border-bottom: none; }
      .stat-block { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; text-align: center; }
      .price-strip { flex-direction: column; align-items: flex-start; }
    }

    /* ─── SHARP CORNERS OVERRIDE (no rounded cards or buttons) ─── */
    .btn-primary, .btn-secondary, .btn-ghost, .btn-dark, .nav-cta,
    .svc, .svc-tag, .case-card, .case-tag, .why-item, .stat-block, .stat-cell,
    .dash, .source-chip, .data-hub, .chip-tag, .legacy-visual,
    .price-strip, .section-tag, .svc-detail-tag, .svc-detail,
    .service-block, .service-price-col, .service-example, .no-example,
    .service-whats-in, .contact-method, .contact-form input,
    .contact-form textarea, .contact-form select, .contact-form button,
    .faq-item, .pricing-hint, .team-card, .team-photo, .value-card,
    .case-hero, .case-body, .case-stat, .legacy-list li, .legacy-num,
    .story, .story-inner, .price-eyebrow, .cases-footer .btn-primary,
    .hero-actions a, .cta-actions a, .cta-actions .btn-dark,
    .services-grid, .case-link, .dash-live, .example-eyebrow,
    input, textarea, select, button {
      border-radius: 0 !important;
    }

    /* ─── YELLOW CONSISTENCY (all gold text = bright yellow) ─── */
    .yellow, h1 .yellow, h2 .yellow, h3 .yellow, .hero-h1 .yellow,
    .page-hero h1 .yellow, .legacy-copy h2 .yellow,
    .contact-intro h1 .yellow, .case-stat-num .yellow {
      color: var(--yellow) !important;
    }

    /* ─── LOGO IMG (replaces old S square and text) ─── */
    .nav-logo-img {
      height: 26px;
      width: auto;
      display: block;
    }
    .footer-logo-img {
      height: 22px;
      width: auto;
      display: block;
    }

    /* ─── BLUE RECTANGLE SUB-SECTION LABELS (case studies) ─── */
    .case-sub-label {
      display: inline-block;
      background: var(--blue);
      color: #ffffff;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.5rem 0.9rem;
      margin: 1.75rem 0 1rem;
      border-radius: 0;
    }

    /* ─── ROLE LABEL BOXES (about page) ─── */
    .role-box {
      display: inline-block;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.6rem 1rem;
      margin: 0.5rem 0 1rem;
      border-radius: 0;
    }
    .role-box.creative {
      background: var(--yellow);
      color: #0f0f0f;
    }
    .role-box.data {
      background: var(--blue);
      color: #ffffff;
    }

    /* ─── BLUE ACCENT TEXT ─── */
    .blue { color: var(--blue) !important; }

    /* ─── USE CASE OPENER (case studies) ─── */
    .case-use-case {
      font-size: clamp(1.05rem, 1.5vw, 1.25rem);
      line-height: 1.55;
      color: var(--muted-3);
      font-weight: 500;
      font-style: italic;
      margin: 0 0 1rem;
    }
    .scenario-body {
      font-size: 1.1rem;
      line-height: 1.75;
      color: var(--muted-2);
      margin-top: 1.25rem;
      max-width: 760px;
    }
    .scenario-body strong { color: var(--white); font-weight: 700; }
    .case-card-scenario {
      font-size: 0.92rem;
      line-height: 1.5;
      color: var(--muted);
      margin: 0 0 0.75rem;
    }
    .case-card-scenario em { font-style: italic; }

    /* ─── BIG CALLOUT RECTANGLE (about/home) ─── */
    .big-callout {
      display: inline-block;
      background: #0f0f0f;
      color: #ffffff;
      padding: 1rem 1.5rem;
      font-size: clamp(1.4rem, 2.6vw, 2rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      border-radius: 0;
    }

/* ─── Round 4 overrides ─── */
.legacy-visual {
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: 0 18px 50px rgba(21,101,192,0.06) !important;
  border-radius: 0 !important;
}
.legacy-list li strong.blue {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue) !important;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.cases-header-centered {
  display: block !important;
  text-align: center !important;
  max-width: 760px;
  margin: 0 auto 4rem !important;
}
.cases-header-centered .section-tag {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.cases-header-centered h2 {
  margin: 0 auto;
}
