/* ──────────────────────────────────────────
   NXTWK — Liquid Glass (iOS 26 style)
   Heavily blurred translucent cards with edge
   highlight; warm bulb top-right + cool blob
   bottom-left for refraction; animated grain;
   glass buttons; neutral icon tiles.
   ────────────────────────────────────────── */

:root {
  --bg: #060608;
  --ink: #F4F2EE;
  --ink-dim: rgba(244,242,238,0.66);
  --ink-faint: rgba(244,242,238,0.40);
  --ink-quiet: rgba(244,242,238,0.20);

  /* sparing warm accent — used only on tiny highlights, never on big surfaces */
  --warm: #FFA66B;

  /* glass tokens */
  --glass-bg: rgba(255,255,255,0.04);
  --glass-bg-hi: rgba(255,255,255,0.07);
  --glass-edge: rgba(255,255,255,0.14);
  --glass-edge-hi: rgba(255,255,255,0.22);
  --glass-top-hl: rgba(255,255,255,0.25);
  --glass-bottom-sh: rgba(0,0,0,0.30);

  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;

  --gutter: clamp(12px, 2vw, 22px);
  --max: 1320px;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; } /* override .field/.grid display rules */
html, body { margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
.ico { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── ambient: warm top-right, cool bottom-left, animated grain ─── */
.ambient {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background: var(--bg);
  overflow: hidden;
}
.bulb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}
.bulb-a {
  /* warm — top right */
  top: -30vh; right: -25vw;
  width: 110vh; height: 110vh;
  background: radial-gradient(circle at 50% 50%, rgba(255, 110, 36, 0.78) 0%, rgba(255, 80, 40, 0.32) 30%, transparent 60%);
  opacity: 0.95;
  animation: drift-a 26s ease-in-out infinite alternate;
}
.bulb-b {
  /* cool magenta — bottom left, very subtle */
  bottom: -30vh; left: -25vw;
  width: 80vh; height: 80vh;
  background: radial-gradient(circle at 50% 50%, rgba(150, 60, 200, 0.42) 0%, rgba(110, 40, 180, 0.18) 30%, transparent 60%);
  opacity: 0.55;
  animation: drift-b 34s ease-in-out infinite alternate;
}
@keyframes drift-a {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-4vw, 4vh) scale(1.08); }
}
@keyframes drift-b {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(3vw, -3vh) scale(1.06); }
}
.grain {
  position: absolute; inset: -10%;
  opacity: 0.32; mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  animation: grain-drift 8s steps(8) infinite;
}
@keyframes grain-drift {
  0%   { transform: translate(0,0); }
  12%  { transform: translate(-8%, 4%); }
  25%  { transform: translate(4%, -8%); }
  37%  { transform: translate(-6%, -4%); }
  50%  { transform: translate(8%, 6%); }
  62%  { transform: translate(-4%, 8%); }
  75%  { transform: translate(6%, -6%); }
  87%  { transform: translate(-8%, -2%); }
  100% { transform: translate(0,0); }
}

/* ─── bento ─── */
.bento {
  position: relative; z-index: 40;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 52px) var(--gutter) 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: clamp(10px, 1vw, 14px);
}

/* ─── LIQUID GLASS card ─── */
.card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-edge);
  border-radius: var(--r-xl);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  /* edge highlight (top) + edge shadow (bottom) + ambient drop */
  box-shadow:
    inset 0 1px 0 0 var(--glass-top-hl),
    inset 0 -1px 0 0 var(--glass-bottom-sh),
    inset 1px 0 0 0 rgba(255,255,255,0.04),
    inset -1px 0 0 0 rgba(0,0,0,0.10),
    0 20px 50px -20px rgba(0,0,0,0.55);
  overflow: hidden;
  isolation: isolate;
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out);
}
/* subtle radial sheen — like light catching the surface */
.card::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(140% 100% at 0% 0%, rgba(255,255,255,0.08), transparent 45%);
}
.card-pad {
  position: relative; z-index: 1;
  padding: clamp(20px, 2.2vw, 28px);
  min-height: 100%;
  display: flex; flex-direction: column;
  gap: 14px;
}
.card[data-card]:not(.card-hero) .card-pad { cursor: pointer; }
.card[data-card]:not(.card-hero):not(.card-start):not(.is-expanded):hover {
  background: var(--glass-bg-hi);
  border-color: var(--glass-edge-hi);
}
/* start card stays solid black on hover (no glass) */
.card-start:not(.is-expanded):hover {
  background: #0A0A0C;
  border-color: rgba(255,255,255,0.06);
}
/* belt + braces: hover MUST match resting state on expanded cards.
   Same bg, same border — zero visual change between hover and no-hover. */
.card.is-expanded:hover,
.card-start.is-expanded:hover,
.card-bg.is-expanded:hover {
  background: rgba(20,20,26,0.42) !important;
  border-color: rgba(255,255,255,0.18) !important;
  backdrop-filter: blur(40px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(160%) !important;
}

/* + / × toggle button */
.card-x {
  position: absolute; top: 14px; right: 14px;
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 12px rgba(0,0,0,0.20);
  transition: background .15s, transform .15s, border-color .15s;
}
.card-x:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.28); }
.card-x:active { transform: scale(0.93); }
.card-x svg { width: 16px; height: 16px; }
.card-x .ico-close { display: none; }
.card.is-expanded .card-x .ico-plus { display: none; }
.card.is-expanded .card-x .ico-close { display: block; }
.card-hero .card-x { display: none; }

/* card sizes — desktop 12-col */
.card-hero      { grid-column: span 12; }
.card-work      { grid-column: span 8; height: 400px; }
.card-bg        { grid-column: span 4; height: 400px; }
.bento.has-bgs .card-work { grid-column: span 8; }
.bento:not(.has-bgs) .card-work { grid-column: span 12; }
.card-process   { grid-column: span 7; min-height: 340px; }
.card-services  { grid-column: span 5; min-height: 340px; }
.card-start     { grid-column: span 8; min-height: 220px; }
.card-contact   { grid-column: span 4; min-height: 220px; }

/* collapsed / expanded swap */
.card .card-expanded { display: none; }
.card.is-expanded .card-collapsed { display: none; }
.card.is-expanded .card-expanded { display: flex; }

/* expanded: fixed full-bleed — ONE UNIFIED glass modal style for every card.
   Same blur, same border, same bg — start/bg/work/process/services/contact all match. */
.card.is-expanded,
.card-start.is-expanded,
.card-bg.is-expanded {
  position: fixed;
  top: var(--gutter); left: var(--gutter);
  right: var(--gutter); bottom: var(--gutter);
  width: auto; height: auto;
  z-index: 50;
  border-radius: var(--r-xl);
  background: rgba(20,20,26,0.42) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 0 rgba(0,0,0,0.25),
    0 50px 100px -30px rgba(0,0,0,0.7) !important;
  backdrop-filter: blur(40px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(160%) !important;
}
/* re-enable the radial sheen on the expanded surface for the start/bg cards too */
.card-start.is-expanded::before,
.card-bg.is-expanded::before { display: block; }
.card.is-expanded .card-pad {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(28px, 4vw, 52px);
}

/* sibling fade when something is expanded */
body.has-expanded .card:not(.is-expanded) {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
/* expanded state: kill any hover affordances on collapsed cards behind the curtain */
body.has-expanded .card:not(.is-expanded):hover { background: var(--glass-bg) !important; border-color: var(--glass-edge) !important; }
/* gently dim the bg image when expanded (no full-screen overlay) */
body.has-expanded .bg-layer.is-on { opacity: 0.16; }
.card { transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), background .35s, border-color .35s; }

/* View Transition names */
.card[data-card="hero"]     { view-transition-name: c-hero; }
.card[data-card="work"]     { view-transition-name: c-work; }
.card[data-card="process"]  { view-transition-name: c-process; }
.card[data-card="services"] { view-transition-name: c-services; }
.card[data-card="start"]    { view-transition-name: c-start; }
.card[data-card="contact"]  { view-transition-name: c-contact; }
::view-transition-old(root),
::view-transition-new(root) { animation-duration: .42s; animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1); }
::view-transition-group(c-hero),
::view-transition-group(c-work),
::view-transition-group(c-process),
::view-transition-group(c-services),
::view-transition-group(c-start),
::view-transition-group(c-contact) { animation-duration: .50s; animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1); }

/* clip card-snapshot corners during the morph so they don't flash square */
::view-transition-old(c-hero),
::view-transition-new(c-hero),
::view-transition-old(c-work),
::view-transition-new(c-work),
::view-transition-old(c-process),
::view-transition-new(c-process),
::view-transition-old(c-services),
::view-transition-new(c-services),
::view-transition-old(c-start),
::view-transition-new(c-start),
::view-transition-old(c-contact),
::view-transition-new(c-contact) {
  border-radius: var(--r-xl);
  overflow: clip;
  -webkit-mask-image: radial-gradient(white, black);
}
::view-transition-image-pair(c-hero),
::view-transition-image-pair(c-work),
::view-transition-image-pair(c-process),
::view-transition-image-pair(c-services),
::view-transition-image-pair(c-start),
::view-transition-image-pair(c-contact) {
  border-radius: var(--r-xl);
  overflow: clip;
}

/* ─── typography ─── */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.card-title {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ink);
  white-space: pre-line;
}
.card-sub {
  margin: 0;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.55;
  max-width: 60ch;
}

/* ─── HERO ─── */
.card-hero { min-height: clamp(420px, 56vh, 580px); }
.card-hero .card-pad {
  padding: clamp(28px, 4vw, 56px);
  justify-content: space-between;
}
.brandline { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.wm {
  font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
}
.wm-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.24em;
  color: var(--ink-faint);
}
.hero-title {
  margin: 0;
  font-size: clamp(48px, 9vw, 124px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero-sub {
  margin: 0;
  max-width: 60ch;
  color: var(--ink-dim);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
}
.hero-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 4px;
}
.hero-date {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-dim);
}
.hero-date .hd-text { line-height: 1.3; }
.hero-date .hd-lead { color: var(--ink-faint); margin-right: 4px; }
.hero-date strong { color: var(--ink); font-weight: 600; }
.hd-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 10px rgba(46,204,113,0.7);
}

/* ─── GLASS BUTTONS (no more solid orange) ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  font-size: 15px; font-weight: 600;
  border: 0; border-radius: 999px;
  cursor: pointer;
  transition: transform .15s var(--ease-out), background .2s, box-shadow .2s, border-color .2s;
}
.btn-primary {
  color: #0a0a0a;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 10px 30px -12px rgba(0,0,0,0.5);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--ink-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); color: var(--ink); }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }

/* ─── WORK collapsed — 2×2 landscape tiles with logo + name ─── */
.work-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  flex: 1;
  min-height: 0;
  width: 100%;
}
.work-tile {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
  overflow: hidden;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .18s;
  min-height: 0; min-width: 0;
}
.work-tile:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); transform: translateY(-2px); }
.work-tile .wt-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20);
}
.work-tile .wt-logo img {
  width: 20px; height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.work-tile .wt-logo.no-logo {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 13px; color: var(--ink);
  letter-spacing: -0.02em;
}
.work-tile .wt-meta {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1 1 0;
  min-width: 0;
}
.work-tile .wt-name {
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.work-tile .wt-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}
@media (min-width: 880px) {
  .work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.work-card {
  position: relative;
  padding: 20px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  transition: background .2s, border-color .2s, transform .2s;
}
.work-card:hover { background: rgba(255,255,255,0.075); border-color: rgba(255,255,255,0.16); transform: translateY(-2px); }
.work-card .wc-logo {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
}
.work-card .wc-logo img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.94; }
.work-card .wc-logo.no-logo { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 20px; color: var(--ink); letter-spacing: -0.02em; }
.work-card .wc-name { font-size: 18px; font-weight: 800; letter-spacing: -0.015em; }
.work-card .wc-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.work-card .wc-sum { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }

/* work — client detail */
.work-detail-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.back-btn:hover { background: rgba(255,255,255,0.12); }
.back-btn svg { width: 14px; height: 14px; }

.wd-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.wd-head .wc-logo {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -1px 0 rgba(0,0,0,0.18), 0 8px 24px -8px rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.wd-head .wc-logo img { width: 32px; height: 32px; filter: brightness(0) invert(1); opacity: 0.95; }
.wd-head .wc-logo.no-logo { font-size: 22px; }
.wd-title { font-size: clamp(28px, 4vw, 44px); margin: 0; font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.wd-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }

.wd-sum { color: var(--ink-dim); font-size: 16px; line-height: 1.6; max-width: 70ch; margin: 8px 0 16px; }
.wd-desc { color: var(--ink-dim); font-size: 15px; line-height: 1.65; max-width: 70ch; margin: 0 0 24px; }
.wd-brand { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 6px; }
.wd-swatches { display: inline-flex; gap: 8px; }
.wd-swatch {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 4px 12px -4px rgba(0,0,0,0.5);
  display: inline-flex; align-items: flex-end; justify-content: center;
  cursor: default;
}
.wd-swatch-lbl {
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.04em;
  color: var(--ink-faint);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .15s;
  pointer-events: none;
}
.wd-swatch:hover .wd-swatch-lbl { opacity: 1; }
.wd-font {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-dim);
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.wd-section-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-faint);
  margin: 24px 0 12px; font-weight: 500;
}
.wd-feats { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 720px) { .wd-feats { grid-template-columns: 1fr 1fr; } }
.wd-feat {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.wd-feat-ic { margin-bottom: 12px; }
.wd-feat-t { margin: 0 0 6px; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.wd-feat-b { margin: 0; color: var(--ink-dim); font-size: 14px; line-height: 1.55; }
.wd-cta { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.wd-cta-top { margin: 6px 0 26px; }

/* ─── PROCESS ─── */
.proc-dots {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
}
.proc-dots .pd {
  padding: 8px 13px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.03em;
}
.proc-steps {
  position: relative;
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; gap: 0;
}
/* vertical connector line — sits behind the step numbers */
.proc-steps::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.18) 60%, rgba(255,255,255,0.08) 100%);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}
.proc-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 1;
}
.proc-step:first-child { border-top: 0; padding-top: 4px; }
.proc-step .ps-n {
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.04em;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(20,20,28,0.92);
  border: 1.5px solid rgba(255,255,255,0.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 0 0 4px rgba(20,20,28,0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.proc-step .ps-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 6px;
}
.proc-step .ps-title { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 6px; }
.proc-step .ps-body { margin: 0; color: var(--ink-dim); line-height: 1.55; font-size: 15px; }
.proc-foot {
  margin: 24px 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-faint); letter-spacing: 0.06em;
}
.proc-cta { margin-top: 22px; }

/* ─── SERVICES ─── */
.svc-cloud { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.svc-cloud .sc-tag {
  padding: 6px 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
  font-size: 12px;
  color: var(--ink-dim);
}
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 4px; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .svc-grid { grid-template-columns: 1fr 1fr 1fr; } }
.svc-item {
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  display: flex; flex-direction: column; gap: 12px;
}
.svc-ic, .wd-feat-ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  border: 0 !important;
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none !important;
}
.svc-ic svg, .wd-feat-ic svg {
  width: 28px; height: 28px;
  color: #FFFFFF; fill: #FFFFFF; stroke: none;
}

/* gradient variants — flat multi-stop linear, no glow */
.g-warm {
  background: linear-gradient(135deg, #FFD86B 0%, #FF9F45 16%, #FF6B47 34%, #FF3D78 54%, #C13DD8 76%, #5050FF 100%) !important;
}
.g-cool {
  background: linear-gradient(135deg, #5EE5FF 0%, #4FA0FF 20%, #5560FF 42%, #8E40FF 64%, #E040C4 84%, #FF6B9C 100%) !important;
}
.g-mint {
  background: linear-gradient(135deg, #C8FFE0 0%, #5EE5C8 18%, #45C8FF 40%, #5B70FF 62%, #A845FF 84%, #FF45B4 100%) !important;
}
.g-citrus {
  background: linear-gradient(135deg, #FFEC75 0%, #FFC340 18%, #FF7E40 38%, #FF3D7A 60%, #B83390 80%, #5050FF 100%) !important;
}
.svc-t { margin: 0; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.svc-d { margin: 0; color: var(--ink-dim); font-size: 14px; line-height: 1.55; }

/* dotted CTA tile inside services expanded */
.svc-cta {
  padding: 22px;
  background: transparent;
  border: 1.5px dashed rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 12px;
  color: var(--ink-dim);
  cursor: pointer;
  text-align: left;
  transition: background .18s, border-color .18s, color .18s;
}
.svc-cta:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.36);
  color: var(--ink);
}
.svc-cta .wt-plus {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.svc-cta .wt-plus svg { width: 20px; height: 20px; }
.svc-cta-t { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.svc-cta-d { font-size: 13px; color: var(--ink-dim); display: flex; align-items: center; gap: 8px; }
.svc-cta-d .wc-dot { width: 7px; height: 7px; border-radius: 50%; background: #2ECC71; box-shadow: 0 0 8px rgba(46,204,113,0.6); flex-shrink: 0; }
.svc-cta-d strong { color: var(--ink); font-weight: 600; }

/* ─── START / INTAKE ─── */
.start-pretypes {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.start-pretypes .spt {
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  transition: background .15s, border-color .15s, transform .12s;
}
.start-pretypes .spt:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}
.start-hint {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: auto;
  font-size: 13px;
  color: var(--ink-dim);
}
.start-hint strong { color: var(--ink); font-weight: 600; }

/* multi-step bar — tiny timeline dots + thin lines */
.step-rail {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 22px;
}
.ip-step {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  padding: 0; background: transparent; border: 0;
  color: var(--ink-faint);
  white-space: nowrap;
  flex-shrink: 0;
}
.ip-step .ip-dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: background .25s, box-shadow .25s, transform .25s;
}
.ip-step .ip-lab {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.ip-step.done .ip-dot { background: rgba(255,255,255,0.85); }
.ip-step.active .ip-dot {
  background: #2ECC71;
  box-shadow: 0 0 12px rgba(46,204,113,0.7);
  animation: dotPulse 2.2s ease-in-out infinite;
}
.ip-step.active, .ip-step.done { color: var(--ink); }
.ip-line {
  display: block;
  flex: 1 1 auto;
  height: 1px !important;
  min-height: 1px;
  max-height: 1px;
  width: auto;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  align-self: center;
  background: rgba(255,255,255,0.10);
  transition: background .35s;
  pointer-events: none;
}
.ip-line.done { background: rgba(255,255,255,0.55); }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* form */
.form { display: grid; gap: 18px; max-width: 720px; }
.field { display: grid; gap: 8px; }
.field-lbl { font-size: 13px; font-weight: 500; color: var(--ink-dim); }
.field-lbl em { font-style: normal; color: var(--ink-faint); font-size: 11px; margin-left: 6px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em; text-transform: uppercase; }
.input, .textarea, select.input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  color: var(--ink);
  font-family: inherit; font-size: 15px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), inset 0 2px 8px rgba(0,0,0,0.20);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-faint); }
.input:focus, .textarea:focus, select:focus {
  border-color: rgba(255,255,255,0.44);
  background: rgba(0,0,0,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 4px rgba(255,255,255,0.05);
}
.textarea { resize: vertical; min-height: 96px; line-height: 1.5; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--ink-dim);
  font-size: 14px; font-weight: 500;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
  transition: all .15s;
}
.chip:hover { color: var(--ink); border-color: rgba(255,255,255,0.30); }
.chip.is-on {
  background: rgba(255,255,255,0.95);
  color: #0a0a0a; border-color: rgba(255,255,255,0.98);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 6px 16px -8px rgba(255,255,255,0.4);
}

.iphone { display: flex; gap: 8px; }
.iphone select.input {
  max-width: 110px; padding-right: 28px;
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%), linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* business mode toggle (search / manual) — slim, fit-content */
.biz-mode {
  display: inline-flex; padding: 3px;
  width: fit-content;
  align-self: start;
  justify-self: start;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.biz-mode .imode {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: transparent; border: 0;
  color: var(--ink-faint);
  font-size: 12px; font-weight: 500;
  border-radius: 999px;
  transition: all .15s;
}
.biz-mode .imode svg { width: 13px; height: 13px; }
.biz-mode .imode.is-on {
  background: rgba(255,255,255,0.96);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,1);
}

/* business search */
.bs-status {
  font-size: 12px; color: var(--ink-faint);
  margin: 8px 2px 0;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.bs-results {
  display: grid; gap: 6px;
  margin-top: 8px;
}
.bs-results .bsr {
  width: 100%;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
  color: var(--ink); text-align: left; cursor: pointer;
  transition: background .15s, border-color .15s;
}
.bs-results .bsr:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.bs-results .bsr-name { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.bs-results .bsr-sub { font-size: 12px; color: var(--ink-faint); }

/* picked card */
.picked {
  display: none;
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20);
  align-items: center; justify-content: space-between; gap: 12px;
}
.picked.show { display: flex; }
.picked-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.picked-name { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.picked-sub { font-size: 12px; color: var(--ink-faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.picked-clear {
  background: transparent; border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink-dim);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px;
}
.picked-clear:hover { background: rgba(255,255,255,0.08); color: var(--ink); }

/* budget slider */
.budget-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
}
.budget-readout {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800; letter-spacing: -0.025em;
}
.budget-curs { display: inline-flex; padding: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}
.budget-curs .icur {
  background: transparent; border: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-faint);
}
.budget-curs .icur.is-on {
  background: rgba(255,255,255,0.92); color: #0a0a0a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,1);
}
.budget-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.3), inset 0 -1px 0 rgba(255,255,255,0.10);
  outline: none;
}
.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 4px 14px -2px rgba(0,0,0,0.5);
  cursor: pointer;
}
.budget-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.98); border: 0;
  box-shadow: 0 4px 14px -2px rgba(0,0,0,0.5);
  cursor: pointer;
}
.budget-meta {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-faint); letter-spacing: 0.04em;
}

/* panel show/hide */
.panel { display: none; animation: fadein .25s var(--ease-out); }
.panel.is-on { display: grid; gap: 18px; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.form-nav {
  display: flex; justify-content: space-between; gap: 10px;
  margin-top: 22px;
}

/* status / done */
.status { font-size: 13px; color: var(--ink-dim); min-height: 18px; }
.status.err { color: var(--warm); }
.done {
  text-align: center;
  padding: 40px 16px;
  display: grid; gap: 14px; place-items: center;
}
.done .tick {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.30);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(20px);
}
.done .tick svg { width: 28px; height: 28px; }
.done h3 { margin: 0; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.done p { margin: 0; color: var(--ink-dim); }

/* ─── footer ─── */
.ftr {
  position: relative; z-index: 1;
  padding: 16px var(--gutter) 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.ftr-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.10em;
  color: var(--ink-faint);
}
.ftr-sep { opacity: 0.5; }
.ftr-pills { display: inline-flex; gap: 4px; }
.ftr-pills a {
  padding: 3px 7px;
  border-radius: 6px;
  color: var(--ink-faint);
  transition: color .15s, background .15s;
}
.ftr-pills a:hover { color: var(--ink); background: rgba(255,255,255,0.06); }
.ftr-pills a.is-on { color: var(--ink); background: rgba(255,255,255,0.10); }
body.has-expanded .ftr { opacity: 0; pointer-events: none; transition: opacity .25s; }

/* ─── responsive ─── */
@media (max-width: 1080px) {
  .card-process  { grid-column: span 6; }
  .card-services { grid-column: span 6; }
  .card-start    { grid-column: span 7; }
  .card-contact  { grid-column: span 5; }
}
@media (max-width: 760px) {
  .bento { padding-top: 18px; gap: 12px; }
  .card-hero, .card-process, .card-services, .card-start, .card-contact {
    grid-column: 1 / -1;
    min-height: 0;
  }
  .bento.has-bgs .card-work,
  .bento:not(.has-bgs) .card-work,
  .card-work, .card-bg {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    min-height: 320px;
  }
  .bg-thumbs {
    grid-template-columns: none;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    grid-auto-columns: calc(50% - 6px);
  }
  .card-hero { min-height: 380px; }
  .work-strip { grid-template-columns: 1fr; grid-template-rows: auto; grid-auto-rows: minmax(60px, auto); }
  .work-grid  { grid-template-columns: 1fr; }
  .card-pad { padding: 22px; gap: 12px; }
  .card.is-expanded { top: 8px; left: 8px; right: 8px; bottom: 8px; border-radius: 24px; }
  .card.is-expanded .card-pad { padding: 24px 20px 32px; }
  .hero-title { font-size: clamp(40px, 11vw, 60px); }
  .hero-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ftr-row { font-size: 9px; gap: 10px; }
  .step-rail { gap: 6px; flex-wrap: wrap; }
  .ip-step { padding: 5px 10px; }
}

/* ─── BACKGROUND STAGE (full-bleed image layer) ─── */
.bg-stage {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
  transform: scale(1.04);
  filter: saturate(115%);
}
.bg-layer.is-on { opacity: 0.34; }
body.has-bg .ambient .bulb { opacity: 0.20; transition: opacity 1.4s; }
body.has-bg .ambient .bulb-b { opacity: 0.14; }
body.has-bg .ambient .grain { opacity: 0.12; }

/* ─── START + BG cards: solid black ONLY in collapsed state.
   When expanded, .card.is-expanded glass rules win cleanly — no fighting,
   no hover flicker, consistent look across every modal. ─── */
.card-start:not(.is-expanded),
.card-bg:not(.is-expanded) {
  background: #0A0A0C;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.55);
}
.card-start:not(.is-expanded)::before,
.card-bg:not(.is-expanded)::before { display: none; }

/* feature / service sub-tiles — solid black (sit inside the glass modal) */
.svc-item, .wd-feat {
  background: #0A0A0C !important;
  border-color: rgba(255,255,255,0.06) !important;
  box-shadow: 0 10px 24px -16px rgba(0,0,0,0.5) !important;
}
.bg-thumbs {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 6px);
  gap: 12px;
  margin-top: 14px;
  /* extend to the right edge of the card so the scroll "cut" is visible */
  margin-right: calc(-1 * clamp(20px, 2.2vw, 28px));
  flex: 1;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.20) transparent;
}
.bg-thumbs::-webkit-scrollbar { height: 6px; }
.bg-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 3px; }
.bg-thumb {
  position: relative;
  background-size: cover; background-position: center;
  border-radius: 14px;
  border: 2px solid transparent;
  background-color: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: transform .18s var(--ease-out), border-color .18s, box-shadow .18s;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}
.bg-thumb:hover { border-color: rgba(255,255,255,0.30); }
.bg-thumb.is-on {
  border-color: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 8px 22px -6px rgba(0,0,0,0.5);
}

/* ─── +ADD CTA TILE (dotted) ─── */
.work-tile-add, .work-card-add {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1.5px dashed rgba(255,255,255,0.18);
  box-shadow: none;
  color: var(--ink-dim);
  cursor: pointer;
  text-align: left;
  display: flex; flex-direction: column; justify-content: space-between; gap: 12px;
  transition: background .18s, border-color .18s, color .18s;
}
.work-tile-add:hover, .work-card-add:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.36);
  color: var(--ink);
}
.work-tile-add .wt-plus, .work-card-add .wt-plus {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.work-tile-add .wt-plus svg, .work-card-add .wt-plus svg { width: 20px; height: 20px; }
.work-card-add .wc-sum { display: flex; align-items: center; gap: 8px; }
.work-card-add .wc-sum strong { color: var(--ink); font-weight: 600; }
.work-card-add .wc-sum .wc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 8px rgba(46,204,113,0.6);
  flex-shrink: 0;
}

/* ─── INTAKE CONTINUE — simple pill (replaces previous donut block) ─── */
.continue-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 6px;
  padding: 9px 16px;
  width: fit-content;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  transition: background .15s, border-color .15s;
  text-decoration: none;
}
.continue-link:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.24); }
.continue-link .cl-dot { width: 7px; height: 7px; border-radius: 50%; background: #2ECC71; box-shadow: 0 0 8px rgba(46,204,113,0.6); flex-shrink: 0; }
.continue-link .cl-text strong { color: var(--ink); font-weight: 700; }
.continue-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* gradient donut + label — Start card collapsed view (resume intake) */
.start-continue {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 8px;
  padding: 12px 20px 12px 14px;
  width: fit-content;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 12px 30px -16px rgba(0,0,0,0.5);
  color: var(--ink);
  transition: background .18s, border-color .18s, transform .12s;
}
.start-continue:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.24); transform: translateY(-1px); }
.donut {
  width: 44px; height: 44px;
  flex-shrink: 0;
  transform: rotate(-90deg);
  display: block;
}
.donut circle {
  fill: none; stroke-width: 4;
}
.donut .donut-bg { stroke: rgba(255,255,255,0.10); }
.donut .donut-fg { stroke: url(#donutGrad); stroke-linecap: round; transition: stroke-dasharray .35s var(--ease-out); }
.donut-pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.04em;
  color: var(--ink); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; font-weight: 700;
}
.donut-wrap { position: relative; width: 44px; height: 44px; flex-shrink: 0; }
.start-continue-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.start-continue-info .scl { font-weight: 700; font-size: 14px; letter-spacing: -0.01em; color: var(--ink); }
.start-continue-info .scs { font-size: 11px; color: var(--ink-faint); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .card, .card *, .btn, .bulb, .grain, .bg-layer { animation: none !important; transition: none !important; }
}
