/* ===================================================================
   PULSAR v3 — additive layer
   · custom hint-cursor   · full-screen expandable Work
   · Read-or-Follow split with content slider
   Loads AFTER pulsar.css + pulsar-gold.css
   =================================================================== */

/* ===================================================================
   1 · HINT CURSOR  (the cursor IS the hint)
   =================================================================== */
.cursor-on,
.cursor-on a,
.cursor-on button,
.cursor-on .wk,
.cursor-on .wtile,
.cursor-on .ror-choice,
.cursor-on .rf-card,
.cursor-on .warrow{ cursor:none; }
/* keep a real caret where typing happens */
.cursor-on input,
.cursor-on textarea{ cursor:text; }

.cursorfx{
  position:fixed; top:0; left:0; z-index:10000; pointer-events:none;
  transform:translate(-50%,-50%);
  mix-blend-mode:normal;
  opacity:0; transition:opacity .35s var(--ease);
}
.cursorfx.live{ opacity:1; }

/* the ring — default state */
.cursorfx .cf-ring{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:34px; height:34px; border-radius:100px;
  border:1px solid rgba(255,255,255,.85);
  background:rgba(110,108,240,.04);
  backdrop-filter:invert(1) grayscale(1);
  display:flex; align-items:center; justify-content:center;
  white-space:nowrap; overflow:hidden;
  transition:width .4s var(--ease), height .4s var(--ease),
             background .35s var(--ease), border-color .35s var(--ease),
             border-radius .4s var(--ease);
}
/* centre dot — the Pulsar mark's glowing ion core */
.cursorfx .cf-dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--ion); box-shadow:0 0 8px 1px var(--ion-glow);
  transition:opacity .3s, transform .3s var(--ease);
}
/* the hint label (hidden until a hinted target) */
.cursorfx .cf-label{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color:#fff; opacity:0; transition:opacity .3s var(--ease);
  display:inline-flex; align-items:center; gap:7px; padding-inline:4px;
}

/* hovering an interactive (no custom hint): ring grows, ion core stays */
.cursorfx.is-hover .cf-ring{ width:46px; height:46px; background:rgba(110,108,240,.16); border-color:var(--ion); }
.cursorfx.is-hover .cf-dot{ transform:scale(.9); opacity:1; }

/* hovering a target WITH a data-cursor hint → ink pill with label,
   led by a small ion core dot as a nod to the logo mark */
.cursorfx.is-hint .cf-ring{
  width:var(--cf-w,116px); height:42px; border-radius:100px;
  background:var(--ink); border-color:var(--ink);
  backdrop-filter:none;
  box-shadow:0 12px 32px -10px rgba(11,12,16,.6);
}
.cursorfx.is-hint .cf-dot{ opacity:0; transform:scale(0); }
.cursorfx.is-hint .cf-label{ opacity:1; }
.cursorfx.is-hint .cf-label::before{
  content:''; flex:0 0 auto; width:6px; height:6px; border-radius:50%;
  background:var(--ion); box-shadow:0 0 8px 1px var(--ion-glow);
}
/* press feedback */
.cursorfx.is-down .cf-ring{ transform:translate(-50%,-50%) scale(.86); }

/* dark-on-light contexts: ring reads as ink */
.cursorfx.on-light .cf-ring{ border-color:rgba(11,12,16,.7); }
.cursorfx.on-light.is-hover .cf-ring{ border-color:var(--ion); }
/* ion core reads on any backdrop — no light-mode override needed */

@media (hover:none), (pointer:coarse){ .cursorfx{ display:none !important; } }

/* ===================================================================
   2 · WORK  — full-screen grid + expandable detail
   =================================================================== */
.work-fs{ position:relative; background:var(--paper-2); min-height:100svh; display:flex; flex-direction:column;
  padding-block:clamp(86px,9vh,120px) clamp(28px,4vh,56px); }
.work-fs .wrap{ flex:1; display:flex; flex-direction:column; min-height:0; }

.wfs-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px;
  flex-wrap:wrap; margin-bottom:clamp(18px,2.4vh,30px); }
.wfs-head .wfs-titles{ display:flex; align-items:baseline; gap:18px; }
.wfs-head .idx{ font-family:var(--mono); font-size:13px; letter-spacing:.2em; color:var(--ash); }
.wfs-head h2{ font-family:var(--display); font-weight:800; text-transform:uppercase;
  line-height:.94; letter-spacing:-.014em; font-size:clamp(30px,4.4vw,64px); }
.wfs-head h2 .ital{ color:var(--ion); }
.wfs-head .wfs-note{ font-family:var(--mono); font-size:11.5px; letter-spacing:.04em;
  color:var(--smoke); max-width:34ch; line-height:1.5; }

/* filter chips */
.wfs-tabs{ display:flex; gap:6px; flex-wrap:wrap; margin-bottom:clamp(16px,2vh,26px); }
.wfs-tab{ font-family:var(--mono); font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  background:none; cursor:pointer; color:var(--ash); padding:10px 16px; border-radius:100px;
  border:1px solid transparent; transition:color .35s, border-color .35s, background .35s; }
.wfs-tab .n{ color:var(--steel); margin-right:8px; }
.wfs-tab:hover{ color:var(--graphite); }
.wfs-tab.on{ color:var(--ink); border-color:var(--mist); background:var(--white); }
.wfs-tab.on .n{ color:var(--ion); }

/* the stage holds all category grids + the expanded panel */
.wfs-stage{ position:relative; flex:1; min-height:0; }
/* never let a reveal transform trap the fixed full-screen panel */
.wfs-stage.has-open{ transform:none !important; }

/* one grid per category, stacked; only .on is visible */
.wfs-grid{ position:absolute; inset:0; display:grid;
  grid-template-columns:repeat(4,1fr); grid-template-rows:repeat(2,1fr);
  gap:clamp(10px,1vw,18px);
  opacity:0; visibility:hidden; transform:scale(.985);
  transition:opacity .5s var(--ease), transform .5s var(--ease), visibility .5s; }
.wfs-grid.on{ opacity:1; visibility:visible; transform:none; }
/* editorial asymmetry: hero tile + wide + two small */
.wfs-grid .wtile:nth-child(1){ grid-column:1/3; grid-row:1/3; }
.wfs-grid .wtile:nth-child(2){ grid-column:3/5; grid-row:1/2; }
.wfs-grid .wtile:nth-child(3){ grid-column:3/4; grid-row:2/3; }
.wfs-grid .wtile:nth-child(4){ grid-column:4/5; grid-row:2/3; }

/* tile */
.wtile{ position:relative; border-radius:5px; overflow:hidden; cursor:pointer;
  background:var(--ink); color:var(--white); isolation:isolate;
  transition:transform .55s var(--ease), opacity .45s var(--ease), box-shadow .45s var(--ease);
  will-change:transform; }
.wtile .wtile-media{ position:absolute; inset:0; z-index:0; transition:transform 1s var(--ease); }
.wtile:hover .wtile-media{ transform:scale(1.06); }
.wtile-shade{ position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(11,12,16,.05) 0%, rgba(11,12,16,.25) 45%, rgba(11,12,16,.86) 100%);
  transition:background .5s var(--ease); }
.wtile:hover .wtile-shade{ background:linear-gradient(180deg, rgba(11,12,16,.05) 0%, rgba(75,73,196,.32) 48%, rgba(7,8,12,.9) 100%); }
.wtile-bar{ position:relative; z-index:2; margin-top:auto; padding:clamp(16px,1.5vw,26px);
  height:100%; display:flex; flex-direction:column; justify-content:flex-end; gap:8px; }
.wtile-no{ font-family:var(--mono); font-size:11px; letter-spacing:.18em; color:var(--ion);
  position:absolute; top:clamp(16px,1.5vw,26px); left:clamp(16px,1.5vw,26px); z-index:2; }
.wtile-kind{ position:absolute; top:clamp(15px,1.5vw,24px); right:clamp(15px,1.5vw,24px); z-index:2;
  font-family:var(--mono); font-size:10px; letter-spacing:.16em; text-transform:uppercase;
  color:rgba(255,255,255,.6); border:1px solid rgba(255,255,255,.24); padding:4px 8px; border-radius:2px; }
.wtile-name{ font-family:var(--serif); font-weight:500; line-height:1.02;
  font-size:clamp(20px,1.9vw,34px); }
.wtile-tag{ font-family:var(--mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(255,255,255,.62); }
.wtile-open{ position:absolute; z-index:2; right:clamp(16px,1.5vw,26px); bottom:clamp(16px,1.5vw,26px);
  width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.4);
  display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--mono);
  opacity:0; transform:scale(.7); transition:opacity .4s var(--ease), transform .4s var(--ease), background .35s, border-color .35s; }
.wtile:hover .wtile-open{ opacity:1; transform:none; background:var(--ion); border-color:var(--ion); }

/* the detail body lives inside each tile (editable) — hidden in grid state */
.wtile-detail{ display:none; }

/* dimmed siblings while one tile is expanding (overlap effect) */
.wfs-stage.has-open .wfs-grid.on .wtile:not(.expanded){ opacity:0; transform:scale(.96); pointer-events:none; }

/* the expanded tile fills the WHOLE work section (portaled into .work-fs).
   It stays in the document flow — the page can still scroll past it. */
.wtile.expanded{ position:absolute; inset:0; z-index:60; border-radius:0;
  grid-column:auto !important; grid-row:auto !important;
  cursor:default; box-shadow:none; }
/* keep the custom hint-cursor active inside the expanded panel
   (cursor is inherited, so the explicit default above would otherwise
   re-show the native pointer across the whole detail view) */
.cursor-on .wtile.expanded,
.cursor-on .wtile.expanded *{ cursor:none; }
.cursor-on .wtile.expanded input,
.cursor-on .wtile.expanded textarea{ cursor:text; }
.wtile.expanded .wtile-media,
.wtile.expanded .wtile-shade,
.wtile.expanded .wtile-bar,
.wtile.expanded .wtile-open,
.wtile.expanded .wtile-no,
.wtile.expanded .wtile-kind{ display:none; }
.wtile.expanded .wtile-detail{ display:block; }

/* ---- expanded detail layout ---- */
/* content is held back until the FLIP transform settles (.ready),
   so the media never stretches with the container — it clip-reveals in place */
.wd{ position:absolute; inset:0; background:var(--ink); color:var(--white); overflow:hidden;
  display:grid; grid-template-columns:1.12fr .88fr;
  opacity:0; transition:opacity .4s var(--ease); }
.wtile.expanded.ready .wd{ opacity:1; }
.wd::before{ content:''; position:absolute; right:38%; top:-30%; width:60%; height:90%;
  background:radial-gradient(circle, var(--ion-haze), transparent 62%); pointer-events:none; }
.wd-left{ position:relative; z-index:2; padding:clamp(28px,3.4vw,64px);
  display:flex; flex-direction:column; min-height:0; overflow:auto; }
.wd-kicker{ font-family:var(--mono); font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--ion); }
.wd-title{ font-family:var(--serif); font-weight:500; line-height:1.0; margin-top:14px;
  font-size:clamp(32px,3.6vw,60px); }
.wd-desc{ margin-top:clamp(16px,1.6vw,26px); color:rgba(255,255,255,.78);
  font-size:clamp(15px,1.15vw,19px); line-height:1.5; max-width:46ch; }
.wd-cols{ margin-top:clamp(22px,2.4vw,40px); display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(20px,2vw,40px); }
.wd-block h4{ font-family:var(--mono); font-size:10.5px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--steel); margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.14); }
.wd-block ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.wd-block li{ position:relative; padding-left:20px; font-size:14.5px; line-height:1.4; color:rgba(255,255,255,.82); }
.wd-block li::before{ content:''; position:absolute; left:0; top:.55em; width:7px; height:7px; border-radius:50%;
  background:var(--ion); box-shadow:0 0 8px var(--ion-glow); }
.wd-block.goals li::before{ border-radius:1px; transform:rotate(45deg); background:transparent; box-shadow:none;
  border:1px solid var(--ion); width:8px; height:8px; }
/* the whole tile is clickable to expand — the CTA reads as the centred
   call-to-action of the text column, not a corner afterthought */
.wtile.expanded .wd-left{ padding-top:clamp(74px,7vw,96px); }
.wd-foot{ margin-top:auto; padding-top:clamp(22px,2.4vw,38px); display:flex; align-items:center; justify-content:center; gap:18px; flex-wrap:wrap; }
.wd-more{ font-family:var(--mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase; cursor:pointer;
  display:inline-flex; align-items:center; gap:12px; color:var(--ink); background:var(--white);
  border:0; padding:15px 26px; border-radius:100px; transition:gap .4s var(--ease), background .4s, color .4s; }
.wd-more span{ color:var(--ion); transition:color .3s; }
.wd-more:hover{ background:var(--ion); color:var(--white); gap:18px; }
.wd-more:hover span{ color:#fff; }

/* right: media gallery — one main tile + smaller thumbs */
.wd-right{ position:relative; z-index:2; padding:clamp(20px,1.8vw,40px); display:flex; min-height:0; }
.wd-gallery{ flex:1; display:grid; grid-template-rows:1fr auto; gap:clamp(12px,1vw,18px); min-height:0; }
.wd-media{ position:relative; border-radius:5px; min-height:0;
  box-shadow:0 0 0 1px rgba(110,108,240,.4), 0 30px 80px -30px var(--ion-glow);
  /* clip-reveal in once panel is ready */
  clip-path:inset(0 0 100% 0); }
.wtile.expanded.ready .wd-media{ clip-path:inset(0 0 0 0); transition:clip-path .65s var(--ease) .12s; }
.wd-media .m-type{ font-size:11px; left:16px; right:auto; top:auto; bottom:16px; }
.wd-thumbs{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(12px,1vw,18px); height:clamp(110px,16vh,180px); }
.wd-thumbs .media{ position:relative; border-radius:5px; min-height:0;
  box-shadow:0 0 0 1px rgba(255,255,255,.08);
  clip-path:inset(0 0 100% 0); }
.wtile.expanded.ready .wd-thumbs .media{ clip-path:inset(0 0 0 0); transition:clip-path .6s var(--ease); }
.wtile.expanded.ready .wd-thumbs .media:nth-child(1){ transition-delay:.22s; }
.wtile.expanded.ready .wd-thumbs .media:nth-child(2){ transition-delay:.32s; }
.wd-thumbs .media .m-type{ position:absolute; right:auto; left:11px; top:auto; bottom:11px; font-size:9px; }
.wd-thumbs .media .play-btn{ width:38px; height:38px; }
.wd-thumbs .media .play-btn::before{ border-left-width:10px; border-top-width:7px; border-bottom-width:7px; }
.wd-thumbs .media .thumb-dur{ position:absolute; right:11px; top:11px; z-index:2;
  font-family:var(--mono); font-size:9px; letter-spacing:.1em; color:rgba(255,255,255,.7); }

/* back to grid button — absolute to the work section, scrolls with the panel */
.wfs-back{ position:absolute; z-index:70; top:clamp(16px,1.8vw,30px); right:clamp(16px,1.8vw,30px);
  display:inline-flex; align-items:center; gap:10px; font-family:var(--mono); font-size:11px;
  letter-spacing:.14em; text-transform:uppercase; color:#fff; cursor:pointer;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.3); border-radius:100px;
  padding:11px 18px; backdrop-filter:blur(8px);
  opacity:0; transform:translateY(-8px); pointer-events:none;
  transition:opacity .4s var(--ease) .2s, transform .4s var(--ease) .2s, background .35s; }
.wfs-back:hover{ background:rgba(255,255,255,.2); }
.work-fs.has-open .wfs-back{ opacity:1; transform:none; pointer-events:auto; }

/* cursor-driven back: a top-left strip that carries the "← All work" hint.
   Stops at 50% width so it never overlaps the media gallery on the right. */
.wfs-backzone{ position:absolute; z-index:66; top:0; left:0;
  height:clamp(54px,8vh,88px); width:50%;
  display:none; border:0; background:transparent; padding:0; }
.cursor-on .wfs-backzone{ cursor:none; }
.work-fs.has-open .wfs-backzone{ display:block; }
.wfs-backzone::after{ content:''; position:absolute; inset:0; opacity:0;
  transition:opacity .4s var(--ease);
  background:linear-gradient(180deg, rgba(0,0,0,.32), transparent); }
.wfs-backzone:hover::after{ opacity:1; }
/* visible "up one level" affordance so the zone reads as a way back */
.wfs-backzone .bz-icon,
.wfs-backzone .bz-word{
  position:absolute; top:clamp(15px,1.7vw,28px); z-index:2;
  opacity:0; transform:translateY(-7px);
  transition:opacity .4s var(--ease) .15s, transform .4s var(--ease) .15s, background .35s, color .35s; }
.wfs-backzone .bz-icon{ left:clamp(15px,1.7vw,28px);
  width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:#fff; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.32);
  backdrop-filter:blur(8px); }
.wfs-backzone .bz-word{ left:clamp(66px,calc(1.7vw + 52px),84px);
  height:42px; display:flex; align-items:center;
  font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase;
  color:rgba(255,255,255,.7); }
.work-fs.has-open .wfs-backzone .bz-icon,
.work-fs.has-open .wfs-backzone .bz-word{ opacity:1; transform:none; }
.wfs-backzone:hover .bz-icon{ background:var(--ion); border-color:var(--ion); }
.wfs-backzone:hover .bz-word{ color:#fff; }
@media (hover:hover) and (pointer:fine){
  .wfs-back{ display:none; }
}

@media (max-width:860px){
  .work-fs{ min-height:auto; }
  .wfs-stage{ min-height:78vh; }
  .wfs-grid{ grid-template-columns:1fr 1fr; grid-template-rows:repeat(2,minmax(150px,1fr)); }
  .wfs-grid .wtile:nth-child(1){ grid-column:1/3; grid-row:1/2; }
  .wfs-grid .wtile:nth-child(2){ grid-column:1/3; grid-row:2/3; }
  .wfs-grid .wtile:nth-child(3){ grid-column:1/2; grid-row:3/4; }
  .wfs-grid .wtile:nth-child(4){ grid-column:2/3; grid-row:3/4; }
  .wfs-grid{ grid-template-rows:repeat(3,minmax(150px,1fr)); }
  .wd{ grid-template-columns:1fr; grid-template-rows:1fr auto; }
  .wd-right{ display:flex; padding-top:0; max-height:34vh; }
  .wd-thumbs{ height:clamp(80px,12vh,120px); }
}

/* ===================================================================
   3 · READ-OR-FOLLOW  — choose, then a content slider
   =================================================================== */
.ror-stage{ position:relative; margin-top:clamp(34px,4vw,60px);
  min-height:clamp(460px,46vw,600px); }

/* the two choice panels */
.ror-choices{ position:absolute; inset:0; z-index:10;
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(14px,1.6vw,24px);
  transition:opacity .5s var(--ease), transform .5s var(--ease); }
.ror-stage.chosen .ror-choices{ opacity:0; transform:scale(.97); pointer-events:none; }

.ror-choice{ position:relative; min-height:0; border-radius:6px; overflow:hidden;
  cursor:pointer; isolation:isolate; color:var(--white); display:flex; align-items:flex-end;
  transition:transform .5s var(--ease); }
.ror-choice .ror-bg{ position:absolute; inset:0; z-index:0; transition:transform 1s var(--ease); }
.ror-choice:hover .ror-bg{ transform:scale(1.05); }
.ror-choice .ror-ov{ position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(11,12,16,.1) 0%, rgba(11,12,16,.4) 50%, rgba(11,12,16,.9) 100%);
  transition:background .5s var(--ease); }
.ror-choice:hover .ror-ov{ background:linear-gradient(180deg, rgba(11,12,16,.06) 0%, rgba(75,73,196,.3) 52%, rgba(7,8,12,.92) 100%); }
.ror-choice .ror-c{ position:relative; z-index:2; padding:clamp(24px,2.4vw,44px); width:100%;
  display:flex; flex-direction:column; gap:12px; }
.ror-choice .ror-pick{ font-family:var(--mono); font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--ion); }
.ror-choice .ror-h{ font-family:var(--display); font-weight:800; text-transform:uppercase;
  line-height:.9; font-size:clamp(48px,6vw,104px); letter-spacing:-.02em; }
.ror-choice .ror-sub{ color:rgba(255,255,255,.82); font-size:clamp(15px,1.2vw,18px); max-width:32ch; line-height:1.45; }
.ror-choice .ror-go{ margin-top:6px; font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:10px; opacity:0; transform:translateY(8px);
  transition:opacity .45s var(--ease), transform .45s var(--ease); }
.ror-choice .ror-go span{ color:var(--ion); }
.ror-choice:hover .ror-go{ opacity:1; transform:none; }

/* the expanding wipe layer (overlap animation) */
.ror-wipe{ position:absolute; z-index:30; border-radius:6px; background:var(--ink);
  box-shadow:0 0 0 1px rgba(110,108,240,.4);
  clip-path:inset(0 round 6px); pointer-events:none; opacity:0; }

/* panels (one per choice) — hidden until chosen */
.ror-panel{ position:absolute; inset:0; z-index:20; opacity:0; visibility:hidden;
  transform:translateY(14px); transition:opacity .5s var(--ease) .15s, transform .5s var(--ease) .15s, visibility .5s; }
.ror-panel.on{ opacity:1; visibility:visible; transform:none; }
.ror-panel{ display:flex; flex-direction:column; }
.ror-panel .rf-viewport{ flex:1; display:flex; align-items:center; }

.rf-head{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  margin-bottom:clamp(20px,2vw,32px); }
.rf-head .rf-title{ display:flex; align-items:baseline; gap:16px; }
.rf-head .rf-title h3{ font-family:var(--serif); font-weight:500; font-size:clamp(28px,3vw,48px); }
.rf-head .rf-title .rf-tag{ font-family:var(--mono); font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--ash); }
.rf-ctrl{ display:flex; align-items:center; gap:8px; }
.rf-switch{ font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; cursor:pointer;
  color:var(--ash); background:none; border:1px solid var(--mist); border-radius:100px; padding:11px 18px;
  transition:color .35s, border-color .35s, background .35s; }
.rf-switch:hover{ color:var(--ink); border-color:var(--graphite); }
.rf-arrow{ width:48px; height:48px; border-radius:50%; border:1px solid var(--mist); background:var(--white);
  cursor:pointer; color:var(--ink); font-family:var(--mono); display:flex; align-items:center; justify-content:center;
  transition:background .35s, color .35s, border-color .35s; }
.rf-arrow:hover:not(:disabled){ background:var(--ink); color:var(--white); border-color:var(--ink); }
.rf-arrow:disabled{ opacity:.3; cursor:default; }

/* horizontal card slider */
.rf-viewport{ position:relative; overflow:hidden; padding-block:6px; }

/* ── slider nav handed to the cursor ──────────────────────────────
   On hover-capable devices the prev/next arrows disappear; the left
   and right edges of the viewport become click zones and the custom
   cursor shows the "← Prev" / "Next →" hint. Touch keeps the arrows. */
.rf-nav{ position:absolute; top:0; bottom:0; z-index:6; display:none;
  width:clamp(72px,24%,280px); border:0; background:transparent; padding:0; }
.rf-nav-prev{ left:0; }
.rf-nav-next{ right:0; }
.rf-nav.is-off{ pointer-events:none; }
.cursor-on .rf-nav{ cursor:none; }
/* faint edge veil so the zone is discoverable without a visible button */
.rf-nav::after{ content:''; position:absolute; inset:0; opacity:0;
  transition:opacity .4s var(--ease);
  background:linear-gradient(90deg, rgba(11,12,16,.05), transparent 70%); }
.rf-nav-next::after{ background:linear-gradient(270deg, rgba(11,12,16,.05), transparent 70%); }
.rf-nav:not(.is-off):hover::after{ opacity:1; }
@media (hover:hover) and (pointer:fine){
  .rf-arrow{ display:none; }
  .rf-nav{ display:block; }
}
.rf-track{ display:flex; gap:clamp(14px,1.6vw,24px); transition:transform .65s var(--ease); }
.rf-card{ flex:0 0 clamp(280px,30vw,400px); background:var(--white); border:1px solid var(--mist);
  border-radius:6px; overflow:hidden; box-shadow:0 16px 44px -30px rgba(11,12,16,.5);
  display:flex; flex-direction:column; cursor:pointer; transition:transform .45s var(--ease), box-shadow .45s var(--ease); }
.rf-card:hover{ transform:translateY(-6px); box-shadow:0 30px 60px -34px rgba(11,12,16,.6); }
.rf-card .media{ border-radius:0; width:100%; }
.rf-card .rf-body{ padding:clamp(18px,1.4vw,26px); display:flex; flex-direction:column; gap:11px; flex:1; }
.rf-card .rf-badge{ align-self:flex-start; font-family:var(--mono); font-size:10px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--ion-deep); border:1px solid rgba(110,108,240,.4); border-radius:3px; padding:4px 9px; }
.rf-card .rf-h{ font-family:var(--serif); font-size:clamp(20px,1.6vw,28px); font-weight:500; line-height:1.12;
  transition:color .35s; }
.rf-card:hover .rf-h{ color:var(--ion-deep); }
.rf-card .rf-ex{ color:var(--smoke); font-size:15px; line-height:1.45; flex:1; }
.rf-card .rf-quote{ font-family:var(--serif); font-size:clamp(18px,1.4vw,23px); line-height:1.34; }
.rf-card .rf-meta{ font-family:var(--mono); font-size:10.5px; letter-spacing:.06em; color:var(--ash); }
.rf-card.text{ border-left:2px solid var(--ion); }

@media (max-width:760px){
  .ror-choices{ grid-template-columns:1fr; }
  .ror-choice{ min-height:clamp(260px,60vw,360px); }
}

/* ===================================================================
   4 · COLOPHON — "we built this one too" + 5-point feedback
   =================================================================== */
.colophon{ position:relative; overflow:hidden; background:var(--ink); color:var(--white);
  padding:clamp(72px,11vw,150px) var(--pad); text-align:center;
  border-top:1px solid rgba(255,255,255,.08); }
.colo-glow{ position:absolute; left:50%; top:-12%; transform:translateX(-50%);
  width:min(120vw,1100px); height:88%; pointer-events:none;
  background:radial-gradient(circle at 50% 0%, var(--ion-haze), transparent 60%); }
.colo-inner{ position:relative; z-index:1; max-width:760px; margin-inline:auto; }
.colo-kicker{ color:var(--ash); justify-content:center; display:flex; }
.colo-kicker .dot{ color:var(--ion); }
.colo-h{ font-family:var(--display); font-weight:800; text-transform:uppercase;
  line-height:.98; letter-spacing:-.015em; font-size:clamp(34px,5.2vw,76px);
  margin-top:clamp(16px,1.8vw,26px); }
.colo-sub{ margin:clamp(18px,2vw,28px) auto 0; max-width:54ch;
  color:rgba(255,255,255,.74); font-size:clamp(15px,1.15vw,18px); line-height:1.6; text-wrap:pretty; }
.colo-sub b{ color:var(--white); font-weight:700; }

/* rating */
.rate{ margin-top:clamp(40px,5vw,68px); }
.rate-q{ display:block; font-family:var(--mono); font-size:12px; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ash); margin-bottom:clamp(18px,2vw,26px); }
.rate-row{ display:flex; justify-content:space-between; gap:clamp(8px,1.4vw,16px);
  max-width:clamp(300px,82vw,460px); margin-inline:auto; }
.rate-dot{ flex:1 1 0; aspect-ratio:1; max-width:74px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.24); border-radius:50%; background:transparent;
  color:rgba(255,255,255,.7); font-family:var(--mono); font-size:clamp(15px,1.6vw,19px);
  cursor:pointer; transition:transform .3s var(--ease), background .3s var(--ease),
  border-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease); }
.cursor-on .rate-dot{ cursor:none; }
.rate-dot span{ transition:transform .3s var(--ease); }
.rate-dot:hover{ border-color:var(--ion); color:var(--white); transform:translateY(-3px); }
.rate-dot.lit{ background:var(--ion); border-color:var(--ion); color:var(--white);
  box-shadow:0 10px 30px -10px var(--ion-glow); }
.rate-dot.sel{ transform:translateY(-3px) scale(1.06); }
.rate-scale{ display:flex; justify-content:space-between;
  max-width:clamp(300px,82vw,460px); margin:16px auto 0;
  font-family:var(--mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; }
.rate-scale .rate-low{ color:rgba(255,255,255,.4); }
.rate-scale .rate-high{ color:var(--ion); }
.rate-resp{ min-height:1.4em; margin-top:clamp(22px,2.6vw,34px);
  font-family:var(--serif); font-size:clamp(19px,1.9vw,28px); line-height:1.2; color:var(--white);
  opacity:0; transform:translateY(8px); transition:opacity .5s var(--ease), transform .5s var(--ease); }
.rate-resp.show{ opacity:1; transform:none; }

@media (max-width:520px){
  .rate-scale{ font-size:9.5px; letter-spacing:.06em; }
}
