* { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --bg: #f5f1ea;
    --bg-2: #ece6db;
    --ink: #141414;
    --ink-2: #3a3a3a;
    --muted: #6b6257;
    --line: #d9d2c4;
    --accent: #c6ff3d;
    --accent-2: #1a1a1a;
    --card: #ffffff;
    --radius: 18px;
    --radius-lg: 26px;
    --maxw: 1240px;
  }

  html, body { background: var(--bg); color: var(--ink); font-family: 'Inter', system-ui, -apple-system, sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  input, textarea, select { font-family: inherit; font-size: 16px; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

  .serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
  .italic { font-style: italic; }

  /* ------- NAV ------- */
  nav.top {
    position: sticky; top: 0; z-index: 50;
    background: rgba(245,241,234,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  nav.top .inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
  .logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
  .logo-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); display: inline-flex; align-items: center; justify-content: center; padding: 5px; box-shadow: 0 2px 8px -2px rgba(0,0,0,0.25); }
  .logo-mark svg { width: 100%; height: 100%; display: block; }
  .nx-mark path { stroke-linejoin: round; stroke-linecap: round; fill: none; stroke-width: 7; }
  .nav-links { display: flex; gap: 28px; font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
  .nav-links a:hover { color: var(--ink); }
  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14.5px; transition: transform .15s ease, background .15s ease; }
  .btn-dark { background: var(--ink); color: #fff; }
  .btn-dark:hover { transform: translateY(-1px); background: #000; }
  .btn-accent { background: var(--accent); color: var(--ink); }
  .btn-accent:hover { transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
  .btn-outline:hover { background: var(--ink); color: #fff; }
  @media (max-width: 820px) { .nav-links { display: none; } }

  /* ------- HERO ------- */
  section.hero { padding: 72px 0 40px; }
  .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
  .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(198,255,61,0.25); }
  h1.headline { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: clamp(44px, 7vw, 96px); line-height: 1.0; letter-spacing: -0.03em; margin: 22px 0 22px; }
  h1.headline .accent-word { font-style: italic; color: var(--ink); position: relative; }
  h1.headline .accent-word::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 14px; background: var(--accent); z-index: -1; transform: skewX(-6deg);
  }
  .hero-sub { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-2); max-width: 640px; margin-bottom: 32px; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
  .hero-meta { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }
  .hero-meta .pill { display: inline-flex; align-items: center; gap: 8px; }
  .hero-meta .pill svg { width: 14px; height: 14px; color: var(--ink); }

  /* Laptop mockup */
  .laptop-wrap { margin-top: 56px; display: flex; justify-content: center; }
  .laptop { width: 100%; max-width: 980px; position: relative; }
  .laptop-screen {
    background: #0f0f10; border-radius: 16px 16px 4px 4px; padding: 14px; border: 2px solid #222; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .laptop-topbar { display: flex; gap: 6px; margin-bottom: 12px; }
  .laptop-topbar span { width: 10px; height: 10px; border-radius: 50%; background: #333; }
  .laptop-topbar span:nth-child(1) { background: #ff5f57; }
  .laptop-topbar span:nth-child(2) { background: #febc2e; }
  .laptop-topbar span:nth-child(3) { background: #28c840; }
  .laptop-base { height: 16px; background: linear-gradient(180deg,#bcbcbc,#8d8d8d); border-radius: 0 0 22px 22px; margin: 0 -20px; box-shadow: 0 10px 20px -6px rgba(0,0,0,0.15); }

  /* Dashboard inside laptop */
  .dash { color: #fff; height: 100%; display: grid; grid-template-columns: 200px 1fr; gap: 12px; background: #0f0f10; }
  .dash-side { background: #17171a; border-radius: 10px; padding: 14px; font-size: 12px; color: #b8b8b8; }
  .dash-side .brand { color: var(--accent); font-weight: 700; font-size: 13px; margin-bottom: 16px; }
  .dash-side ul { list-style: none; }
  .dash-side li { padding: 6px 8px; border-radius: 6px; margin-bottom: 3px; }
  .dash-side li.active { background: rgba(198,255,61,0.12); color: var(--accent); }
  .dash-main { display: grid; grid-template-rows: auto auto 1fr; gap: 10px; padding-right: 4px; overflow: hidden; }
  .dash-title { font-size: 14px; color: #e9e9e9; font-weight: 600; }
  .dash-title span { color: #888; font-weight: 400; margin-left: 8px; font-size: 11px; }
  .kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .kpi { background: #17171a; border-radius: 8px; padding: 10px; }
  .kpi .label { color: #888; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; }
  .kpi .val { font-size: 18px; font-weight: 700; margin-top: 4px; }
  .kpi .delta.neg { color: #ff6b6b; font-size: 11px; }
  .kpi .delta.pos { color: var(--accent); font-size: 11px; }
  .issues { background: #17171a; border-radius: 10px; padding: 12px; overflow: hidden; }
  .issues h4 { font-size: 12px; color: #ccc; margin-bottom: 8px; display: flex; justify-content: space-between; }
  .issue { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-top: 1px solid #222; font-size: 11.5px; color: #dcdcdc; }
  .issue:first-of-type { border-top: none; }
  .sev { width: 6px; height: 6px; border-radius: 50%; }
  .sev.red { background: #ff6b6b; }
  .sev.yellow { background: #febc2e; }
  .sev.green { background: var(--accent); }
  .issue .tag { margin-left: auto; font-size: 10.5px; color: #888; }

  @media (max-width: 640px) {
    .dash { grid-template-columns: 1fr; }
    .dash-side { display: none; }
    .kpi-row { grid-template-columns: repeat(3, 1fr); }
  }

  /* ------- MARQUEE / SOCIAL PROOF ------- */
  .marquee { padding: 44px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
  .marquee h4 { font-size: 13px; color: var(--muted); text-align: center; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; }
  .marquee-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; opacity: 0.85; }
  .marquee-row .item { font-family: 'Instrument Serif', serif; font-size: 24px; color: var(--ink-2); font-style: italic; }

  /* ------- SECTION HEADER ------- */
  section { padding: 96px 0; }
  .section-head { max-width: 760px; margin-bottom: 56px; }
  .section-tag { display: inline-block; font-size: 12.5px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
  .section-title { font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(34px, 4.6vw, 60px); line-height: 1.05; letter-spacing: -0.02em; }
  .section-title .italic { font-style: italic; }
  .section-sub { margin-top: 18px; font-size: 17px; color: var(--ink-2); max-width: 620px; }

  /* ------- SERVICES ------- */
  .svc-hero {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
  }
  .svc-hero::before {
    content: "";
    position: absolute;
    top: -80px; right: -60px;
    width: 360px; height: 360px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(60px);
    pointer-events: none;
  }
  .svc-hero .svc-body { position: relative; z-index: 1; }
  .tag-main {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--ink);
    padding: 5px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 18px;
  }
  .svc-hero h3 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(32px, 3.8vw, 52px);
    line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .svc-hero h3 .italic { color: var(--accent); font-style: italic; }
  .svc-hero p { color: #c9c9c9; margin-bottom: 24px; font-size: 16px; max-width: 520px; }
  .svc-hero ul { list-style: none; margin-bottom: 26px; max-width: 520px; }
  .svc-hero li { padding: 10px 0; border-top: 1px solid #2a2a2a; display: flex; gap: 12px; font-size: 14.5px; color: #e4e4e4; }
  .svc-hero li::before { content: "→"; color: var(--accent); font-weight: 700; flex: none; }
  .svc-hero .svc-visual {
    background: #141416;
    border-radius: 14px; border: 1px solid #2a2a2a;
    padding: 16px; position: relative; z-index: 1;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  }
  .svc-visual .browser-bar { display: flex; gap: 6px; margin-bottom: 14px; }
  .svc-visual .browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: #333; }
  .svc-visual .browser-bar span:nth-child(1) { background: #ff5f57; }
  .svc-visual .browser-bar span:nth-child(2) { background: #febc2e; }
  .svc-visual .browser-bar span:nth-child(3) { background: #28c840; }
  .svc-visual .browser-content { background: #fff; color: var(--ink); border-radius: 8px; padding: 20px; min-height: 220px; }
  .bc-mock-hero { font-family: 'Instrument Serif', serif; font-size: 22px; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 8px; }
  .bc-mock-hero .italic { font-style: italic; color: #3a3a3a; }
  .bc-mock-sub { font-size: 11.5px; color: var(--muted); margin-bottom: 14px; }
  .bc-mock-btn { display: inline-block; background: var(--ink); color: var(--accent); padding: 7px 14px; border-radius: 999px; font-size: 11px; font-weight: 600; margin-bottom: 14px; }
  .bc-mock-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
  .bc-mock-grid .mini { background: var(--bg-2); border-radius: 6px; height: 44px; }

  .svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .svc-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -18px rgba(0,0,0,0.28); }
  .svc-card.marketing { background: linear-gradient(135deg, #ff8a4c 0%, #ff5722 55%, #e03b13 100%); }
  .svc-card.social    { background: linear-gradient(135deg, #ff5ea8 0%, #d63aa9 55%, #8a1f9a 100%); }
  .svc-card.seo       { background: linear-gradient(135deg, #5b8cff 0%, #3458e8 55%, #1b2fb0 100%); }
  .svc-card .svc-tag {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    opacity: 0.95; margin-bottom: 14px; font-weight: 700;
  }
  .svc-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 34px; line-height: 1.02; letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .svc-card h3 .italic { font-style: italic; opacity: 0.92; }
  .svc-card > p { font-size: 14.5px; opacity: 0.95; margin-bottom: 20px; line-height: 1.5; }
  .svc-card ul { list-style: none; flex: 1; margin-bottom: 22px; }
  .svc-card li { padding: 7px 0; border-top: 1px solid rgba(255,255,255,0.22); font-size: 13.5px; display: flex; gap: 10px; align-items: flex-start; }
  .svc-card li::before { content: "◆"; opacity: 0.75; font-size: 10px; margin-top: 3px; flex: none; }
  .svc-card .svc-cta {
    align-self: flex-start;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 9px 16px; border-radius: 999px;
    font-size: 13px; font-weight: 600; color: #fff;
    transition: background .15s ease;
  }
  .svc-card .svc-cta:hover { background: rgba(255,255,255,0.26); }
  .svc-card .bigchar {
    position: absolute;
    bottom: -50px; right: -14px;
    font-family: 'Instrument Serif', serif;
    font-size: 220px; line-height: 1;
    opacity: 0.14; font-style: italic;
    pointer-events: none;
  }

  @media (max-width: 900px) {
    .svc-hero { grid-template-columns: 1fr; padding: 36px; }
    .svc-grid { grid-template-columns: 1fr; }
  }

  /* ------- PROCESS ------- */
  .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .step { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 36px 30px; min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
  .step:nth-child(2) { background: var(--ink); }
  .step:last-child { background: var(--accent); color: var(--ink); }
  .step .step-num { font-family: 'Instrument Serif', serif; font-size: 64px; line-height: 1; opacity: 0.25; }
  .step h3 { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 10px; font-family: 'Instrument Serif', serif; }
  .step p { font-size: 15.5px; opacity: 0.9; }
  @media (max-width: 820px) { .process-grid { grid-template-columns: 1fr; } }

  /* ------- LEAD MAGNET ------- */
  .lead-magnet { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 56px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
  .lead-magnet h2 { font-family: 'Instrument Serif', serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; }
  .lead-magnet p { color: #c9c9c9; font-size: 16.5px; margin-bottom: 24px; }
  .lm-form { display: flex; gap: 8px; flex-wrap: wrap; }
  .lm-form input { flex: 1 1 240px; padding: 14px 18px; border-radius: 999px; border: 1px solid #2a2a2a; background: #1a1a1a; color: #fff; }
  .lm-form input::placeholder { color: #7d7d7d; }
  .lm-form button { padding: 14px 22px; border-radius: 999px; background: var(--accent); color: var(--ink); font-weight: 600; }
  .lm-form button:hover { filter: brightness(1.05); }
  .lm-note { margin-top: 12px; font-size: 12.5px; color: #7d7d7d; }

  .lm-card { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: var(--radius); padding: 22px; transform: rotate(-2deg); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6); }
  .lm-card h5 { font-size: 11px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; margin-bottom: 12px; }
  .lm-card .title { font-family: 'Instrument Serif', serif; font-size: 22px; margin-bottom: 14px; line-height: 1.15; }
  .lm-card ul { list-style: none; font-size: 13.5px; color: #bdbdbd; }
  .lm-card li { padding: 6px 0; border-top: 1px solid #252525; display: flex; gap: 10px; align-items: center; }
  .lm-card li::before { content: ""; width: 14px; height: 14px; border: 1px solid #444; border-radius: 3px; flex: none; }
  .lm-card li.check::before { background: var(--accent); border-color: var(--accent); }
  @media (max-width: 820px) {
    .lead-magnet { grid-template-columns: 1fr; padding: 36px; }
    .lm-card { transform: none; }
  }

  /* ------- QUALIFIER FORM ------- */
  .qual { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 56px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
  .qual-left h2 { font-family: 'Instrument Serif', serif; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; }
  .qual-left p { color: var(--ink-2); font-size: 16px; margin-bottom: 22px; }
  .qual-left .meta-list { list-style: none; color: var(--ink-2); font-size: 14.5px; }
  .qual-left .meta-list li { padding: 10px 0; border-top: 1px solid var(--line); display: flex; gap: 12px; }
  .qual-left .meta-list li::before { content: "→"; color: var(--ink); font-weight: 700; }

  .stepper { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
  .stepper .bar { flex: 1; height: 4px; background: var(--bg-2); border-radius: 99px; overflow: hidden; }
  .stepper .bar .fill { height: 100%; background: var(--ink); width: 25%; transition: width .3s ease; }
  .stepper .count { font-size: 12.5px; color: var(--muted); }

  .q-step { display: none; }
  .q-step.active { display: block; animation: fade .25s ease; }
  @keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

  .q-step label.q { font-family: 'Instrument Serif', serif; font-size: 26px; line-height: 1.2; display: block; margin-bottom: 18px; }
  .opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .opt { border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-size: 14.5px; text-align: left; transition: all .15s ease; background: #fff; color: var(--ink); }
  .opt:hover { border-color: var(--ink); }
  .opt.selected { background: var(--ink); color: #fff; border-color: var(--ink); }

  .q-step textarea, .q-step input[type="text"], .q-step input[type="email"] {
    width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--ink); margin-bottom: 10px;
  }
  .q-step textarea { min-height: 110px; resize: vertical; }
  .q-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; }
  .q-nav button { padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 14px; }
  .q-nav .prev { background: transparent; color: var(--muted); }
  .q-nav .prev:hover { color: var(--ink); }
  .q-nav .next { background: var(--ink); color: #fff; }
  .q-nav .next[disabled] { opacity: 0.4; cursor: not-allowed; }
  .q-success { text-align: center; padding: 30px 10px; }
  .q-success h3 { font-family: 'Instrument Serif', serif; font-size: 32px; margin-bottom: 10px; }
  .q-success p { color: var(--ink-2); margin-bottom: 22px; }

  @media (max-width: 900px) {
    .qual { grid-template-columns: 1fr; padding: 32px; }
    .opt-grid { grid-template-columns: 1fr; }
  }

  /* ------- BOOK A CALL ------- */
  .book-wrap { background: var(--bg-2); border-radius: var(--radius-lg); padding: 56px; text-align: center; border: 1px solid var(--line); }
  .book-wrap h2 { font-family: 'Instrument Serif', serif; font-size: clamp(34px, 4.4vw, 60px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; }
  .book-wrap p { color: var(--ink-2); font-size: 17px; max-width: 620px; margin: 0 auto 28px; }
  .calendly-box { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); min-height: 680px; overflow: hidden; }
  .calendly-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 20px; color: var(--muted); }
  .calendly-placeholder svg { width: 48px; height: 48px; margin-bottom: 16px; }

  /* ------- TESTIMONIALS ------- */
  .tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 18px; }
  .testimonial p { font-family: 'Instrument Serif', serif; font-size: 22px; line-height: 1.3; color: var(--ink); }
  .tperson { display: flex; align-items: center; gap: 12px; margin-top: auto; }
  .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
  .tperson .n { font-size: 14px; font-weight: 600; }
  .tperson .r { font-size: 12.5px; color: var(--muted); }
  @media (max-width: 900px) { .tgrid { grid-template-columns: 1fr; } }

  /* ------- FAQ ------- */
  .faq { max-width: 880px; margin: 0 auto; }
  .faq-item { border-top: 1px solid var(--line); padding: 20px 0; }
  .faq-item:last-of-type { border-bottom: 1px solid var(--line); }
  .faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 19px; font-weight: 500; }
  .faq-q .plus { font-size: 28px; font-weight: 300; transition: transform .2s ease; }
  .faq-item.open .faq-q .plus { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, margin .3s ease; color: var(--ink-2); font-size: 16px; }
  .faq-item.open .faq-a { max-height: 400px; margin-top: 12px; }

  /* ------- FOOTER ------- */
  footer { background: var(--ink); color: #b9b9b9; padding: 72px 0 32px; }
  footer .foot-logo { width: 92px; height: 92px; margin-bottom: 28px; display: block; }
  footer .foot-logo svg { width: 100%; height: 100%; }
  footer .big { font-family: 'Instrument Serif', serif; font-size: clamp(48px, 8vw, 120px); line-height: 1; color: #fff; letter-spacing: -0.03em; }
  footer .big .italic { font-style: italic; color: var(--accent); }
  footer .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid #2a2a2a; font-size: 13.5px; }
  footer .row a:hover { color: #fff; }
  footer .row .col { display: flex; gap: 24px; flex-wrap: wrap; }

  /* ------- UTIL ------- */
  .row-split { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: end; margin-bottom: 40px; }
  .row-split .section-head { margin-bottom: 0; }
  @media (max-width: 760px) { .row-split { grid-template-columns: 1fr; } }

  .toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(30px); background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 999px; font-size: 14px; opacity: 0; pointer-events: none; transition: all .25s ease; z-index: 100; }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  /* =================================================================== */
  /*  ENHANCEMENTS: animated dashboard, stats, section tint, hover viz  */
  /* =================================================================== */

  /* ------- SECTION COLOR WASH ------- */
  .section-tint {
    position: fixed; inset: 0; pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity .7s ease, background .7s ease;
  }
  body[data-theme="webdev"]    .section-tint { opacity: 1; background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(198,255,61,0.14) 0%, transparent 60%); }
  body[data-theme="marketing"] .section-tint { opacity: 1; background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255,87,34,0.18) 0%, transparent 60%); }
  body[data-theme="social"]    .section-tint { opacity: 1; background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(214,58,169,0.18) 0%, transparent 60%); }
  body[data-theme="seo"]       .section-tint { opacity: 1; background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(52,88,232,0.18) 0%, transparent 60%); }
  /* Make sure nav stays above the tint */
  nav.top { z-index: 50; }
  /* Lift key sections above the tint so tint feels like ambient lighting */
  section, footer, .marquee { position: relative; z-index: 2; }

  /* ------- ANIMATED DASHBOARD ------- */
  .dash .kpi .val { transition: color .3s ease; }
  .dash .issue { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
  .dash.dash-running .issue { opacity: 1; transform: none; }
  .dash.dash-running .issue:nth-of-type(1) { transition-delay: 0.1s; }
  .dash.dash-running .issue:nth-of-type(2) { transition-delay: 0.35s; }
  .dash.dash-running .issue:nth-of-type(3) { transition-delay: 0.60s; }
  .dash.dash-running .issue:nth-of-type(4) { transition-delay: 0.85s; }
  .dash.dash-running .issue:nth-of-type(5) { transition-delay: 1.10s; }
  .dash.dash-running .sev { animation: sev-pulse 1.8s ease-in-out infinite; }
  .dash.dash-running .sev.red    { --sevc: 255,107,107; }
  .dash.dash-running .sev.yellow { --sevc: 254,188,46; }
  .dash.dash-running .sev.green  { --sevc: 198,255,61; }
  @keyframes sev-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--sevc, 255,255,255), 0.5); }
    50%      { box-shadow: 0 0 0 4px rgba(var(--sevc, 255,255,255), 0); }
  }
  .live-dot {
    display: inline-flex; align-items: center; gap: 5px;
    margin-left: 10px; font-size: 9.5px; letter-spacing: 0.18em;
    color: var(--accent); font-weight: 700; opacity: 0;
    transition: opacity .6s ease;
  }
  .live-dot::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 6px var(--accent);
    animation: live-blink 1.4s ease-in-out infinite;
  }
  .dash.dash-running .live-dot { opacity: 1; }
  @keyframes live-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

  /* ------- STATS BAND ------- */
  .stats { padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
  .stats-head { text-align: center; margin-bottom: 44px; }
  .stats-head .section-tag { display: inline-block; }
  .stats-head h2 { font-family: 'Instrument Serif', serif; font-size: clamp(26px, 3vw, 40px); line-height: 1.1; letter-spacing: -0.02em; margin-top: 10px; }
  .stats-head h2 .italic { font-style: italic; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .stat { text-align: center; padding: 0 10px; border-left: 1px solid var(--line); }
  .stat:first-child { border-left: none; }
  .stat .val {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
  .stat .val .italic { font-style: italic; color: var(--muted); }
  .stat .val .unit { font-size: 0.5em; color: var(--muted); font-style: italic; margin-left: 2px; }
  .stat .label {
    margin-top: 14px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  @media (max-width: 820px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
    .stat { border-left: none; }
    .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  }

  /* ------- SERVICE CARD HOVER VISUALIZATIONS ------- */
  .svc-viz {
    position: relative;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 10px;
    padding: 12px 12px 10px;
    margin-bottom: 22px;
    overflow: hidden;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .svc-viz .viz-label {
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex; justify-content: space-between; align-items: center;
  }
  .svc-viz .viz-label .live {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 7px; border-radius: 99px;
    background: rgba(255,255,255,0.18);
    font-size: 8.5px;
  }
  .svc-viz .viz-label .live::before {
    content: ""; width: 5px; height: 5px; border-radius: 50%;
    background: #fff; animation: live-blink 1.4s ease-in-out infinite;
  }

  /* Marketing — bar chart */
  .viz-bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; padding-top: 4px; }
  .viz-bars .bar {
    flex: 1;
    background: linear-gradient(180deg, #fff, rgba(255,255,255,0.7));
    border-radius: 3px 3px 0 0;
    transition: height 0.6s cubic-bezier(.2,.9,.2,1);
  }
  .viz-bars .bar:nth-child(1) { height: 22%; }
  .viz-bars .bar:nth-child(2) { height: 34%; }
  .viz-bars .bar:nth-child(3) { height: 48%; }
  .viz-bars .bar:nth-child(4) { height: 56%; }
  .viz-bars .bar:nth-child(5) { height: 68%; }
  .viz-bars .bar:nth-child(6) { height: 74%; }
  .svc-card.marketing:hover .viz-bars .bar:nth-child(1) { height: 30%; }
  .svc-card.marketing:hover .viz-bars .bar:nth-child(2) { height: 46%; }
  .svc-card.marketing:hover .viz-bars .bar:nth-child(3) { height: 62%; }
  .svc-card.marketing:hover .viz-bars .bar:nth-child(4) { height: 74%; }
  .svc-card.marketing:hover .viz-bars .bar:nth-child(5) { height: 88%; }
  .svc-card.marketing:hover .viz-bars .bar:nth-child(6) { height: 100%; }

  /* Social — feed */
  .viz-feed { height: 56px; position: relative; overflow: hidden; }
  .viz-feed-inner {
    transition: transform 0.9s cubic-bezier(.4,.2,.2,1);
  }
  .viz-feed .post {
    background: rgba(255,255,255,0.92);
    color: #8a1f9a;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .viz-feed .post .count { opacity: 0.7; font-weight: 600; font-size: 9px; }
  .svc-card.social:hover .viz-feed-inner { transform: translateY(-30px); }

  /* SEO — rankings */
  .viz-ranks { font-size: 10.5px; }
  .viz-ranks .rank {
    display: flex; align-items: center; gap: 8px;
    padding: 3px 0;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
  }
  .viz-ranks .rank .pos {
    background: rgba(255,255,255,0.25);
    border-radius: 4px;
    padding: 2px 7px;
    font-weight: 700;
    font-size: 10px;
    min-width: 32px;
    text-align: center;
    transition: all 0.6s ease;
  }
  .viz-ranks .rank .kw { flex: 1; }
  .viz-ranks .rank .arr {
    opacity: 0;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    transform: translateY(3px);
    transition: all 0.6s ease;
  }
  .svc-card.seo:hover .viz-ranks .rank .pos { background: #fff; color: #1b2fb0; }
  .svc-card.seo:hover .viz-ranks .rank .arr { opacity: 1; transform: translateY(0); }
  .svc-card.seo:hover .viz-ranks .rank:nth-child(1) .pos::before { content: "#1 · "; opacity: 0.6; font-weight: 400; }
  .svc-card.seo:hover .viz-ranks .rank:nth-child(2) .pos::before { content: "#2 · "; opacity: 0.6; font-weight: 400; }
  .svc-card.seo:hover .viz-ranks .rank:nth-child(3) .pos::before { content: "#1 · "; opacity: 0.6; font-weight: 400; }

  /* Hide the old big letter watermark now that viz carries the load */
  .svc-card .bigchar { display: none; }

  /* ============================================
     IMAGE PLACEHOLDER BLOCKS
     Replace the .image-placeholder divs with real <img> tags when ready.
     See data-hint attributes for what to drop in each spot.
     ============================================ */
  .image-placeholder {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    min-height: 220px;
    text-align: center;
    padding: 20px;
  }
  .image-placeholder::before {
    content: "";
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(255,255,255,0.03) 14px, rgba(255,255,255,0.03) 15px);
    pointer-events: none;
  }
  .image-placeholder .ph-label {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 6px; align-items: center;
  }
  .image-placeholder .ph-tag {
    font-size: 10px; color: var(--accent); opacity: 0.9;
  }
  .image-placeholder .ph-hint {
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    max-width: 260px;
    line-height: 1.5;
  }

  /* Selected work strip */
  .work {
    padding: 100px 0 40px;
  }
  .work-head { margin-bottom: 40px; }
  .work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .work-item {
    display: flex; flex-direction: column; gap: 12px;
  }
  .work-item .image-placeholder,
  .work-item .work-thumb {
    aspect-ratio: 16 / 10;
    min-height: unset;
    border-radius: 14px;
    overflow: hidden;
  }
  .work-item .work-thumb {
    display: block;
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
    background: #1a1a1a;
  }
  .work-item .work-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
  }
  .work-item .work-thumb:hover img {
    transform: scale(1.03);
  }
  /* seogame.com hero mockup tile — recreates the site's visual language in CSS */
  .work-thumb.seogame-tile {
    background: #020604;
    background-image:
      linear-gradient(rgba(58, 220, 130, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(58, 220, 130, 0.06) 1px, transparent 1px),
      radial-gradient(ellipse 60% 40% at 50% 70%, rgba(58,220,130,0.08) 0%, transparent 60%);
    background-size: 36px 36px, 36px 36px, auto;
    color: #fff;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
  }
  .sg-top {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 9px; color: #9de8b8;
  }
  .sg-top .sg-brand {
    display: flex; align-items: center; gap: 6px;
  }
  .sg-top .sg-mark {
    width: 20px; height: 20px; border-radius: 4px;
    background: linear-gradient(135deg, #102617, #050c08);
    border: 1px solid rgba(77, 220, 130, 0.45);
    display: flex; align-items: center; justify-content: center;
    font-size: 6px; font-weight: 800; color: #9de8b8;
    letter-spacing: 0.02em;
  }
  .sg-top .sg-contact { opacity: 0.8; font-size: 8.5px; }
  .sg-top .sg-cta-pill {
    background: #3adc82; color: #041008;
    padding: 4px 10px; border-radius: 999px;
    font-weight: 700; font-size: 9px;
    box-shadow: 0 0 10px rgba(58, 220, 130, 0.3);
  }
  .sg-nav {
    display: flex; gap: 5px; justify-content: center;
    margin-top: 2px;
  }
  .sg-nav span {
    font-size: 8.5px; padding: 3px 9px; border-radius: 999px;
    border: 1px solid rgba(77, 220, 130, 0.22); color: #9de8b8;
    background: rgba(8, 20, 12, 0.4);
  }
  .sg-nav span.on {
    background: rgba(58, 220, 130, 0.15); border-color: #3adc82; color: #fff;
    box-shadow: 0 0 8px rgba(58, 220, 130, 0.25);
  }
  .sg-ctas {
    display: flex; flex-direction: column; gap: 5px;
    align-items: center;
  }
  .sg-ctas .sg-btn {
    font-size: 9px; padding: 5px 14px; border-radius: 999px;
    border: 1px solid #3adc82; color: #fff; background: rgba(8, 20, 12, 0.5);
    box-shadow: 0 0 8px rgba(58, 220, 130, 0.22);
    white-space: nowrap;
  }
  .sg-headline {
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 0.92;
    font-size: clamp(16px, 3vw, 28px);
    padding: 0;
  }
  .sg-headline .sg-line1 { color: #fff; display: block; }
  .sg-headline .sg-line2 { color: #a8f0c6; display: block; }
  .sg-desc {
    text-align: center;
    font-size: 8px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
    max-width: 85%;
    margin: 2px auto 0;
  }
  .sg-feats {
    display: flex; gap: 5px; justify-content: center; flex-wrap: wrap;
  }
  .sg-feats span {
    font-size: 8px; padding: 3px 8px; border-radius: 999px;
    border: 1px solid rgba(77, 220, 130, 0.25); color: #9de8b8;
    background: rgba(8, 20, 12, 0.4);
  }
  .sg-feats span::before { content: "✓ "; color: #3adc82; }
  .work-item .meta {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 13px;
  }
  .work-item .meta .name { color: var(--ink); font-weight: 500; }
  .work-item .meta .tag { color: var(--muted); font-size: 11px; }
  @media (max-width: 760px) {
    .work-grid { grid-template-columns: 1fr; }
  }

  /* Lead magnet hero image (narrow strip above the card) */
  .lm-hero-image {
    aspect-ratio: 16 / 6;
    min-height: 160px;
    margin-bottom: 30px;
    border-radius: 14px;
  }

  /* Founder card (sits above the booking embed) */
  .founder-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: center;
    padding: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    margin-bottom: 24px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .founder-card .image-placeholder {
    width: 120px; height: 120px; min-height: unset; border-radius: 50%;
    aspect-ratio: 1 / 1;
  }
  .founder-card h4 {
    font-size: 16px; margin-bottom: 4px; color: var(--ink);
  }
  .founder-card p {
    font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0;
  }
  @media (max-width: 560px) {
    .founder-card { grid-template-columns: 1fr; text-align: center; }
    .founder-card .image-placeholder { margin: 0 auto; }
  }

  /* Testimonial section — subtle texture background */
  .testi-section {
    position: relative;
    overflow: hidden;
  }
  .testi-section::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 15% 25%, rgba(198,255,61,0.06) 0%, transparent 40%),
      radial-gradient(circle at 85% 75%, rgba(214,58,169,0.05) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
  }
  .testi-section > .wrap { position: relative; z-index: 1; }

  /* ===================================================================
     21ST-DEV-INSPIRED REACTIVE LAYER
     Aurora blobs, mouse spotlight, magnetic CTAs, 3D tilt, scroll
     fade-ups, gradient text shimmer, animated border glow, sparkles.
     All vanilla CSS + a single JS block at the end of the page.
     =================================================================== */

  /* ---------- AURORA GRADIENT BLOBS (hero background) ---------- */
  .hero { position: relative; overflow: hidden; }
  .aurora {
    position: absolute; inset: -10%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.55;
  }
  .aurora .blob {
    position: absolute;
    width: 540px; height: 540px;
    border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform;
  }
  .aurora .blob.b1 { background: radial-gradient(circle, #c6ff3d 0%, transparent 60%); top: -10%; left: -8%; animation: floatA 22s ease-in-out infinite; }
  .aurora .blob.b2 { background: radial-gradient(circle, #ff5722 0%, transparent 60%); top: 30%; right: -10%; animation: floatB 28s ease-in-out infinite; }
  .aurora .blob.b3 { background: radial-gradient(circle, #3458e8 0%, transparent 60%); bottom: -15%; left: 25%; animation: floatC 26s ease-in-out infinite; }
  .aurora .blob.b4 { background: radial-gradient(circle, #d63aa9 0%, transparent 60%); top: 50%; left: 45%; width: 380px; height: 380px; animation: floatD 32s ease-in-out infinite; }
  @keyframes floatA { 0%,100%{transform: translate(0,0) scale(1);} 50%{transform: translate(60px,80px) scale(1.15);} }
  @keyframes floatB { 0%,100%{transform: translate(0,0) scale(1);} 50%{transform: translate(-80px,60px) scale(1.2);} }
  @keyframes floatC { 0%,100%{transform: translate(0,0) scale(1);} 50%{transform: translate(70px,-60px) scale(1.1);} }
  @keyframes floatD { 0%,100%{transform: translate(0,0) scale(1);} 50%{transform: translate(-40px,-80px) scale(1.25);} }

  /* Hero content sits above the aurora */
  .hero > .wrap, .hero .hero-grid { position: relative; z-index: 2; }

  /* ---------- HERO SPARKLES (tiny floating dots) ---------- */
  .sparkles {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 1;
  }
  .sparkles .spark {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 0 6px rgba(255,255,255,0.8);
    animation: sparkFloat 7s ease-in-out infinite;
    opacity: 0;
  }
  @keyframes sparkFloat {
    0%   { transform: translateY(0) scale(0.6); opacity: 0; }
    20%  { opacity: 1; }
    50%  { transform: translateY(-30px) scale(1); opacity: 0.9; }
    80%  { opacity: 0.6; }
    100% { transform: translateY(-60px) scale(0.6); opacity: 0; }
  }

  /* ---------- MOUSE SPOTLIGHT (dark sections) ---------- */
  .spotlight-host {
    position: relative;
    isolation: isolate;
  }
  .spotlight-host::before {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    background: radial-gradient(circle 320px at var(--mx, 50%) var(--my, 50%),
      rgba(198, 255, 61, 0.10) 0%,
      transparent 60%);
    transition: opacity 0.4s ease;
    opacity: var(--sp, 0);
    z-index: 0;
  }
  .spotlight-host > * { position: relative; z-index: 1; }

  /* ---------- MAGNETIC BUTTONS ---------- */
  [data-magnetic] {
    transition: transform 0.25s cubic-bezier(.2,.7,.3,1.3);
    will-change: transform;
  }

  /* ---------- ANIMATED BORDER GLOW (primary CTAs) ---------- */
  .glow-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .glow-cta::before {
    content: "";
    position: absolute; inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--a, 0deg),
      transparent 0deg,
      rgba(198, 255, 61, 0.9) 60deg,
      transparent 120deg,
      transparent 240deg,
      rgba(214, 58, 169, 0.7) 300deg,
      transparent 360deg);
    z-index: -1;
    animation: rotateA 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .glow-cta:hover::before { opacity: 1; }
  .glow-cta::after {
    content: "";
    position: absolute; inset: 1px;
    border-radius: inherit;
    background: inherit;
    z-index: -1;
  }
  @property --a {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
  }
  @keyframes rotateA { to { --a: 360deg; } }

  /* Fallback for browsers without @property — use box-shadow pulse */
  @supports not (background: paint(any)) {
    .glow-cta:hover { box-shadow: 0 0 0 2px rgba(198,255,61,0.4), 0 0 30px rgba(198,255,61,0.35); }
  }

  /* ---------- GRADIENT TEXT SHIMMER (hero italic accent) ---------- */
  .shimmer-text {
    background: linear-gradient(110deg,
      var(--ink) 0%,
      var(--ink) 30%,
      #c6ff3d 45%,
      var(--ink) 60%,
      var(--ink) 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmerSweep 6s linear infinite;
    will-change: background-position;
  }
  @keyframes shimmerSweep {
    0%   { background-position: 200% 0; }
    100% { background-position: -100% 0; }
  }

  /* ---------- CONTAINER SCROLL (21st.dev MacBook reveal) ---------- */
  .cs-stage {
    perspective: 1200px;
    perspective-origin: 50% 30%;
  }
  .cs-card {
    transform: rotateX(var(--cs-rx, 18deg)) scale(var(--cs-scale, 0.94));
    transform-origin: 50% 100%;
    transform-style: preserve-3d;
    will-change: transform;
    transition: box-shadow 0.4s ease;
  }
  .cs-card.is-flat {
    box-shadow:
      0 0 #0000004d,
      0 9px 20px #0000004a,
      0 37px 37px #00000042,
      0 84px 50px #00000026,
      0 149px 60px #0000000a,
      0 233px 65px #00000003;
  }

  /* Laptop screen image styling — fills the screen frame */
  .laptop-screen .work-shot {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: inherit;
  }
  .laptop-screen {
    position: relative;
    overflow: hidden;
  }
  .laptop-screen .shot-caption {
    position: absolute;
    bottom: 10px; left: 10px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.02em;
    z-index: 2;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
  }
  .cs-card.is-flat + .shot-caption,
  .laptop-screen .cs-card.is-flat .shot-caption,
  .cs-card.is-flat .shot-caption { opacity: 1; transform: translateY(0); }

  /* ---------- PRISMA-STYLE VIDEO HERO ----------
     Full-bleed cinematic video, noise + gradient overlays, centered pill
     nav, huge bottom-left wordmark, bottom-right description + CTA. */
  .prisma-hero {
    height: 100vh;
    min-height: 640px;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    background: #0a0a0a;
    position: relative;
  }
  .prisma-hero .hero-frame {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #050505;
  }
  @media (min-width: 768px) {
    .prisma-hero .hero-frame { border-radius: 32px; }
  }
  .prisma-hero .bg-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .prisma-hero .noise-overlay {
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: 0.7;
    mix-blend-mode: overlay;
    z-index: 1;
    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='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.9  0 0 0 0 0.9  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  }
  .prisma-hero .grad-overlay {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.32) 0%,
      transparent 35%,
      transparent 55%,
      rgba(0,0,0,0.65) 100%);
  }
  /* Centered pill nav at top */
  .prisma-hero .pill-nav {
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    z-index: 20;
  }
  .prisma-hero .pill-nav .pill-inner {
    display: flex; align-items: center;
    gap: 14px;
    background: #050505;
    padding: 10px 22px;
    border-radius: 0 0 22px 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
  }
  @media (min-width: 768px) {
    .prisma-hero .pill-nav .pill-inner {
      gap: 32px; padding: 12px 36px;
      border-radius: 0 0 28px 28px;
    }
  }
  .prisma-hero .pill-nav a {
    color: rgba(225, 224, 204, 0.78);
    font-size: 11px;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
  }
  @media (min-width: 768px) { .prisma-hero .pill-nav a { font-size: 13px; } }
  .prisma-hero .pill-nav a:hover { color: #E1E0CC; }
  /* Hero content layout (bottom area) */
  .prisma-hero .hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px 20px 12px;
    z-index: 10;
  }
  @media (min-width: 768px) {
    .prisma-hero .hero-content { padding: 20px 40px 12px; }
  }
  .prisma-hero .hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    align-items: end;
  }
  .prisma-hero .wordmark-cell { grid-column: 1 / -1; }
  .prisma-hero .side-cell {
    grid-column: 1 / -1;
    display: flex; flex-direction: column;
    gap: 18px;
    padding-bottom: 8px;
  }
  @media (min-width: 1024px) {
    .prisma-hero .wordmark-cell { grid-column: 1 / span 8; }
    .prisma-hero .side-cell {
      grid-column: 9 / span 4;
      padding-bottom: 32px;
    }
  }
  .prisma-hero .wordmark {
    color: #E1E0CC;
    font-weight: 600;
    line-height: 0.85;
    letter-spacing: -0.07em;
    font-family: "Instrument Serif", "Inter", serif;
    font-style: italic;
    margin: 0;
    font-size: clamp(80px, 22vw, 360px);
    display: block;
  }
  .prisma-hero .side-desc {
    color: rgba(225, 224, 204, 0.82);
    font-size: 13px;
    line-height: 1.35;
    margin: 0;
    max-width: 360px;
  }
  @media (min-width: 768px) {
    .prisma-hero .side-desc { font-size: 15px; }
  }
  .prisma-hero .arrow-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: #E1E0CC;
    color: #050505;
    padding: 4px 4px 4px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.25s ease, transform 0.25s ease;
  }
  .prisma-hero .arrow-cta:hover { gap: 14px; transform: translateY(-1px); }
  .prisma-hero .arrow-cta .arrow-circle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #050505;
    transition: transform 0.25s ease;
  }
  .prisma-hero .arrow-cta:hover .arrow-circle { transform: scale(1.08); }
  .prisma-hero .arrow-cta .arrow-circle svg {
    width: 16px; height: 16px;
    stroke: #E1E0CC;
  }

  /* Eyebrow chip up top-left, optional */
  .prisma-hero .hero-eyebrow {
    position: absolute;
    top: 60px; left: 24px;
    z-index: 10;
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(225, 224, 204, 0.85);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .prisma-hero .hero-eyebrow .live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #c6ff3d;
    box-shadow: 0 0 8px #c6ff3d;
    animation: livePulse 1.6s ease-in-out infinite;
  }
  @keyframes livePulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
  @media (min-width: 768px) {
    .prisma-hero .hero-eyebrow { top: 80px; left: 40px; font-size: 12px; }
  }

  /* Reveal section that holds the laptop (was inside the hero before) */
  .reveal-section {
    background: var(--bg);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
  }
  .reveal-section > .wrap { position: relative; z-index: 2; }
  .reveal-section .aurora .blob { width: 420px; height: 420px; }
  .reveal-section .reveal-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
  }
  .reveal-section .reveal-head h2 {
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .reveal-section .reveal-head p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
  }

  /* ---------- BUDGET SLIDER (Radix Slider port) ----------
     Vanilla port of the @radix-ui/react-slider with tooltip-on-drag */
  .q-budget {
    margin-top: 8px;
  }
  .q-budget .budget-display {
    text-align: center;
    margin-bottom: 22px;
  }
  .q-budget .budget-amount {
    font-family: "Instrument Serif", serif;
    font-size: 56px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.03em;
    display: block;
  }
  .q-budget .budget-label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 8px;
  }
  .q-budget .slider-row {
    position: relative;
    padding: 18px 12px 8px;
  }
  .q-budget .slider-tooltip {
    position: absolute;
    top: -8px;
    transform: translate(-50%, -100%);
    background: var(--ink);
    color: var(--bg);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 5;
  }
  .q-budget .slider-tooltip::after {
    content: "";
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--ink);
  }
  .q-budget .slider-tooltip.visible { opacity: 1; }
  .q-budget input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: var(--bg-2);
    outline: none;
    margin: 0;
    cursor: pointer;
  }
  .q-budget input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--ink);
    cursor: grab;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .q-budget input[type="range"]:hover::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(20,20,20,0.12); }
  .q-budget input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.1); cursor: grabbing; }
  .q-budget input[type="range"]::-moz-range-thumb {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--ink);
    cursor: grab;
    border: 2px solid var(--ink);
  }
  .q-budget input[type="range"]:focus-visible {
    outline: 3px solid rgba(20,20,20,0.3);
    outline-offset: 4px;
  }
  .q-budget .slider-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 12px;
    color: var(--muted);
  }
  .q-budget .ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: var(--muted);
    opacity: 0.7;
  }
  .q-budget .budget-custom {
    margin-top: 22px;
    border-top: 1px dashed rgba(0,0,0,0.12);
    padding-top: 18px;
  }
  .q-budget .budget-custom-toggle {
    background: none;
    border: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }
  .q-budget .budget-custom-row {
    margin-top: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .q-budget .budget-custom-row .currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
  }
  .q-budget .budget-custom-row input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.15);
    font-size: 16px;
    background: var(--bg);
  }
  .q-budget .budget-custom-row input:focus {
    outline: none;
    border-color: var(--ink);
  }
  .q-budget .budget-hint {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
    line-height: 1.5;
  }

  /* ---------- WORDS-PULL-UP (Framer Motion port) ----------
     Per-word stagger reveal — y:20→0, opacity:0→1, ease (.16,1,.3,1) */
  .pw-host .pw-word {
    display: inline-block;
    transform: translateY(22px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(.16,1,.3,1), opacity 0.7s cubic-bezier(.16,1,.3,1);
    will-change: transform, opacity;
  }
  .pw-host.in .pw-word {
    transform: translateY(0);
    opacity: 1;
  }
  /* Optional asterisk treatment for the last word (Prisma-style mark) */
  .pw-host[data-asterisk] .pw-word:last-of-type::after {
    content: "*";
    position: relative;
    top: -0.5em;
    font-size: 0.4em;
    margin-left: 0.05em;
    opacity: 0.7;
  }

  /* ---------- SCROLL FADE-UPS ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(.2,.7,.3,1), transform 0.8s cubic-bezier(.2,.7,.3,1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal.delay-1 { transition-delay: 0.08s; }
  .reveal.delay-2 { transition-delay: 0.16s; }
  .reveal.delay-3 { transition-delay: 0.24s; }
  .reveal.delay-4 { transition-delay: 0.32s; }

  /* ---------- MARQUEE HOVER PAUSE + GRADIENT MASK ---------- */
  .marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .marquee:hover .marquee-track,
  .marquee:hover .mq-track,
  .marquee:hover [class*="track"] {
    animation-play-state: paused;
  }

  /* ---------- SECTION TAG SHIMMER ---------- */
  .section-tag {
    position: relative;
    overflow: hidden;
  }
  .section-tag::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198,255,61,0.4), transparent);
    animation: tagShimmer 4s ease-in-out infinite;
    animation-delay: 2s;
    transform: translateX(-200%);
    will-change: transform;
  }
  @keyframes tagShimmer {
    0%   { transform: translateX(-200%); }
    50%  { transform: translateX(400%); }
    100% { transform: translateX(400%); }
  }

  /* ---------- RESPECT REDUCED MOTION ---------- */
  @media (prefers-reduced-motion: reduce) {
    .aurora .blob, .sparkles .spark, .shimmer-text,
    .glow-cta::before, .section-tag::after {
      animation: none !important;
    }
    .reveal { opacity: 1; transform: none; transition: none; }
  }
/* ===================== QUALIFIER MODAL ===================== */
.qmodal { position: fixed; inset: 0; z-index: 1000; display: none; }
.qmodal.open { display: block; }
.qmodal-overlay { position: absolute; inset: 0; background: rgba(20,18,14,0.55); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); animation: qfade .25s ease; }
.qmodal-panel {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(980px, calc(100vw - 28px)); max-height: calc(100vh - 36px); overflow: auto;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: 0 40px 120px -28px rgba(0,0,0,0.55); animation: qpop .4s cubic-bezier(0.22,1,0.36,1);
}
.qmodal .qual { border: none; box-shadow: none; border-radius: var(--radius-lg); }
.qmodal-x {
  position: absolute; top: 16px; right: 18px; z-index: 5; width: 38px; height: 38px;
  border-radius: 50%; background: var(--bg-2); color: var(--ink); font-size: 15px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .15s ease, transform .15s ease;
}
.qmodal-x:hover { background: var(--line); transform: rotate(90deg); }
body.qmodal-lock { overflow: hidden; }
@keyframes qfade { from { opacity: 0; } to { opacity: 1; } }
@keyframes qpop { from { opacity: 0; transform: translate(-50%, calc(-50% + 18px)); } to { opacity: 1; transform: translate(-50%,-50%); } }
@media (max-width: 900px) { .qmodal-panel { width: calc(100vw - 16px); max-height: calc(100vh - 16px); } }
@media (prefers-reduced-motion: reduce) { .qmodal-overlay, .qmodal-panel { animation: none; } }

/* ===== Mobile menu ===== */
.nav-burger { display:none; flex-direction:column; gap:5px; width:42px; height:42px; align-items:center; justify-content:center; background:none; border:none; cursor:pointer; padding:0; z-index:70; }
.nav-burger span { display:block; width:24px; height:2px; background:var(--ink); border-radius:2px; transition:transform .3s ease, opacity .3s ease; }
.nav-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; }
.nav-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.mobile-menu { position:fixed; inset:0; z-index:60; background:rgba(245,241,234,0.98); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:24px; opacity:0; visibility:hidden; transition:opacity .35s ease, visibility .35s ease; }
.mobile-menu.open { opacity:1; visibility:visible; }
.mobile-menu a { font-family:'Instrument Serif', serif; font-size:34px; color:var(--ink); letter-spacing:-0.02em; }
.mobile-menu a:hover { color:var(--muted); }
.mobile-menu a.btn { font-family:'Inter', sans-serif; font-size:16px; margin-top:8px; }
@media (max-width:820px){ .nav-burger{ display:flex; } }
