
  :root {
    --background: #ffffff;
    --foreground: #000000;
    --brand-orange: #fe6e00;
    --font-funnel-display: "Funnel Display", "Inter", system-ui, sans-serif;
  }

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

  body {
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-funnel-display);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* -------- section -------- */
  .hero {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
  }

  /* background ellipse -> blue glow (mirrors original clip-path gradient) */
  .hero__glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70%;
    clip-path: ellipse(120% 100% at 50% 100%);
    background: linear-gradient(
      180deg,
      rgba(219, 234, 254, 0)   0%,
      rgba(200, 225, 255, 0.5) 25%,
      rgba(178, 215, 255, 0.85) 45%,
      rgba(164, 210, 255, 1)   65%,
      rgba(200, 225, 255, 0.6) 82%,
      rgba(255, 255, 255, 1)   100%
    );
    z-index: 0;
    pointer-events: none;
  }

  /* desktop-only 3D particle wave plane, layered over the blue glow,
     beneath the hero content. Hidden on mobile (site unchanged there). */
  .hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;            /* same layer as glow but later in DOM -> above it */
    pointer-events: none;  /* never block the CTA */
    display: none;
  }
  @media (min-width: 1024px) {
    .hero__canvas { display: block; }
  }

  .hero__content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  @media (min-width: 768px) { .hero__content { padding-top: 128px; padding-bottom: 64px; } }
  @media (min-width: 1024px) { .hero__content { padding-top: 160px; } }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  @media (min-width: 768px)  { .container { padding-left: 48px; padding-right: 48px; } }
  @media (min-width: 1024px) { .container { padding-left: 80px; padding-right: 80px; } }

  /* -------- logo row -------- */
  .brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    text-decoration: none;
  }
  @media (min-width: 768px) { .brand { margin-bottom: 24px; } }

  .brand__mark {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(50%) sepia(95%) saturate(1500%) hue-rotate(346deg) brightness(103%) contrast(101%);
  }
  @media (min-width: 768px) { .brand__mark { height: 40px; } }
  @media (min-width: 768px) { .brand__mark { height: 40px; } }

  .brand__name {
    font-family: var(--font-funnel-display);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #000;
  }
  @media (min-width: 768px) { .brand__name { font-size: 1.25rem; } }

  /* -------- copy block -------- */
  .copy { max-width: 72rem; margin-bottom: 48px; }
  @media (min-width: 768px) { .copy { margin-bottom: 64px; } }

  .headline {
    font-family: var(--font-funnel-display);
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #000;
    margin: 0 0 32px;
  }
  @media (min-width: 768px)  { .headline { font-size: 2.5rem; } }
  @media (min-width: 1024px) { .headline { font-size: 3.5rem; } }

  .headline__muted { color: rgba(0, 0, 0, 0.4); }

  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  /* -------- CTA button (sharp rectangle, shadow, orange-slide overlay) -------- */
  .cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    background: #000;
    color: #fff;
    font-family: var(--font-funnel-display);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    border: 0;
    cursor: pointer;
  }

  .cta__sweep {
    position: absolute;
    inset: 0;
    background: var(--brand-orange);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
  }

  .cta:hover .cta__sweep { transform: translateX(0); }

  .cta > span,
  .cta > svg { position: relative; z-index: 1; }

  .cta__arrow {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* -------- scrolling strip -------- */
  .strip {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    padding-bottom: 48px;
  }

  .strip__track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll 40s linear infinite;
    will-change: transform;
  }

  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .tile {
    flex: 0 0 auto;
    width: 550px;
    aspect-ratio: 16 / 10;
    border-radius: 0;
    overflow: hidden;
    background: #0a0a0a;
    position: relative;
  }

  .tile--dark  { background: #0a0a0a; }
  .tile--sky   { background: linear-gradient(180deg,#cfefff 0%,#b4e4ff 100%); }
  .tile--cream { background: #f7f1e4; }
  .tile--light { background: #f4f7fb; }

  /* Phone shot */
  .phone {
    position: absolute;
    left: 10%; top: 50%;
    transform: translateY(-50%) rotate(-14deg);
    width: 170px; height: 340px;
    border-radius: 32px;
    background: #111;
    border: 4px solid #1a1a1a;
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
    overflow: hidden;
  }
  .phone::before {
    content: "";
    position: absolute; top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 16px;
    background: #000; border-radius: 10px;
  }
  .phone__screen {
    position: absolute;
    inset: 22px 8px 8px;
    border-radius: 22px;
    background: var(--brand-orange);
    padding: 14px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .phone__screen .bar { background: rgba(255,255,255,.4); }

  /* generic UI chrome inside tiles */
  .chrome {
    position: absolute;
    inset: 20px;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
  }

  .tile--dark  .chrome { background: #111; color: #f5f5f5; }
  .tile--sky   .chrome { background: transparent; color: #0a0a0a; }
  .tile--cream .chrome { background: #fffaf0; color: #0a0a0a; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
  .tile--light .chrome { background: #fff; color: #0a0a0a; box-shadow: 0 1px 2px rgba(0,0,0,.04); }

  .row { display: flex; gap: 8px; align-items: center; }
  .row--between { justify-content: space-between; }
  .row--header { font-weight: 500; font-size: 14px; }

  .pill {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
  }
  .pill--amber { background: #fde68a; color: #78350f; }
  .pill--lilac { background: #e9d5ff; color: #6b21a8; }
  .pill--mint  { background: #bbf7d0; color: #065f46; }
  .pill--ghost { background: rgba(255,255,255,.08); color: #e5e5e5; }
  .pill--ink   { background: #0a0a0a; color: #fff; }
  .pill--slate { background: #f1f5f9; color: #334155; }

  .stat {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 14px;
    display: flex; flex-direction: column; gap: 6px;
    min-width: 0;
  }
  .tile--cream .stat, .tile--light .stat { background: rgba(0,0,0,0.04); }
  .stat__label { font-size: 10px; opacity: .55; }
  .stat__value { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }

  .block {
    flex: 1;
    border-radius: 10px;
    padding: 14px;
    display: flex; flex-direction: column; gap: 8px;
    min-height: 0;
  }
  .block--yellow { background: #fefce8; }
  .block--mint   { background: #bbf7d0; text-align: center; justify-content: center; align-items: center; }

  .bar { height: 6px; border-radius: 3px; background: rgba(0,0,0,.08); }
  .tile--dark .bar { background: rgba(255,255,255,.12); }
  .bar--80 { width: 80%; }
  .bar--60 { width: 60%; }
  .bar--40 { width: 40%; }

  /* -------- about section -------- */
  .about {
    background: #fff;
  }

  .about__divider {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 48px; /* 32px moved to .logos padding-bottom; total gap unchanged */
  }
  @media (min-width: 768px) { .about__divider { margin-top: 80px; } }

  .about__body {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  @media (min-width: 768px) { .about__body { padding-top: 96px; padding-bottom: 96px; } }

  .eyebrow {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(0, 0, 0, 0.45);
    margin: 0 0 24px;
  }

  .about__headline {
    font-family: var(--font-funnel-display);
    font-weight: 400;
    color: #000;
    letter-spacing: -0.025em;
    max-width: 56rem;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  @media (min-width: 640px) { .about__headline { font-size: 1.875rem; } }
  @media (min-width: 768px) { .about__headline { font-size: 2.75rem; line-height: 1.2; } }

  /* stats: right-aligned to 75% on desktop, 3-up grid */
  .stats {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 80px;
    margin-top: 48px;
  }

  @media (min-width: 768px) {
    .stats {
      grid-template-columns: repeat(3, 1fr);
      width: 75%;
      margin-left: auto;
      padding-bottom: 112px;
    }
  }

  .stat-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .stat-cell:last-child { border-bottom: 0; }

  @media (min-width: 768px) {
    .stat-cell {
      padding: 40px 0;
      border-bottom: 0;
      border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
    .stat-cell:last-child { border-right: 0; }
  }

  .stat-cell__value {
    font-family: var(--font-funnel-display);
    font-weight: 300;
    color: #000;
    font-size: 2.25rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  @media (min-width: 768px) { .stat-cell__value { font-size: 3rem; } }
  @media (min-width: 1024px) { .stat-cell__value { font-size: 3.5rem; } }

  .stat-cell__label {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.4);
    padding: 0 8px;
  }
  @media (min-width: 768px) { .stat-cell__label { font-size: 11px; } }

  /* -------- Why-choose section -------- */
  .why { background: #fff; }

  .why__grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  @media (min-width: 768px) {
    .why__grid {
      grid-template-columns: 45fr 55fr;
      height: 560px;
    }
  }

  /* Left: dark visual card */
  .why__visual {
    position: relative;
    min-height: 340px;
    background: #0c1a30;
    overflow: hidden;
    isolation: isolate;
  }
  @media (min-width: 768px) { .why__visual { min-height: 0; } }

  /* Stylized ASCII / grid pattern layer */
  .why__pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
      radial-gradient(ellipse at 45% 45%, rgba(200,225,255,0.45) 0%, rgba(60,110,200,0.2) 25%, transparent 55%),
      repeating-linear-gradient(90deg, rgba(120,180,255,0.28) 0 2px, transparent 2px 6px),
      repeating-linear-gradient(0deg, rgba(40,70,140,0.35) 0 2px, transparent 2px 6px);
    background-blend-mode: screen, normal, normal;
    opacity: 0.9;
  }

  /* Bright centre glow */
  .why__pattern::after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 180px; height: 80px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.9) 0%, rgba(200,225,255,0.4) 40%, transparent 70%);
    filter: blur(8px);
  }

  .why__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 40%, transparent 70%);
    pointer-events: none;
  }

  .why__visual-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 32px;
  }
  @media (min-width: 768px) { .why__visual-content { padding: 40px; } }

  .why__title {
    font-family: var(--font-funnel-display);
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    max-width: 340px;
    margin: 0 0 12px;
    font-size: 1.5rem;
  }
  @media (min-width: 768px) { .why__title { font-size: 1.875rem; } }
  @media (min-width: 1024px) { .why__title { font-size: 2.25rem; } }

  .why__caption {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
  }

  /* Right: 2x2 feature grid */
  .why__cells {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
  }

  .why__cells::before,
  .why__cells::after {
    content: "";
    position: absolute;
    background: rgba(0,0,0,0.08);
    z-index: 1;
    pointer-events: none;
  }
  .why__cells::before { left: 50%; top: 0; bottom: 0; width: 1px; }
  .why__cells::after  { left: 0; right: 0; top: 50%; height: 1px; }

  .why__cell {
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  @media (min-width: 768px) { .why__cell { padding: 32px; } }

  .why__cell--highlight {
    background: rgba(219, 234, 254, 0.5);
  }

  .why__cell--highlight::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: rgba(190, 219, 255, 0.6);
  }
  @media (min-width: 768px) {
    .why__cell--highlight::before { top: 32px; bottom: 32px; }
  }

  .why__cell-title {
    font-family: var(--font-funnel-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #000;
    margin: 0;
  }
  @media (min-width: 1024px) { .why__cell-title { font-size: 15px; } }

  .why__cell-body {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(0,0,0,0.45);
    font-weight: 300;
    margin: 0;
  }

  /* -------- Team section -------- */
  .team {
    background: #fff;
    color: #000;
    padding: 96px 0 96px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  @media (min-width: 768px) { .team { padding: 128px 0 128px; } }

  .team__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
    max-width: 720px;
  }
  @media (min-width: 768px) { .team__header { margin-bottom: 64px; } }

  .team__eyebrow {
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    margin: 0;
  }

  .team__title {
    font-family: "Funnel Display", Arial, sans-serif;
    font-weight: 500;
    font-size: 2.25rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0;
    color: #000;
  }
  @media (min-width: 768px) { .team__title { font-size: 2.75rem; } }
  @media (min-width: 1024px) { .team__title { font-size: 3rem; } }

  .team__sub {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0,0,0,0.55);
    font-weight: 300;
    margin: 0;
    max-width: 560px;
  }

  .team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
    margin-inline: 0;
  }
  @media (min-width: 768px) {
    .team__grid {
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      max-width: 960px;
    }
  }

  .person {
    background: #0a0a0a;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
  }
  .person:hover { transform: translateY(-4px); }

  .person__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e5e5e5;
    position: relative;
  }
  .person__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s ease, transform 0.6s ease;
  }
  .person:hover .person__photo img {
    filter: grayscale(0%);
    transform: scale(1.03);
  }

  .person__photo::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .person:hover .person__photo::after { opacity: 1; }

  .person__caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
  }
  .person:hover .person__caption,
  .person:focus-within .person__caption {
    opacity: 1;
    transform: translateY(0);
  }
  @media (min-width: 768px) {
    .person__caption { left: 32px; right: 32px; bottom: 30px; }
  }
  /* Touch / no-hover devices: always show so the caption stays accessible */
  @media (hover: none) {
    .person__photo::after { opacity: 1; }
    .person__caption { opacity: 1; transform: none; }
  }

  .person__name {
    font-family: "Funnel Display", Arial, sans-serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
    color: #fff;
  }
  @media (min-width: 768px) { .person__name { font-size: 30px; } }

  .person__role {
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin: 0;
    margin-top: 2px;
  }

  /* -------- Contact / Services section -------- */
  .services {
    background: #fff;
    color: #000;
    padding: 96px 0 64px;
  }
  @media (min-width: 768px) { .services { padding: 128px 0 96px; } }

  .services__divider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 48px;
  }
  @media (min-width: 768px) { .services__divider { margin-bottom: 64px; } }

  .services__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
  }
  @media (min-width: 768px) { .services__header { margin-bottom: 56px; } }

  .services__title {
    font-family: var(--font-funnel-display);
    font-size: 1.875rem;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.025em;
    margin: 0 0 12px;
  }
  @media (min-width: 768px) { .services__title { font-size: 2.25rem; } }
  @media (min-width: 1024px) { .services__title { font-size: 3rem; } }

  .services__sub {
    font-size: 14px;
    color: rgba(0,0,0,0.45);
    font-weight: 300;
    margin: 0;
  }
  @media (min-width: 768px) { .services__sub { font-size: 16px; } }

  .services__step-counter {
    display: flex;
    align-items: stretch;
    gap: 4px;
    font-family: var(--font-funnel-display);
    font-size: 2.25rem;
    color: rgba(0,0,0,0.2);
    flex-shrink: 0;
    line-height: 1;
  }
  @media (min-width: 640px)  { .services__step-counter { font-size: 3rem; } }
  @media (min-width: 768px)  { .services__step-counter { font-size: 3.75rem; } }
  @media (min-width: 1024px) { .services__step-counter { font-size: 4.5rem; } }

  .services__step-counter .cur { color: #000; }

  /* --- service cards --- */
  .svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  @media (min-width: 768px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

  .svc-card {
    position: relative;
    background: #eef3f8;
    padding: 24px;
    height: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: inherit;
    transition: border-color 0.2s;
  }
  @media (min-width: 640px) { .svc-card { height: 340px; padding: 28px; } }
  @media (min-width: 768px) { .svc-card { height: 440px; } }

  .svc-card.is-selected { border-color: #000; }

  .svc-card__title {
    font-family: var(--font-funnel-display);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #000;
    margin: 0;
  }
  @media (min-width: 768px) { .svc-card__title { font-size: 1.25rem; } }

  .svc-card__sub {
    font-size: 14px;
    color: rgba(0,0,0,0.4);
    font-weight: 300;
    margin: 4px 0 0;
  }

  .svc-card__art {
    position: absolute;
    bottom: -30%;
    right: -50%;
    width: 180%;
    height: 90%;
    color: rgba(168, 206, 240, 0.6);
    pointer-events: none;
  }
  .svc-card__art svg { width: 100%; height: 100%; }

  .svc-card__arrow {
    position: relative;
    z-index: 1;
    margin-top: auto;
    align-self: flex-end;
    width: 40px;
    height: 40px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .svc-card:hover .svc-card__arrow { background: #222; }
  .svc-card__arrow svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }

  .svc-card--wide {
    width: 100%;
    height: 140px;
    padding: 24px 28px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  @media (min-width: 768px) { .svc-card--wide { height: 160px; } }

  .svc-card--wide .svc-card__arrow { margin-top: 0; }

  /* --- budget cards --- */
  .budget-section,
  .form-section {
    display: none;
  }
  .budget-section.is-visible,
  .form-section.is-visible {
    display: block;
  }

  .budget-section { margin-bottom: 48px; }

  .budget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  @media (min-width: 768px) { .budget-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

  .budget-card {
    position: relative;
    background: #eef3f8;
    padding: 24px 20px 20px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: border-color 0.2s;
  }

  .budget-card.is-selected { border-color: #000; }

  .budget-card__label {
    font-size: 13px;
    color: rgba(0,0,0,0.45);
    font-weight: 300;
    margin: 0 0 8px;
  }

  .budget-card__amount {
    font-family: var(--font-funnel-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.02em;
    margin: 0;
  }
  @media (min-width: 768px) { .budget-card__amount { font-size: 1.5rem; } }

  .budget-card__arrow {
    margin-top: auto;
    align-self: flex-end;
    width: 36px; height: 36px;
    background: #000;
    display: flex; align-items: center; justify-content: center;
  }
  .budget-card__arrow svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; }

  /* --- form --- */
  .form-section__title {
    font-family: var(--font-funnel-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
  }
  @media (min-width: 768px) { .form-section__title { font-size: 1.875rem; } }

  .form-section__sub {
    font-size: 14px;
    color: rgba(0,0,0,0.45);
    font-weight: 300;
    margin: 0 0 40px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px 48px;
    margin-bottom: 40px;
  }
  @media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }

  .form-field { display: flex; flex-direction: column; gap: 8px; }

  .form-field__label {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0,0,0,0.55);
  }

  .form-field__input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    background: transparent;
    padding: 8px 0;
    font-family: inherit;
    font-size: 16px;
    color: #000;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-field__input::placeholder { color: rgba(0,0,0,0.3); }
  .form-field__input:focus { border-bottom-color: #000; }

  .form-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    justify-content: space-between;
  }
  @media (min-width: 768px) { .form-footer { flex-direction: row; align-items: center; } }

  .form-footer__mail {
    font-size: 14px;
    color: rgba(0,0,0,0.55);
    font-weight: 300;
  }
  .form-footer__mail a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
  }

  .form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #4a4a4a;
    color: #fff;
    padding: 16px 28px;
    font-family: var(--font-funnel-display);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 0;
    cursor: pointer;
    transition: background 0.2s;
  }
  .form-submit:hover { background: #000; }
  .form-submit svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
  /* ---------- FAQ ---------- */
  .faq {
    background: #fff;
    color: #000;
    padding: 96px 0 96px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  @media (min-width: 768px) { .faq { padding: 128px 0 128px; } }

  .faq__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 64px;
    max-width: 720px;
  }
  @media (min-width: 768px) { .faq__header { margin-bottom: 96px; } }

  .faq__eyebrow {
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    margin: 0;
  }

  .faq__title {
    font-family: "Funnel Display", Arial, sans-serif;
    font-weight: 500;
    font-size: 2.25rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0;
    color: #000;
  }
  @media (min-width: 768px) { .faq__title { font-size: 2.75rem; } }
  @media (min-width: 1024px) { .faq__title { font-size: 3rem; } }

  .faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 64px;
  }
  @media (min-width: 1024px) {
    .faq__grid { grid-template-columns: 1fr 1fr; }
  }

  .faq__item {
    border-bottom: 1px solid rgba(0,0,0,0.12);
    padding: 28px 0;
  }
  .faq__item:first-child { border-top: 1px solid rgba(0,0,0,0.12); }
  @media (min-width: 1024px) {
    .faq__item:first-child { border-top: 1px solid rgba(0,0,0,0.12); }
    .faq__column + .faq__column .faq__item:first-child { border-top: 1px solid rgba(0,0,0,0.12); }
  }

  .faq__question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    list-style: none;
    font-family: "Funnel Display", Arial, sans-serif;
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #000;
  }
  .faq__question::-webkit-details-marker { display: none; }

  .faq__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    margin-top: 2px;
    color: rgba(0,0,0,0.55);
    transition: transform 0.2s ease, color 0.2s ease;
  }
  .faq__icon::before,
  .faq__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    transition: transform 0.2s ease;
  }
  .faq__icon::before { /* horizontal */
    width: 14px;
    height: 1.5px;
    transform: translate(-50%, -50%);
  }
  .faq__icon::after { /* vertical */
    width: 1.5px;
    height: 14px;
    transform: translate(-50%, -50%);
  }
  .faq__item[open] .faq__icon { color: rgba(0,0,0,0.4); transform: rotate(45deg); }

  .faq__answer {
    margin-top: 16px;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(0,0,0,0.55);
    font-weight: 300;
  }
  .faq__answer p { margin: 0; }
  .faq__answer p + p { margin-top: 12px; }

  /* ---------- Site Footer ---------- */
  .site-footer {
    background: #fff;
    color: #000;
    padding: 80px 0 28px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  @media (min-width: 768px) { .site-footer { padding: 112px 0 32px; } }

  .site-footer__nav-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    margin-bottom: 64px;
  }
  @media (min-width: 768px) {
    .site-footer__nav-row {
      grid-template-columns: 1fr auto auto auto;
      gap: 0 96px;
      margin-bottom: 96px;
    }
  }
  .site-footer__nav-spacer { display: none; }
  @media (min-width: 768px) { .site-footer__nav-spacer { display: block; } }

  .footer-nav__title {
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    margin: 0 0 28px;
  }

  .footer-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav__list a {
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.4);
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .footer-nav__list a:hover { color: #000; }

  .site-footer__brand {
    margin-bottom: 32px;
  }
  @media (min-width: 768px) { .site-footer__brand { margin-bottom: 48px; } }

  .site-footer__brand-line {
    font-family: "Funnel Display", Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 6rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin: 0;
    display: block;
  }
  .site-footer__brand-line--primary { color: #000; }
  .site-footer__brand-line--accent  { color: #8fa8ff; }

  .site-footer__legal {
    border-top: 1px solid rgba(0,0,0,0.12);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  @media (min-width: 640px) {
    .site-footer__legal {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }
  }

  .site-footer__copy {
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    margin: 0;
  }

  .site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
    align-items: center;
  }
  .site-footer__links a {
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .site-footer__links a:hover { color: #000; }
  .site-footer__links-sep {
    color: rgba(0,0,0,0.2);
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 11px;
    user-select: none;
  }

  /* ---------- .why WebGL canvas ---------- */
  .why__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .why__visual.is-webgl { background: #000000; }
  .why__visual.is-webgl .why__canvas { opacity: 1; }
  .why__visual.is-webgl .why__pattern { display: none; }
  .why__visual.is-webgl .why__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 55%, transparent 85%);
  }


/* ================================================================
   Extracted inline styles — visual-editor classes
   ================================================================ */

/* UI mockup text sizes (hero section) */
.ui-text-xxs-dim    { font-size: 11px; opacity: .55; }
.ui-text-xxs-subtle { font-size: 11px; opacity: .7; }
.ui-text-xs         { font-size: 12px; }
.ui-text-xs-medium  { font-size: 12px; font-weight: 500; }
.ui-text-sm         { font-size: 15px; }
.ui-text-base       { font-size: 16px; }

/* UI mockup backgrounds */
.ui-bg-subtle { background: rgba(0, 0, 0, .03); }
.ui-bg-white  { background: #fff; }

/* UI mockup layout */
.ui-row-stretch { flex: 1; align-items: stretch; }

/* Form section spacing */
.mb-0  { margin-bottom: 0; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ---------- Client logo grid ---------- */
.logos {
  position: relative;
  z-index: 1;
  background: #fff;
  /* bottom padding gives the bottom-row cards' hover drop-shadow room inside
     the hero's overflow:hidden box so it isn't clipped (compensated by a
     reduced .about__divider margin-top so total spacing is unchanged) */
  padding: 64px 0 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
@media (min-width: 768px) { .logos { padding: 88px 0 32px; } }

.logos__eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin: 0 0 40px;
}
@media (min-width: 1024px) { .logos__eyebrow { margin-bottom: 48px; } }

/* --- Mobile / narrow: clean aligned grid (rows unwrapped via display:contents) --- */
/* Mobile (base): 3-up compact grid — short, wide cards matching the reference */
.logos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.logos__row { display: contents; }

.logos__cell {
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.4 / 1;
  padding: 12px 10px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.logos__img {
  max-width: 82%;
  max-height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.logos__cell:hover {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.logos__cell:hover .logos__img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}
/* Touch / no-hover devices (mobile): logos stay greyscale and static —
   no color reveal, no card lift, even on a sticky tap-hover */
@media (hover: none) {
  .logos__cell:hover {
    background: #f5f5f5;
    box-shadow: none;
  }
  .logos__cell:hover .logos__img {
    filter: grayscale(1);
    opacity: 0.7;
    transform: none;
  }
}

/* >=600: taller cards with per-logo optical balance (mobile keeps the
   compact 3-up proportions above) */
@media (min-width: 600px) {
  .logos__grid { gap: 18px; }
  .logos__cell {
    aspect-ratio: auto;
    min-height: 118px;
    padding: 24px 28px;
  }
  .logos__img { max-width: 72%; max-height: 46px; }
  .logos__img--dynamism    { max-height: 50px; }
  .logos__img--activision  { max-height: 44px; }
  .logos__img--jiffy       { max-height: 46px; }
  .logos__img--copperstate { max-height: 48px; }
  .logos__img--fox         { max-height: 36px; }
  .logos__img--swipe       { max-height: 30px; }
}

/* --- Desktop: compact staggered brick layout (matches reference) --- */
@media (min-width: 1024px) {
  .logos__grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .logos__row {
    display: flex;
    gap: 20px;
    width: 66.5%;
  }
  .logos__row--1 { margin-left: 11.9%; }
  .logos__row--2 { margin-left: 24.6%; }

  .logos__cell {
    flex: 1 1 0;
    min-height: 0;
    aspect-ratio: 2.6 / 1;
    padding: 18px 22px;
    border-radius: 8px;
  }
  .logos__img {
    max-width: 60%;
    max-height: 30px;
  }
  /* Per-logo optical balancing (desktop staggered layout) */
  .logos__img--dynamism    { max-height: 34px; }
  .logos__img--activision  { max-height: 29px; }
  .logos__img--jiffy       { max-height: 30px; }
  .logos__img--copperstate { max-height: 32px; }
  .logos__img--fox         { max-height: 23px; }
  .logos__img--swipe       { max-height: 20px; }
}
