  /* ═══════════════════════════════════════════════════════════════════
     XALA STUDIO THEME — white editorial re-theme of styles.css.
     Derived from styles.css: same layout skeleton, grid, spacing rhythm,
     and class names. Re-themed to the locked XALA system
     (projects/XALA/_brand/visual-aesthetic.md):
       · pure white bg, ink type, hairline rules — no panels, no gray boxes
       · NO gradients, NO glows, NO drop shadows, NO glassmorphism
       · accent #D9252A at most ONCE per composition/viewport-scene,
         reserved for the signature/payoff (here: the logo's accent dot).
         Buttons, links, focus rings, hovers are INK-based.
       · green/amber only in genuinely semantic status UI
       · Inter 400/500/600 only · tabular numerals · mono eyebrows
       · motion quiet, real easing, fails OPEN (no opacity:0 resting states)
     ═══════════════════════════════════════════════════════════════════ */
  :root{
    --bg:#FFFFFF;
    --ink:#0A0A0A;
    --ink-2:#6B6B6B;
    --rule:#E5E5E5;
    --line:#ECECEC;
    --accent:#D9252A;         /* THE red — locked. Signature/payoff only. */
    --green:#0a7a0a;          /* success / live status only */
    --amber:#b07900;          /* warning / in-build status only */
    /* compatibility aliases (skeleton selectors from styles.css) */
    --fg:var(--ink);
    --muted:var(--ink-2);
    --muted-2:#8f8f8f;
    --panel:#FFFFFF;          /* panels become white space + hairlines */
    --panel-2:#FFFFFF;
    --rule-strong:#D6D6D6;
    --mono:'Menlo','SF Mono',ui-monospace,'SFMono-Regular',monospace;
    --ease:cubic-bezier(0.23, 1, 0.32, 1);       /* strong ease-out, Emil */
    --ease-soft:cubic-bezier(0.4, 0, 0.2, 1);     /* material standard */
    --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1); /* XALA wordmark spring — restored 2026-08-13 */
    --ease-rise:cubic-bezier(0.5, 1.6, 0.4, 1);   /* XALA rise-in — restored 2026-08-13 */
  }
  *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
  html{scroll-behavior:smooth}
  body{
    background:var(--bg);color:var(--ink);
    font-family:'Inter','Helvetica Neue',Helvetica,Arial,sans-serif;
    font-weight:400;
    -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
    min-height:100dvh;display:flex;flex-direction:column;
    overflow-x:hidden;
    font-size:16px;line-height:1.55;letter-spacing:-.005em;
  }
  a{color:inherit;text-decoration:none}
  ::selection{background:var(--ink);color:#fff}
  *:focus-visible{outline:2px solid var(--ink);outline-offset:3px}
  *:focus:not(:focus-visible){outline:none}

  /* TOP — tracked mono label strip on white; solid, hairline-bound (no blur) */
  .top{
    padding:max(18px, env(safe-area-inset-top, 20px)) 48px 18px;
    display:flex;justify-content:space-between;align-items:center;
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);
    position:sticky;top:0;z-index:50;
    background:var(--bg);
    border-bottom:1px solid var(--rule);
  }
  .top .brand{
    display:flex;align-items:center;gap:14px;color:var(--ink);
    font-family:'Inter','Helvetica Neue',Helvetica,Arial,sans-serif;
    font-size:19px;font-weight:600;letter-spacing:-.018em;text-transform:none;
    position:relative;
  }
  /* masthead brand is the MARK, like the real site's .brand-fixed (28px).
     Owner call 2026-08-13: "put the logo as the header like in the real
     site" — the mark's red dot rides the sticky chrome by his instruction;
     scene red-counting treats chrome separately from content. */
  .top .brand svg{width:28px;height:28px;display:block}
  /* invisible hit-area extension (same pattern as .hp-end a::after): the
     29px-tall wordmark link keeps its look while the tap target clears the
     44px design-bar floor (formatting pass 2026-08-13) */
  .top .brand::after{content:"";position:absolute;left:-10px;right:-10px;top:-10px;bottom:-10px}
  .top .brand svg{width:34px;height:34px;display:block}
  .top a{transition:color .18s var(--ease)}
  .top a:hover{color:var(--ink)}
  .top .right{display:flex;gap:32px;align-items:center}

  /* MAIN HERO — ported from xala.studio (wave 1c hybrid, 2026-08-13;
     kinetic mark removed wave 1d): giant stacked X A L A letterforms own
     the scene ALONE — tagline verbatim, meta chips, Scroll cue. With the
     mark gone the letterforms take the freed width (22.5vw, up from 21vw).
     ZERO red in this scene (at-most-one rule). Rests fully visible —
     the entrance choreography (html.js-anim gated) only ever ADDS motion. */
  main.hero{
    flex:none;display:flex;flex-direction:column;
    min-height:calc(100dvh - 55px);   /* full viewport minus sticky masthead */
    /* FULL-BLEED like the real xala.studio hero (source: .hero has no
       container box, just 48px gutters) — owner asked to match its width
       on large screens (2026-08-13). Sections below keep the 1400 box. */
    padding:26px 48px 28px;width:100%;
  }
  .hero-meta{
    display:flex;justify-content:space-between;gap:8px 24px;flex-wrap:wrap;
    font-size:12px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-2);
  }
  .hero-content{flex:1;display:flex;flex-direction:column;justify-content:center;padding:40px 0 16px}
  .hero-wordmark{
    /* exact source geometry (xala styles.css .hero-wordmark) */
    font-weight:900;font-size:clamp(120px,22vw,360px);letter-spacing:-.025em;line-height:.85;
    margin:0;color:var(--ink);
  }
  .hero-wordmark span{
    display:inline-block;
    transition:transform .6s var(--ease-spring);
    transform-origin:50% 100%;
  }
  .hero-wordmark span:nth-child(odd):hover{transform:translateY(-.1em) rotate(-7deg)}
  .hero-wordmark span:nth-child(even):hover{transform:translateY(-.1em) rotate(7deg)}
  .hero-tagline{
    display:flex;justify-content:space-between;align-items:flex-end;
    margin-top:clamp(32px,4.5vw,56px);gap:24px 48px;
  }
  .hero-tagline .lead{
    font-weight:400;font-size:clamp(18px,1.6vw,24px);letter-spacing:-.01em;line-height:1.4;
    max-width:560px;color:var(--ink);margin:0;
  }
  .hero-tagline .meta-right{
    font-size:12px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;
    color:var(--ink-2);text-align:right;line-height:1.7;white-space:nowrap;
  }
  .hero-scroll{
    font-size:11px;font-weight:500;letter-spacing:.3em;text-transform:uppercase;
    color:var(--ink-2);text-align:center;padding-top:24px;
  }
  @media (max-width:880px){
    main.hero{padding:22px 24px 24px}
  }
  @media (max-width:680px){
    .hero-wordmark{font-size:clamp(80px,27vw,150px)}
    .hero-tagline{flex-direction:column;align-items:flex-start;gap:24px;margin-top:28px}
    .hero-tagline .meta-right{text-align:left}
    .hero-meta{flex-direction:column;gap:6px}
  }

  /* (Hero .mark sizing removed wave 1d — the kinetic mark left the hero;
     the animated mark now lives in the footer, SMIL-driven, all ink.) */

  /* SECTION HEAD — xala's eyebrow bar in this page's mono grammar */
  .sec-head{
    display:flex;justify-content:space-between;gap:8px 24px;flex-wrap:wrap;
    margin-bottom:clamp(48px,6vw,80px);padding-bottom:20px;border-bottom:1px solid var(--rule);
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);
  }
  .sec-head .num{color:var(--ink)}

  /* 01 · THE SHIFT — ported from xala.studio. RED DISCIPLINE: source shows
     slot word AND stat in accent; reconciled to ONE red per scene — the
     slot keeps it (brand law: red is the AI's named answer), stat runs ink. */
  .shift{padding:clamp(88px,10vw,150px) 48px;max-width:1400px;width:100%;margin:0 auto;border-top:1px solid var(--rule)}
  .shift-body{display:grid;grid-template-columns:1fr 1fr;gap:56px 96px;align-items:start}
  .shift h2{
    font-weight:400;font-size:clamp(38px,5.2vw,76px);letter-spacing:-.038em;line-height:1.06;
    margin:0;color:var(--ink);
  }
  .nowrap{white-space:nowrap}
  /* "They ask <AI name>" travels as one unit. Desktop: nowrap, so the unit
     drops to its own line and may spill a little into the empty column gap
     — exactly how the source composes it. Phones: normal wrapping, so the
     slot breaks below "They ask" instead of overflowing the viewport. */
  .askline{display:inline-block;white-space:nowrap}
  @media (max-width:680px){.askline{white-space:normal;max-width:100%}}
  .slot{
    display:inline-block;position:relative;overflow:hidden;
    height:1.15em;vertical-align:middle;line-height:1.15;
    color:var(--accent);
  }
  .slot-track{display:flex;flex-direction:column}
  /* the rotation is pure CSS and gated on no-preference: no JS → it still
     runs; reduced motion / no animation → the track rests at frame one and
     the first name ("ChatGPT.") stays visible. Fails open by construction. */
  @media (prefers-reduced-motion: no-preference){
    .slot-track{animation:slot 6s cubic-bezier(0.5,1.5,0.4,1) infinite}
  }
  .slot-item{height:1.15em;line-height:1.15;white-space:nowrap;display:block}
  @keyframes slot{
    0%,17%{transform:translateY(0)}
    25%,42%{transform:translateY(-1.15em)}
    50%,67%{transform:translateY(-2.3em)}
    75%,92%{transform:translateY(-3.45em)}
    100%{transform:translateY(-4.6em)}
  }
  .shift-right p{font-size:17px;line-height:1.6;color:var(--ink-2);margin:0 0 28px;max-width:48ch}
  .shift .stat{
    margin:44px 0;padding:28px 0;
    border-top:1px solid var(--ink);border-bottom:1px solid var(--rule);
  }
  .shift .stat .num{
    font-weight:400;font-size:clamp(64px,8.5vw,120px);letter-spacing:-.05em;line-height:.9;
    color:var(--ink);font-variant-numeric:tabular-nums;
  }
  .shift .stat .unit{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;
    color:var(--ink-2);margin-top:12px;
  }
  .shift .cite{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;
    color:var(--ink-2);margin-top:20px;
  }

  /* 02 · FOUR WAYS IN — the priced ladder as its own section */
  .fourways{padding:clamp(72px,8vw,112px) 48px;max-width:1400px;width:100%;margin:0 auto;border-top:1px solid var(--rule)}
  .fourways-body{display:grid;grid-template-columns:1.05fr .95fr;gap:48px 96px;align-items:start}
  .fw-h2{
    font-weight:500;font-size:clamp(34px,4.2vw,58px);letter-spacing:-.02em;line-height:1.06;
    margin:0 0 24px;color:var(--ink);max-width:15ch;
  }
  .fw-h2 em{font-style:normal;color:var(--ink-2);font-weight:500}
  .fw-right .meta-row{
    border-top:none;padding-top:8px;max-width:560px;
    flex-direction:column;align-items:flex-start;gap:10px;
  }
  .fw-right .meta-row .sep{display:none}
  @media (max-width:880px){
    .shift,.fourways{padding-left:24px;padding-right:24px}
    .shift-body,.fourways-body{grid-template-columns:1fr;gap:40px}
  }

  .hero-descriptor{
    font-size:clamp(15px,1.4vw,18px);line-height:1.6;color:var(--ink-2);
    max-width:54ch;
    margin:0 0 28px;
    min-height:0;
  }
  .hero-descriptor em{font-style:normal;color:var(--ink);font-weight:500}

  .meta-row{
    display:flex;gap:24px;align-items:center;flex-wrap:wrap;
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);
    padding-top:22px;border-top:1px solid var(--rule);width:100%;max-width:920px;
  }
  .meta-row .sep{color:var(--rule-strong)}
  .meta-row .live{color:var(--ink);display:inline-flex;align-items:center;gap:8px}
  .meta-row .live .dot{width:6px;height:6px;border-radius:50%;background:var(--green)}
  /* declared after the base rule so it wins the cascade (the earlier 880px
     block loses to the base's align-items:center otherwise) */
  @media (max-width:880px){
    .meta-row{flex-direction:column;align-items:flex-start;gap:10px;padding-top:20px}
  }

  /* SECTION FRAME */
  section.s{padding:112px 48px;max-width:1400px;width:100%;margin:0 auto}
  section.s.rule{border-top:1px solid var(--rule)}

  /* WORK SECTION */
  .work-head{display:flex;justify-content:space-between;align-items:end;gap:32px;margin-bottom:56px;flex-wrap:wrap}
  .work-head .label{font-family:var(--mono);font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-2);margin-bottom:14px}
  .work-head h2{font-size:clamp(36px,4.5vw,56px);font-weight:500;letter-spacing:-.02em;line-height:1.05;max-width:18ch}
  .work-head .meta{font-size:13px;color:var(--ink-2);letter-spacing:-.005em;text-align:right}

  /* CARDS — hairline-bound, white; hover darkens the boundary. No lifts,
     no sliding panels, no fills. */
  .work-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
  .card{
    position:relative;display:flex;flex-direction:column;
    padding:32px 32px 28px;border:1px solid var(--rule);background:var(--bg);
    min-height:340px;overflow:hidden;
    transition:border-color .3s var(--ease);
  }
  .card::before{content:none}
  .card:hover{border-color:var(--ink)}
  .card > *{position:relative;z-index:1}

  .card .top-row{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:36px}
  .card .logo{height:42px;display:flex;align-items:center}
  .card .logo svg{height:42px;width:auto;max-width:96px;display:block}
  .card .logo svg[viewBox="0 0 550 325"]{max-width:120px;height:36px}
  .card .logo .type{font-weight:600;font-size:32px;letter-spacing:-.03em;color:var(--ink);line-height:1}
  .card .logo .type.italic{font-style:italic;font-weight:500;font-size:38px;letter-spacing:-.03em}
  .card .num{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);
  }

  .card h3{font-weight:500;font-size:38px;letter-spacing:-.02em;line-height:1;margin-bottom:10px;color:var(--ink)}
  .card .vert{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);margin-bottom:14px;
  }
  .card p{font-size:14.5px;color:var(--ink-2);line-height:1.55;max-width:34ch}
  .card .foot{margin-top:auto;padding-top:20px;display:flex;justify-content:space-between;align-items:center;gap:12px}
  .card .arrow{
    display:inline-flex;align-items:center;gap:10px;
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink);
  }
  .card .arrow .line{width:24px;height:1px;background:currentColor;transition:width .4s var(--ease)}
  .card:hover .arrow .line{width:40px}
  .card .status{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);
    display:inline-flex;align-items:center;gap:8px;
  }
  .card .status .dot{width:5px;height:5px;border-radius:50%;background:currentColor}
  .card.live .status{color:var(--ink)}
  .card.live .status .dot{background:var(--green)}
  .card.build .status .dot{background:var(--amber)}

  /* ABOUT + FAQ */
  .depth{border-top:1px solid var(--rule);padding:96px 48px 80px}
  .depth-inner{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:1fr 1.2fr;gap:80px}
  .block .lang-tag{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-2);margin-bottom:14px;
  }
  .block h2{font-weight:500;font-size:clamp(32px,3.4vw,44px);letter-spacing:-.02em;line-height:1.08;margin-bottom:18px}
  .block .intro{font-size:16px;color:var(--ink);line-height:1.6;margin-bottom:0;max-width:48ch}
  .block .intro + .intro{margin-top:12px;color:var(--ink-2)}

  .faq{border-top:1px solid var(--rule)}
  .faq-item{border-bottom:1px solid var(--rule)}
  .faq-item summary{
    list-style:none;cursor:pointer;padding:22px 0;
    font-size:16px;font-weight:500;letter-spacing:-.005em;color:var(--ink);
    display:flex;justify-content:space-between;align-items:center;gap:16px;
    transition:color .2s var(--ease);
  }
  .faq-item summary::-webkit-details-marker{display:none}
  .faq-item summary::after{
    content:'+';font-size:20px;font-weight:400;color:var(--ink-2);flex-shrink:0;line-height:1;
    transition:transform .3s var(--ease-soft), color .2s var(--ease);
  }
  .faq-item[open] summary::after{content:'−';color:var(--ink)}
  .faq-item p{font-size:15px;color:var(--ink-2);line-height:1.6;padding:0 0 22px;max-width:60ch}

  /* Services-grid page elements */
  .deliverables-list{list-style:none;padding:0;margin:24px 0 12px;border-top:1px solid var(--rule)}
  .deliverables-list li{
    padding:14px 0 14px 22px;
    border-bottom:1px solid var(--rule);
    font-size:15px;line-height:1.55;color:var(--ink);
    position:relative;
  }
  .deliverables-list li::before{
    content:'';position:absolute;left:0;top:22px;
    width:8px;height:1px;background:var(--ink);
  }
  .meta-line{
    font-size:13px;color:var(--ink-2);letter-spacing:-.005em;
    margin:20px 0 0;padding-top:16px;border-top:1px solid var(--rule);
  }
  .meta-line strong{color:var(--ink);font-weight:500}

  /* CONTACT INTRO — ink buttons, underlined ghost links */
  .contact-cta-row{display:flex;flex-wrap:wrap;gap:14px 24px;margin-top:32px;align-items:center}
  .contact-cta{
    display:inline-flex;align-items:center;gap:10px;
    background:var(--ink);color:#fff;text-decoration:none;
    padding:14px 22px;font-size:15px;font-weight:500;letter-spacing:-.005em;
    border:1px solid var(--ink);
    transition:background-color .2s var(--ease),color .2s var(--ease);
  }
  .contact-cta:hover{background:#fff;color:var(--ink)}
  .contact-cta .arr{font-size:18px;line-height:1}
  .contact-cta-ghost{
    display:inline-flex;align-items:center;
    color:var(--ink);text-decoration:none;font-size:14px;letter-spacing:-.005em;
    border-bottom:1px solid var(--ink);padding-bottom:1px;
    transition:color .2s var(--ease),border-color .2s var(--ease);
  }
  .contact-cta-ghost:hover{color:var(--ink-2);border-color:var(--ink-2)}

  .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:8px}
  .step{border-top:1px solid var(--rule);padding-top:20px}
  .step-num{font-family:var(--mono);font-size:11px;font-weight:500;letter-spacing:.14em;color:var(--ink-2);text-transform:uppercase;display:block;margin-bottom:10px}
  .step h3{font-size:18px;font-weight:500;letter-spacing:-.012em;margin:0 0 8px;line-height:1.25}
  .step p{font-size:14px;color:var(--ink-2);line-height:1.6;margin:0;max-width:38ch}
  @media (max-width:880px){
    .steps{grid-template-columns:1fr;gap:0}
    .step{padding-top:24px;padding-bottom:20px;border-top:1px solid var(--rule)}
  }

  /* ENGAGEMENT TIERS */
  .tiers{border-top:1px solid var(--rule);margin-top:8px}
  .tier{
    border-bottom:1px solid var(--rule);
    padding:28px 0;
    display:grid;grid-template-columns:minmax(180px,260px) 1fr;gap:24px 48px;
    align-items:start;
  }
  .tier-meta-col{display:flex;flex-direction:column;gap:6px}
  .tier-name{font-size:20px;font-weight:500;letter-spacing:-.012em;color:var(--ink);line-height:1.2}
  .tier-price{font-size:13px;letter-spacing:.02em;color:var(--ink-2);font-weight:500;font-variant-numeric:tabular-nums}
  .tier-body{display:flex;flex-direction:column;gap:10px}
  .tier-examples{font-size:14px;color:var(--ink-2);line-height:1.55;margin:0}
  .tier-included{font-size:14px;color:var(--ink);line-height:1.55;margin:0}
  @media (max-width:760px){
    .tier{grid-template-columns:1fr;gap:14px}
  }

  /* CLOSING + INTAKE FORM */
  .closing{padding:80px 48px 96px;border-top:1px solid var(--rule);max-width:1400px;margin:0 auto;width:100%}
  .closing h2{font-size:clamp(36px,4.5vw,56px);font-weight:500;letter-spacing:-.02em;line-height:1.05;max-width:18ch}
  .closing-lede{margin-top:14px;font-size:17px;color:var(--ink-2);max-width:48ch;line-height:1.55}

  .intake{margin-top:56px;border-top:1px solid var(--rule);padding-top:48px}
  .intake-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px}
  .intake .field{display:flex;flex-direction:column;gap:8px}
  .intake .field > span{font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);font-weight:500}
  .intake .field.full{grid-column:span 2}
  .intake input,.intake select,.intake textarea{
    font-family:'Inter','Helvetica Neue',Helvetica,Arial,sans-serif;
    font-size:16px;color:var(--ink);font-weight:400;letter-spacing:-.005em;
    background:var(--bg);border:1px solid var(--rule-strong);
    padding:12px 14px;outline:none;transition:border-color .15s var(--ease);width:100%;
  }
  .intake input:hover,.intake select:hover,.intake textarea:hover{border-color:var(--ink-2)}
  .intake input:focus,.intake select:focus,.intake textarea:focus{border-color:var(--ink)}
  .intake input:focus-visible,.intake select:focus-visible,.intake textarea:focus-visible{outline:none;box-shadow:none}
  .intake input::placeholder,.intake textarea::placeholder{color:var(--muted-2);opacity:.8}
  .intake textarea{resize:vertical;min-height:108px;line-height:1.55}
  .intake select{-webkit-appearance:none;appearance:none;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236B6B6B' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:38px}
  .intake-foot{margin-top:40px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:18px}
  .intake-foot .alt{font-family:var(--mono);font-size:11px;color:var(--ink-2);letter-spacing:.14em;text-transform:uppercase;font-weight:500}
  .intake button{
    font-family:'Inter','Helvetica Neue',Helvetica,Arial,sans-serif;
    cursor:pointer;border:1px solid var(--ink);background:var(--ink);color:#fff;
    display:inline-flex;align-items:center;gap:10px;padding:0 22px;height:46px;
    font-size:13px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;
    transition:background-color .2s var(--ease), color .2s var(--ease);
  }
  .intake button:hover{background:#fff;color:var(--ink)}
  .intake button:active{background:#fff;color:var(--ink)}
  .intake button .arr{transition:transform .25s var(--ease)}
  .intake button:hover .arr{transform:translateX(3px)}
  .intake button:disabled{opacity:.55;cursor:wait;background:var(--ink);color:#fff;border-color:var(--ink)}

  .intake-feedback{
    margin-top:24px;font-size:14px;color:var(--ink-2);line-height:1.55;
    min-height:1.2em;letter-spacing:-.005em;
    transition:color .2s var(--ease);
  }
  .intake-feedback.ok{color:var(--green)}
  .intake-feedback.err{color:var(--ink);font-weight:500}
  @media (max-width:680px){.intake-grid{grid-template-columns:1fr}.intake .field.full{grid-column:span 1}}

  /* FOOT */
  .foot{
    padding:32px 48px;display:flex;justify-content:space-between;align-items:center;
    font-family:var(--mono);
    font-size:10px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);
    border-top:1px solid var(--rule);
  }
  .foot a{transition:color .2s var(--ease)}
  .foot a:hover{color:var(--ink)}

  /* SCROLL REVEAL — only hides when JS is available; no-JS rests visible.
     Richness matches the dark sheet (20px / .9s strong ease-out). */
  .js .reveal{opacity:0;transform:translateY(20px);transition:opacity .9s var(--ease), transform .9s var(--ease)}
  .js .reveal.in{opacity:1;transform:translateY(0)}

  @media (prefers-reduced-motion: reduce){
    *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
    .wordmark span,.hero-wordmark span{opacity:1!important;transform:none!important}
    .slot-track{transform:none!important}
    .reveal{opacity:1;transform:none}
  }

  @media (max-width:980px){
    .work-grid{grid-template-columns:1fr 1fr}
    .depth-inner{grid-template-columns:1fr;gap:48px}
  }
  @media (max-width:680px){
    .top{padding-left:24px;padding-right:24px}
    main{padding:32px 24px 56px}
    .page-main{padding:96px 24px 48px !important}
    .page-h1{font-size:44px !important}
    section.s,.depth,.cta-strip{padding-left:24px;padding-right:24px}
    .work-grid{grid-template-columns:1fr}
    .card{min-height:280px;padding:28px}
    .card h3{font-size:30px}
    .top .right{display:none}
    .lede{font-size:18px}
    .foot{padding:24px;flex-direction:column;gap:12px;align-items:flex-start}
  }

  /* ─── Page header (non-home pages) ─── */
  .page-main{
    display:flex;flex-direction:column;align-items:flex-start;
    padding:112px 48px 80px;max-width:1100px;width:100%;margin:0 auto;
    border-bottom:1px solid var(--rule);
  }
  .page-eye{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-2);
    margin-bottom:32px;display:flex;align-items:center;gap:14px;
  }
  .page-eye .dash{width:24px;height:1px;background:var(--rule-strong)}
  .page-h1{
    font-weight:500;font-size:clamp(44px,5.6vw,84px);letter-spacing:-.02em;line-height:1.05;
    color:var(--ink);max-width:18ch;margin:0 0 24px;
  }
  .page-h1 em{font-style:normal;color:var(--ink-2);font-weight:500}
  .page-lede{
    font-size:19px;line-height:1.55;color:var(--ink-2);max-width:60ch;font-weight:400;
  }
  .page-lede a{color:var(--ink);border-bottom:1px solid var(--ink);padding-bottom:1px;transition:color .15s var(--ease),border-color .15s var(--ease)}
  .page-lede a:hover{color:var(--ink-2);border-color:var(--ink-2)}

  /* ─── Notes index list ─── */
  .notes-list{list-style:none;margin:0;padding:0;border-top:1px solid var(--rule)}
  .note-row{border-bottom:1px solid var(--rule)}
  .note-row a{display:grid;grid-template-columns:1fr 120px;gap:48px;padding:36px 8px;align-items:start;color:var(--ink)}
  .note-row .note-meta{grid-column:1;display:flex;gap:18px;align-items:center;margin-bottom:14px;font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);font-weight:500}
  .note-row .note-num{color:var(--muted-2)}
  .note-row .note-tag{color:var(--ink)}
  .note-row h3{grid-column:1;font-size:30px;font-weight:500;letter-spacing:-.02em;line-height:1.15;margin:0 0 12px;color:var(--ink);transition:color .2s var(--ease);max-width:32ch}
  .note-row a:hover h3{color:var(--ink-2)}
  .note-row p{grid-column:1;font-size:15px;color:var(--ink-2);line-height:1.55;max-width:62ch}
  .note-row .note-arrow{grid-column:2;grid-row:1 / span 3;display:inline-flex;align-items:center;justify-content:flex-end;gap:10px;font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink);font-weight:500;padding-top:6px}
  .note-row .note-arrow .line{width:24px;height:1px;background:currentColor;transition:width .4s var(--ease)}
  .note-row a:hover .note-arrow .line{width:48px}
  @media (max-width:680px){
    .note-row a{grid-template-columns:1fr;gap:14px;padding:28px 8px}
    .note-row h3{font-size:22px}
    .note-row .note-arrow{grid-column:1;grid-row:auto;justify-content:flex-start}
  }

  /* ─── Tools grid ─── */
  .tools-grid{gap:24px}
  .tools-grid .card .logo .type{font-size:38px;letter-spacing:-.03em;color:var(--ink);font-weight:600}

  /* ─── Case study page ─── */
  .cs-main{
    display:flex;flex-direction:column;align-items:flex-start;
    padding:112px 48px 56px;max-width:1100px;width:100%;margin:0 auto;
  }
  .cs-eye{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-2);
    margin-bottom:24px;display:flex;align-items:center;gap:14px;
  }
  .cs-eye .dash{width:24px;height:1px;background:var(--rule-strong)}
  .cs-title{font-size:clamp(56px,7vw,108px);font-weight:500;letter-spacing:-.02em;line-height:1.0;margin:0 0 18px;color:var(--ink);max-width:14ch}
  .cs-title.cs-title-long{font-size:clamp(40px,5vw,72px);max-width:18ch;letter-spacing:-.02em}
  .cs-deck{font-size:21px;line-height:1.5;color:var(--ink-2);max-width:60ch;margin:0 0 32px;font-weight:400}
  .cs-cta-row{display:flex;gap:14px;align-items:center;flex-wrap:wrap;margin-bottom:48px}
  .cs-cta{
    display:inline-flex;align-items:center;gap:10px;
    padding:0 22px;height:46px;border:1px solid var(--ink);background:var(--ink);color:#fff;
    font-size:13px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;
    transition:background-color .2s var(--ease), color .2s var(--ease);
  }
  .cs-cta:hover{background:#fff;color:var(--ink)}
  .cs-cta-ghost{
    display:inline-flex;align-items:center;gap:10px;
    padding:0 22px;height:46px;border:1px solid var(--rule-strong);background:transparent;color:var(--ink);
    font-size:13px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;
    transition:border-color .2s var(--ease);
  }
  .cs-cta-ghost:hover{border-color:var(--ink)}

  .cs-cover{width:100%;max-width:1100px;margin:0 auto 64px;padding:0 48px}
  /* DARK PLATE — deliberate, contained exception to the theme's no-gradient
     rule (wave 2, 2026-08-13): the client marks are baked white/cream
     (lg-xala-light, lg-bigtop's cream tent stripes, the tarjetas white
     eagle raster) and only read on dark. The cover is an intentional
     photo-plate island framed by the theme's hairline — the same move the
     homepage makes with demo imagery. Square corners: the white register
     owns the geometry. Wordmark covers (.type) run light on the plate. */
  .cs-cover-inner{
    background:linear-gradient(180deg,#101013 0%,#070708 100%);
    border:1px solid var(--rule);padding:96px 48px;
    display:flex;align-items:center;justify-content:center;
  }
  .cs-cover-inner svg, .cs-cover-inner .type{height:120px;width:auto;display:block}
  .cs-cover-inner .type{font-size:120px;font-weight:600;letter-spacing:-.03em;color:#FAFAFA;line-height:1}
  .cs-cover-inner .type.italic{font-style:italic;font-weight:500}

  .cs-section{padding:64px 48px;max-width:1100px;margin:0 auto;width:100%;border-top:1px solid var(--rule)}
  .cs-section h2{font-size:clamp(28px,3vw,36px);font-weight:500;letter-spacing:-.02em;line-height:1.1;margin:0 0 28px;max-width:22ch}
  .cs-section p{font-size:17px;line-height:1.65;color:var(--ink-2);max-width:62ch}
  .cs-section p + p{margin-top:16px}
  .cs-section p strong{color:var(--ink);font-weight:500}
  .cs-section ul{margin:18px 0 0 0;padding:0;list-style:none;max-width:62ch}
  .cs-section ul li{
    position:relative;padding:14px 0 14px 22px;border-bottom:1px solid var(--rule);
    font-size:16px;color:var(--ink-2);line-height:1.55;
  }
  .cs-section ul li::before{
    content:'·';position:absolute;left:0;top:14px;color:var(--ink);
    font-size:20px;line-height:1.55;width:14px;text-align:left;
  }
  .cs-section ul li b{color:var(--ink);font-weight:500}

  .cs-facts{
    display:grid;grid-template-columns:repeat(2,1fr);gap:0;
    border-top:1px solid var(--rule);max-width:780px;
  }
  .cs-facts .fact{padding:18px 0;border-bottom:1px solid var(--rule);display:flex;justify-content:space-between;align-items:baseline;gap:24px}
  .cs-facts .fact:nth-child(odd){padding-right:24px;border-right:1px solid var(--rule)}
  .cs-facts .fact:nth-child(even){padding-left:24px}
  .cs-facts .fact b{font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);font-weight:500}
  .cs-facts .fact span{font-size:15px;color:var(--ink);font-weight:500;text-align:right;letter-spacing:-.005em;font-variant-numeric:tabular-nums}
  .cs-facts .fact a{color:var(--ink);text-decoration:none;border-bottom:1px solid var(--ink);padding-bottom:1px}

  .cs-cross{padding:64px 48px;max-width:1100px;margin:0 auto;width:100%;border-top:1px solid var(--rule)}
  .cs-cross h3{font-family:var(--mono);font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);font-weight:500;margin:0 0 24px}
  .cs-cross-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
  .cs-cross-card{padding:24px;border:1px solid var(--rule);transition:border-color .2s var(--ease);background:var(--bg)}
  .cs-cross-card:hover{border-color:var(--ink)}
  .cs-cross-card .lbl{font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);font-weight:500;margin-bottom:8px}
  .cs-cross-card h4{font-size:22px;font-weight:500;letter-spacing:-.015em;margin:0 0 8px;color:var(--ink)}
  .cs-cross-card p{font-size:14px;color:var(--ink-2);line-height:1.5;margin:0}

  @media (max-width:780px){
    .cs-main{padding:80px 24px 48px}
    .cs-title{font-size:48px}
    .cs-deck{font-size:18px}
    .cs-cover, .cs-section, .cs-cross{padding-left:24px;padding-right:24px}
    .cs-cover-inner{padding:48px 24px}
    .cs-cover-inner svg, .cs-cover-inner .type{height:80px}
    .cs-cover-inner .type{font-size:80px}
    .cs-facts{grid-template-columns:1fr}
    .cs-facts .fact:nth-child(odd){padding-right:0;border-right:none}
    .cs-facts .fact:nth-child(even){padding-left:0}
    .cs-cross-grid{grid-template-columns:1fr}
  }

  /* ─── Note post ─── */
  .note-main{
    display:flex;flex-direction:column;align-items:flex-start;
    padding:112px 48px 48px;max-width:720px;width:100%;margin:0 auto;
  }
  .note-meta-bar{font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);font-weight:500;margin-bottom:28px;display:flex;gap:18px;align-items:center}
  .note-meta-bar .note-tag{color:var(--ink)}
  .note-title{font-size:clamp(36px,4.4vw,56px);font-weight:500;letter-spacing:-.02em;line-height:1.08;margin:0 0 24px;color:var(--ink)}
  .note-deck{font-size:21px;line-height:1.5;color:var(--ink-2);margin:0 0 56px;font-weight:400;max-width:60ch}
  .note-body{max-width:720px;margin:0 auto;padding:0 48px 96px;font-size:18px;line-height:1.65;color:var(--ink-2)}
  .note-body p{margin:0 0 20px}
  .note-body p strong{color:var(--ink);font-weight:500}
  .note-body h2{font-size:26px;font-weight:500;letter-spacing:-.018em;color:var(--ink);margin:48px 0 18px;line-height:1.2}
  .note-body blockquote{
    margin:32px 0;padding:4px 0 4px 24px;
    border-left:2px solid var(--ink);background:none;
    font-size:19px;color:var(--ink);font-weight:400;line-height:1.55;font-style:normal;
  }
  .note-body ul{margin:0 0 24px;padding:0 0 0 20px;list-style:disc}
  .note-body ul li{margin-bottom:8px;line-height:1.55}
  .note-body a{color:var(--ink);border-bottom:1px solid var(--ink);padding-bottom:1px}
  @media (max-width:680px){.note-main, .note-body{padding-left:24px;padding-right:24px}}

  /* ─── Tools — interactive forms ─── */
  .tool-main,.tool-form,.tool-results{
    max-width:920px;width:100%;margin:0 auto;
    padding-left:48px;padding-right:48px;box-sizing:border-box;
  }
  .tool-main{display:flex;flex-direction:column;align-items:flex-start;padding-top:112px;padding-bottom:48px}
  .tool-form{margin-top:32px;border-top:1px solid var(--rule);padding-top:32px}
  .tool-form .field{display:flex;flex-direction:column;gap:8px;margin-bottom:24px}
  .tool-form .field > span{font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);font-weight:500}
  .tool-form input[type=text],.tool-form input[type=url],.tool-form textarea{
    font-family:'Inter','Helvetica Neue',Helvetica,Arial,sans-serif;
    font-size:17px;color:var(--ink);font-weight:400;letter-spacing:-.005em;
    background:var(--bg);border:1px solid var(--rule-strong);
    padding:14px 16px;outline:none;transition:border-color .15s var(--ease);width:100%;
  }
  .tool-form input:hover,.tool-form textarea:hover{border-color:var(--ink-2)}
  .tool-form input:focus,.tool-form textarea:focus{border-color:var(--ink)}
  .tool-form input:focus-visible,.tool-form textarea:focus-visible{outline:none;box-shadow:none}
  .tool-form input::placeholder,.tool-form textarea::placeholder{color:var(--muted-2);opacity:.8}
  .tool-form textarea{resize:vertical;min-height:120px;line-height:1.55}
  .tool-form .tool-foot{display:flex;justify-content:flex-end;gap:14px;align-items:center;margin-top:12px}
  .tool-form button{
    font-family:'Inter','Helvetica Neue',Helvetica,Arial,sans-serif;
    cursor:pointer;border:1px solid var(--ink);background:var(--ink);color:#fff;
    display:inline-flex;align-items:center;gap:10px;padding:0 24px;height:48px;
    font-size:14px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;
    transition:background-color .2s var(--ease), color .2s var(--ease);
  }
  .tool-form button:hover{background:#fff;color:var(--ink)}
  .tool-form button:disabled{opacity:.55;cursor:wait;background:var(--ink);color:#fff;border-color:var(--ink)}
  .tool-form button .arr{transition:transform .25s var(--ease)}
  .tool-form button:hover .arr{transform:translateX(3px)}
  .tool-results{margin-top:48px}
  .tool-results .empty{font-size:14px;color:var(--muted-2);font-style:normal;padding:24px 0;border-top:1px solid var(--rule);text-align:center}
  .tool-results .err{font-size:14px;color:var(--ink);font-weight:500;padding:18px 0;border-top:1px solid var(--rule)}
  .tool-results .panel{margin-top:24px;padding:24px;border:1px solid var(--rule);background:var(--bg)}
  .tool-results .panel-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:18px;gap:18px;flex-wrap:wrap}
  .tool-results .panel-head h3{font-size:18px;font-weight:500;letter-spacing:-.01em;margin:0;color:var(--ink)}
  .tool-results .tag{font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);font-weight:500;white-space:nowrap}
  .tool-results .tag.ok{color:var(--green)}
  .tool-results .tag.no{color:var(--muted-2)}
  .tool-results .tag.bad{color:var(--amber)}
  .tool-results .panel-body{font-size:15px;color:var(--ink-2);line-height:1.6;white-space:pre-wrap;font-family:inherit}
  .tool-results .panel-foot{margin-top:14px;display:flex;gap:18px;font-size:11.5px;color:var(--muted-2);letter-spacing:.04em}
  .tool-results .panel-foot b{color:var(--ink-2)}
  .tool-results .audit-score{padding:28px 24px;border:1px solid var(--rule);background:var(--bg);display:flex;gap:28px;align-items:center;flex-wrap:wrap}
  .tool-results .audit-score .n{font-size:46px;font-weight:600;letter-spacing:-.02em;color:var(--ink-2);line-height:1;flex-shrink:0;font-variant-numeric:tabular-nums}
  .tool-results .audit-score .n em{color:var(--ink);font-style:normal}
  .tool-results .audit-score p{margin:0;font-size:14.5px;color:var(--ink-2);line-height:1.6;flex:1;min-width:220px}
  .tool-results .audit-score p b{color:var(--ink);font-weight:500}
  .tool-results .audit-score p em{color:var(--ink)}
  .tool-results .audit-score p a{color:var(--ink);border-bottom:1px solid var(--ink)}
  .tool-results .check-group{margin-top:24px;border:1px solid var(--rule);background:var(--bg)}
  .tool-results .check-group > h3{font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);font-weight:500;margin:0;padding:16px 24px;border-bottom:1px solid var(--rule)}
  .tool-results .check-row{padding:18px 24px;border-bottom:1px solid var(--rule)}
  .tool-results .check-row:last-child{border-bottom:0}
  .tool-results .check-row .row-head{display:flex;justify-content:space-between;gap:18px;align-items:baseline;flex-wrap:wrap}
  .tool-results .check-row .row-head h4{margin:0;font-size:15px;font-weight:500;color:var(--ink);letter-spacing:-.01em}
  .tool-results .check-row .detail{margin:6px 0 0;font-size:13.5px;color:var(--ink-2);line-height:1.55}

  .tool-results pre.brief-out{
    font-family:var(--mono);font-size:13.5px;color:var(--ink);
    background:var(--bg);border:1px solid var(--rule);padding:22px 24px;margin:24px 0 0;
    line-height:1.6;white-space:pre-wrap;word-break:break-word;
  }
  .tool-results .copy-btn{
    margin-top:14px;font-family:'Inter','Helvetica Neue',Helvetica,Arial,sans-serif;
    cursor:pointer;border:1px solid var(--rule-strong);background:transparent;color:var(--ink);
    padding:0 18px;height:44px;font-size:12.5px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;
    transition:border-color .2s var(--ease)
  }
  .tool-results .copy-btn:hover{border-color:var(--ink)}
  .tool-results .brief-actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
  .tool-results a.copy-btn{display:inline-flex;align-items:center;text-decoration:none;line-height:1}
  .tool-results .send-btn{background:var(--ink);border-color:var(--ink);color:#fff}
  .tool-results .send-btn:hover{background:#fff;border-color:var(--ink);color:var(--ink)}

  @media (max-width:680px){
    .tool-main, .tool-form, .tool-results{padding-left:24px;padding-right:24px}
    .closing{padding-left:24px;padding-right:24px}
  }

  /* ─── Site footer — ported from xala.studio (wave 1d, 2026-08-13) ───
     Word-row (SMIL cardinal-pulse mark + giant XALA word, per the source's
     footer), descriptor, two link columns, legal bottom row. All dots ink;
     ZERO red in this scene. Column links carry their own ≥44px targets
     (12px vertical padding on a 20px line, the source's own recipe); the
     small legal links use the ::after hit-area pattern further down. */
  .site-foot{
    border-top:1px solid var(--rule);margin-top:48px;
    padding:64px 48px max(32px, env(safe-area-inset-bottom, 32px));max-width:1400px;width:100%;margin-left:auto;margin-right:auto;
    color:var(--ink-2);font-size:14px;
  }
  .foot-grid{
    display:grid;grid-template-columns:2fr 1fr 1fr;gap:48px 64px;
    padding-bottom:64px;border-bottom:1px solid var(--rule);
  }
  .foot-brand .word-row{display:flex;align-items:center;gap:18px;margin-bottom:20px}
  .foot-brand .mark-svg{
    width:clamp(48px,6vw,64px);height:clamp(48px,6vw,64px);
    flex:none;display:block;overflow:visible;
  }
  /* Red migration — ported from xala.studio styles.css (mark-migrate): each
     cardinal dot burns accent for the first quarter of the 2s cycle, staggered
     to chase the SMIL size pulse right→bottom→left→top. Source used #e21d42;
     THE red is #D9252A per the locked 2026-08-12 decision. This CSS animation
     IS reachable by the global reduced-motion kill (unlike the SMIL pulse,
     which the footer script pauses) — at rest all dots return to attribute
     ink, and the rule below pins the 3-o'clock dot to accent so the frozen
     mark matches the brand's static form. Footer scene red count: 1. */
  @keyframes mark-migrate{
    0%,24.99%{fill:var(--accent)}
    25%,100%{fill:#0A0A0A}
  }
  .mark-svg .cardinal{animation:mark-migrate 2s infinite linear}
  .mark-svg .cardinal.right{animation-delay:0s}
  .mark-svg .cardinal.bottom{animation-delay:.5s}
  .mark-svg .cardinal.left{animation-delay:1s}
  .mark-svg .cardinal.top{animation-delay:1.5s}
  @media (prefers-reduced-motion:reduce){
    .mark-svg .cardinal{animation:none}
    .mark-svg .cardinal.right{fill:var(--accent)}
  }
  .foot-brand .word{
    font-weight:900;font-size:clamp(40px,6vw,64px);letter-spacing:-.025em;line-height:.9;
    color:var(--ink);
  }
  .foot-brand .desc{font-size:16px;line-height:1.5;color:var(--ink-2);max-width:380px;margin:0}

  .foot-grid h4{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;
    color:var(--muted-2);margin:0 0 14px;
  }
  .foot-grid ul{list-style:none;margin:0;padding:0}
  .foot-grid li{padding:0}
  .foot-grid ul a{
    color:var(--ink);font-size:14px;font-weight:400;letter-spacing:-.005em;text-decoration:none;
    display:inline-block;padding:12px 0;min-height:44px;line-height:20px;
    transition:color .15s var(--ease);
  }
  .foot-grid ul a:hover{color:var(--ink-2);text-decoration:underline;text-underline-offset:3px}
  .foot-grid .foot-loc{font-size:14px;color:var(--ink-2);display:inline-block;padding:12px 0;line-height:20px}

  .site-foot-bottom{
    display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap;
    padding-top:24px;
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--muted-2);
  }
  .site-foot-bottom a{color:inherit;text-decoration:none;transition:color .15s var(--ease)}
  .site-foot-bottom a:hover{color:var(--ink)}

  @media (max-width:780px){
    .site-foot{padding:48px 24px 24px}
    .foot-grid{grid-template-columns:1fr;gap:40px;padding-bottom:48px}
    .site-foot-bottom{flex-direction:column;align-items:flex-start;gap:12px}
  }

  /* ─── Fullscreen menu — white editorial takeover, hairline-bound ─── */
  .menu-btn{
    background:none;border:none;font-family:var(--mono);font-size:11px;font-weight:500;
    letter-spacing:.12em;text-transform:uppercase;color:var(--ink);
    cursor:pointer;display:inline-flex;align-items:center;gap:12px;
    padding:12px 0;min-height:44px;
  }
  .menu-btn .lines{display:inline-flex;flex-direction:column;gap:4px}
  .menu-btn .lines span{display:block;width:20px;height:1px;background:currentColor;transition:transform .25s var(--ease)}
  .menu-btn:hover .lines span:first-child{transform:translateX(-2px)}
  .menu-btn:hover .lines span:last-child{transform:translateX(2px)}

  .menu-overlay{
    position:fixed;inset:0;
    background:var(--bg);color:var(--ink);
    z-index:9999;display:flex;flex-direction:column;
    padding:24px 48px 40px;
    overflow-y:auto;               /* short viewports scroll; footer never clips */
    clip-path:inset(0 0 100% 0);
    transition:clip-path .35s var(--ease);
    pointer-events:none;
  }
  .menu-overlay.open{
    clip-path:inset(0 0 0 0);
    pointer-events:auto;
    transition:clip-path .6s var(--ease);
  }
  .menu-header{display:flex;justify-content:space-between;align-items:center;padding-bottom:18px;border-bottom:1px solid var(--rule)}
  .menu-header .brand{
    display:flex;align-items:center;gap:14px;font-size:19px;font-weight:600;letter-spacing:-.018em;
    color:var(--ink);text-decoration:none;
  }
  .menu-header .brand svg{width:34px;height:34px;display:block}
  .menu-close{
    background:none;border:none;font-family:var(--mono);font-size:11px;font-weight:500;
    letter-spacing:.12em;text-transform:uppercase;color:var(--ink);cursor:pointer;padding:12px 0;
    min-height:44px;
  }
  .menu-body{flex:1;display:flex;flex-direction:column;justify-content:center;padding:32px 0 40px;max-width:1280px;margin:0 auto;width:100%}
  .menu-list{list-style:none;display:flex;flex-direction:column;gap:4px;margin:0;padding:0}
  .menu-list a{
    display:flex;align-items:baseline;gap:32px;
    font-weight:500;font-size:clamp(32px,5vw,64px);letter-spacing:-.02em;line-height:1;
    color:var(--ink);text-decoration:none;padding:10px 0;
    transition:color .15s var(--ease);
  }
  .menu-list a .num{font-family:var(--mono);font-size:13px;font-weight:500;letter-spacing:.12em;color:var(--muted-2);font-variant-numeric:tabular-nums}
  .menu-list a:hover{color:var(--ink-2)}
  .menu-list a:hover .num{color:var(--ink)}

  /* Offers rail — quiet priced rungs under the numbered list */
  .menu-offers{
    list-style:none;margin:0;padding:0;
    display:flex;flex-direction:column;
    margin-top:clamp(18px,2.6vh,30px);
    padding-top:clamp(12px,1.6vh,18px);
    border-top:1px solid var(--rule);
    max-width:min(520px,100%);
  }
  .menu-offers a{
    display:flex;align-items:baseline;justify-content:space-between;gap:24px;
    padding-top:10px;padding-bottom:10px;
    min-height:46px;
    color:var(--ink);text-decoration:none;
    transition:color .15s var(--ease);
  }
  .menu-offers .mo-name{font-size:clamp(17px,2.1vw,20px);font-weight:500;letter-spacing:-.012em;line-height:1.3;min-width:0}
  .menu-offers .mo-price{
    font-size:clamp(15px,1.7vw,18px);font-weight:500;letter-spacing:-.005em;line-height:1.3;
    color:var(--ink-2);font-variant-numeric:tabular-nums;white-space:nowrap;flex:none;
  }
  .menu-offers a:hover{color:var(--ink-2)}

  .menu-footer{display:flex;justify-content:space-between;align-items:flex-end;gap:18px;flex-wrap:wrap;max-width:1280px;margin:0 auto;width:100%;font-size:13px;color:var(--ink-2);font-weight:400}
  .menu-footer a{color:var(--ink);text-decoration:none;font-weight:500}
  .menu-footer a:hover{color:var(--ink-2)}

  /* Menu items cascade in behind the clip-path wipe (old dark-page richness).
     html.js gate = no-JS never hides anything (the overlay itself is JS-only
     and clip-path-hidden at rest, so these states are unreachable without it).
     Reduced motion: the global .01ms kill makes the cascade instant. */
  html.js .menu-overlay .menu-list li,
  html.js .menu-overlay .menu-offers li{
    opacity:0;transform:translateY(18px);
    transition:opacity .5s var(--ease),transform .5s var(--ease);
  }
  html.js .menu-overlay .menu-footer{opacity:0;transition:opacity .5s var(--ease)}
  html.js .menu-overlay.open .menu-list li,
  html.js .menu-overlay.open .menu-offers li{opacity:1;transform:none}
  html.js .menu-overlay.open .menu-footer{opacity:1;transition-delay:.55s}
  html.js .menu-overlay.open .menu-list li:nth-child(1){transition-delay:.10s}
  html.js .menu-overlay.open .menu-list li:nth-child(2){transition-delay:.15s}
  html.js .menu-overlay.open .menu-list li:nth-child(3){transition-delay:.20s}
  html.js .menu-overlay.open .menu-list li:nth-child(4){transition-delay:.25s}
  html.js .menu-overlay.open .menu-list li:nth-child(5){transition-delay:.30s}
  html.js .menu-overlay.open .menu-list li:nth-child(6){transition-delay:.35s}
  html.js .menu-overlay.open .menu-offers li:nth-child(1){transition-delay:.42s}
  html.js .menu-overlay.open .menu-offers li:nth-child(2){transition-delay:.48s}

  body.menu-locked{overflow:hidden}

  @media (max-width:680px){
    .menu-overlay{padding-left:24px;padding-right:24px}
    .menu-list a{gap:18px}
    .menu-list a .num{font-size:11px}
    .menu-offers{margin-top:24px;padding-top:16px}
    .menu-offers a{gap:14px;padding-top:12px;padding-bottom:12px}
  }

  /* ─── Homepage featured work strip ─── */
  .home-work{
    padding:96px 48px 64px;max-width:1280px;width:100%;margin:0 auto;
    border-top:1px solid var(--rule);
  }
  .home-work-head{display:flex;justify-content:space-between;align-items:end;gap:32px;margin-bottom:48px;flex-wrap:wrap}
  .home-work-head .label{font-family:var(--mono);font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-2);margin-bottom:14px}
  .home-work-head h2{font-size:clamp(28px,3vw,40px);font-weight:500;letter-spacing:-.02em;line-height:1.1;margin:0}
  .home-work-head .more{font-size:13px;color:var(--ink);font-weight:500;letter-spacing:-.005em;text-decoration:none;border-bottom:1px solid var(--ink);padding-bottom:1px}
  .home-work-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
  @media (max-width:880px){
    .home-work{padding:64px 24px 48px}
    .home-work-grid{grid-template-columns:1fr}
  }

  /* ─── Featured-work interactive cards ─── */
  .featured{
    padding:80px 48px 96px;max-width:1400px;margin:0 auto;width:100%;
    border-top:1px solid var(--rule);
  }
  .featured-head{
    display:flex;justify-content:space-between;align-items:end;gap:32px;margin-bottom:48px;flex-wrap:wrap;
  }
  .featured-head .label{font-family:var(--mono);font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-2);margin-bottom:14px}
  .featured-head h2{font-size:clamp(28px,3vw,40px);font-weight:500;letter-spacing:-.02em;line-height:1.1;margin:0}
  .featured-head .more{font-size:13px;color:var(--ink);font-weight:500;letter-spacing:-.005em;text-decoration:none;border-bottom:1px solid var(--ink);padding-bottom:1px}
  .featured-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
  .fc-card{
    position:relative;
    display:flex;flex-direction:column;
    padding:28px 28px 24px;
    border:1px solid var(--rule);
    background:var(--bg);
    color:var(--ink);text-decoration:none;
    min-height:340px;
    overflow:hidden;
    transition:border-color .35s var(--ease);
  }
  .fc-card::before{content:none}
  .fc-card:hover,.fc-card:active,.fc-card:focus-visible{border-color:var(--ink)}
  .fc-card > *{position:relative;z-index:1}

  .fc-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:32px}
  .fc-logo{width:44px;height:44px;display:flex;align-items:center;justify-content:center}
  .fc-logo svg{width:100%;height:100%;display:block}
  .fc-num{font-family:var(--mono);font-size:11px;font-weight:500;letter-spacing:.16em;color:var(--ink-2)}

  .fc-body{flex:1;display:flex;flex-direction:column;gap:10px}
  .fc-title{font-size:clamp(22px,2.2vw,28px);font-weight:500;letter-spacing:-.018em;line-height:1.18;margin:0;color:var(--ink)}
  .fc-vert{font-family:var(--mono);font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2)}
  .fc-deck{
    font-size:14px;line-height:1.55;color:var(--ink-2);margin:8px 0 0;
    max-height:0;opacity:0;overflow:hidden;
    transition:max-height .5s var(--ease),opacity .35s var(--ease),margin .5s var(--ease);
  }
  .fc-card:hover .fc-deck,.fc-card:active .fc-deck,.fc-card:focus-visible .fc-deck{max-height:200px;opacity:1;margin-top:8px}

  .fc-foot{
    display:flex;justify-content:space-between;align-items:center;
    padding-top:20px;margin-top:20px;border-top:1px solid var(--rule);
    font-size:13px;
  }
  .fc-cta{
    color:var(--ink);font-weight:500;letter-spacing:-.005em;
    display:inline-flex;align-items:center;gap:8px;
    transition:gap .25s var(--ease);
  }
  .fc-card:hover .fc-cta,.fc-card:active .fc-cta,.fc-card:focus-visible .fc-cta{gap:14px}
  .fc-arr{display:inline-block;transition:transform .25s var(--ease)}
  .fc-card:hover .fc-arr,.fc-card:active .fc-arr,.fc-card:focus-visible .fc-arr{transform:translateX(4px)}
  .fc-status{
    display:inline-flex;align-items:center;gap:8px;
    font-family:var(--mono);
    font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);
  }
  .fc-status .fc-dot{width:6px;height:6px;border-radius:50%;background:var(--ink-2);display:inline-block}
  .fc-status.live .fc-dot{background:var(--green)}
  .fc-status.build .fc-dot{background:var(--amber)}

  @media (max-width:1024px){
    .featured-grid{grid-template-columns:repeat(2,1fr)}
  }
  @media (max-width:680px){
    .featured{padding:64px 24px 72px}
    .featured-grid{grid-template-columns:1fr;gap:14px}
    .fc-card{min-height:auto}
    .fc-deck{max-height:none;opacity:1;margin-top:8px}
  }

  /* legacy showcase styles preserved (re-themed) */
  .showcase{position:relative;border-top:1px solid var(--rule);background:var(--bg)}
  .showcase-track{position:relative;height:calc(var(--stages, 3) * 100vh)}
  .showcase-stage{
    position:sticky;top:0;height:100vh;
    display:flex;align-items:center;justify-content:center;
    padding:80px 48px;overflow:hidden;
  }
  .showcase-inner{width:100%;max-width:1400px;display:flex;flex-direction:column;gap:48px;height:100%;justify-content:space-between}
  .showcase-head{display:flex;justify-content:space-between;align-items:center;gap:24px}
  .showcase-eye{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;
    color:var(--ink-2);display:flex;align-items:center;gap:14px;
  }
  .showcase-eye .dash{width:24px;height:1px;background:var(--rule-strong)}
  .showcase-progress{display:flex;gap:8px}
  .showcase-progress .seg{width:44px;height:2px;background:var(--rule);transition:background .35s var(--ease)}
  .showcase-progress .seg.active{background:var(--ink)}

  .showcase-frame{flex:1;display:grid;align-items:center;justify-items:start;position:relative;min-height:0}
  .showcase-card{
    grid-column:1;grid-row:1;
    display:flex;flex-direction:column;gap:20px;
    color:var(--ink);text-decoration:none;max-width:980px;
    opacity:0;transform:translateY(28px);
    transition:opacity .55s var(--ease),transform .55s var(--ease);
    pointer-events:none;
  }
  .showcase-card.active{opacity:1;transform:translateY(0);pointer-events:auto}
  .sc-num{font-family:var(--mono);font-size:12px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-2)}
  .sc-meta{font-size:13px;color:var(--ink-2);letter-spacing:-.005em;display:flex;gap:6px;align-items:center;flex-wrap:wrap}
  .sc-status{display:inline-flex;align-items:center;gap:8px;color:var(--ink)}
  .sc-status::before{content:'';width:6px;height:6px;border-radius:50%;display:inline-block;background:var(--green)}
  .sc-status.build::before{background:var(--amber)}
  .sc-title-row{display:flex;align-items:center;gap:clamp(16px,2.4vw,36px)}
  .sc-title{
    font-size:clamp(40px,6vw,84px);font-weight:500;letter-spacing:-.02em;line-height:1.02;
    margin:0;color:var(--ink);flex:0 1 auto;max-width:14ch;
  }
  .sc-title em{font-style:normal;color:var(--ink);font-weight:500}
  .sc-logo{flex-shrink:0;width:clamp(72px,8vw,128px);height:clamp(72px,8vw,128px);display:flex;align-items:center;justify-content:center}
  .sc-logo svg{width:100%;height:100%;display:block}
  @media (max-width:760px){
    .sc-title-row{gap:16px}
    .sc-logo{width:56px;height:56px}
  }
  .sc-deck{font-size:clamp(16px,1.4vw,19px);line-height:1.55;color:var(--ink-2);margin:0;max-width:54ch}
  .sc-cta{
    margin-top:8px;display:inline-flex;align-items:center;gap:10px;
    color:var(--ink);font-size:14px;font-weight:500;letter-spacing:-.005em;
    border-bottom:1px solid var(--ink);padding-bottom:2px;align-self:flex-start;
  }
  .showcase-card:hover .sc-cta .sc-arr{transform:translateX(6px)}
  .sc-arr{display:inline-block;transition:transform .25s var(--ease)}

  .showcase-foot{display:flex;justify-content:space-between;align-items:center;gap:24px;font-size:12px;letter-spacing:-.005em;color:var(--ink-2)}
  .showcase-foot .more{color:var(--ink);text-decoration:none;font-weight:500;border-bottom:1px solid var(--ink);padding-bottom:1px}
  .showcase-hint{
    display:flex;align-items:center;gap:10px;
    font-family:var(--mono);
    font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-2);
  }
  .showcase-hint .arr-down{display:inline-block}

  @media (max-width:760px){
    .showcase-stage{padding:60px 24px}
    .showcase-inner{gap:32px}
    .showcase-head{flex-direction:column;align-items:flex-start;gap:12px}
    .showcase-progress .seg{width:32px}
  }

  @media (prefers-reduced-motion:reduce){
    .showcase-track{height:auto}
    .showcase-stage{position:relative;height:auto;padding:80px 48px}
    .showcase-card{opacity:1;transform:none;pointer-events:auto;position:relative}
    .showcase-frame{display:flex;flex-direction:column;gap:80px}
    .showcase-hint{display:none}
  }

  /* ─── Homepage entrance cards ─── */
  .entrance{
    padding:96px 48px 64px;max-width:1280px;width:100%;margin:0 auto;
    border-top:1px solid var(--rule);
  }
  .entrance-prompt{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-2);margin-bottom:32px;
  }
  .entrance-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
  .entrance-card{
    display:flex;flex-direction:column;align-items:flex-start;
    padding:36px 36px 28px;border:1px solid var(--rule);background:var(--bg);
    min-height:220px;position:relative;overflow:hidden;
    transition:border-color .3s var(--ease);
  }
  .entrance-card::before{content:none}
  .entrance-card:hover{border-color:var(--ink)}
  .entrance-card > *{position:relative;z-index:1}
  .entrance-card .entrance-label{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-2);margin-bottom:12px;
  }
  .entrance-card h2{font-size:clamp(28px,3vw,40px);font-weight:500;letter-spacing:-.02em;line-height:1.1;margin:0 0 12px;color:var(--ink)}
  .entrance-card p{font-size:15px;line-height:1.55;color:var(--ink-2);margin:0 0 24px;flex:1;max-width:42ch}
  .entrance-card .entrance-arrow{
    margin-top:auto;
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--ink);
    display:inline-flex;align-items:center;gap:10px;
  }
  .entrance-card .entrance-arrow::before{
    content:'';width:24px;height:1px;background:currentColor;transition:width .4s var(--ease);
  }
  .entrance-card:hover .entrance-arrow::before{width:48px}

  /* ─── Homepage About excerpt ─── */
  .home-about{
    padding:96px 48px 96px;max-width:1280px;width:100%;margin:0 auto;
    border-top:1px solid var(--rule);
  }
  .home-about-inner{display:grid;grid-template-columns:1fr 2fr;gap:80px;align-items:start}
  .home-about-inner .lang-tag{
    font-family:var(--mono);
    font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-2);
  }
  .home-about-inner h2{font-size:clamp(28px,3vw,40px);font-weight:500;letter-spacing:-.018em;line-height:1.1;margin:0 0 18px;color:var(--ink);max-width:18ch}
  .home-about-inner p{font-size:17px;line-height:1.65;color:var(--ink-2);margin:0 0 14px;max-width:54ch}
  .home-about-inner .home-about-link{display:flex;gap:24px;flex-wrap:wrap;margin-top:24px}
  .home-about-inner .home-about-link a{
    color:var(--ink);font-size:14px;font-weight:500;border-bottom:1px solid var(--ink);padding-bottom:2px;
    transition:color .15s var(--ease),border-color .15s var(--ease);
  }
  .home-about-inner .home-about-link a:hover{color:var(--ink-2);border-color:var(--ink-2)}

  @media (max-width:780px){
    .entrance-grid{grid-template-columns:1fr}
    .home-about-inner{grid-template-columns:1fr;gap:24px}
    .entrance,.home-about{padding-left:24px;padding-right:24px}
  }

  /* ─── Tap-target hit-area extensions (design-bar ≥44px rule) ───
     Invisible ::after hit-area pattern (same mechanic as .hp-end a::after):
     visuals unchanged, touch target brought to ≥44px. Insets are sized so
     neighboring links' extended areas never overlap. */
  .top .brand,
  .featured-head .more,
  .home-work-head .more,
  .home-about-inner .home-about-link a,
  .menu-footer a,
  .site-foot-bottom a{position:relative}
  .top .brand::after,
  .featured-head .more::after,
  .home-work-head .more::after,
  .home-about-inner .home-about-link a::after,
  .menu-footer a::after,
  .site-foot-bottom a::after{content:"";position:absolute;left:-8px;right:-8px;top:-11px;bottom:-11px}
  .site-foot-bottom a::after{left:-5px;right:-5px;top:-16px;bottom:-16px}
  .menu-footer a::after{top:-12px;bottom:-12px}
  .featured-head .more::after{top:-12px;bottom:-12px}

  /* Accessibility: skip-to-content link */
  .skip-link{position:absolute;left:8px;top:-48px;z-index:2000;background:var(--ink);color:#fff;padding:10px 16px;border-radius:0;font-size:13px;font-weight:500;letter-spacing:0;transition:top .15s var(--ease)}
  .skip-link:focus{top:8px;outline:2px solid var(--ink);outline-offset:2px}
