/* AskBookIt — night, with light moving through it.
   Deep violet-black ground, magenta-to-amber light trails, and a search field that
   glows because it is the point of the page. Energy without neon-for-its-own-sake:
   the gradient means "this is the action", green means "this actually happened". */

:root {
  color-scheme: dark;

  --bg:        #08050F;
  --bg-2:      #0D0918;
  --surface:   rgba(255,255,255,.035);
  --surface-2: rgba(255,255,255,.06);
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);

  --ink:       #FFFFFF;
  --ink-2:     #C9C2D6;
  --muted:     #8E85A3;
  --faint:     #5E5772;

  --magenta:   #FF2E9A;
  --violet:    #A855F7;
  --amber:     #FF8A00;
  --cyan:      #22D3EE;
  --go:        #22C55E;
  --stop:      #FB7185;

  --grad:      linear-gradient(95deg, #FF2E9A 0%, #C13BF5 42%, #FF8A00 100%);
  --grad-soft: linear-gradient(95deg, rgba(255,46,154,.16), rgba(193,59,245,.16), rgba(255,138,0,.16));

  --sans: 'Inter', ui-sans-serif, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif: var(--sans);
  --pad: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(.2,.8,.3,1);
  --r: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  min-height: 100vh; display: flex; flex-direction: column;
  background: var(--bg); color: var(--ink);
  font: 400 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Light trails: magenta sweeping in from the left, amber from the right. */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(58vw 42vw at -8% 26%, rgba(255,46,154,.20), transparent 62%),
    radial-gradient(52vw 40vw at 6% 34%, rgba(120,60,255,.18), transparent 60%),
    radial-gradient(58vw 44vw at 106% 30%, rgba(255,138,0,.20), transparent 62%),
    radial-gradient(46vw 36vw at 92% 40%, rgba(255,60,0,.12), transparent 60%),
    radial-gradient(90vw 60vw at 50% -20%, rgba(80,40,140,.22), transparent 70%);
}
.masthead, .view, .footer { position: relative; z-index: 1; }

/* ---------- Masthead ---------- */

.masthead {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px var(--pad); flex-wrap: wrap;
}
.wordmark {
  display: inline-flex; align-items: center; gap: 11px;
  font: 700 24px/1 var(--sans); letter-spacing: .16em; text-decoration: none; color: var(--ink);
}
.wordmark .spark { width: 26px; height: 26px; flex: none; }
.wordmark span {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-2); text-decoration: none;
  padding: 9px 15px; border-radius: 10px; position: relative; transition: color .2s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current] { color: var(--ink); }
.nav a[aria-current]::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--grad); border-radius: 2px;
}
.nav .cta {
  display: inline-flex; align-items: center; gap: 8px; margin-left: 10px;
  padding: 11px 20px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,.04); color: var(--ink); font-weight: 500;
}
.nav .cta:hover { border-color: rgba(255,46,154,.55); background: rgba(255,46,154,.08); }
.nav .cta::after { display: none; }

.view { flex: 1; padding: 0 var(--pad) 80px; }

.footer {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px var(--pad); border-top: 1px solid var(--line);
  font-size: 14px; color: var(--faint); flex-wrap: wrap;
}
.footer a { color: var(--faint); text-decoration: none; }
.footer a:hover { color: var(--muted); }

/* ---------- Type ---------- */

h1 { font: 800 clamp(44px, 8.4vw, 92px)/1.02 var(--sans); letter-spacing: -.035em; }
h2 { font: 700 clamp(24px, 3.4vw, 36px)/1.14 var(--sans); letter-spacing: -.025em; }
h3 { font: 600 16px/1.4 var(--sans); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kicker {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-2);
  border: 1px solid var(--line-2); background: rgba(255,255,255,.04);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 20px;
}
.lede { font-size: clamp(16px, 1.9vw, 20px); color: var(--muted); max-width: 52ch; }
.quiet { color: var(--muted); }
.mono { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 13px; }

/* ---------- Demo / mode badge ---------- */

.notice-wrap { display: flex; justify-content: center; padding: 0 var(--pad); position: relative; z-index: 1; }

.notice {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin: 4px auto 26px; padding: 9px 18px 9px 12px;
  border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255,255,255,.05);
  font-size: 14.5px; color: var(--ink-2); backdrop-filter: blur(10px);
}
.notice strong {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  background: rgba(255,255,255,.07); padding: 5px 12px; border-radius: 999px;
}
.notice strong::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
}
.demo-inline { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }

/* ---------- Hero ---------- */

.hero { max-width: 1180px; margin: 0 auto; padding-top: clamp(12px, 4vh, 44px); text-align: center; }
.hero h1 { margin-bottom: 6px; }
.hero h1 .line2 { display: block; }
.hero .lede { margin: 14px auto 28px; }

.assurances {
  display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(18px, 4vw, 56px);
  margin-bottom: 30px;
}
.assurance-item { display: flex; align-items: center; gap: 12px; text-align: left; }
.assurance-item .ico {
  width: 42px; height: 42px; border-radius: 13px; flex: none;
  display: grid; place-items: center; border: 1px solid var(--line-2);
}
.assurance-item b { display: block; font-size: 15px; font-weight: 600; }
.assurance-item span { display: block; font-size: 13.5px; color: var(--muted); }

/* The field is the point of the page, so it is the brightest thing on it. */
.teller { max-width: 1080px; margin: 0 auto; }
.teller-field {
  position: relative; border-radius: 22px; padding: 2px; background: var(--grad);
  box-shadow: 0 0 60px -12px rgba(255,46,154,.5), 0 0 90px -20px rgba(255,138,0,.4);
  transition: box-shadow .35s var(--ease);
}
.teller-field:focus-within { box-shadow: 0 0 80px -8px rgba(255,46,154,.65), 0 0 120px -16px rgba(255,138,0,.5); }
.teller-inner {
  background: #0B0714; border-radius: 20px; padding: 18px 18px 14px 20px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 14px;
}
.teller-spark { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.teller textarea {
  display: block; width: 100%; min-height: 52px; resize: none; padding: 10px 0 0;
  border: 0; outline: 0; background: transparent; color: var(--ink);
  font: 500 clamp(19px, 2.2vw, 26px)/1.35 var(--sans); letter-spacing: -.01em;
}
.teller textarea::placeholder { color: var(--faint); font-weight: 500; }
.teller-go {
  width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 22px -6px rgba(255,46,154,.7);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.teller-go:hover { transform: scale(1.06); box-shadow: 0 8px 28px -6px rgba(255,138,0,.75); }
.teller-go:active { transform: scale(.96); }
.teller-go:disabled { opacity: .5; cursor: default; transform: none; }
.teller-bar { grid-column: 2 / 3; display: flex; flex-wrap: wrap; gap: 8px; padding-top: 12px; }
.qchip {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font: 500 14px/1 var(--sans); color: var(--ink-2);
  background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px;
  transition: all .2s var(--ease);
}
.qchip:hover { border-color: var(--line-2); color: var(--ink); background: rgba(255,255,255,.09); }
.qchip[aria-pressed="true"] { border-color: rgba(255,46,154,.6); background: rgba(255,46,154,.12); color: #fff; }
.hint { font-size: 13.5px; color: var(--faint); }

/* Category row */
.cats { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cat {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font: 500 15px/1 var(--sans); color: var(--ink);
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 20px; transition: all .2s var(--ease);
}
.cat:hover { background: rgba(255,255,255,.08); border-color: var(--line-2); transform: translateY(-1px); }
.cat .ico { width: 20px; height: 20px; flex: none; }

/* A tinted tile behind an icon — the repeated unit across categories and cards. */
.ico-tint {
  display: grid; place-items: center; flex: none;
  width: 34px; height: 34px; border-radius: 11px; border: 1px solid transparent;
}
.cat .ico-tint { width: 28px; height: 28px; border-radius: 9px; }
.assurance-item .ico-tint { width: 42px; height: 42px; border-radius: 13px; }
.value .ico-tint { width: 34px; height: 34px; }

/* ---------- BookIT in action ---------- */

.in-action {
  max-width: 1180px; margin: clamp(32px, 6vh, 56px) auto 0;
  border: 1px solid var(--line); border-radius: 22px;
  background: rgba(255,255,255,.02); padding: 20px clamp(14px, 2vw, 22px) 24px;
}
.in-action-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.in-action-head h3 { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; }
.in-action-head a { font-size: 14.5px; color: var(--ink-2); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.in-action-head a:hover { color: var(--ink); }
.action-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.action-card {
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,.03); cursor: pointer; text-align: left;
  display: flex; flex-direction: column; transition: all .22s var(--ease);
  animation: rise .5s var(--ease) both;
}
.action-card:hover { border-color: var(--line-2); transform: translateY(-3px); background: rgba(255,255,255,.06); }
.ac-quote { display: flex; gap: 11px; padding: 15px 15px 13px; align-items: flex-start; }
.ac-quote .ico { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; }
.ac-quote p { font-size: 14.5px; line-height: 1.42; color: var(--ink); }
.ac-art { height: 128px; position: relative; overflow: hidden; }
.ac-art::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,5,15,.85) 100%);
}
.ac-foot { padding: 12px 15px 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.ac-name { font-size: 14.5px; font-weight: 600; }
.ac-meta { font-size: 12.5px; color: var(--muted); }
.ac-tag {
  display: inline-flex; align-items: center; gap: 5px; flex: none;
  font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 999px;
  color: var(--go); background: rgba(34,197,94,.14); border: 1px solid rgba(34,197,94,.3);
}
.ac-tag.ask { color: var(--amber); background: rgba(255,138,0,.12); border-color: rgba(255,138,0,.3); }
.ac-tag.find { color: var(--cyan); background: rgba(34,211,238,.12); border-color: rgba(34,211,238,.3); }

/* ---------- Value strip ---------- */

.values {
  max-width: 1180px; margin: 16px auto 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.02); overflow: hidden;
}
.value { display: flex; align-items: center; gap: 13px; padding: 18px 20px; border-right: 1px solid var(--line); }
.value:last-child { border-right: 0; }
.value .ico { width: 30px; height: 30px; flex: none; }
.value b { display: block; font-size: 14.5px; font-weight: 600; }
.value span { display: block; font-size: 13px; color: var(--muted); }

/* ---------- Work / steps ---------- */

.work { max-width: 820px; margin: 0 auto; padding-top: clamp(20px, 5vh, 56px); }
.utterance {
  font: 600 clamp(19px, 2.6vw, 27px)/1.35 var(--sans); letter-spacing: -.02em; color: var(--ink);
  border-left: 3px solid transparent; border-image: var(--grad) 1;
  padding-left: 20px; margin-bottom: 30px;
}
.status-line { margin-bottom: 24px; }
.steps { list-style: none; padding-left: 6px; border-left: 2px dashed var(--line-2); }
.step {
  display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 16px;
  padding: 11px 0 11px 18px; font-size: 16px; animation: rise .5s var(--ease) both;
}
@keyframes rise { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.step .mark {
  width: 20px; height: 20px; border-radius: 50%; margin-left: -29px;
  background: var(--bg); border: 2px solid var(--line-2);
  display: grid; place-items: center; transition: all .35s var(--ease);
}
.step[data-state="waiting"] { color: var(--faint); }
.step[data-state="working"] { color: var(--ink); font-weight: 500; }
.step[data-state="working"] .mark { background: var(--amber); border-color: var(--amber); animation: pulse 1.3s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,138,0,.5); } 50% { box-shadow: 0 0 0 9px rgba(255,138,0,0); } }
.step[data-state="done"] { color: var(--ink-2); }
.step[data-state="done"] .mark { background: var(--go); border-color: var(--go); }
.step[data-state="done"] .mark::after {
  content: ''; width: 9px; height: 5px; border-left: 2.5px solid #08050F; border-bottom: 2.5px solid #08050F;
  transform: rotate(-45deg) translate(1px,-1px);
}
.step[data-state="paused"] { color: var(--ink); }
.step[data-state="paused"] .mark { background: var(--magenta); border-color: var(--magenta); }
.step .detail { font-size: 13px; color: var(--muted); }

.ask {
  margin-top: 28px; padding: 26px; border-radius: 20px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,46,154,.4);
  box-shadow: 0 0 50px -20px rgba(255,46,154,.6); animation: rise .5s var(--ease) both;
}
.ask h2 { margin-bottom: 8px; }
.ask .why { color: var(--muted); margin-bottom: 18px; }
.ask-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.ask input[type=text] {
  flex: 1 1 240px; padding: 14px 17px; border-radius: 12px;
  border: 1px solid var(--line-2); background: rgba(0,0,0,.35); color: var(--ink);
  font: 400 16px var(--sans); outline: 0;
}
.ask input:focus { border-color: var(--magenta); }

/* ---------- Buttons ---------- */

.btn {
  font: 600 15px/1 var(--sans); padding: 14px 26px; border-radius: 999px; border: 0;
  background: var(--grad); color: #fff; cursor: pointer;
  box-shadow: 0 6px 22px -8px rgba(255,46,154,.8);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px -8px rgba(255,138,0,.8); filter: brightness(1.07); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .5; cursor: default; transform: none; }
.btn-ghost { background: rgba(255,255,255,.05); border: 1px solid var(--line-2); box-shadow: none; color: var(--ink); }
.btn-ghost:hover { background: rgba(255,255,255,.1); box-shadow: none; }
.btn-quiet { background: transparent; color: var(--muted); box-shadow: none; padding: 14px 10px; }
.btn-quiet:hover { color: var(--ink); background: transparent; transform: none; box-shadow: none; }

/* ---------- Completion ---------- */

.done { animation: settle .55s var(--ease) both; }
@keyframes settle { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.done h1 { margin-bottom: 24px; font-size: clamp(38px, 6vw, 64px); }
.done-card {
  border-radius: 22px; padding: 2px; background: linear-gradient(140deg, rgba(255,46,154,.5), rgba(255,138,0,.35));
}
.done-card > * { position: relative; }
.done-card { position: relative; }
.done-card::before {
  content: ''; position: absolute; inset: 1px; border-radius: 21px; background: #0B0714; z-index: 0;
}
.done-title { position: relative; z-index: 1; font: 700 clamp(23px,3.2vw,32px)/1.2 var(--sans); letter-spacing: -.02em; padding: 30px 30px 0; margin-bottom: 20px; }
.done-facts { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; padding: 0 30px; margin-bottom: 22px; }
.done-facts div { background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 14px; padding: 13px 17px; flex: 1 1 130px; }
.done-facts div span { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.done-facts div strong { font-weight: 600; font-size: 19px; }
.done-note {
  position: relative; z-index: 1; margin: 0 30px; padding: 13px 17px; border-radius: 12px;
  background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.28); color: #7EE2A8; font-size: 14.5px; font-weight: 500;
}
.assurance { position: relative; z-index: 1; padding: 16px 30px 28px; color: var(--muted); font-size: 14px; }
.stopped::before { background: #0B0714; }
.stopped .done-note { background: rgba(251,113,133,.12); border-color: rgba(251,113,133,.3); color: var(--stop); }
.handoff { position: relative; z-index: 1; margin: 0 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.handoff-why { color: var(--ink-2); font-size: 14.5px; margin-bottom: 14px; }
.handoff-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.handoff-actions a { text-decoration: none; }

/* ---------- Events ---------- */

.events-note { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; max-width: 62ch; }
.events { list-style: none; display: grid; gap: 11px; }
.event {
  display: flex; gap: 20px; justify-content: space-between; align-items: flex-start; flex-wrap: wrap;
  background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px;
  transition: all .2s var(--ease); animation: rise .45s var(--ease) both;
}
.event:hover { border-color: var(--line-2); background: rgba(255,255,255,.06); transform: translateY(-2px); }
.event-main { flex: 1 1 300px; }
.event-title { font: 600 16.5px/1.35 var(--sans); margin-bottom: 5px; }
.event-meta { font-size: 13.5px; color: var(--muted); }
.event-meta .free {
  margin-left: 9px; color: var(--go); background: rgba(34,197,94,.14); border: 1px solid rgba(34,197,94,.3);
  font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; border-radius: 999px; padding: 3px 9px;
}
.event-summary { font-size: 13.5px; color: var(--ink-2); margin-top: 7px; max-width: 62ch; }
.event-actions { display: flex; align-items: center; gap: 14px; flex: none; }
.event-actions a { text-decoration: none; }
.event-source { font-size: 12.5px; white-space: nowrap; color: var(--muted); }
.event-source:hover { color: var(--ink); }

/* ---------- Capabilities ---------- */

.can-do { max-width: 1180px; margin: clamp(36px,7vh,72px) auto 0; }
.can-do-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.can-do-head a { font-size: 14px; font-weight: 500; text-decoration: none; color: var(--ink-2); }
.can-do-head a:hover { color: var(--ink); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font: 500 14.5px/1 var(--sans); color: var(--ink-2);
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: 10px 15px; border-radius: 999px; animation: rise .4s var(--ease) both;
}
.chip:nth-child(3n) { border-color: rgba(255,46,154,.35); color: #FFB8DC; }
.chip:nth-child(5n) { border-color: rgba(255,138,0,.35); color: #FFD09B; }

.capabilities { max-width: 820px; margin: 0 auto; padding-top: clamp(20px,5vh,56px); }
.cap-group { margin-top: 40px; }
.cap-heading { font: 700 clamp(19px,2.4vw,24px)/1.2 var(--sans); letter-spacing: -.02em; margin-bottom: 6px; }
.cap-blurb { color: var(--muted); font-size: 15px; margin-bottom: 14px; max-width: 60ch; }
.cap-list { list-style: none; display: grid; gap: 2px; }
.cap-list li { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; flex-wrap: wrap; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cap-list li:last-child { border-bottom: 0; }
.cap-label { font-size: 15.5px; font-weight: 500; flex: 1 1 220px; }
.cap-detail { font-size: 13.5px; color: var(--muted); flex: 1 1 200px; text-align: right; }
.not-yet .cap-label { color: var(--muted); font-weight: 400; }
.not-yet .cap-label::before { content: '—  '; color: var(--stop); }

/* ---------- Settings ---------- */

.settings { max-width: 760px; margin: 0 auto; padding-top: clamp(20px,5vh,56px); }
.pref-group { margin-top: 30px; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 20px; padding: 6px 22px 10px; }
.pref-group > h3 { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 18px 0 4px; }
.pref { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.pref:last-child { border-bottom: 0; }
.pref p { font-size: 16px; font-weight: 500; }
.pref small { display: block; color: var(--muted); font-size: 13px; font-weight: 400; margin-top: 3px; }
.switch { flex: none; width: 52px; height: 30px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255,255,255,.06); position: relative; cursor: pointer; transition: all .3s var(--ease); }
.switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--muted); transition: all .3s var(--ease); }
.switch[aria-checked="true"] { background: var(--grad); border-color: transparent; }
.switch[aria-checked="true"]::after { left: 26px; background: #fff; }
.limit { display: flex; align-items: center; gap: 8px; }
.limit input { width: 94px; padding: 11px 13px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(0,0,0,.35); color: var(--ink); font: 600 16px var(--sans); outline: 0; text-align: right; }
.limit input:focus { border-color: var(--magenta); }
.never-list { list-style: none; }
.never-list li { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); display: flex; gap: 12px; font-size: 15px; }
.never-list li:last-child { border-bottom: 0; }
.never-list li::before { content: '✕'; color: var(--stop); font-size: 12px; }

/* ---------- Trust ---------- */

.trust { max-width: 960px; margin: 0 auto; padding-top: clamp(20px,5vh,56px); }
.trust-figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 13px; margin: 28px 0 40px; }
.figure { background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 20px; padding: 24px 22px; }
.figure strong { display: block; font: 700 clamp(32px,5vw,44px)/1 var(--sans); letter-spacing: -.03em; margin-bottom: 9px; }
.figure span { font-size: 13.5px; color: var(--muted); line-height: 1.5; display: block; }
.figure.clean strong { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.record-item { background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; margin-bottom: 10px; }
.record-item h3 { margin-bottom: 5px; }
.record-item p { color: var(--ink-2); font-size: 14.5px; }
.record-item time { display: block; font-size: 12.5px; color: var(--faint); margin-top: 7px; }

/* ---------- Operator ---------- */

.operator { max-width: 1180px; margin: 0 auto; padding-top: 40px; }
.op-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 13px; margin-top: 26px; }
.op-card { border: 1px solid var(--line); border-radius: 16px; padding: 20px; background: rgba(255,255,255,.03); }
.op-card h3 { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 13px; }
.op-row { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; font-size: 13.5px; border-bottom: 1px solid var(--line); }
.op-row:last-child { border: 0; }
.op-row span { color: var(--muted); }
.op-row b { font-weight: 600; font-family: ui-monospace, Menlo, monospace; }
.tag { font-size: 11px; font-weight: 600; letter-spacing: .05em; padding: 3px 9px; border-radius: 999px; }
.tag.LIVE { color: var(--go); background: rgba(34,197,94,.15); }
.tag.SANDBOX { color: var(--amber); background: rgba(255,138,0,.15); }
.tag.BLOCKED_BY_CREDENTIALS, .tag.MOCK { color: var(--stop); background: rgba(251,113,133,.15); }
.zero { color: var(--go); }

/* ---------- Utility ---------- */

.list { max-width: 820px; margin: 0 auto; padding-top: clamp(20px,5vh,56px); }
.list-item {
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
  padding: 17px 20px; margin-bottom: 10px; text-decoration: none; color: inherit;
  background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 16px;
  transition: all .2s var(--ease);
}
.list-item:hover { border-color: var(--line-2); background: rgba(255,255,255,.06); transform: translateY(-2px); }
.li-title { font-size: 16px; font-weight: 500; }
.li-state { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-2); background: rgba(255,255,255,.07); padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.empty { color: var(--muted); padding: 30px 0; font-size: 16px; }
.error { color: var(--stop); padding: 16px 0; }
.center-gate { max-width: 540px; margin: 0 auto; padding-top: clamp(40px,12vh,130px); text-align: center; }
.center-gate h2 { margin-bottom: 14px; }
.center-gate p { color: var(--muted); margin-bottom: 26px; }

@media (max-width: 620px) {
  .teller-inner { grid-template-columns: 1fr auto; }
  .teller-spark { display: none; }
  .teller-bar { grid-column: 1 / -1; }
  .value { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
