/* =========================================================================
   The Growth Department — "Bento Dashboard" : refined dark analytics-product aesthetic.
   Inter + JetBrains Mono. Deep indigo-black canvas, violet data accent,
   positive-green deltas, amber reserved for star ratings only.
   A modular metric mosaic (bento grid) is the signature hero moment; the
   motif recurs in the portfolio and pricing sections.
   ========================================================================= */

:root{
  /* surfaces — paper */
  --bg:#ffffff;
  --bg-alt:#f6f7fb;
  --surface:#ffffff;
  --surface-2:#f4f5f9;
  --surface-hover:#eceef5;
  --line: rgba(12,14,25,0.10);
  --line-strong: rgba(12,14,25,0.18);

  /* ink */
  --ink-950:#0b0d14;
  --ink-800:#1f2330;
  --ink-700:#3a3f4f;
  --ink-500:#5c6273;
  --ink-400:#6b7182;
  --ink-300:#9298a8;

  /* accent (indigo) — text-safe on paper */
  --accent:#4f46e5;
  --accent-ink:#4338ca;
  --accent-soft: rgba(79,70,229,0.10);
  --accent-soft-2: rgba(79,70,229,0.26);

  /* status — green reserved for delta/status only */
  --green:#047857;
  --green-soft: rgba(4,120,87,0.10);
  --green-line: rgba(4,120,87,0.32);
  --amber:#e0930f;
  --red:#b3423a;
  --red-ink:#8a2f28;
  --red-soft: rgba(179,66,58,0.08);

  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:20px;
  --radius-xl:26px;

  --shadow-sm:0 1px 2px rgba(16,20,40,0.06);
  --shadow-md:0 12px 30px -12px rgba(16,20,40,0.16), 0 3px 8px -4px rgba(16,20,40,0.08);
  --shadow-lg:0 40px 80px -24px rgba(16,20,40,0.20), 0 12px 28px -12px rgba(16,20,40,0.12);
  --shadow-glow:0 0 0 1px rgba(79,70,229,0.20), 0 24px 56px -20px rgba(79,70,229,0.26);

  --font-sans:'Inter', system-ui, 'Segoe UI', sans-serif;
  --font-mono:'JetBrains Mono', ui-monospace, Consolas, monospace;

  --ease:cubic-bezier(.16,.84,.44,1);
  --dur-fast:.18s;
  --dur-med:.42s;
  --dur-slow:.7s;

  --max:1240px;
}

/* =========================================================================
   RESET
   ========================================================================= */
*,*::before,*::after{box-sizing:border-box;}
html,body{max-width:100%;overflow-x:clip;overflow-x:hidden;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--ink-800);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  line-height:1.5;
}
img{max-width:100%;display:block;}
ul,ol{margin:0;padding:0;list-style:none;}
a{color:inherit;text-decoration:none;}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer;}
h1,h2,h3,h4,p{margin:0;}
input,textarea{font:inherit;color:inherit;}
.mono{font-family:var(--font-mono);}

.visually-hidden{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.skip-link{
  position:absolute;left:8px;top:-48px;z-index:200;
  background:var(--accent);color:#fff;font-weight:700;
  padding:10px 16px;border-radius:var(--radius-sm);
  transition:top var(--dur-fast) var(--ease);
}
.skip-link:focus{top:8px;}

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

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
  min-width:0;
}
@media (min-width:640px){ .wrap{padding:0 32px;} }
@media (min-width:1000px){ .wrap{padding:0 40px;} }

section{position:relative;}

/* =========================================================================
   TYPE SCALE
   ========================================================================= */
.eyebrow{
  font-size:12px;
  font-weight:600;
  letter-spacing:.06em;
  color:var(--accent-ink);
  margin-bottom:14px;
  display:block;
}
.section-title{
  font-size:clamp(28px,4.4vw,44px);
  line-height:1.12;
  letter-spacing:-.02em;
  font-weight:700;
  color:var(--ink-950);
  max-width:22ch;
}
.section-sub{
  margin-top:16px;
  font-size:clamp(15px,1.6vw,18px);
  line-height:1.6;
  color:var(--ink-500);
  max-width:56ch;
}
.section-head{margin-bottom:44px;}

/* =========================================================================
   BUTTONS / PILLS
   ========================================================================= */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:48px;padding:0 24px;
  border-radius:var(--radius-sm);
  font-weight:600;font-size:15px;
  transition:transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--accent);color:#fff;
  box-shadow:var(--shadow-sm);
}
.btn-primary:hover{background:var(--accent-ink);transform:translateY(-2px);box-shadow:var(--shadow-glow);}
.btn-ghost{
  background:transparent;color:var(--ink-950);
  border:1px solid var(--line-strong);
}
.btn-ghost:hover{border-color:var(--ink-950);background:var(--surface-2);transform:translateY(-2px);}
.btn-sm{min-height:44px;padding:0 18px;font-size:13px;}
.btn-lg{min-height:52px;padding:0 28px;font-size:16px;}
.btn-arrow{transition:transform var(--dur-fast) var(--ease);}
.btn:hover .btn-arrow{transform:translateX(3px);}

.pill{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11px;font-weight:600;letter-spacing:.03em;
  padding:5px 11px;border-radius:999px;
  background:var(--surface-2);color:var(--ink-500);
  border:1px solid var(--line);
  white-space:nowrap;
}
.pill-outline{background:transparent;border:1px solid var(--line-strong);color:var(--ink-500);}
.pill-accent{background:var(--accent-soft);color:var(--accent-ink);border-color:var(--accent-soft-2);}
.pill-live{background:var(--green-soft);color:var(--green);border-color:var(--green-line);}
.status-dot{
  width:7px;height:7px;border-radius:50%;background:var(--green);
  box-shadow:0 0 0 3px rgba(51,209,126,.18);
  display:inline-block;
}
.status-dot.lg{width:11px;height:11px;box-shadow:0 0 0 5px rgba(51,209,126,.16);}

.status-pill{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:500;color:var(--ink-500);
  padding:7px 14px;border-radius:999px;
  background:var(--surface-2);border:1px solid var(--line);
}

/* =========================================================================
   TOPBAR
   ========================================================================= */
.topbar{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(14px) saturate(1.4);
  -webkit-backdrop-filter:blur(14px) saturate(1.4);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  max-width:var(--max);margin:0 auto;
  padding:14px 20px;
  display:flex;align-items:center;gap:24px;
}
@media (min-width:640px){ .topbar-inner{padding:14px 32px;} }
@media (min-width:1000px){ .topbar-inner{padding:14px 40px;} }

.brand{display:flex;align-items:center;gap:9px;}
.brand-mark{display:inline-flex;}
.brand-name{font-weight:700;font-size:17px;letter-spacing:-.01em;color:var(--ink-950);}

.topnav{display:none;gap:28px;flex:1;justify-content:center;}
.topnav a{font-size:14px;font-weight:500;color:var(--ink-500);transition:color var(--dur-fast) var(--ease);}
.topnav a:hover{color:var(--ink-950);}
@media (min-width:900px){ .topnav{display:flex;} }

.topbar-actions{display:none;align-items:center;gap:14px;}
@media (min-width:900px){ .topbar-actions{display:flex;} }
@media (max-width:1080px){ .status-pill{display:none;} }

.nav-toggle{
  margin-left:auto;
  width:44px;height:44px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;
  border-radius:var(--radius-sm);
}
.nav-toggle span{width:20px;height:2px;background:var(--ink-950);border-radius:2px;transition:transform var(--dur-fast) var(--ease),opacity var(--dur-fast) var(--ease);}
@media (min-width:900px){ .nav-toggle{display:none;} }
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.mobile-nav{
  border-top:1px solid var(--line);
  padding:16px 20px 24px;
  display:flex;flex-direction:column;gap:4px;
  background:var(--bg);
}
.mobile-nav a{
  padding:12px 6px;font-size:15px;font-weight:500;color:var(--ink-800);
  border-bottom:1px solid var(--surface-2);
  min-height:44px;display:flex;align-items:center;
}
.mobile-nav .btn{margin-top:12px;}
.mobile-nav[hidden]{display:none;}

/* =========================================================================
   HERO
   ========================================================================= */
.hero{
  padding:56px 0 96px;
  overflow:hidden;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(124,108,255,0.16), transparent 60%),
    var(--bg);
}
.hero-wrap{
  position:relative;z-index:1;
  display:grid;
  gap:48px;
  align-items:start;
  min-width:0;
}
@media (min-width:1000px){
  .hero-wrap{grid-template-columns:0.86fr 1.14fr;gap:40px;align-items:center;}
}

.kicker{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  font-size:12px;color:var(--ink-500);font-weight:500;
  margin-bottom:22px;
}
.kicker-chip{
  background:var(--accent);color:#fff;
  padding:5px 10px;border-radius:6px;
  font-size:11px;letter-spacing:.04em;font-weight:700;
}
.kicker-sep{color:var(--line-strong);}

.hero-title{
  font-size:clamp(32px,5.4vw,54px);
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:800;
  color:var(--ink-950);
  max-width:15ch;
}
.hero-title .hl{color:var(--accent-ink);}

.hero-sub{
  margin-top:24px;
  font-size:clamp(16px,1.8vw,18px);
  line-height:1.6;
  color:var(--ink-500);
  max-width:48ch;
}

.hero-cta-row{
  margin-top:32px;
  display:flex;flex-wrap:wrap;gap:14px;
}

.hero-proof{
  margin-top:28px;
  display:flex;flex-wrap:wrap;gap:10px;
  font-size:12.5px;color:var(--ink-500);
}
.hero-proof strong{color:var(--ink-950);font-weight:700;}
.proof-sep{color:var(--line-strong);}

/* =========================================================================
   BENTO PANEL (signature hero moment) — NO window-chrome, no traffic lights.
   A plain titled header bar + a single neutral refresh glyph replace the
   Apple-style dot cluster entirely.
   ========================================================================= */
.hero-dash{min-width:0;}
.bento-panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}

.bento-head{
  display:flex;align-items:center;gap:10px;
  padding:14px 18px;
  background:var(--surface-2);
  border-bottom:1px solid var(--line);
}
.bento-head-title{
  font-size:12px;color:var(--ink-500);font-weight:500;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0;
}
.bento-head .pill-live{margin-left:auto;flex-shrink:0;}
.bento-refresh{
  flex-shrink:0;width:28px;height:28px;border-radius:7px;
  display:flex;align-items:center;justify-content:center;
  color:var(--ink-400);border:1px solid var(--line);
  transition:color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-med) var(--ease);
}
.bento-refresh:hover{color:var(--accent-ink);border-color:var(--accent-soft-2);}
.bento-refresh.is-spinning svg{animation:spin .6s linear;}
@keyframes spin{to{transform:rotate(360deg);}}

.bento-grid{
  padding:14px;
  display:grid;
  gap:12px;
  min-width:0;
  grid-template-columns:minmax(0,1fr);
  grid-template-areas:
    "hero"
    "line"
    "bar"
    "stars"
    "rank"
    "map"
    "status";
}
@media (min-width:640px){
  .bento-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-areas:
      "hero hero"
      "hero hero"
      "line line"
      "bar bar"
      "stars rank"
      "map status";
  }
}
@media (min-width:1000px){
  .bento-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
    grid-template-areas:
      "hero hero line line"
      "hero hero bar bar"
      "stars rank map status";
  }
}

.bt-hero{grid-area:hero;}
.bt-line{grid-area:line;}
.bt-bar{grid-area:bar;}
.bt-stars{grid-area:stars;}
.bt-rank{grid-area:rank;}
.bt-map{grid-area:map;}
.bt-status{grid-area:status;}

.tile{
  min-width:0;
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:16px;
  display:flex;flex-direction:column;
  transition:border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.tile:hover{border-color:var(--line-strong);background:var(--surface-hover);}

.tile-label{font-size:10px;letter-spacing:.05em;color:var(--ink-400);font-weight:600;text-transform:uppercase;}
.tile-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px;flex-wrap:wrap;}
.tile-title{font-size:12px;font-weight:600;color:var(--ink-700);}
.tile-sub{font-size:10.5px;color:var(--ink-400);}
.tile-delta{font-size:11px;font-weight:600;margin-top:8px;}
.tile-delta.up{color:var(--green);}

/* -- hero number tile -- */
.tile-hero{
  justify-content:center;gap:6px;min-height:150px;position:relative;
  background:linear-gradient(160deg, var(--surface-2) 0%, var(--accent-soft) 320%);
}
.tile-hero-value{
  font-size:clamp(38px,5vw,52px);font-weight:800;letter-spacing:-.02em;
  color:var(--green);line-height:1;margin-top:10px;
}
.tile-hero-unit{font-size:0.55em;margin-left:1px;}
.tile-hero-sub{font-size:12.5px;color:var(--ink-500);margin-top:6px;}
.tile-spark{width:100%;max-width:none;height:44px;margin-top:22px;display:block;}

/* -- line chart tile -- */
.tile-chart{min-height:0;}
.chart-hold{position:relative;min-width:0;}
.tile-chart-svg{width:100%;height:auto;display:block;cursor:crosshair;}
.chart-line{
  stroke-dasharray:900;stroke-dashoffset:900;
  animation:drawLine 1.6s var(--ease) .2s forwards;
}
.chart-area{opacity:0;animation:fadeArea 1s var(--ease) 1s forwards;}
.chart-dot-ring{
  animation:pulseRing 2.2s ease-in-out infinite;
  transform-origin:520px 26px;
}
@keyframes drawLine{to{stroke-dashoffset:0;}}
@keyframes fadeArea{to{opacity:1;}}
@keyframes pulseRing{
  0%,100%{opacity:.15;transform:scale(0.9);}
  50%{opacity:.5;transform:scale(1.25);}
}
.chart-crosshair{pointer-events:none;transition:opacity var(--dur-fast) var(--ease);}
.chart-hover-dot{pointer-events:none;transition:opacity var(--dur-fast) var(--ease);}
.chart-tooltip{
  position:absolute;top:6px;left:6px;
  background:var(--bg);border:1px solid var(--line-strong);
  border-radius:6px;padding:5px 9px;font-size:11px;color:var(--ink-950);
  pointer-events:none;opacity:0;transition:opacity var(--dur-fast) var(--ease);
  white-space:nowrap;box-shadow:var(--shadow-sm);
}
.chart-tooltip.is-visible{opacity:1;}
.chart-tooltip strong{color:var(--accent-ink);}

.tile-axis{
  display:flex;justify-content:space-between;
  margin-top:8px;font-size:9.5px;color:var(--ink-400);
}

/* -- bar chart tile -- */
.tile-bars{position:relative;}
.bars{
  display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:8px;
  align-items:end;height:88px;
}
.bar-col{
  height:100%;display:flex;align-items:flex-end;
  min-width:0;cursor:pointer;
}
.bar-fill{
  width:100%;display:block;border-radius:4px 4px 2px 2px;
  background:var(--accent-soft-2);
  height:var(--h);
  transform-origin:bottom;
  animation:growBar .9s var(--ease) both;
  animation-delay:calc(var(--i, 0) * .08s);
}
.bar-fill.is-current{background:linear-gradient(180deg, var(--accent), var(--accent-ink));}
@keyframes growBar{from{transform:scaleY(0);}to{transform:scaleY(1);}}
.bar-tooltip{
  position:absolute;top:12px;right:16px;
  background:var(--bg);border:1px solid var(--line-strong);
  border-radius:6px;padding:5px 9px;font-size:11px;color:var(--ink-950);
  pointer-events:none;opacity:0;transition:opacity var(--dur-fast) var(--ease);
  white-space:nowrap;box-shadow:var(--shadow-sm);
}
.bar-tooltip.is-visible{opacity:1;}
.bar-tooltip strong{color:var(--accent-ink);}

/* -- stars / rank stat tiles -- */
.tile-stars, .tile-rank{gap:4px;justify-content:center;min-height:128px;}
.tile-stat{font-size:26px;font-weight:800;color:var(--ink-950);letter-spacing:-.01em;margin-top:4px;}
.tile-stat-unit{color:var(--amber);font-size:0.7em;margin-left:2px;}
.star-row{display:flex;gap:2px;margin-top:6px;}
.tile-rank-sub{font-size:11.5px;color:var(--ink-500);margin-top:4px;}

/* -- map / coverage tile -- */
.tile-map{min-height:128px;}
.map-svg{width:100%;height:auto;max-height:70px;margin:2px 0;}
.map-pin{fill:var(--accent-ink);opacity:.85;}
.map-pin.is-hub{fill:var(--accent);opacity:1;filter:drop-shadow(0 0 6px rgba(124,108,255,.7));}
.tile-map-caption{font-size:11px;color:var(--ink-500);margin-top:2px;}

/* -- status tile -- */
.tile-status{align-items:flex-start;justify-content:center;gap:6px;min-height:128px;}
.tile-status-title{font-size:13.5px;font-weight:700;color:var(--ink-950);margin-top:8px;}
.tile-status-sub{font-size:10.5px;color:var(--ink-400);}

.bento-caption{
  padding:2px 18px 16px;
  font-size:10.5px;color:var(--ink-400);
}


/* =========================================================================
   REVEAL ON SCROLL
   ========================================================================= */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-visible{opacity:1;transform:translateY(0);}

/* =========================================================================
   INSIGHT
   ========================================================================= */
.insight{padding:88px 0;background:var(--bg-alt);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.insight-grid{display:grid;gap:32px;min-width:0;}
@media (min-width:860px){ .insight-grid{grid-template-columns:1fr 1fr;gap:64px;align-items:start;} }
.insight-title{
  font-size:clamp(24px,3.6vw,36px);
  line-height:1.2;letter-spacing:-.015em;font-weight:700;color:var(--ink-950);
}
.insight-body p{font-size:16px;line-height:1.7;color:var(--ink-500);}
.insight-body p+p{margin-top:16px;}

/* =========================================================================
   HOW IT WORKS — STEPS
   ========================================================================= */
.how{padding:96px 0;}
.steps{
  display:grid;gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
@media (min-width:760px){ .steps{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (min-width:1080px){ .steps{grid-template-columns:repeat(4,minmax(0,1fr));} }
.step{
  background:var(--surface);
  padding:28px 24px;
  display:flex;flex-direction:column;gap:12px;
  transition:background var(--dur-fast) var(--ease);
  min-width:0;
}
.step:hover{background:var(--surface-hover);}
.step-head{display:flex;align-items:center;justify-content:space-between;}
.step-index{font-size:13px;color:var(--ink-400);font-weight:700;}
.step h3{font-size:17px;font-weight:700;letter-spacing:-.01em;color:var(--ink-950);line-height:1.3;}
.step p{font-size:14.5px;line-height:1.6;color:var(--ink-500);}

/* =========================================================================
   WORK / PORTFOLIO — "real site" cards with full-page scroll-on-hover.
   Each card is framed like a browser window (titled bar + live pill, NO mac
   dots). Hovering scrolls the full-page screenshot top→bottom.
   ========================================================================= */
.work{padding:96px 0;background:var(--bg-alt);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}

.gallery{
  display:grid;gap:24px;min-width:0;
  grid-template-columns:minmax(0,1fr);
  align-items:start;
}
@media (min-width:1000px){ .gallery{grid-template-columns:minmax(0,1fr) 320px;gap:32px;} }

.gallery-stage{min-width:0;}

.w-item{
  min-width:0;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:var(--shadow-lg);
}

/* numbered index of all ten builds */
.gallery-list{
  min-width:0;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;
}
@media (min-width:1000px){ .gallery-list{position:sticky;top:88px;} }
.gallery-item{
  display:flex;align-items:center;gap:14px;
  padding:15px 18px;min-height:52px;
  font-size:13px;font-weight:500;color:var(--ink-500);text-align:left;
  border-bottom:1px solid var(--line);
  transition:background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.gallery-item:last-child{border-bottom:0;}
.gallery-item:hover{background:var(--surface-2);color:var(--ink-950);}
.gallery-item.is-active{background:var(--accent-soft);color:var(--accent-ink);font-weight:600;}
.gallery-item-index{font-size:11px;color:var(--ink-400);flex-shrink:0;width:22px;}
.gallery-item.is-active .gallery-item-index{color:var(--accent-ink);}
.gallery-item-name{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}

/* browser-style titled bar (no window dots) */
.w-bar{
  display:flex;align-items:center;gap:10px;
  padding:11px 16px;
  background:var(--surface-2);
  border-bottom:1px solid var(--line);
}
.w-url{
  font-size:12px;color:var(--ink-500);font-weight:500;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0;
  display:inline-flex;align-items:center;gap:7px;
}
.w-url svg{flex-shrink:0;color:var(--ink-400);}
.w-bar .pill-live{margin-left:auto;flex-shrink:0;}

/* the scrolling screenshot frame */
.w-shot{
  --frame:min(56vh, 520px);
  position:relative;display:block;min-width:0;
  height:var(--frame);overflow:hidden;background:var(--surface-2);
}
.w-shot img{
  width:100%;height:auto;display:block;
  transform:translateY(0);
  transition:transform 3.6s var(--ease);
  will-change:transform;
}
.w-item:hover .w-shot img,
.w-shot:focus-visible img{
  transform:translateY(calc(-100% + var(--frame)));
  transition-duration:5.5s;
}
/* bottom scrim + "hover to scroll" cue */
.w-shot::after{
  content:"";position:absolute;inset:auto 0 0 0;height:64px;
  background:linear-gradient(to top, rgba(255,255,255,0.92), rgba(255,255,255,0));
  pointer-events:none;opacity:1;transition:opacity var(--dur-med) var(--ease);
}
.w-item:hover .w-shot::after{opacity:0;}
.w-cue{
  position:absolute;right:12px;bottom:12px;z-index:2;
  display:inline-flex;align-items:center;gap:6px;
  font-size:10.5px;font-weight:600;letter-spacing:.02em;
  padding:5px 10px;border-radius:999px;
  background:rgba(255,255,255,0.9);border:1px solid var(--line);
  color:var(--ink-500);box-shadow:var(--shadow-sm);
  transition:opacity var(--dur-fast) var(--ease);
}
.w-item:hover .w-cue{opacity:0;}

.w-cap{
  padding:18px 20px 20px;display:flex;align-items:flex-end;
  justify-content:space-between;gap:14px;min-width:0;
}
.w-cap-text{min-width:0;display:flex;flex-direction:column;gap:5px;}
.w-industry{font-size:10.5px;color:var(--accent-ink);letter-spacing:.06em;font-weight:700;text-transform:uppercase;}
.w-name{font-size:19px;font-weight:700;letter-spacing:-.01em;color:var(--ink-950);}
.w-desc{margin-top:2px;font-size:14px;color:var(--ink-500);max-width:52ch;line-height:1.55;}
.w-link{
  flex-shrink:0;font-size:12.5px;font-weight:600;color:var(--ink-500);
  transition:color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  min-height:44px;display:inline-flex;align-items:center;gap:5px;white-space:nowrap;
}
.w-link:hover{color:var(--accent-ink);}
.w-link:hover .btn-arrow{transform:translateX(3px);}

/* =========================================================================
   HONESTY — the diff. Industry promises deleted, our commitments added.
   ========================================================================= */
.honesty{padding:96px 0;background:var(--bg-alt);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.honesty-wrap{display:grid;gap:40px;align-items:center;min-width:0;}
@media (min-width:960px){ .honesty-wrap{grid-template-columns:0.85fr 1.15fr;gap:64px;} }

.honesty-note{
  margin-top:26px;
  display:flex;flex-wrap:wrap;gap:10px;
  font-size:12px;font-weight:600;
}
.diff-stat{
  display:inline-flex;align-items:center;
  padding:6px 12px;border-radius:999px;border:1px solid var(--line);
}
.diff-stat.del-stat{color:var(--red-ink);background:var(--red-soft);border-color:rgba(179,66,58,0.24);}
.diff-stat.add-stat{color:var(--green);background:var(--green-soft);border-color:var(--green-line);}

.honesty-diff{
  min-width:0;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}
.diff-head{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:13px 18px;
  background:var(--surface-2);
  border-bottom:1px solid var(--line);
}
.diff-title{
  font-size:12px;color:var(--ink-500);font-weight:500;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0;
}
.diff-body{padding:12px 0;display:flex;flex-direction:column;}
.diff-hunk{
  padding:10px 18px 8px;
  font-size:11px;color:var(--accent-ink);font-weight:600;letter-spacing:.02em;
}
.diff-line{
  display:flex;gap:12px;
  padding:10px 18px;
  font-size:13px;line-height:1.6;min-width:0;
}
.diff-gutter{flex-shrink:0;width:12px;font-weight:700;text-align:center;}
.diff-line.is-del{background:var(--red-soft);}
.diff-line.is-del .diff-gutter{color:var(--red);}
.diff-line.is-del del{
  color:var(--red-ink);
  text-decoration:line-through;
  text-decoration-thickness:1px;
  text-decoration-color:rgba(179,66,58,0.55);
}
.diff-line.is-add{background:var(--green-soft);}
.diff-line.is-add .diff-gutter{color:var(--green);}
.diff-line.is-add ins{color:var(--ink-800);text-decoration:none;font-weight:500;}
/* staggered line reveal, driven by the section's .reveal state */
.honesty-diff .diff-line{opacity:0;transform:translateX(-8px);transition:opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);}
.honesty-diff.is-visible .diff-line{opacity:1;transform:none;}
.honesty-diff.is-visible .diff-line:nth-of-type(2){transition-delay:.08s;}
.honesty-diff.is-visible .diff-line:nth-of-type(3){transition-delay:.16s;}
.honesty-diff.is-visible .diff-line:nth-of-type(4){transition-delay:.24s;}
.honesty-diff.is-visible .diff-line:nth-of-type(6){transition-delay:.40s;}
.honesty-diff.is-visible .diff-line:nth-of-type(7){transition-delay:.50s;}
.honesty-diff.is-visible .diff-line:nth-of-type(8){transition-delay:.60s;}
.diff-caption{
  padding:13px 18px;
  border-top:1px solid var(--line);
  font-size:11px;color:var(--ink-400);
}

/* =========================================================================
   PRICING — BENTO TILES
   ========================================================================= */
.pricing{padding:96px 0;background:var(--bg);}
.price-bento{
  display:grid;gap:16px;min-width:0;
  grid-template-columns:minmax(0,1fr);
}
@media (min-width:860px){
  .price-bento{grid-template-columns:repeat(4,minmax(0,1fr));align-items:stretch;}
  .pt-grow{grid-column:span 1;}
  .pt-launch{grid-column:span 2;}
  .pt-scale{grid-column:span 1;}
}

.price-tile{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:32px 28px;
  display:flex;flex-direction:column;
  position:relative;
  min-width:0;
  transition:transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.price-tile:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.price-tile-featured{
  border-color:var(--accent-soft-2);
  box-shadow:var(--shadow-glow);
  background:linear-gradient(180deg, var(--surface) 0%, var(--accent-soft) 260%);
}
.price-featured-tag{
  position:absolute;top:-13px;left:28px;
  background:var(--accent);color:#fff;
  font-size:10.5px;font-weight:700;letter-spacing:.04em;
  padding:5px 12px;border-radius:999px;
}
.price-tile-head{margin-bottom:16px;}
.price-tile h3{font-size:22px;font-weight:800;letter-spacing:-.01em;color:var(--ink-950);}
.price-amount{margin-top:8px;font-size:34px;font-weight:700;color:var(--ink-950);}
.price-amount span{font-size:14px;color:var(--ink-400);font-weight:500;margin-left:2px;}
.price-desc{margin-top:12px;font-size:14.5px;line-height:1.6;color:var(--ink-500);min-height:64px;}
.price-features{margin-top:8px;margin-bottom:28px;display:flex;flex-direction:column;gap:10px;flex:1;}
.price-features li{
  font-size:14px;color:var(--ink-700);padding-left:24px;position:relative;line-height:1.5;
}
.price-features li.is-on::before{
  content:'\2713';position:absolute;left:0;top:0;width:16px;height:16px;
  background:var(--green-soft);border:1.5px solid var(--green);border-radius:5px;
  color:var(--green);font-size:10px;font-weight:700;line-height:14px;text-align:center;
}
.price-tile .btn{margin-top:auto;width:100%;}

.price-partner-note{
  margin-top:24px;
  display:flex;align-items:center;gap:12px;flex-wrap:wrap;
  font-size:13.5px;color:var(--ink-500);
  padding:18px 20px;
  border:1px dashed var(--line-strong);
  border-radius:var(--radius-md);
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq{padding:96px 0;}
.faq-list{display:flex;flex-direction:column;gap:12px;max-width:820px;}
.faq-item{
  border:1px solid var(--line);border-radius:var(--radius-md);
  background:var(--surface);overflow:hidden;
}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 22px;min-height:44px;
  font-size:16px;font-weight:600;color:var(--ink-950);text-align:left;
}
.faq-icon{
  flex-shrink:0;width:24px;height:24px;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line-strong);border-radius:50%;font-size:14px;color:var(--ink-500);
  transition:transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.faq-q[aria-expanded="true"] .faq-icon{transform:rotate(45deg);background:var(--accent);color:#fff;border-color:var(--accent);}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height var(--dur-med) var(--ease);
}
.faq-a p{padding:0 22px 20px;font-size:14.5px;line-height:1.65;color:var(--ink-500);max-width:64ch;}
.faq-item.is-open .faq-a{max-height:220px;}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact{padding:96px 0;background:var(--bg-alt);border-top:1px solid var(--line);}
.contact-wrap{display:grid;gap:40px;min-width:0;}
@media (min-width:900px){ .contact-wrap{grid-template-columns:0.9fr 1.1fr;gap:64px;} }
.contact-meta{margin-top:28px;display:flex;flex-direction:column;gap:6px;font-size:13.5px;color:var(--ink-700);}

.contact-form{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow-md);
  display:flex;flex-direction:column;gap:18px;
  min-width:0;
}
.form-row{display:flex;flex-direction:column;gap:8px;min-width:0;}
.form-row label{font-size:13px;font-weight:600;color:var(--ink-700);}
.form-row input,.form-row textarea{
  border:1px solid var(--line-strong);
  border-radius:var(--radius-sm);
  padding:13px 14px;
  min-height:44px;
  background:var(--bg);
  color:var(--ink-950);
  transition:border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  width:100%;
}
.form-row textarea{min-height:110px;resize:vertical;}
.form-row input:focus,.form-row textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px var(--accent-soft-2);
  outline:none;
}
.form-row-split{display:grid;grid-template-columns:1fr;gap:18px;}
@media (min-width:480px){ .form-row-split{grid-template-columns:1fr 1fr;} }
.form-submit{width:100%;margin-top:6px;}
.form-fineprint{text-align:center;font-size:11.5px;color:var(--ink-400);}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer{padding:64px 0 0;background:var(--bg-alt);color:var(--ink-500);border-top:1px solid var(--line);}
.footer-wrap{display:grid;gap:40px;padding-bottom:48px;border-bottom:1px solid var(--line);min-width:0;}
@media (min-width:760px){ .footer-wrap{grid-template-columns:1fr 2fr;} }
.footer-brand .brand-name{color:var(--ink-950);}
.footer-tag{margin-top:12px;font-size:14px;color:var(--ink-400);max-width:32ch;}
.footer-nav{display:grid;gap:28px;}
@media (min-width:520px){ .footer-nav{grid-template-columns:repeat(3,minmax(0,1fr));} }
.footer-col{display:flex;flex-direction:column;gap:10px;min-width:0;}
.footer-col-title{font-size:10.5px;letter-spacing:.06em;color:var(--ink-400);margin-bottom:4px;}
.footer-col a,.footer-col span{font-size:14px;color:var(--ink-500);min-height:24px;}
.footer-col a:hover{color:var(--ink-950);}
.footer-status{display:inline-flex;align-items:center;gap:7px;color:var(--green)!important;}
.footer-bottom{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;
  padding:24px 20px;font-size:12px;color:var(--ink-400);
}
@media (min-width:640px){ .footer-bottom{padding:24px 32px;} }
@media (min-width:1000px){ .footer-bottom{padding:24px 40px;} }

/* =========================================================================
   APPROACH — editorial indexed principles (replaces the solo "about")
   ========================================================================= */
.approach{padding:96px 0;}
.approach-lead{
  font-size:clamp(22px,3.2vw,32px);line-height:1.28;letter-spacing:-.015em;
  font-weight:700;color:var(--ink-950);max-width:24ch;margin-top:18px;
}
.approach-lead em{font-style:normal;color:var(--accent-ink);}
.principles{margin-top:52px;border-top:1px solid var(--line-strong);}
.principle{
  display:grid;gap:10px;
  padding:30px 0;border-bottom:1px solid var(--line);
  min-width:0;
}
@media (min-width:820px){
  .principle{grid-template-columns:88px 0.9fr 1.2fr;gap:40px;align-items:baseline;}
}
.principle-idx{font-family:var(--font-mono);font-size:13px;color:var(--accent-ink);font-weight:700;}
.principle-title{font-size:clamp(19px,2.3vw,24px);font-weight:700;letter-spacing:-.01em;color:var(--ink-950);line-height:1.25;}
.principle-body{font-size:15.5px;line-height:1.66;color:var(--ink-500);}
.principle-body strong{color:var(--ink-800);font-weight:600;}

/* =========================================================================
   FOOTER META (studio metadata line)
   ========================================================================= */
.footer-coords{
  display:flex;gap:16px;flex-wrap:wrap;
  font-size:11.5px;color:var(--ink-400);margin-top:14px;
}
.footer-coords span{display:inline-flex;align-items:center;gap:6px;}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:0.001ms!important;
    animation-iteration-count:1!important;
    transition-duration:0.001ms!important;
    scroll-behavior:auto!important;
  }
  .reveal{opacity:1;transform:none;}
  .honesty-diff .diff-line{opacity:1;transform:none;}
  .chart-line{stroke-dashoffset:0;}
  .chart-area{opacity:1;}
  .bar-fill{transform:scaleY(1);}
  .w-item:hover .w-shot img,.w-shot:focus-visible img{transform:translateY(0);}
  .w-shot::after{opacity:1;}
}

/* =========================================================================
   WHAT WE DO — the department's ledger of services
   ========================================================================= */
.services{padding:96px 0;}
.svc-ledger{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:var(--surface);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  min-width:0;
}
.svc-row{
  display:grid;gap:6px 28px;
  grid-template-columns:minmax(0,1fr);
  padding:24px 22px;
  border-bottom:1px solid var(--line);
  transition:background var(--dur-fast) var(--ease);
  min-width:0;
}
.svc-row:last-child{border-bottom:0;}
.svc-row:hover{background:var(--surface-2);}
@media (min-width:800px){
  .svc-row{
    grid-template-columns:56px 300px minmax(0,1fr);
    align-items:baseline;
    padding:26px 28px;
  }
}
.svc-idx{font-size:12px;color:var(--accent-ink);font-weight:700;}
.svc-title{font-size:18px;font-weight:700;letter-spacing:-.01em;color:var(--ink-950);line-height:1.3;}
.svc-desc{font-size:14.5px;line-height:1.6;color:var(--ink-500);max-width:56ch;}

/* =========================================================================
   HERO SHOWCASE — real builds, browser-framed, gentle crossfade
   ========================================================================= */
.hero-show{min-width:0;}
.hero-w{box-shadow:var(--shadow-lg);}
.show-frame{
  position:relative;min-width:0;
  height:min(58vh, 540px);
  overflow:hidden;background:var(--surface-2);
}
.show-shot{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;object-position:top center;
  opacity:0;transition:opacity .9s var(--ease);
}
.show-shot.is-on{opacity:1;}
.hero-show-caption{
  margin-top:14px;
  font-size:12px;color:var(--ink-400);
  display:flex;flex-wrap:wrap;gap:6px;align-items:center;
}
.hero-show-link{color:var(--accent-ink);font-weight:600;min-height:24px;display:inline-flex;align-items:center;}
.hero-show-link:hover{text-decoration:underline;}

/* =========================================================================
   THE MONTHLY PROOF — the report panel, demoted from hero to evidence
   ========================================================================= */
.proof{padding:96px 0;background:var(--bg-alt);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.proof-panel{max-width:1000px;min-width:0;}
