/* ══════════════════════════════════════════════════════════════════════════
   BuildWithAdithya — landing page
   Ordered top-to-bottom the way the page reads. Shared primitives first,
   then one block per section.
   ══════════════════════════════════════════════════════════════════════════ */

/* ── layout primitives ───────────────────────────────────────────────── */

.wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 3.5vw, 40px);
}
.wrap--above { position: relative; }

.section { padding: clamp(56px, 7vw, 104px) 0; }
.section--ruled { border-top: 2px solid var(--rule); }
.section--band { background: var(--band); }
.section--panel {
  background: var(--panel);
  color: var(--panel-text);
  position: relative;
  overflow: hidden;
}

/* Off-canvas colour wash behind the dark sections. */
.glow { position: absolute; aspect-ratio: 1; pointer-events: none; }
.glow--tr { top: -30%; right: -10%; width: 60%; background: radial-gradient(circle, var(--glow-1), transparent 62%); }
.glow--bl { top: -35%; left: -12%; width: 62%; background: radial-gradient(circle, var(--glow-2), transparent 62%); }
.glow--br { bottom: 8%; right: -14%; width: 58%; background: radial-gradient(circle, var(--glow-3), transparent 62%); }

/* min() inside minmax() so the track can still collapse on a phone — a bare
   minmax(300px, 1fr) floors the column at 300px and pushes the page sideways. */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* ── section headings ────────────────────────────────────────────────── */

.sec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.eyebrow {
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-blue);
  margin: 0 0 18px;
}
.eyebrow--cyan { color: var(--bwa-cyan); }

.sec-title {
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 0;
}
/* Measure caps — each heading is set to break where the design breaks it. */
.sec-title--16 { max-width: 16ch; }
.sec-title--17 { max-width: 17ch; }
.sec-title--18 { max-width: 18ch; }
.sec-title--20 { max-width: 20ch; }
.sec-title--22 { max-width: 22ch; }
.sec-title--panel { color: var(--panel-text); margin-bottom: clamp(32px, 4vw, 56px); }
.sec-title--spaced { margin-bottom: clamp(28px, 3.5vw, 48px); }
.sec-title--spaced-sm { margin-bottom: clamp(28px, 3.5vw, 44px); }
.sec-title--tight { margin-bottom: clamp(24px, 3vw, 40px); }
.sec-title--lg {
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}
.sec-title--md {
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}

.sec-lead {
  font-size: 15px;
  line-height: 1.55;
  max-width: 34ch;
  color: var(--color-neutral-700);
  margin: 0;
}
.sec-lead--32 { max-width: 32ch; }
.sec-lead__strong { font-weight: 600; color: var(--text); }

.prose {
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 44ch;
  color: var(--color-neutral-700);
  margin: 0;
}
.prose--46 { max-width: 46ch; margin-bottom: 12px; }
.prose--last { margin-bottom: 0; }

.quote-rule {
  margin: 22px 0 0;
  border-left: 3px solid;
  border-image: var(--bwa-grad) 1;
  padding-left: 16px;
  font-size: 13.5px;
  color: var(--color-neutral-700);
}

/* ── shared bits ─────────────────────────────────────────────────────── */

/* The brand gradient, used as a fill for text and as a 6px capping rule. */
.grad-text {
  background: var(--bwa-grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.grad-bar { height: 6px; background: var(--bwa-grad); }

/* The hairline card grid: a 2px rule showing through 2px gaps. */
.grid-rule {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background: var(--rule);
  border: 2px solid var(--rule);
}
.cell { background: var(--card); }
.cell--220 { flex: 1 1 220px; }
.cell--240 { flex: 1 1 240px; }
.cell--250 { flex: 1 1 250px; }
.cell--300 { flex: 1 1 300px; }
.cell--320 { flex: 1 1 320px; }
.grid-rule--hover .cell:hover { background: var(--card-hover); }

.label-xs { font-weight: 600; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.label-sm { font-weight: 600; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }

.note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--color-neutral-700);
  margin: 0;
}
.note--panel { font-size: 13px; color: var(--muted); }

.dot-live {
  width: 7px;
  height: 7px;
  flex: none;
  display: block;
  background: var(--bwa-turq);
  animation: pulsedot 2s ease-in-out infinite;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .08em;
  padding: 2px 6px;
}
.badge--pink { background: var(--bwa-pink); color: var(--on-bright); font-size: 8.5px; letter-spacing: .1em; padding: 3px 6px; }
.badge--amber { background: var(--bwa-amber); color: var(--on-bright); }
.badge--cyan { background: var(--bwa-cyan); color: var(--on-bright); }
.badge--idle { background: var(--bar-idle); }
.badge--ink { background: var(--ink-fill); color: var(--ink-fill-text); font: inherit; letter-spacing: inherit; }
.badge--end { margin-left: auto; }

.avatar {
  width: 18px;
  height: 18px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
}
.avatar--ink { background: var(--ink-fill); color: var(--ink-fill-text); }
.avatar--idle { background: var(--bar-idle); }
.avatar--lg { width: 20px; height: 20px; }

.check {
  width: 14px;
  height: 14px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bwa-turq);
  color: var(--on-bright);
  font-size: 9px;
}
.checkbox { width: 14px; height: 14px; flex: none; border: 2px solid var(--rule); }
.tick { color: var(--ink-turq); font-weight: 700; }
.tick--todo { color: inherit; }

/* Chart bars. --h / --w carry the datum; landing.js animates from zero. */
.bar { flex: 1; height: var(--h, 100%); }
.bar--idle { background: var(--bar-idle); }
.bar--ink { background: var(--ink-fill); }
.bar--grad { background: var(--bwa-grad); }
.bar--blue { background: var(--bwa-blue); }

.fw6 { font-weight: 600; }
.tnum { font-variant-numeric: tabular-nums; }
.italic { font-style: italic; }

.u-blue { color: var(--ink-blue); }
.u-cyan { color: var(--ink-cyan); }
.u-turq { color: var(--ink-turq); }
.u-magenta { color: var(--ink-magenta); }
.u-pink { color: var(--ink-pink); }
.u-orange { color: var(--ink-orange); }
.u-amber { color: var(--ink-amber); }
.u-b-pink { color: var(--bwa-pink); }
.u-b-turq { color: var(--bwa-turq); }
.u-b-amber { color: var(--bwa-amber); }
.u-dim { color: var(--dim); }
.u-sub { color: var(--color-neutral-700); }

/* ── header ──────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--rule);
}
.site-header__bar {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 36px);
  height: 66px;
}

.brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.035em;
  text-decoration: none;
  white-space: nowrap;
  margin-right: auto;
  background: var(--bwa-grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.brand--foot { font-size: 20px; margin-right: 0; }

.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.site-nav__link {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.site-nav__link:hover { color: var(--bwa-blue); }
.site-header__cta { padding: 11px 18px; font-size: 13.5px; white-space: nowrap; }

.site-header__mobile { display: none; align-items: center; gap: 10px; }

/* theme switch */
.tsw {
  display: inline-flex;
  flex: none;
  border: 2px solid var(--rule);
  background: var(--card);
}
.tsw__btn {
  width: 36px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-neutral-700);
  cursor: pointer;
  transition: background-color .18s, color .18s;
}
.tsw__btn + .tsw__btn { border-left: 2px solid var(--rule); }
.tsw__btn:hover { background: var(--inset); color: var(--text); }
.tsw__btn:active { background: var(--bar-idle); }
.tsw__btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: -4px; }
.tsw__btn svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-theme="light"] .tsw__btn[data-theme-set="light"],
html:not([data-theme="dark"]) .tsw__btn[data-theme-set="light"],
html[data-theme="dark"] .tsw__btn[data-theme-set="dark"] {
  background: var(--ink-fill);
  color: var(--ink-fill-text);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: var(--ink-fill);
  border: 0;
  cursor: pointer;
}
.menu-toggle__line { display: block; height: 2px; width: 100%; background: var(--ink-fill-text); }

.mobile-menu {
  display: none;
  border-top: 2px solid var(--rule);
  background: var(--card);
  padding: 14px clamp(18px, 3.5vw, 40px) 20px;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu__link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-faint);
}
.mobile-menu__link:hover { color: var(--bwa-blue); background: var(--card-hover); }
.mobile-menu__cta { margin-top: 14px; padding: 15px 18px; font-size: 15px; justify-content: flex-start; }

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .site-header__mobile { display: flex; }
  .mobile-menu:not([hidden]) { display: flex; }
}

/* ── hero ────────────────────────────────────────────────────────────── */

.hero { padding: clamp(40px, 6vw, 76px) 0 clamp(48px, 7vw, 88px); position: relative; }
.hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(470px, 100%), 1fr));
  gap: clamp(36px, 4.5vw, 64px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--rule);
  padding: 6px 12px;
  margin: 0 0 26px;
}
.pill__dot { width: 9px; height: 9px; display: block; background: var(--bwa-grad); }
.pill__label {
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__title {
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.03;
  letter-spacing: -.035em;
  margin: 0 0 22px;
}
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18.5px);
  line-height: 1.55;
  max-width: 46ch;
  color: var(--color-neutral-700);
  margin: 0;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__note { margin-top: 16px; }

.hero__visual {
  position: relative;
  width: min(620px, 100%);
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
.hero__stack-top { display: flex; position: relative; z-index: 2; }
.hero__stack-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.connector { height: 24px; margin-left: 46px; border-left: 2px dashed var(--dash); }

.card-alert {
  width: min(240px, 58%);
  background: var(--card);
  border: 2px solid var(--rule);
  box-shadow: 8px 8px 0 var(--shadow-a);
  animation: floaty 7s ease-in-out infinite;
}
.card-alert__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 2px solid var(--rule);
}
.card-alert__body { padding: 10px; }
.card-alert__name { font-family: var(--font-heading); font-weight: 800; font-size: 15px; letter-spacing: -.02em; }
.card-alert__meta { font-size: 12px; color: var(--color-neutral-700); margin-top: 2px; }

.dash {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 2px solid var(--rule);
  box-shadow: 16px 16px 0 var(--shadow-b);
}
.dash__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 2px solid var(--rule);
}
.dash__live { display: flex; align-items: center; gap: 7px; letter-spacing: .14em; }
.dash__live .dot-live { animation-duration: 1.8s; }
.dash__kpi { padding: 20px 16px 4px; }
.dash__kpi-label { margin-bottom: 8px; }
.dash__kpi-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.stat-xl {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.delta { display: flex; align-items: center; gap: 5px; font-weight: 600; font-size: 12.5px; color: var(--ink-turq); }
.delta__base { color: var(--color-neutral-700); font-weight: 400; }

.dash__chart {
  display: flex;
  align-items: flex-end;
  gap: clamp(6px, 1.4vw, 12px);
  height: 104px;
  padding: 18px 16px 16px;
}
.dash__foot { display: flex; border-top: 2px solid var(--rule); }
.kpi { flex: 1; padding: 12px 14px; }
.kpi--divided { border-right: 1px solid var(--rule-mid); }
.kpi__label { font-weight: 600; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-neutral-700); }
.kpi__value { font-family: var(--font-heading); font-weight: 800; font-size: 19px; letter-spacing: -.02em; margin-top: 3px; }

.card-order {
  flex: 0 1 190px;
  background: var(--panel);
  color: var(--panel-text);
  border: 2px solid var(--rule);
  box-shadow: 8px 8px 0 var(--shadow-a);
  animation: floaty2 8s ease-in-out infinite;
}
.card-order__head {
  padding: 10px 12px;
  border-bottom: 1px solid var(--panel-hair);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.card-order__body { padding: 10px 12px; }
.card-order__value { font-family: var(--font-heading); font-weight: 800; font-size: 26px; letter-spacing: -.03em; line-height: 1; }
.card-order__delta { font-size: 11.5px; color: var(--bwa-turq); margin-top: 3px; }

.card-wa {
  flex: 1 1 250px;
  background: var(--card);
  border: 2px solid var(--rule);
  box-shadow: 8px 8px 0 var(--shadow-a);
  animation: floaty 9s ease-in-out infinite;
}
.card-wa__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 2px solid var(--rule);
}
.card-wa__head .dot-live { width: 8px; height: 8px; animation-duration: 1.6s; }
.card-wa__body { padding: 10px; }
.card-wa__title { font-size: 12.5px; font-weight: 600; }
.card-wa__meta { font-size: 11.5px; color: var(--color-neutral-700); margin-top: 3px; font-variant-numeric: tabular-nums; }

/* ── 01 / the problem ────────────────────────────────────────────────── */

.prob { padding: 20px; }
.cell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule-soft);
  white-space: nowrap;
}
.cell-title { font-family: var(--font-heading); font-weight: 800; font-size: 17px; letter-spacing: -.02em; margin: 0; }
.prob__body { padding: 14px 0 16px; }

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
}
.prob__body.list { gap: 9px; }
.list--grow { flex: 1; }
.list--plain { font-variant-numeric: normal; }
.list__row { display: flex; justify-content: space-between; gap: 10px; white-space: nowrap; }
.list__row--danger { background: var(--tint-danger); margin: 0 -6px; padding: 2px 6px; }
.list__foot {
  font-size: 11px;
  color: var(--color-neutral-700);
  border-top: 1px solid var(--rule-faint);
  padding-top: 7px;
}

.chat { display: flex; flex-direction: column; gap: 6px; }
.chat__msg {
  align-self: flex-start;
  max-width: 100%;
  background: var(--inset);
  padding: 6px 10px;
  font-size: 12px;
  white-space: nowrap;
}
.chat--grow { flex: 1; }
.chat--grow .chat__msg { padding: 7px 10px; font-size: 11.5px; }
.chat__msg--out { align-self: flex-end; background: var(--ink-fill); color: var(--ink-fill-text); }
.chat__ack { align-self: flex-end; font-size: 10px; color: var(--ink-turq); font-weight: 600; }

.recap { font-size: 12px; font-variant-numeric: tabular-nums; }
.recap__head {
  display: flex;
  gap: 10px;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  padding-bottom: 7px;
}
.recap__row { display: flex; gap: 10px; padding: 5px 0; border-top: 1px solid var(--rule-faint); }
.recap__c1, .recap__c2 { flex: 1; }
.recap__c3 { flex: 1.4; text-align: right; }
/* The half-typed cell: a blinking entry caret, mid-keystroke. */
.caret {
  display: inline-block;
  width: 9px;
  height: 14px;
  background: var(--bwa-orange);
  vertical-align: -2px;
  animation: pulsedot 1.1s steps(1) infinite;
}

.qa { display: flex; flex-direction: column; gap: 8px; font-size: 12px; }
.qa__row { display: flex; gap: 8px; white-space: nowrap; }
.qa__row--reply { justify-content: flex-end; }

.src-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.src-grid__item { border: 1px dashed var(--rule-dash); padding: 7px 9px; font-size: 11.5px; }

.stat-band {
  margin-top: 2px;
  border: 2px solid var(--rule);
  border-top: 0;
  background: var(--band);
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 4vw, 54px);
}
.stat-band__item { display: flex; align-items: baseline; gap: 12px; }
.stat-band__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-band__num--grad {
  background: var(--bwa-grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.stat-band__label { font-size: 13px; line-height: 1.4; max-width: 24ch; color: var(--color-neutral-700); }
.stat-band__item:first-child .stat-band__label { max-width: 22ch; }
.stat-band__src {
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  margin: 0 0 0 auto;
}

/* ── 01 / the real issue ─────────────────────────────────────────────── */

.sources { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.source {
  flex: 1 1 170px;
  max-width: calc(50% - 5px);
  border: 2px dashed var(--panel-dash);
  padding: 14px;
}
.source__label {
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}
.source__name { font-family: var(--font-heading); font-weight: 800; font-size: 16px; }

/* Six scattered sources funnelling into one. */
.converge { display: block; width: 100%; height: clamp(60px, 7vw, 110px); }
.converge__line {
  fill: none;
  stroke: var(--panel-line);
  stroke-width: 2;
  stroke-dasharray: 6 8;
  animation: dashflow var(--dur, 1.4s) linear infinite;
}

.system-card {
  border: 2px solid var(--panel-card-bd);
  background: var(--panel-card);
  color: var(--panel-card-text);
}
.system-card__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(18px, 2.5vw, 26px);
}
.system-card__label {
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  margin-bottom: 6px;
}
.system-card__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: -.03em;
  line-height: 1.05;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 2px solid var(--rule); padding: 7px 12px; font-weight: 600; font-size: 11px; letter-spacing: .06em; }

.impact { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; align-items: center; }
.impact__label {
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-right: 6px;
}
.impact__item {
  border: 1px solid var(--panel-line);
  color: var(--muted);
  padding: 6px 11px;
  font-size: 11.5px;
  text-decoration: line-through;
}

/* ── 02 / our solutions ──────────────────────────────────────────────── */

.sol { padding: clamp(20px, 2.4vw, 28px); }
.sol__head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.sol__num { font-family: var(--font-heading); font-weight: 800; font-size: 34px; letter-spacing: -.04em; line-height: .9; }
.sol__title { font-family: var(--font-heading); font-weight: 800; font-size: 20px; letter-spacing: -.025em; line-height: 1.15; margin: 0; }
.sol__desc { font-size: 13.5px; line-height: 1.5; color: var(--color-neutral-700); margin: 6px 0 0; }

/* Product vignettes inside the solution cards. */
.mock { border: 2px solid var(--rule); }
.mock--pad { padding: 14px; }
.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-bottom: 2px solid var(--rule);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mock-foot { padding: 9px 12px; border-top: 2px solid var(--rule); font-size: 11px; color: var(--color-neutral-700); }
.mock-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-top: 2px solid var(--rule);
  background: var(--panel);
  color: var(--panel-text);
  font-size: 11px;
}
.mock-note .dot-live { animation-duration: 1.7s; }

.mock-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-bottom: 2px solid var(--rule);
  background: var(--inset);
}
.dot-sq { width: 8px; height: 8px; display: block; }
.dot-sq--ink { background: var(--ink-fill); }
.dot-sq--idle { background: var(--bar-idle); }
.mock-browser__url { margin-left: 6px; font-size: 10px; color: var(--color-neutral-700); font-weight: 600; }
.mock-browser__body { display: flex; align-items: center; gap: 12px; padding: 12px; }
.mock-browser__lines { flex: 1; }
.skel { height: 6px; width: var(--w, 100%); }
.skel--ink { height: 8px; background: var(--ink-fill); }
.skel--idle { background: var(--bar-idle); }
.skel + .skel { margin-top: 6px; }
.skel--idle + .skel--idle { margin-top: 5px; }
.mock-browser__cta {
  margin-top: 10px;
  background: var(--bwa-blue);
  color: var(--on-brand);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 9px;
  display: inline-block;
}
.mock-browser__img { width: 34%; align-self: stretch; background: var(--bwa-grad); opacity: .15; min-height: 70px; }

.pos { display: flex; font-size: 12px; }
.pos__items {
  flex: 1.3;
  padding: 12px;
  border-right: 2px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pos__row { display: flex; justify-content: space-between; white-space: nowrap; }
.pos__row--total { border-top: 1px solid var(--rule-mid); padding-top: 7px; font-weight: 600; }
.pos__pay { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.pay { background: var(--inset); padding: 8px; text-align: center; font-weight: 600; font-size: 11px; }
.pay--active { background: var(--ink-fill); color: var(--ink-fill-text); }

.flow { display: flex; align-items: center; gap: 8px; flex-wrap: nowrap; overflow: hidden; }
.flow__node {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  border: 2px solid var(--rule);
  padding: 9px 4px;
  font-weight: 600;
  font-size: 10.5px;
}
.flow__node--end { border: 0; background: var(--ink-fill); color: var(--ink-fill-text); }
.flow__arrow { flex: none; color: var(--ink-magenta); font-weight: 800; }
.flow__note { margin: 12px 0 0; background: var(--inset); padding: 10px; font-size: 11.5px; line-height: 1.5; }

.tasks { display: flex; flex-direction: column; gap: 9px; font-size: 12px; }
.mock .tasks { padding: 12px; }
.tasks--grow { flex: 1; gap: 8px; }
.task { display: flex; align-items: center; gap: 9px; }
.task__done { text-decoration: line-through; color: var(--color-neutral-700); }

/* ── 02 / what we can build ──────────────────────────────────────────── */

.tile { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--rule-soft);
  white-space: nowrap;
}
.tile__body { flex: 1; }
.tile__title { font-family: var(--font-heading); font-weight: 800; font-size: 15px; letter-spacing: -.02em; margin: 0; }

.tile__stat { display: flex; align-items: baseline; gap: 8px; }
.tile__stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 24px; letter-spacing: -.03em; }
.tile__stat-delta { font-size: 11.5px; font-weight: 600; color: var(--ink-turq); }
.spark { display: flex; align-items: flex-end; gap: 4px; height: 46px; margin-top: 10px; }

.slots { display: flex; gap: 6px; align-items: flex-start; }
.slot {
  flex: 1;
  text-align: center;
  border: 2px solid var(--rule);
  padding: 9px 2px;
  font-size: 11.5px;
  font-weight: 600;
}
.slot--taken { border: 0; background: var(--bwa-blue); color: var(--on-brand); }
.slot--gone { border: 0; background: var(--bar-idle); color: var(--color-neutral-700); text-decoration: line-through; }

.staff { display: flex; flex-direction: column; gap: 8px; font-size: 12px; }
.staff__row { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.staff__end { margin-left: auto; }

.branches { display: flex; flex-direction: column; gap: 9px; font-size: 12px; font-variant-numeric: tabular-nums; }
.branch__row { display: flex; justify-content: space-between; white-space: nowrap; }
.branch__track { height: 5px; background: var(--bar-idle); margin-top: 4px; }
.branch__fill { height: 100%; width: var(--w, 100%); }
.branch__fill--blue { background: var(--bwa-blue); }
.branch__fill--cyan { background: var(--bwa-cyan); }
.branch__fill--turq { background: var(--bwa-turq); }

/* ── 02 / before & after ─────────────────────────────────────────────── */

.ba {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 2px;
  background: var(--rule);
  border: 2px solid var(--rule);
}
.ba__col { padding: clamp(20px, 2.6vw, 30px); }
.ba__col--before { background: var(--card); }
.ba__col--after { background: var(--panel); color: var(--panel-text); }
.ba__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.ba__label { font-weight: 600; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--color-neutral-700); }
.ba__label--after { color: var(--bwa-cyan); }
.ba__count { font-family: var(--font-heading); font-weight: 800; font-size: 12px; letter-spacing: .06em; }
.ba__count--before { border: 2px solid var(--ink-pink); color: var(--ink-pink); padding: 4px 10px; }
.ba__count--after { background: var(--bwa-grad); color: var(--on-brand); padding: 5px 11px; }

.ba__steps { display: flex; flex-direction: column; gap: 8px; }
/* The staircase indent is the point: each hand-off drifts further out. */
.ba__step { border: 1px dashed var(--rule-dash); padding: 11px 13px; font-size: 13px; margin-left: var(--indent, 0); }
.ba__note { margin: 18px 0 0; font-size: 12.5px; font-weight: 600; }
.ba__note--before { color: var(--ink-pink); }
.ba__note--after { color: var(--bwa-cyan); }

.ba__flow { display: flex; flex-direction: column; }
.ba__flow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: var(--panel-2);
  border-left: 3px solid var(--c);
}
.ba__flow-num { font-weight: 600; font-size: 10px; color: var(--dim); font-variant-numeric: tabular-nums; }
.ba__flow-text { font-size: 13.5px; }
.ba__flow-link { width: 2px; height: 12px; background: var(--c); margin-left: 34px; }

/* ── 03 / how we work ────────────────────────────────────────────────── */

.progress { height: 6px; background: var(--bar-idle); margin-bottom: 2px; }
.progress__fill { height: 100%; width: 0; background: var(--bwa-grad); background-size: 1280px 100%; }

.step { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.step__head { display: flex; align-items: baseline; gap: 9px; }
.step__num { font-family: var(--font-heading); font-weight: 800; font-size: 13px; }
.step__name { font-family: var(--font-heading); font-weight: 800; font-size: 16px; letter-spacing: -.02em; margin: 0; }
.step__desc { font-size: 12.5px; color: var(--color-neutral-700); line-height: 1.45; margin: 0; }
.step__box {
  border: 2px solid var(--rule);
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11.5px;
  flex: 1;
}
.step__box--tight { gap: 6px; }
.step__box--gap8 { gap: 8px; }
.step__box--plain { display: block; }
.step__box--flush { display: block; padding: 0; }

.box-label { font-weight: 600; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-neutral-700); }
.box-label--mb { margin-bottom: 9px; }
.box-label--row { display: flex; align-items: center; gap: 7px; color: inherit; }
.box-label--row .dot-live { animation-duration: 1.8s; }

.tick-row { display: flex; gap: 7px; }

.wf { background: var(--inset); padding: 6px 8px; }
.wf__arrow { text-align: center; color: var(--color-neutral-700); line-height: 1; }

.blueprint { display: flex; gap: 6px; }
.blueprint__side { width: 28%; background: var(--bar-idle); min-height: 52px; }
.blueprint__main { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.blueprint__row { border: 1px dashed var(--rule-dash); }
.blueprint__row--sm { height: 16px; }
.blueprint__row--lg { height: 30px; }

.build-row { display: flex; justify-content: space-between; white-space: nowrap; }
.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  background: var(--code-bg);
  color: var(--bwa-cyan);
  padding: 6px 8px;
}
.progress-mini { margin-top: auto; }
.progress-mini__row { display: flex; justify-content: space-between; margin-bottom: 4px; white-space: nowrap; }
.progress-mini__track { height: 6px; background: var(--bar-idle); }
.progress-mini__fill { height: 100%; width: var(--w, 100%); background: var(--bwa-magenta); }

.deploy__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: var(--panel);
  color: var(--panel-text);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.deploy__body { padding: 10px; display: flex; flex-direction: column; gap: 7px; font-size: 11.5px; }
.status-row { display: flex; justify-content: space-between; white-space: nowrap; }

.work-cta {
  border: 2px solid var(--rule);
  border-top: 0;
  background: var(--card);
  padding: clamp(18px, 2.4vw, 26px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.work-cta__text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(17px, 2.2vw, 24px);
  letter-spacing: -.025em;
  margin: 0;
}
.work-cta__btn { margin-left: auto; }

/* ── 03 / our approach ───────────────────────────────────────────────── */

.approach { padding: 20px; }
.approach--panel { background: var(--panel); color: var(--panel-text); }
.approach--panel .approach__desc { color: var(--muted); }
.approach__num { font-family: var(--font-heading); font-weight: 800; font-size: 12px; margin-bottom: 10px; }
.approach__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 7px;
}
.approach__desc { font-size: 13px; line-height: 1.5; color: var(--color-neutral-700); margin: 0; }

/* ── 03 / why buildwithadithya ───────────────────────────────────────── */

.why { padding: clamp(20px, 2.4vw, 26px); }
.why__mark { width: 26px; height: 26px; margin-bottom: 16px; }
.why__mark--blue { background: var(--bwa-blue); }
.why__mark--cyan { background: var(--bwa-cyan); }
.why__mark--turq { background: var(--bwa-turq); }
.why__mark--magenta { background: var(--bwa-magenta); }
.why__mark--orange { background: var(--bwa-orange); }
.why__mark--amber { background: var(--bwa-amber); }
.why__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.why__desc { font-size: 13.5px; line-height: 1.5; color: var(--color-neutral-700); margin: 0; }

/* ── 04 / behind buildwithadithya ────────────────────────────────────── */

.quote-card {
  margin: 26px 0 0;
  background: var(--panel);
  color: var(--panel-text);
  padding: clamp(20px, 2.6vw, 28px);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.quote-card__photo {
  width: 64px;
  height: 64px;
  flex: none;
  border: 2px solid var(--panel-bd);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--panel-2);
}
.quote-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.quote-card__initial { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: var(--muted); }
.quote-card__text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.3;
  letter-spacing: -.02em;
  margin: 0;
}
.quote-card__by {
  margin-top: 12px;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
}

.timeline-card { border: 2px solid var(--rule); background: var(--card); }
.timeline-card__head {
  padding: 14px 18px;
  border-bottom: 2px solid var(--rule);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.timeline { padding: clamp(20px, 2.6vw, 28px); display: flex; flex-direction: column; }
.timeline__item { display: flex; gap: 16px; align-items: flex-start; }
.timeline__dot { width: 14px; height: 14px; flex: none; margin-top: 3px; }
.timeline__dot--blue { background: var(--bwa-blue); }
.timeline__dot--cyan { background: var(--bwa-cyan); }
.timeline__dot--magenta { background: var(--bwa-magenta); }
.timeline__dot--grad { background: var(--bwa-grad); }
.timeline__title { font-family: var(--font-heading); font-weight: 800; font-size: 16px; letter-spacing: -.02em; margin: 0; }
.timeline__desc { font-size: 13px; color: var(--color-neutral-700); margin: 3px 0 0; }
.timeline__link { width: 2px; height: 26px; background: var(--bar-idle); margin: 6px 0 6px 6px; }

/* ── contact ─────────────────────────────────────────────────────────── */

.contact { padding: clamp(64px, 9vw, 132px) 0 0; }
.contact__title {
  font-size: clamp(32px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0 0 22px;
  max-width: 16ch;
  color: var(--panel-text);
}
.contact__lead {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  max-width: 52ch;
  color: var(--muted);
  margin: 0 0 32px;
}
.contact__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

.cta-grad {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bwa-grad);
  color: var(--on-brand);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(15px, 1.8vw, 19px);
  letter-spacing: -.01em;
  padding: 18px 26px;
  text-decoration: none;
}
.cta-grad:hover { opacity: .9; color: var(--on-brand); }
.cta-grad__arrow { font-size: 1.1em; }

.contact__grid {
  margin-top: clamp(48px, 7vw, 88px);
  border-top: 2px solid var(--panel-rule);
  padding: clamp(28px, 3.5vw, 40px) 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
}
.contact__item { flex: 1 1 200px; }
.contact__label {
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 9px;
}
.contact__value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--panel-text);
  text-decoration: none;
}
.contact__value--cyan:hover { color: var(--bwa-cyan); }
.contact__value--magenta:hover { color: var(--bwa-magenta); }
.contact__value--turq:hover { color: var(--bwa-turq); }
.contact__value--amber:hover { color: var(--bwa-amber); }

.site-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 30px;
}
.site-foot__meta { font-size: 12px; color: var(--dim); margin: 0; }

/* ── narrow screens ──────────────────────────────────────────────────── */

@media (max-width: 560px) {
  /* The hero mock is 620px of fixed-ish furniture; let it shrink rather
     than push the page sideways. */
  .hero__visual { width: 100%; }
  .card-alert { width: min(240px, 70%); }
  .work-cta__btn { margin-left: 0; }
  .stat-band__src { margin-left: 0; }
}
