
  /* ===========================================================
     promptpunks™ / INTERACTIONS — Template
     Light, editorial layout with brutalist mechanics.
     Each interaction sits in its own labeled section.
     =========================================================== */

  :root {
    --bg: #FFFFFF;          /* pure white */
    --bg-2: #F4F3EE;        /* slightly darker stripe */
    --ink: #111111;
    --muted: #B5B3AA;       /* the soft gray used in the manifesto */
    --subtext: #555555;     /* supporting copy */
    --subtext-2: #777777;   /* lighter supporting copy */
    --rule: #1a1a1a;
    --accent: #2A37FF;      /* electric blue */
    --border: 1px solid #111;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }
  html, body {
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
  }
  body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
  }
  a, button { color: inherit; text-decoration: none; }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

  /* ---------- type helpers ---------- */
  .display {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 0.9;
    text-transform: uppercase;
  }
  .mono {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }

  /* ---------- section frame ---------- */
  section { padding: 96px 0; position: relative; }
  .section-head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
  }
  .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(56px, 9vw, 140px);
    letter-spacing: -0.01em;
    line-height: 0.9;
    text-transform: uppercase;
  }
  .label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .label::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--ink);
    border-radius: 50%;
  }

  /* ===========================================================
     SECTION 01 — HERO BAR-GRAPH (idea → bold business)
     =========================================================== */
  .hero {
    padding: 120px 0 40px;
  }
  .hero-meta {
    display: flex; justify-content: space-between;
    padding: 0 32px;
    margin-bottom: 32px;
  }
  .bars {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    gap: 0;
    height: 140px;
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 14px 32px;
  }
  .bars .bar {
    flex: 0 0 2px;
    width: 2px;
    background: var(--ink);
    transform-origin: bottom;
    transform: scaleY(0);
    opacity: 0;
    transition: transform .9s cubic-bezier(.2,.8,.2,1), opacity .5s ease;
    will-change: transform;
  }
  .bars.in .bar {
    transform: scaleY(1);
    opacity: 1;
  }

  /* ===========================================================
     SECTION 02 — VIDEO STAGE w/ BLUE PLAY
     =========================================================== */
  .stage-video {
    position: relative;
    margin: 0 32px;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background:
      radial-gradient(60% 80% at 30% 60%, #4a4a48 0%, #1f1f1e 60%, #0a0a0a 100%);
    border: var(--border);
  }
  .stage-video::after {
    content: '';
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(
        180deg,
        rgba(255,255,255,0.02) 0 1px,
        transparent 1px 3px
      );
    pointer-events: none;
  }
  .play {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid; place-items: center;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    z-index: 2;
    transition: transform .3s ease;
    animation: pulse 3s ease-in-out infinite;
  }
  .play:hover { transform: translate(-50%, -50%) scale(1.08); }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(42,55,255,0.5); }
    50%     { box-shadow: 0 0 0 30px rgba(42,55,255,0); }
  }

  /* ===========================================================
     SECTION 03 — MANIFESTO (gray → black emphasis on scroll)
     =========================================================== */
  .manifesto {
    padding: 160px 32px 120px;
  }
  .manifesto-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 6vw, 96px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    max-width: 1100px;
  }
  .manifesto-text .word {
    color: var(--muted);
    transition: color .6s ease;
    display: inline;
  }
  .manifesto-text .word.lit { color: var(--ink); }
  .manifesto-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 80px;
    max-width: 900px;
  }
  .manifesto-foot p {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    line-height: 1.6;
  }
  .manifesto-foot .cta { margin-top: 24px; display: inline-block; }
  @media (max-width: 720px) {
    .manifesto-foot { grid-template-columns: 1fr; }
  }

  /* ===========================================================
     SECTION 04 — MARQUEE
     =========================================================== */
  .marquee {
    border-top: var(--border);
    border-bottom: var(--border);
    overflow: hidden;
    padding: 18px 0;
    background: var(--bg);
  }
  .marquee-track {
    display: flex; gap: 72px;
    width: max-content;
    animation: scroll-x 32s linear infinite;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: clamp(48px, 7vw, 104px);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .marquee-track span { display: inline-flex; align-items: center; gap: 72px; }
  @keyframes scroll-x {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ===========================================================
     SECTION 05 — LATEST PROJECTS
     =========================================================== */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  @media (max-width: 800px) { .projects-grid { grid-template-columns: 1fr; } }

  .project {
    display: block;
    color: inherit;
  }
  .project-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1a1a;
  }
  .project-thumb .img {
    position: absolute; inset: 0;
    transform: scale(1.04);
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
  }
  .project-thumb .sweep {
    position: absolute; inset: 0;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform .6s cubic-bezier(.7,0,.3,1);
    mix-blend-mode: multiply;
    opacity: .7;
  }
  .project:hover .img { transform: scale(1.08); }
  .project:hover .sweep { transform: translateY(0); }

  .project-card-tag {
    position: absolute;
    left: 24px; bottom: 24px;
    background: var(--bg);
    color: var(--ink);
    padding: 10px 14px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    z-index: 2;
    display: flex; flex-direction: column; gap: 4px;
  }
  .project-card-tag b {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .project-meta {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-top: 16px;
    padding-top: 16px;
    border-top: var(--border);
  }
  .project-meta .pname {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }
  .project-meta .price {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .img-a,
  .img-b,
  .img-c,
  .img-d {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .img-a { background-image: url('pp-images/pp_Baroque-style_female_portrait_pale_painted_skin_d_f87665a.avif'); }
  .img-b { background-image: url('pp-images/pp_portraitecof_a_man_very_blurry_rainbow_reflection_f43ed54.avif'); }
  .img-c { background-image: url('pp-images/pp_A_hyper-realistic_street_style_fashion_photo_of_a_7c20f68.avif'); }
  .img-d { background-image: url('pp-images/pp_a_dark_moody_photograph_of_anemones_-_red_and_whi_eee83c3.avif'); }
  .view-more {
    display: flex; justify-content: center;
    margin-top: 56px;
  }

  /* ===========================================================
     SECTION 06 — SERVICES
     =========================================================== */
  .services {
    border-top: var(--border);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .service {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    align-items: start;
    padding: 32px 0;
    border-bottom: var(--border);
  }
  .service:nth-child(odd) { border-right: var(--border); padding-right: 32px; }
  .service:nth-child(even) { padding-left: 32px; }
  .service .num {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .service .name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }
  .service ul {
    list-style: none;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.9;
  }
  .service ul li { position: relative; }
  @media (max-width: 800px) {
    .services-grid { grid-template-columns: 1fr; }
    .service:nth-child(odd) { border-right: none; padding-right: 0; }
    .service:nth-child(even) { padding-left: 0; }
    .service { grid-template-columns: 60px 1fr; }
    .service ul { grid-column: 2 / -1; margin-top: 12px; }
  }

  /* ===========================================================
     SECTION 07 — MAGNETIC BUTTONS
     =========================================================== */
  .magnet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }
  .magnet {
    aspect-ratio: 1.4 / 1;
    border: var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 2vw, 30px);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    background: var(--bg);
    transition: background .3s ease, color .3s ease;
    will-change: transform;
  }
  .magnet:hover { background: var(--ink); color: var(--bg); }
  .magnet .magnet-inner { display: inline-block; will-change: transform; }

  /* ===========================================================
     SECTION 08 — INVERT LIST
     =========================================================== */
  .list { border-top: var(--border); }
  .list-row {
    display: grid;
    grid-template-columns: 50px 1fr 140px 140px;
    align-items: center;
    border-bottom: var(--border);
    padding: 24px 16px;
    font-family: 'Space Grotesk', sans-serif;
    transition: background .25s ease, color .25s ease, padding .25s ease;
  }
  .list-row:hover { background: var(--ink); color: var(--bg); padding-left: 32px; }
  .list-row .num { font-family: 'Space Mono', monospace; font-size: 11px; }
  .list-row .name { font-weight: 700; font-size: clamp(22px, 2.6vw, 36px); text-transform: uppercase; }
  .list-row .tag { font-family: 'Space Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; }
  .list-row .arrow {
    text-align: right;
    font-family: 'Space Mono', monospace;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
    transition: transform .25s ease;
  }
  .list-row:hover .arrow { transform: translateX(10px); }
  @media (max-width: 720px) {
    .list-row { grid-template-columns: 32px 1fr 60px; }
    .list-row .tag { display: none; }
  }

  /* ===========================================================
     SECTION 09 — NUMBER COUNTERS
     =========================================================== */
  .counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    border-top: var(--border); border-bottom: var(--border);
  }
  .counter-cell { padding: 40px 24px; border-right: var(--border); }
  .counter-cell:last-child { border-right: none; }
  .counter-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .counter-num .suffix { color: var(--accent); }
  .counter-cell p {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 14px;
    color: var(--subtext);
  }

  /* ===========================================================
     SECTION 10 — STICKY / PARALLAX STAGE
     =========================================================== */
  .parallax {
    position: relative;
    height: 200vh;
    border-top: var(--border);
  }
  .parallax-stick {
    position: sticky; top: 0;
    height: 100vh;
    display: grid; place-items: center;
    overflow: hidden;
    background: var(--bg);
  }
  .parallax-bg {
    position: absolute; inset: -10%;
    background:
      radial-gradient(40% 40% at 25% 35%, rgba(42,55,255,0.5) 0%, transparent 60%),
      radial-gradient(40% 40% at 75% 65%, rgba(17,17,17,0.5) 0%, transparent 60%);
    filter: blur(40px);
  }
  .parallax-title {
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(80px, 18vw, 280px);
    line-height: 0.85;
    text-align: center;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    mix-blend-mode: difference;
    color: #fff;
  }

  /* ===========================================================
     SECTION 11 — ACCORDION
     =========================================================== */
  .accordion { border-top: var(--border); }
  .acc-item { border-bottom: var(--border); }
  .acc-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 2.8vw, 40px);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    user-select: none;
    transition: padding .25s ease;
  }
  .acc-head:hover { padding-left: 24px; }
  .acc-head .plus {
    font-family: 'Space Mono', monospace; font-size: 22px;
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
  }
  .acc-item.open .acc-head .plus { transform: rotate(45deg); color: var(--accent); }
  .acc-body { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.2,.8,.2,1); }
  .acc-body-inner {
    padding: 0 8px 28px 8px;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    max-width: 70ch;
    line-height: 1.7;
    color: var(--subtext);
  }

  /* ===========================================================
     SECTION 12 — DISPLAY HEADER  /  mask-reveal + scramble
     =========================================================== */
  .display-header {
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 98px 0 120px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
  }
  .display-header .container { position: relative; }
  .dh-meta-top {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 48px;
    flex-wrap: wrap; gap: 12px;
  }
  .dh-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(45px, 10.5vw, 178px);
    line-height: 0.88;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    margin: -50px 0 0;
  }
  .dh-line { display: block; overflow: hidden; }
  .dh-line + .dh-line { margin-top: 0.04em; }
  .dh-word {
    display: block;
    margin-right: 0;
    vertical-align: top;
    white-space: nowrap;
  }
  .dh-word .char {
    display: inline-block;
    transform: translateY(115%);
    opacity: 0;
    transition: transform 1s cubic-bezier(.2,.8,.2,1), opacity .6s ease;
    will-change: transform;
  }
  .display-header.in .dh-word .char {
    transform: translateY(0);
    opacity: 1;
  }
  .dh-word.italic { font-style: italic; font-weight: 400; color: var(--accent); }
  .dh-word.scramble { color: var(--accent); }

  .dh-divider {
    display: flex; align-items: center; gap: 14px;
    margin: 36px 0 28px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
  }
  .dh-divider .rule { flex: 1; height: 1px; background: var(--ink); opacity: .2; }

  .dh-foot {
    display: flex; justify-content: space-between; align-items: baseline;
    flex-wrap: wrap; gap: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--subtext);
  }
  .dh-foot .dot { color: var(--accent); }

  /* ===========================================================
     SECTION 13 — GAUGE CAROUSEL
     =========================================================== */
  .gauge-section { padding-bottom: 64px; }
  .gauge-meta { color: var(--ink); align-self: end; }
  .gauge-stage {
    position: relative;
    margin: 0 32px;
    background: #0a0a0a;
    border: 1px solid #0a0a0a;
    color: #fff;
    overflow: hidden;
    padding: 28px 32px 56px;
  }
  .gauge-ruler {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0;
    height: 56px;
    pointer-events: none;
  }
  .gauge-ruler-top {
    margin-bottom: 24px;
    align-items: flex-start;
    transform: scaleY(-1);
  }
  .gauge-ruler-bottom {
    margin-top: 28px;
    align-items: flex-end;
  }
  .gauge-ruler .tick {
    width: 1px;
    background: rgba(255,255,255,0.55);
    transition: height .5s cubic-bezier(.2,.8,.2,1), background .35s ease, opacity .35s ease;
  }
  .gauge-ruler .tick.major  { background: rgba(255,255,255,0.85); }
  .gauge-ruler .tick.active { background: var(--accent); height: 100% !important; opacity: 1; }
  .gauge-ruler .tick.near   { background: #fff; }

  .gauge-slides {
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .gauge-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform 1.4s cubic-bezier(.2,.8,.2,1);
    will-change: opacity, transform;
  }
  .gauge-slide.is-active {
    opacity: 1;
    transform: scale(1);
  }
  .gauge-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
  }

  .gauge-caption {
    position: absolute;
    left: 24px; bottom: 22px;
    z-index: 3;
    color: #fff;
    max-width: 70%;
  }
  .gauge-caption-meta {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.8;
    margin-bottom: 6px;
  }
  .gauge-caption-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1;
  }

  .gauge-sweep {
    position: absolute;
    top: 0; bottom: 0;
    left: -10%;
    width: 12%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0) 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
    opacity: 0;
    z-index: 4;
  }
  .gauge-sweep.run {
    animation: gauge-sweep-anim .9s cubic-bezier(.2,.8,.2,1) forwards;
  }
  @keyframes gauge-sweep-anim {
    0%   { left: -10%;  opacity: 0; }
    20%  { opacity: 1; }
    100% { left: 100%;  opacity: 0; }
  }

  .gauge-axis {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
  }
  .gauge-axis button {
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 6px 2px;
    transition: color .25s ease, transform .25s ease;
  }
  .gauge-axis button:hover { color: #fff; }
  .gauge-axis button.active {
    color: var(--accent);
    transform: translateY(-2px);
  }

  .gauge-controls {
    position: absolute;
    top: 28px; right: 32px;
    display: flex;
    gap: 4px;
    z-index: 5;
  }
  .gauge-btn {
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    line-height: 1;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
  }
  .gauge-btn:hover { background: var(--accent); border-color: var(--accent); }

  @media (max-width: 720px) {
    .gauge-stage { margin: 0 16px; padding: 20px 16px 44px; }
    .gauge-caption { left: 16px; bottom: 16px; max-width: 85%; }
    .gauge-ruler { height: 42px; }
  }

  /* ===========================================================
     SECTION 12 — HOW IT WORKS · PROCESS STEPS
     =========================================================== */
  .process {
    padding: 120px 0;
  }
  .process-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 24px;
    margin-bottom: 80px;
  }
  .process-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    max-width: 14ch;
  }
  .process-tag {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    align-self: start;
    padding-top: 14px;
  }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .process-steps { display: flex; flex-direction: column; gap: 56px; }

  .step {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: start;
    gap: 12px;
    cursor: pointer;
    transition: opacity .35s ease;
  }
  .step .step-num {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--subtext-2);
    padding-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .step .step-num::before {
    content: '';
    width: 10px; height: 10px;
    background: var(--accent);
    display: inline-block;
    opacity: 0;
    transition: opacity .35s ease;
  }
  .step .step-body {
    transition: opacity .35s ease;
  }
  .step .step-h {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #b5b3aa;
    transition: color .35s ease;
    margin-bottom: 14px;
  }
  .step .step-p {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.5;
    color: #b5b3aa;
    max-width: 44ch;
    transition: color .35s ease, opacity .35s ease, max-height .4s ease;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  .step.is-active .step-num { color: var(--ink); }
  .step.is-active .step-num::before { opacity: 1; }
  .step.is-active .step-h { color: var(--ink); }
  .step.is-active .step-p { color: var(--ink); opacity: 1; max-height: 220px; }

  .process-figure {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-image: url('process-studio.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: var(--border);
  }

  @media (max-width: 880px) {
    .process-grid { grid-template-columns: 1fr; gap: 56px; }
    .process-figure { aspect-ratio: 4 / 4; order: -1; }
    .process-head { grid-template-columns: 1fr; }
    .process-tag { padding-top: 0; }
  }

  /* ===========================================================
     SECTION 14 — PRICING
     =========================================================== */
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .price-card {
    position: relative;
    padding: 56px 48px 48px;
    border: var(--border);
    background: var(--bg-2);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    min-height: 640px;
  }
  .price-card.dark {
    background: #0a0a0a;
    color: #EDECE6;
    border-color: #0a0a0a;
  }
  .price-tier {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 56px;
  }
  .price-tier::before {
    content: '';
    width: 10px; height: 10px;
    background: var(--accent);
    display: inline-block;
  }
  .price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: clamp(56px, 7vw, 104px);
    line-height: 1;
    letter-spacing: -0.04em;
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 56px;
  }
  .price-amount .per {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.2vw, 18px);
    letter-spacing: 0;
    text-transform: lowercase;
    color: var(--subtext);
  }
  .price-card.dark .price-amount .per { color: #9a9a92; }
  .price-features {
    list-style: none;
    margin: 0 0 auto;
    padding: 0;
    flex: 1;
  }
  .price-features li {
    padding: 18px 0;
    border-top: 1px solid rgba(17,17,17,0.18);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.15vw, 17px);
    letter-spacing: -0.005em;
  }
  .price-features li:last-child { border-bottom: 1px solid rgba(17,17,17,0.18); }
  .price-card.dark .price-features li { border-color: rgba(237,236,230,0.18); }
  .price-card.dark .price-features li:last-child { border-bottom: 1px solid rgba(237,236,230,0.18); }

  .price-status {
    margin-top: 40px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6a6a62;
  }
  .price-card.dark .price-status { color: #9a9a92; }
  .price-spots {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 14px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
  }
  .price-spots::before {
    content: '';
    width: 10px; height: 10px;
    background: var(--accent);
    display: inline-block;
  }
  .price-cta {
    display: flex;
    gap: 8px;
    margin-top: 28px;
  }
  .price-btn {
    background: var(--bg);
    color: var(--ink);
    border: var(--border);
    padding: 16px 28px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .price-btn.icon {
    padding: 16px;
    width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    letter-spacing: 0;
  }
  .price-btn:hover {
    background: var(--accent);
    color: #EDECE6;
    border-color: var(--accent);
    transform: translateY(-2px);
  }
  .price-foot {
    margin-top: 48px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.1vw, 16px);
    color: #6a6a62;
  }
  @media (max-width: 880px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .price-card { padding: 40px 28px 40px; min-height: 0; }
    .price-tier { margin-bottom: 40px; }
    .price-amount { margin-bottom: 40px; }
  }

  /* ===========================================================
     SECTION 15 — SUBSCRIPTION EXPLAINER · WHAT'S INCLUDED
     =========================================================== */
  .subex {
    padding: 120px 0;
    background: var(--bg-2);
  }
  .subex-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 24px;
    margin-bottom: 56px;
  }
  .subex-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    max-width: 14ch;
  }
  .subex-tag {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    align-self: start;
    padding-top: 14px;
  }
  .subex-marker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 56px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
  }
  .subex-marker::before {
    content: '';
    width: 12px; height: 12px;
    background: var(--accent);
    display: inline-block;
  }
  .subex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 80px;
    row-gap: 56px;
  }
  .subex-item {
    padding-top: 16px;
  }
  .subex-item .label {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .subex-item .label::before { display: none; }
  .subex-item.has-marker .label::before {
    content: '';
    display: inline-block;
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 0;
  }
  .subex-item .rule {
    height: 1px;
    background: rgba(17,17,17,0.18);
    margin-bottom: 28px;
  }
  .subex-item .copy {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.5;
    color: var(--subtext);
    max-width: 34ch;
  }
  @media (max-width: 980px) {
    .subex-grid { grid-template-columns: 1fr 1fr; column-gap: 48px; row-gap: 44px; }
  }
  @media (max-width: 640px) {
    .subex-grid { grid-template-columns: 1fr; }
    .subex-head { grid-template-columns: 1fr; }
    .subex-tag { padding-top: 0; }
  }

  /* ===========================================================
     SECTION 16 — WHAT'S INCLUDED
     =========================================================== */
  .whats {
    padding: 120px 0;
  }
  .whats-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 24px;
    margin-bottom: 56px;
  }
  .whats-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 6.6vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }
  .whats-tag {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    padding-top: 14px;
  }
  .whats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .whats-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-image: url('whats-included.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: var(--border);
  }
  .whats-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .whats-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    padding-left: 80px;
    border-top: 1px solid rgba(17,17,17,0.18);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.2vw, 19px);
    color: var(--ink);
    position: relative;
  }
  .whats-list li:last-child { border-bottom: 1px solid rgba(17,17,17,0.18); }
  .whats-list li.featured { padding-left: 80px; }
  .whats-list li.featured::before {
    content: '';
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px; height: 12px;
    background: var(--accent);
  }

  @media (max-width: 880px) {
    .whats-grid { grid-template-columns: 1fr; gap: 48px; }
    .whats-list li { padding-left: 48px; }
    .whats-list li.featured { padding-left: 48px; }
    .whats-list li.featured::before { left: 16px; }
    .whats-head { grid-template-columns: 1fr; }
    .whats-tag { padding-top: 0; }
  }

  /* ===========================================================
     SECTION 17 — TIMINGS · HOW LONG DOES WORK TAKE
     =========================================================== */
  .timings {
    padding: 120px 0;
    background: var(--bg-2);
  }
  .timings-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
  }
  .timings-h {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 5.6vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    max-width: 12ch;
  }
  .timings-foot {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 0.95vw, 15px);
    color: #6a6a62;
    max-width: 30ch;
    line-height: 1.5;
  }
  /* plain-text list (no boxed table) */
  .timings-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .timings-list .t-head,
  .timings-list .t-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(17,17,17,0.18);
    font-family: 'Space Grotesk', sans-serif;
  }
  .timings-list .t-head {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #6a6a62;
    padding: 0 0 16px;
  }
  .timings-list .req,
  .timings-list .est {
    font-size: clamp(15px, 1.15vw, 17px);
    color: var(--ink);
  }

  @media (max-width: 880px) {
    .timings-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ===========================================================
     SECTION 18 — WHY US (Comparison Table)
     =========================================================== */
  .whyus {
    padding: 120px 0;
  }
  .whyus-grid {
    display: block;
  }
  .whyus-head {
    margin-bottom: 64px;
  }
  .whyus-h {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 6.6vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    max-width: 14ch;
  }
  .whyus-body {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.05vw, 17px);
    color: #6a6a62;
    line-height: 1.55;
    max-width: 50ch;
    margin-bottom: 32px;
  }
  .whyus-cta {
    display: flex;
    gap: 8px;
  }
  .whyus-cta .btn-main {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
    padding: 18px 32px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
  }
  .whyus-cta .btn-main:hover { background: #1a26d8; transform: translateY(-2px); }
  .whyus-cta .btn-icon {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
  }
  .whyus-cta .btn-icon:hover { background: #1a26d8; }

  /* Editorial comparison — promptpunks answer is the headline */
  .whyus-compare { display: flex; flex-direction: column; gap: 0; }

  .whyus-cmp {
    padding: 36px 0;
    border-top: 1px solid rgba(17,17,17,0.18);
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: start;
    position: relative;
  }
  .whyus-cmp:last-child { border-bottom: 1px solid rgba(17,17,17,0.18); }

  .whyus-cmp .cmp-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 2.4vw, 36px);
    letter-spacing: -0.02em;
    color: #c5c2b5;
    line-height: 1;
    padding-top: 8px;
    transition: color .35s ease;
  }
  .whyus-cmp:hover .cmp-num { color: var(--accent); }

  .whyus-cmp .cmp-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #6a6a62;
    margin-bottom: 12px;
  }

  .whyus-cmp .cmp-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 20px;
  }

  .whyus-cmp .cmp-alts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
    padding-top: 14px;
    border-top: 1px dashed rgba(17,17,17,0.14);
  }
  .whyus-cmp .cmp-alt {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 200px;
  }
  .whyus-cmp .cmp-alt .alt-label {
    font-family: 'Space Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #b5b3aa;
  }
  .whyus-cmp .cmp-alt .alt-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(13px, 0.95vw, 15px);
    color: #8a877d;
    line-height: 1.45;
  }

  @media (max-width: 880px) {
    .whyus-head { margin-bottom: 40px; }
    .whyus-cmp { grid-template-columns: 44px 1fr; gap: 16px; padding: 28px 0; }
    .whyus-cmp .cmp-alts { gap: 12px 24px; }
  }

  /* ===========================================================
     LET'S WORK TOGETHER — Modal (Book a Call)
     =========================================================== */
  .lwt-trigger {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
  }
  .lwt-trigger:hover { background: #1a26d8; border-color: #1a26d8; }

  .lwt-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    opacity: 0;
    transition: opacity .25s ease;
  }
  .lwt-overlay.open { display: flex; opacity: 1; }

  .lwt-card {
    position: relative;
    width: 100%;
    max-width: 980px;
    max-height: 90vh;
    overflow-y: auto;
    background: #0a0a0a;
    color: #EDECE6;
    padding: 56px 56px 32px;
    border: 1px solid #0a0a0a;
    transform: translateY(20px);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
  }
  .lwt-overlay.open .lwt-card { transform: translateY(0); }

  .lwt-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    background: #EDECE6;
    color: #0a0a0a;
    border: 1px solid #EDECE6;
    cursor: pointer;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
  }
  .lwt-close:hover { background: var(--accent); color: #EDECE6; border-color: var(--accent); transform: rotate(90deg); }

  .lwt-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4.4vw, 56px);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 14px;
  }
  .lwt-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.05vw, 16px);
    color: #9a978d;
    margin-bottom: 40px;
    max-width: 60ch;
  }

  /* ----- Step 1: Qualification ----- */
  .lwt-step { display: none; }
  .lwt-step.is-active { display: block; }

  .lwt-q {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 1.6vw, 22px);
    margin: 32px 0 18px;
    letter-spacing: -0.01em;
  }
  .lwt-q:first-child { margin-top: 0; }

  .lwt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .lwt-chip {
    background: transparent;
    color: #EDECE6;
    border: 1px solid #EDECE6;
    padding: 14px 22px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }
  .lwt-chip:hover { background: rgba(237,236,230,0.08); }
  .lwt-chip.selected {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }

  /* Region chip variant — two-line label + timezone meta */
  .lwt-chip.region-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
    padding: 12px 18px;
    line-height: 1.2;
  }
  .lwt-chip.region-chip .rc-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
  }
  .lwt-chip.region-chip .rc-meta {
    font-family: 'Space Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: #9a978d;
    text-transform: none;
  }
  .lwt-chip.region-chip.selected .rc-meta { color: rgba(255,255,255,0.85); }

  .lwt-cta-row {
    display: grid;
    grid-template-columns: 1fr 56px;
    gap: 6px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(237,236,230,0.12);
  }
  .lwt-cont {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
    padding: 18px 24px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, opacity .2s ease;
  }
  .lwt-cont:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }
  .lwt-cont:not(:disabled):hover { background: #1a26d8; transform: translateY(-2px); }
  .lwt-plus {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
    cursor: pointer;
    font-size: 20px;
    transition: background .2s ease;
  }
  .lwt-plus:hover { background: #1a26d8; }

  /* ----- Step 2: Discovery call booking ----- */
  .lwt-book {
    display: grid;
    grid-template-columns: 240px 1fr 200px;
    gap: 24px;
    margin-top: 8px;
  }
  .lwt-book-profile { padding-right: 20px; border-right: 1px solid rgba(237,236,230,0.12); }
  .lwt-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #2A37FF 0%, #8b94ff 100%);
    margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px;
  }
  .lwt-prof-name { font-family: 'Space Grotesk', sans-serif; font-weight: 400; color: #9a978d; font-size: 13px; margin-bottom: 4px; }
  .lwt-prof-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 18px; }
  .lwt-prof-row { display: flex; align-items: center; gap: 8px; color: #9a978d; font-size: 13px; margin-bottom: 8px; }
  .lwt-prof-row svg { flex-shrink: 0; opacity: 0.6; }

  .lwt-cal-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
  }
  .lwt-cal-month { font-weight: 700; font-size: 18px; }
  .lwt-cal-year { font-weight: 400; color: #9a978d; margin-left: 8px; }
  .lwt-cal-nav { display: flex; gap: 4px; }
  .lwt-cal-nav button {
    width: 32px; height: 32px;
    background: transparent;
    color: #EDECE6;
    border: 1px solid rgba(237,236,230,0.15);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .lwt-cal-nav button:hover { background: rgba(237,236,230,0.08); }

  .lwt-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }
  .lwt-cal-grid .dow {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-align: center;
    color: #6a6a62;
    padding: 8px 0;
  }
  .lwt-cal-grid .day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237,236,230,0.05);
    color: #EDECE6;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .15s ease, color .15s ease;
  }
  .lwt-cal-grid .day:hover { background: rgba(237,236,230,0.12); }
  .lwt-cal-grid .day.disabled {
    color: #4a4a44;
    background: transparent;
    cursor: not-allowed;
  }
  .lwt-cal-grid .day.disabled:hover { background: transparent; }
  .lwt-cal-grid .day.selected {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
  }
  .lwt-cal-grid .day.today { border-color: rgba(237,236,230,0.3); }
  .lwt-cal-grid .empty { background: transparent; cursor: default; }
  .lwt-cal-grid .empty:hover { background: transparent; }

  .lwt-slots-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  .lwt-slots-day { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; }
  .lwt-slots-day span { color: #9a978d; font-weight: 400; margin-left: 4px; }
  .lwt-slots-toggle { display: inline-flex; }
  .lwt-slots-toggle button {
    background: transparent;
    color: #9a978d;
    border: 1px solid rgba(237,236,230,0.15);
    padding: 4px 10px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    cursor: pointer;
  }
  .lwt-slots-toggle button.on { color: #EDECE6; background: rgba(237,236,230,0.08); }

  .lwt-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 360px;
    overflow-y: auto;
  }
  .lwt-slot {
    background: transparent;
    color: #EDECE6;
    border: 1px solid rgba(237,236,230,0.2);
    padding: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: background .15s ease, border-color .15s ease;
  }
  .lwt-slot:hover { border-color: var(--accent); background: rgba(42,55,255,0.1); }
  .lwt-slot.selected { background: var(--accent); color: #fff; border-color: var(--accent); }

  .lwt-confirm-row { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(237,236,230,0.12); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
  .lwt-back {
    background: transparent;
    color: #9a978d;
    border: 1px solid rgba(237,236,230,0.2);
    padding: 14px 20px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    cursor: pointer;
  }
  .lwt-back:hover { color: #EDECE6; border-color: #EDECE6; }
  .lwt-confirm {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
    padding: 14px 28px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    cursor: pointer;
  }
  .lwt-confirm:disabled { opacity: 0.35; cursor: not-allowed; }
  .lwt-confirm:not(:disabled):hover { background: #1a26d8; }

  .lwt-disq {
    text-align: center;
    padding: 120px 20px 80px;
  }
  .lwt-disq h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 44px);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }
  .lwt-disq p {
    color: #9a978d;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.55;
    max-width: 46ch;
    margin: 0 auto 48px;
  }
  .lwt-disq-cta { display: flex; justify-content: center; }

  .lwt-thanks {
    text-align: center;
    padding: 60px 20px;
  }
  .lwt-thanks h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .lwt-thanks p { color: #9a978d; max-width: 50ch; margin: 0 auto; }

  @media (max-width: 880px) {
    .lwt-card { padding: 40px 24px 24px; }
    .lwt-close { top: 16px; right: 16px; }
    .lwt-book { grid-template-columns: 1fr; }
    .lwt-book-profile { border-right: none; border-bottom: 1px solid rgba(237,236,230,0.12); padding: 0 0 20px; }
  }

  body.lwt-locked { overflow: hidden; }

  /* ===========================================================
     reduced motion
     =========================================================== */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: .001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .001ms !important;
    }
  }



  /* STUDIO-INFO-V1  ===========================================
     STUDIO INFO STRIP — editorial three-column block
     (mirrors contact.html .cf-info)
     =========================================================== */
  .studio-info {
    padding: 0 32px 24px;
  }
  .cf-info {
    margin-top: 96px;
    padding-top: 40px;
    border-top: 1px solid var(--ink);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
  }
  .cf-info-cell {
    padding: 0 32px 8px;
    border-left: 1px solid var(--ink);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 130px;
  }
  .cf-info-cell:first-child { padding-left: 0; border-left: none; }
  .cf-info-cell:last-child  { padding-right: 0; }
  .cf-info-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .cf-info-num {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--ink);
    opacity: 0.4;
  }
  .cf-info-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 2.2vw, 30px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .cf-info-meta {
    margin-top: auto;
    font-family: 'Space Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .cf-status-row { display: inline-flex; align-items: center; gap: 12px; }
  .cf-status-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #1FBF6B;
    box-shadow: 0 0 0 0 rgba(31, 191, 107, 0.6);
    animation: cf-pulse 1.8s ease-out infinite;
    flex-shrink: 0;
  }
  @keyframes cf-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(31, 191, 107, 0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(31, 191, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(31, 191, 107, 0); }
  }
  .cf-status-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 2.2vw, 30px);
    line-height: 1.05;
    color: var(--ink);
  }
  @media (max-width: 720px) {
    .cf-info { grid-template-columns: 1fr; gap: 0; }
    .cf-info-cell {
      padding: 24px 0;
      border-left: none;
      border-top: 1px solid var(--ink);
      min-height: 0;
    }
    .cf-info-cell:first-child { border-top: none; padding-top: 8px; }
  }

  