/* ============================================================
   Layout Launcher - a Left Inverse product
   Concept: a technical drawing sheet. The desktop is a floor
   plan; windows are drawn openings with dimensions; restoring
   a layout is the drawing correcting the room back to spec.
   Cyanotype ground, drafting-ink lines, one marker orange.
   Type: Big Shoulders Display (title-block lettering)
         Public Sans (body) · Fragment Mono (dimensions, labels)
   ============================================================ */

:root {
  --sheet:     #0E2438;   /* cyanotype ground */
  --sheet-2:   #133049;   /* raised panel */
  --ink:       #D7E6F4;   /* drafting white */
  --ink-dim:   #7E9AB2;   /* faded line work */
  --rule:      rgba(215, 230, 244, .18);
  --rule-soft: rgba(215, 230, 244, .10);
  --marker:    #FF8A4A;   /* surveyor's orange - the one accent */
  --marker-dim: rgba(255, 138, 74, .5);

  --disp: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Public Sans", -apple-system, "Helvetica Neue", sans-serif;
  --mono: "Fragment Mono", ui-monospace, "SFMono-Regular", monospace;

  --pad: clamp(1.25rem, 5vw, 3rem);
  --max: 960px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --snap: cubic-bezier(.2, .9, .25, 1.05);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--sheet);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
::selection { background: rgba(255, 138, 74, .35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--marker);
  outline-offset: 3px;
  border-radius: 2px;
}

/* the paper itself: faint blueprint grid + lamp falloff */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(85% 60% at 70% 8%, rgba(215, 230, 244, .05), transparent 60%),
    radial-gradient(70% 55% at 10% 85%, rgba(215, 230, 244, .03), transparent 55%),
    linear-gradient(168deg, #11293F, var(--sheet) 65%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    repeating-linear-gradient(0deg,  var(--rule-soft) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, var(--rule-soft) 0 1px, transparent 1px 72px);
  opacity: .35;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 20%, #000 30%, transparent 85%);
          mask-image: radial-gradient(120% 90% at 50% 20%, #000 30%, transparent 85%);
}

/* sheet border: the drawing's frame, with corner ticks */
.sheet-frame {
  position: fixed; inset: 10px; z-index: 40; pointer-events: none;
  border: 1px solid var(--rule);
}
.sheet-frame::before, .sheet-frame::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 0 solid var(--ink-dim);
}
.sheet-frame::before { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.sheet-frame::after  { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--marker); color: #1A0E05; padding: .6rem 1rem;
  border-radius: 0 0 6px 6px; font: 500 .8rem/1 var(--mono); z-index: 100;
  transition: top .2s var(--ease);
}
.skip:focus { top: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 10px 10px auto 10px; z-index: 50;
  display: flex; align-items: center; gap: clamp(.9rem, 2.5vw, 1.6rem);
  padding: .85rem clamp(1rem, 3vw, 1.6rem);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.nav--solid {
  background: rgba(14, 36, 56, .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--rule);
}

.nav-studio {
  font: 400 .7rem/1 var(--mono); letter-spacing: .08em;
  color: var(--ink-dim); white-space: nowrap;
  transition: color .25s var(--ease);
}
.nav-studio:hover { color: var(--ink); }

.brand { display: inline-flex; align-items: center; gap: .55rem; margin-right: auto; }
.brand-mark { width: 22px; height: 22px; flex: none; }
.brand-mark .bm-a { fill: none; stroke: var(--ink); stroke-width: 1.6; opacity: .8; }
.brand-mark .bm-b { fill: rgba(255, 138, 74, .14); stroke: var(--marker); stroke-width: 1.6; }
.brand-word {
  font: 600 1.05rem/1 var(--disp); letter-spacing: .09em; text-transform: uppercase;
}

.nav-links { display: flex; gap: clamp(.9rem, 2.2vw, 1.7rem); }
.nav-links a {
  font: 400 .72rem/1 var(--mono); letter-spacing: .07em;
  color: var(--ink-dim); position: relative; padding: .2rem 0;
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 0;
  background: var(--marker); transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: 500 .82rem/1 var(--mono); letter-spacing: .04em;
  padding: .9em 1.5em; border-radius: 3px; cursor: pointer;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-marker {
  background: var(--marker); color: #1A0E05; border-color: var(--marker);
}
.btn-marker:hover { background: #FFA06B; border-color: #FFA06B; }
.btn-line {
  background: transparent; color: var(--ink); border-color: var(--rule);
}
.btn-line:hover { border-color: var(--marker); color: var(--marker); }
.btn-wide { width: 100%; }
.nav-cta { padding: .7em 1.1em; white-space: nowrap; }

/* Not on sale yet. The CTA keeps its place in the layout but must not look or
   behave like something you can press - a live-looking Buy button on an app
   that cannot be bought is worse than no button at all. */
.btn[disabled] {
  background: transparent;
  color: var(--ink-dim);
  border-color: var(--rule);
  cursor: not-allowed;
}
.btn[disabled]:hover {
  background: transparent;
  color: var(--ink-dim);
  border-color: var(--rule);
}
.btn[disabled]:active { transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  min-height: 92svh;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  align-items: center; gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(7rem, 15vh, 9rem) var(--pad) clamp(3rem, 7vh, 5rem);
}

.eyebrow {
  display: flex; align-items: center; gap: .7em;
  font: 400 .7rem/1.4 var(--mono); letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 1.6rem;
}
.eyebrow-tick { width: 22px; height: 1px; background: var(--marker); flex: none; }

.hero-title {
  font: 600 clamp(3.2rem, 7.5vw, 5.6rem)/0.98 var(--disp);
  letter-spacing: .015em; text-transform: uppercase; text-wrap: balance;
}
.hero-title em { font-style: normal; color: var(--marker); }

.hero-sub {
  margin-top: 1.4rem; max-width: 46ch;
  font-size: clamp(.98rem, 1.4vw, 1.06rem); color: var(--ink-dim);
}
.hero-sub strong { color: var(--ink); font-weight: 500; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-fine {
  margin-top: 1.1rem; font: 400 .68rem/1.6 var(--mono);
  letter-spacing: .04em; color: var(--ink-dim);
}

/* ---------- the plan demo ---------- */
.plan {
  position: relative;
  border: 1px solid var(--rule);
  background: var(--sheet-2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.plan-head, .plan-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .65rem .9rem;
  font: 400 .64rem/1 var(--mono); letter-spacing: .12em; color: var(--ink-dim);
}
.plan-head { border-bottom: 1px solid var(--rule); }
.plan-foot { border-top: 1px solid var(--rule); }
.plan-title { color: var(--ink); }
.plan-state { letter-spacing: .05em; font-style: italic; min-width: 0; }

.plan-btn {
  font: 500 .68rem/1 var(--mono); letter-spacing: .05em;
  color: var(--marker); background: transparent;
  border: 1px solid var(--marker-dim); border-radius: 3px;
  padding: .55em .9em; cursor: pointer; white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.plan-btn:hover { background: rgba(255, 138, 74, .12); }
.plan-btn kbd {
  font-family: inherit; font-size: .95em; color: var(--ink-dim);
  border: 1px solid var(--rule); border-radius: 3px; padding: .1em .35em; margin-left: .35em;
}

.plan-stage {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background:
    repeating-linear-gradient(0deg,  var(--rule-soft) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, var(--rule-soft) 0 1px, transparent 1px 24px);
}

/* a drawn window: an opening on the plan */
.pw {
  position: absolute;
  border: 1.5px solid var(--ink);
  background: rgba(215, 230, 244, .05);
  transition:
    left 1s var(--snap), top 1s var(--snap),
    width 1s var(--snap), height 1s var(--snap),
    opacity .6s var(--ease), border-color .6s var(--ease),
    background .6s var(--ease);
}
.pw-name {
  position: absolute; top: 6px; left: 8px;
  font: 400 .6rem/1 var(--mono); letter-spacing: .14em; color: var(--ink);
  transition: color .6s var(--ease);
}
.pw-dim {
  position: absolute; bottom: 5px; right: 7px;
  font: 400 .52rem/1 var(--mono); letter-spacing: .06em; color: var(--ink-dim);
  opacity: 0; transition: opacity .5s var(--ease) .7s;
}
.pw-tag {
  position: absolute; top: 6px; right: 7px;
  font: 500 .52rem/1 var(--mono); letter-spacing: .12em; color: var(--marker);
  opacity: 0; transition: opacity .4s var(--ease) .9s;
}

/* AS FOUND - where the day left them: dashed, dim, wrong */
.as-found .pw { border-style: dashed; border-color: var(--ink-dim); background: transparent; }
.as-found .pw-name { color: var(--ink-dim); }
.as-found [data-pw="code"]    { left: 26%; top: 18%; width: 34%; height: 52%; }
.as-found [data-pw="browser"] { left:  5%; top: 42%; width: 38%; height: 46%; }
.as-found [data-pw="term1"]   { left: 58%; top: 12%; width: 30%; height: 32%; }
.as-found [data-pw="term2"]   { left: 73%; top: 56%; width: 25%; height: 38%; opacity: 0; }

/* AS DRAWN - the saved plan (windows keep a gutter clear for the dims) */
.as-drawn [data-pw="code"]    { left:  2%; top:  6%; width: 42%; height: 85%; }
.as-drawn [data-pw="browser"] { left: 46%; top:  6%; width: 50%; height: 46%; }
.as-drawn [data-pw="term1"]   { left: 46%; top: 56%; width: 24%; height: 35%; }
.as-drawn [data-pw="term2"]   { left: 72%; top: 56%; width: 24%; height: 35%; opacity: 1; }
.as-drawn .pw-dim, .as-drawn .pw--launch .pw-tag { opacity: 1; }

/* dimension lines in the gutters, appearing once restored */
.dim {
  position: absolute; opacity: 0;
  transition: opacity .5s var(--ease) 1s;
}
.as-drawn .dim { opacity: 1; }
.dim i {
  position: absolute; font: italic 400 .52rem/1 var(--mono);
  letter-spacing: .08em; color: var(--marker);
  background: var(--sheet-2); padding: .15em .5em; white-space: nowrap;
}
.dim::before {
  content: ""; position: absolute; background: var(--marker-dim);
}
.dim-w { left: 2%; right: 4%; bottom: 4%; height: 1px; }
.dim-w::before { inset: 0; }
.dim-w i { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.dim-h { top: 6%; bottom: 9%; right: 2%; width: 1px; }
.dim-h::before { inset: 0; }
.dim-h i { left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(90deg); }

/* the stamp: RESTORED - "CODING" */
.stamp {
  position: absolute; left: 50%; top: 50%; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .15em;
  padding: .55em 1em .6em;
  font: 700 1.5rem/1 var(--disp); letter-spacing: .18em; color: var(--marker);
  border: 2px solid var(--marker); border-radius: 4px;
  background: rgba(14, 36, 56, .82);
  transform: translate(-50%, -50%) rotate(-7deg) scale(1.25);
  opacity: 0; pointer-events: none;
}
.stamp b { font: 400 .58rem/1 var(--mono); letter-spacing: .3em; color: var(--ink); }
.as-drawn .stamp {
  opacity: 1; transform: translate(-50%, -50%) rotate(-7deg) scale(1);
  transition: opacity .3s var(--ease) 1.15s, transform .3s var(--snap) 1.15s;
}

/* ============================================================
   THE INVERSE - one line of lineage
   ============================================================ */
.inverse {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 4.5rem) var(--pad);
  border-top: 1px dashed var(--rule);
}
.inverse p {
  max-width: 44em; margin: 0 auto; text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-dim); text-wrap: balance;
}
.inverse i { font-style: italic; color: var(--ink); }
.inverse sup { font-size: .7em; }
.inverse em { font-style: italic; color: var(--marker); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6rem) var(--pad);
  border-top: 1px dashed var(--rule);
}

.sec-head { margin-bottom: clamp(1.8rem, 4vh, 2.8rem); }
.sec-kicker {
  font: 400 .68rem/1 var(--mono); letter-spacing: .26em; text-transform: uppercase;
  color: var(--marker); margin-bottom: 1rem;
}
.sec-title {
  font: 600 clamp(2rem, 4.6vw, 3.2rem)/1.02 var(--disp);
  letter-spacing: .02em; text-transform: uppercase; text-wrap: balance;
}
.sec-title em { font-style: normal; color: var(--ink-dim); }
.sec-intro {
  margin-top: 1.2rem; max-width: 58ch;
  color: var(--ink-dim); font-size: 1rem;
}

/* ---------- three moves ---------- */
.moves-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.4rem);
}
.move { border-top: 1px solid var(--rule); padding-top: 1.1rem; }
.move-no {
  font: italic 400 .72rem/1 var(--mono); letter-spacing: .18em; color: var(--marker);
}
.move h3 {
  margin-top: .7rem;
  font: 600 1.35rem/1.1 var(--disp); letter-spacing: .06em; text-transform: uppercase;
}
.move p { margin-top: .6rem; font-size: .93rem; color: var(--ink-dim); }
.move p strong { color: var(--ink); font-weight: 500; }
.move p em { color: var(--ink); }

/* ---------- window schedule ---------- */
.sched {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--rule);
  font-size: .93rem;
}
.sched th, .sched td {
  text-align: left; vertical-align: top;
  padding: .8rem 1rem;
  border: 1px solid var(--rule-soft);
}
.sched thead th {
  font: 400 .64rem/1 var(--mono); letter-spacing: .22em; text-transform: uppercase;
  color: var(--marker); background: rgba(215, 230, 244, .04);
  border-bottom: 1px solid var(--rule);
}
.sched tbody th {
  font: 600 .92rem/1.3 var(--disp); letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap; width: 9.5em;
}
.sched td { color: var(--ink-dim); }
.sched td em { font-style: italic; color: var(--ink); }
.sched tbody tr:hover td, .sched tbody tr:hover th { background: rgba(215, 230, 244, .03); }

/* ---------- honesty: the toasts ---------- */
.toasts { display: flex; flex-direction: column; gap: .8rem; max-width: 34rem; }
.toast {
  font: 400 .8rem/1.5 var(--mono); letter-spacing: .01em;
  padding: .85em 1.1em; border-radius: 4px;
  border: 1px solid var(--rule); background: var(--sheet-2);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}
.toast-warn { border-color: var(--marker-dim); color: var(--marker); }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.pricing .sec-head { margin-bottom: 0; }

.price-card {
  border: 1px solid var(--rule); background: var(--sheet-2);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.price-amt {
  font: 600 3.4rem/1 var(--disp); letter-spacing: .02em;
  display: flex; align-items: baseline; gap: .6rem;
}
.price-per { font: italic 400 .78rem/1 var(--mono); color: var(--ink-dim); letter-spacing: .06em; }
.price-feats { list-style: none; margin: 1.4rem 0 1.6rem; }
.price-feats li {
  position: relative; padding: .45rem 0 .45rem 1.4rem;
  font-size: .92rem; color: var(--ink-dim);
  border-top: 1px solid var(--rule-soft);
}
.price-feats li::before {
  content: "-"; position: absolute; left: 0; color: var(--marker);
  font-family: var(--mono); font-size: .8em; top: .65rem;
}
.price-fine { margin-top: .9rem; font: 400 .68rem/1.6 var(--mono); color: var(--ink-dim); }
.price-fine a { color: var(--marker); }
.price-fine a:hover { text-decoration: underline; }

.waitlist { grid-column: 1 / -1; max-width: 34rem; }
.waitlist p { font-size: .9rem; color: var(--ink-dim); margin-bottom: .9rem; }
.wl-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.wl-form input {
  flex: 1 1 14rem; min-width: 0;
  font: 400 .85rem/1 var(--mono); color: var(--ink);
  background: var(--sheet-2); border: 1px solid var(--rule); border-radius: 3px;
  padding: .85em 1em;
}
.wl-form input::placeholder { color: var(--ink-dim); }
.wl-form input:focus { outline: 2px solid var(--marker); outline-offset: 1px; }
.wl-msg { margin-top: .6rem; font: 400 .72rem/1.5 var(--mono); color: var(--marker); min-height: 1.2em; }

/* ---------- notes ---------- */
.notes-list { max-width: 44rem; }
.note { border-top: 1px solid var(--rule); }
.note:last-child { border-bottom: 1px solid var(--rule); }
.note summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: baseline; gap: .8rem;
  padding: 1rem .2rem;
  font: 500 1rem/1.4 var(--body); color: var(--ink);
  transition: color .25s var(--ease);
}
.note summary::-webkit-details-marker { display: none; }
.note summary::before {
  content: "+"; font: 400 .9rem/1 var(--mono); color: var(--marker); flex: none;
  transition: transform .25s var(--ease); transform-origin: center;
}
.note[open] summary::before { transform: rotate(45deg); }
.note summary:hover { color: var(--marker); }
.note p {
  padding: 0 .2rem 1.1rem 1.7rem;
  font-size: .92rem; color: var(--ink-dim); max-width: 58ch;
}
.note p strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   FOOTER - the title block
   ============================================================ */
.tblock {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(3rem, 7vh, 4.5rem) var(--pad) clamp(2.2rem, 5vh, 3rem);
}
.tblock-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--rule);
}
.tb-cell {
  padding: .8rem 1rem;
  border: 1px solid var(--rule-soft);
  display: flex; flex-direction: column; gap: .3rem;
}
.tb-k {
  font: 400 .58rem/1 var(--mono); letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-dim);
}
.tb-v { font: 600 .95rem/1.2 var(--disp); letter-spacing: .08em; text-transform: uppercase; }
.tb-v a { transition: color .25s var(--ease); }
.tb-v a:hover { color: var(--marker); }
.tblock-line {
  margin-top: 1.4rem; text-align: center;
  font: 400 .7rem/1.8 var(--mono); letter-spacing: .04em; color: var(--ink-dim);
}
.tblock-line a { transition: color .25s var(--ease); }
.tblock-line a:hover { color: var(--marker); }

/* ============================================================
   REVEAL (JS-driven; visible by default for no-JS)
   ============================================================ */
.reveal-armed [data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-armed [data-reveal].in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: clamp(6.5rem, 14vh, 8rem); }
  .plan { max-width: 640px; }
  .pricing { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .moves-list { grid-template-columns: 1fr; }
  .sched thead { display: none; }
  .sched, .sched tbody, .sched tr, .sched th, .sched td { display: block; width: 100%; }
  .sched tbody th { border-bottom: 0; padding-bottom: .2rem; width: auto; }
  .sched td { border-top: 0; padding-top: 0; }
  .tblock-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stamp { font-size: 1.15rem; }
  /* the plan gets dense at phone width - keep names, drop the fine dims,
     and stack the LAUNCHED tag under the window name */
  .pw-dim, .dim { display: none; }
  .pw-tag { top: 20px; right: auto; left: 8px; }
}
@media (max-width: 480px) {
  .sheet-frame { inset: 6px; }
  .nav { inset: 6px 6px auto 6px; }
  .nav-studio { display: none; }
  .hero-title { font-size: clamp(2.7rem, 13vw, 3.4rem); }
  .plan-foot { flex-wrap: wrap; }
}

/* ============================================================
   REDUCED MOTION - the drawing is already corrected
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; transition-delay: 0s !important;
  }
  .reveal-armed [data-reveal] { opacity: 1 !important; transform: none !important; }
}
