/* omniciency — monochrome everywhere; the only colour on the front page is
   Google's four hues, kept in the sign-in button's edge. */
@property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --glow { syntax: "<number>"; inherits: false; initial-value: 0; }
@property --wash { syntax: "<number>"; inherits: false; initial-value: 0; }
@property --cover { syntax: "<number>"; inherits: false; initial-value: 1; }

:root {
  --bg: #f2f3f5;
  --surface: #ffffff;
  --ink: #111317;
  --ink-2: #4c515a;
  --muted: #7b818b;
  --edge: #dcdfe4;          /* solid hairline (the button ring fades into it) */
  --hair: rgba(17, 19, 23, .09);
  --series: #2a78d6;        /* the one chart hue */
  --track: #e9ebef;
  --shadow: 0 1px 2px rgba(17, 19, 23, .05), 0 8px 24px -12px rgba(17, 19, 23, .12);
  --sans: "Onest", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d0f12;
    --surface: #15181d;
    --ink: #f2f3f5;
    --ink-2: #b4b9c2;
    --muted: #868c96;
    --edge: #2a2e35;
    --hair: rgba(242, 243, 245, .09);
    --series: #3987e5;
    --track: #1e2228;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 12px 32px -14px rgba(0, 0, 0, .7);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 15px/1.5 var(--sans); -webkit-font-smoothing: antialiased; }
h1, h2, p, figure { margin: 0; }
a { color: inherit; }
.mono { font-family: var(--mono); font-feature-settings: "tnum"; letter-spacing: -.01em; }
.dim { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 6px; }

/* ── Front: one button ─────────────────────────────────────────── */
.front { min-height: 100vh; min-height: 100dvh; }
.stage { min-height: 100vh; min-height: 100dvh; display: grid; place-content: center; justify-items: center; gap: 18px; padding: 24px; }
.mark { position: fixed; left: 28px; bottom: 24px; font-size: 13px; font-weight: 500; letter-spacing: .01em; color: var(--muted); }

/* No `filter`, no `mask`, no pseudo-element layers, no scaling on this button — on purpose. Blurred or
   masked layers get re-rastered when the button is pressed or resized, and for one frame the browser
   shows their bare rectangular bounds (a grey box with a white box in it). Everything below is ordinary
   paint on one element: gradients for the edge and the wash, box-shadows for the glow. */
.signin {
  --mx: -999px; --my: -999px; --near: 0; --tx: 0px; --ty: 0px; --rx: 0deg; --ry: 0deg;
  position: relative; display: inline-block; border-radius: 999px; text-decoration: none; color: var(--ink);
  transform: translate(var(--tx), var(--ty)) perspective(700px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .5s cubic-bezier(.2, .9, .2, 1);
  animation: arrive .7s cubic-bezier(.2, .8, .2, 1) both;
  -webkit-tap-highlight-color: transparent;
}
.signin.tracking { transition-duration: .12s; }
/* At rest the face is a circle holding only the G; hover opens it into the full label. */
.signin-face {
  --glow: calc(var(--near) * .55); /* the halo: grows as the pointer nears, full on hover */
  --wash: 0;                       /* the colour inside, under the pointer */
  --cover: 1;                      /* how much of the edge is hidden away from the pointer */
  position: relative; display: flex; align-items: center;
  padding: 17.5px; border: 1.5px solid transparent; border-radius: inherit;
  font-weight: 500; font-size: 16px; letter-spacing: -.005em;
  background:
    radial-gradient(circle 84px at calc(var(--mx) + cos(var(--ang)) * 30px) calc(var(--my) + sin(var(--ang)) * 30px), rgb(66 133 244 / calc(var(--wash) * .2)), transparent) padding-box,
    radial-gradient(circle 84px at calc(var(--mx) + cos(var(--ang) + 90deg) * 30px) calc(var(--my) + sin(var(--ang) + 90deg) * 30px), rgb(52 168 83 / calc(var(--wash) * .2)), transparent) padding-box,
    radial-gradient(circle 84px at calc(var(--mx) + cos(var(--ang) + 180deg) * 30px) calc(var(--my) + sin(var(--ang) + 180deg) * 30px), rgb(251 188 5 / calc(var(--wash) * .22)), transparent) padding-box,
    radial-gradient(circle 84px at calc(var(--mx) + cos(var(--ang) + 270deg) * 30px) calc(var(--my) + sin(var(--ang) + 270deg) * 30px), rgb(234 67 53 / calc(var(--wash) * .2)), transparent) padding-box,
    linear-gradient(var(--surface), var(--surface)) padding-box,
    radial-gradient(circle 150px at var(--mx) var(--my), transparent 0, color-mix(in srgb, var(--edge) calc(var(--cover) * 100%), transparent) 100%) border-box,
    conic-gradient(from var(--ang), #4285f4, #34a853, #fbbc05, #ea4335, #4285f4) border-box;
  box-shadow:
    var(--shadow),
    calc(cos(var(--ang)) * 13px) calc(sin(var(--ang)) * 13px) 30px -8px rgb(66 133 244 / calc(var(--glow) * .6)),
    calc(cos(var(--ang) + 90deg) * 13px) calc(sin(var(--ang) + 90deg) * 13px) 30px -8px rgb(52 168 83 / calc(var(--glow) * .55)),
    calc(cos(var(--ang) + 180deg) * 13px) calc(sin(var(--ang) + 180deg) * 13px) 30px -8px rgb(251 188 5 / calc(var(--glow) * .6)),
    calc(cos(var(--ang) + 270deg) * 13px) calc(sin(var(--ang) + 270deg) * 13px) 30px -8px rgb(234 67 53 / calc(var(--glow) * .55));
  transition: --glow .35s ease, --wash .35s ease, --cover .35s ease, translate .12s ease;
  animation: turn 7s linear infinite;
}
.signin .g { width: 22px; height: 22px; flex: none; transition: transform .8s cubic-bezier(.2, .8, .2, 1); }
.signin-more { display: grid; grid-template-columns: 0fr; transition: grid-template-columns .55s cubic-bezier(.3, 1.25, .4, 1); }
.signin-clip { overflow: hidden; min-width: 0; }
.signin-label {
  display: block; white-space: nowrap; padding: 0 9px 0 14px; opacity: 0; transform: translateX(-10px);
  transition: opacity .25s ease, transform .5s cubic-bezier(.2, .8, .2, 1);
}

/* Open: pointer on it, keyboard on it, touch (no hover to wait for), or on its way to Google. */
.signin:hover .signin-more, .signin:focus-visible .signin-more, .signin.whole .signin-more, .signin.busy .signin-more { grid-template-columns: 1fr; }
.signin:hover .signin-label, .signin:focus-visible .signin-label, .signin.whole .signin-label, .signin.busy .signin-label { opacity: 1; transform: none; transition-delay: .08s; }
.signin:hover .g, .signin:focus-visible .g { transform: rotate(360deg); }
/* …the whole edge shows, the halo goes all the way round, the wash comes up under the pointer. */
.signin:hover .signin-face, .signin:focus-visible .signin-face, .signin.busy .signin-face { --glow: 1; --wash: 1; --cover: 0; }
.signin.whole .signin-face { --glow: .7; --cover: 0; }
.signin:focus-visible { outline: none; }
/* Pressed: a 1px nudge, never a scale (a scale re-rasters everything). */
.signin:active .signin-face { translate: 0 1px; }
/* On its way to Google: only the label and the G change. */
.signin.busy { cursor: progress; }
.signin.busy .g { animation: wait 1s ease-in-out infinite; }
@keyframes wait { 50% { opacity: .35; } }
.under { font-size: 14px; color: var(--ink-2); }
@keyframes arrive { from { opacity: 0; transform: translateY(10px); } }
@keyframes turn { to { --ang: 360deg; } }

/* ── Not the owner: one sentence, which is also the way out ────── */
.exit { all: unset; box-sizing: border-box; cursor: pointer; display: grid; justify-items: center; gap: clamp(14px, 2.4vw, 26px); text-align: center; padding: 4vh 2vw; -webkit-tap-highlight-color: transparent; }
.exit-text {
  font-size: clamp(38px, 8.2vw, 124px); font-weight: 300; line-height: 1.02; color: var(--ink);
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4, #34a853, #fbbc05) 0 0 / 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  transition: color .4s ease, transform .2s ease; animation: flow 7s linear infinite;
}
/* Letters stay plain inline boxes: the colour fill is clipped to the text through them,
   which it isn't through inline-blocks (so no transforms on them either). */
.exit-text .w { white-space: nowrap; }
.exit-text .l { margin-right: -.035em; transition: font-weight .22s ease-out; animation: letter-in .7s cubic-bezier(.2, .8, .2, 1) both; animation-delay: calc(var(--i) * 22ms); }
.exit-hint { font-size: 14px; font-weight: 500; color: var(--muted); opacity: 0; transform: translateY(-6px); transition: opacity .3s ease, transform .4s cubic-bezier(.2, .8, .2, 1); }
.exit:hover .exit-text, .exit:focus-visible .exit-text { color: transparent; }
.exit:hover .exit-hint, .exit:focus-visible .exit-hint { opacity: 1; transform: none; }
.exit:focus-visible { outline: none; }
.exit:active .exit-text { transform: scale(.985); }
@media (hover: none) { .exit-hint { opacity: .85; transform: none; } }
/* Leaving: the sentence lifts away letter by letter, then the form goes. */
.exit.leaving { pointer-events: none; }
.exit.leaving .exit-text { color: transparent; transform: translateY(-.12em); filter: blur(6px); transition: color .2s ease, transform .6s cubic-bezier(.5, 0, .8, .4), filter .6s ease; }
.exit.leaving .l { animation: letter-out .5s cubic-bezier(.5, 0, .8, .4) both; animation-delay: calc(var(--i) * 14ms); }
.exit.leaving .exit-hint { opacity: 0; }
@keyframes flow { to { background-position: -300% 0; } }
@keyframes letter-in { from { opacity: 0; } }
@keyframes letter-out { to { opacity: 0; } }

/* The one small extra: a bell that puts you on the new-apps list with one click. */
.notify {
  all: unset; box-sizing: border-box; position: fixed; left: 50%; bottom: clamp(22px, 5vh, 44px); translate: -50% 0; cursor: pointer;
  border-radius: 999px; color: var(--ink-2); font: 500 13.5px var(--sans); white-space: nowrap; -webkit-tap-highlight-color: transparent;
  animation: arrive .8s .55s cubic-bezier(.2, .8, .2, 1) both; transition: color .2s ease, scale .18s ease;
}
.notify-face { position: relative; z-index: 1; display: flex; align-items: center; gap: 9px; padding: 10px 17px 10px 13px; border-radius: inherit; background: var(--surface); box-shadow: var(--shadow); }
.notify::before {
  content: ""; position: absolute; inset: -1.5px; border-radius: inherit; padding: 1.5px; z-index: 2; pointer-events: none; opacity: 0;
  background: conic-gradient(from var(--ang), #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity .3s ease; animation: turn 5s linear infinite;
}
.notify::after { content: ""; position: absolute; inset: -1.5px; border-radius: inherit; z-index: 0; box-shadow: 0 0 0 1.5px var(--edge) inset; pointer-events: none; }
.notify:hover, .notify:focus-visible, .notify.on { color: var(--ink); }
.notify:hover::before, .notify:focus-visible::before { opacity: 1; }
.notify.on::before { opacity: .75; }
.notify:focus-visible { outline: none; }
.notify:active { scale: .96; }
.notify.busy { pointer-events: none; }
.notify-icon { position: relative; width: 18px; height: 18px; flex: none; }
.notify-icon svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.notify-bell { transform-origin: 50% 12%; transition: opacity .2s ease, scale .3s ease; }
.notify:hover .notify-bell, .notify:focus-visible .notify-bell { animation: ring 1s cubic-bezier(.3, 0, .3, 1) both; }
.notify-check path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .45s .1s cubic-bezier(.6, 0, .2, 1); }
.notify-check { color: #34a853; }
.notify.on .notify-bell { opacity: 0; scale: .5; animation: none; }
.notify.on .notify-check path { stroke-dashoffset: 0; }
.notify-label { display: inline-block; transition: opacity .16s ease, translate .25s ease; }
.notify-label.swap { opacity: 0; translate: 0 5px; }
/* Joining: a few specks of the four hues pop out of the bell. */
.speck { position: absolute; left: 50%; top: 50%; width: 5px; height: 5px; margin: -2.5px; border-radius: 50%; background: var(--c); pointer-events: none; animation: speck .7s cubic-bezier(.1, .7, .3, 1) both; }
@keyframes ring { 0%, 100% { rotate: 0deg; } 15% { rotate: 16deg; } 32% { rotate: -13deg; } 50% { rotate: 9deg; } 68% { rotate: -5deg; } 84% { rotate: 2deg; } }
@keyframes speck { from { translate: 0 0; opacity: 1; scale: 1; } to { translate: var(--dx) var(--dy); opacity: 0; scale: .3; } }

.verdict { max-width: 430px; text-align: center; display: grid; gap: 14px; justify-items: center; animation: arrive .6s cubic-bezier(.2, .8, .2, 1) both; }
.verdict h1 { font-size: clamp(28px, 5vw, 38px); font-weight: 600; letter-spacing: -.03em; line-height: 1.1; }
.verdict p { color: var(--ink-2); text-wrap: pretty; overflow-wrap: anywhere; }
.quiet {
  font: 500 14px var(--sans); color: var(--ink); background: transparent; border: 1px solid var(--edge); border-radius: 999px;
  padding: 9px 16px; cursor: pointer; text-decoration: none; display: inline-block; transition: background .15s, border-color .15s;
}
.quiet:hover { background: var(--surface); border-color: var(--muted); }
.quiet.small { font-size: 12.5px; padding: 6px 12px; }
.verdict .quiet { margin-top: 6px; }

/* ── Console ───────────────────────────────────────────────────── */
.console { display: grid; grid-template-columns: 232px minmax(0, 1fr); min-height: 100vh; }
.rail { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; gap: 28px; padding: 26px 16px 20px; border-right: 1px solid var(--hair); }
.rail-mark { padding: 0 10px; font-weight: 600; letter-spacing: -.01em; text-decoration: none; }
.rail-apps { display: grid; gap: 2px; }
.rail-app { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px; text-decoration: none; color: var(--ink-2); font-weight: 500; }
.rail-app:hover { background: var(--hair); color: var(--ink); }
.rail-app.on { background: var(--surface); color: var(--ink); box-shadow: var(--shadow); }
.rail-app .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--series); flex: none; }
.rail-app.off .dot { background: transparent; box-shadow: inset 0 0 0 1.5px var(--muted); }
.rail-state { margin-left: auto; font-size: 11px; font-weight: 400; color: var(--muted); }
.rail-me { margin-top: auto; display: flex; align-items: center; gap: 9px; padding: 0 6px; font-size: 13px; color: var(--ink-2); }
.rail-me img { border-radius: 50%; flex: none; }
.rail-email { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; min-width: 0; }

.view { padding: 34px clamp(18px, 4vw, 48px) 80px; max-width: 1240px; width: 100%; }
.view-h { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.view-h h1 { font-size: 30px; font-weight: 600; letter-spacing: -.03em; line-height: 1.15; }
.meta { font-size: 13px; color: var(--muted); }

.tabs { display: flex; gap: 2px; flex-wrap: wrap; margin: -8px 0 30px; padding-bottom: 12px; border-bottom: 1px solid var(--hair); }
.tabs a { padding: 7px 12px; border-radius: 8px; font-size: 13.5px; font-weight: 500; color: var(--muted); text-decoration: none; white-space: nowrap; }
.tabs a:hover { color: var(--ink); background: var(--hair); }
.tabs a.on { color: var(--ink); background: var(--surface); box-shadow: var(--shadow); }

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 14px; overflow: hidden; margin-bottom: 36px; }
.tile { background: var(--surface); padding: 18px 20px 16px; }
a.tile { text-decoration: none; color: inherit; transition: background .15s; }
a.tile:hover { background: color-mix(in srgb, var(--surface) 55%, var(--bg)); }
a.tile:hover .tile-l::after { content: " →"; }
.tile-text { font: 500 17px/1.3 var(--sans); letter-spacing: -.01em; display: inline-block; padding: 6px 0 5px; }
.tile-text.mono { font-family: var(--mono); }
.tile-l { font-size: 12.5px; color: var(--muted); }
.tile-n { font: 500 30px/1.2 var(--mono); letter-spacing: -.04em; margin-top: 6px; font-feature-settings: "tnum"; }
.tile-n small { font-size: 14px; color: var(--muted); letter-spacing: -.01em; }
.tile-note { font-size: 12px; color: var(--muted); margin-top: 2px; }

.block { margin-bottom: 36px; min-width: 0; }
.block-h { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.block-h h2 { font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.block-tools { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter { font: 400 13px var(--sans); color: var(--ink); background: var(--surface); border: 1px solid var(--edge); border-radius: 999px; padding: 6px 12px; width: 150px; transition: width .2s ease, border-color .15s; }
.filter:focus { outline: none; border-color: var(--muted); width: 210px; }
.filter-none { color: var(--muted); font-size: 14px; padding: 16px 0; }
.pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 0 40px; }
.empty { color: var(--muted); font-size: 14px; padding: 18px 0; border-top: 1px solid var(--hair); }

.chart { position: relative; padding-top: 18px; }
.chart-max { position: absolute; top: 0; left: 0; font: 400 11px var(--mono); color: var(--muted); }
.cols { display: flex; align-items: flex-end; gap: 2px; height: 120px; border-bottom: 1px solid var(--edge); border-top: 1px dashed var(--hair); }
.col { flex: 1; height: 100%; display: flex; align-items: flex-end; border-radius: 4px 4px 0 0; outline-offset: 1px; }
.col i { display: block; width: 100%; max-width: 14px; margin: 0 auto; background: var(--series); border-radius: 4px 4px 0 0; }
.col:hover, .col:focus-visible { background: var(--hair); }
.chart-x { display: flex; justify-content: space-between; font: 400 11px var(--mono); color: var(--muted); margin-top: 6px; }

.hbars { display: grid; gap: 10px; border-top: 1px solid var(--hair); padding-top: 14px; }
.hbar { display: grid; grid-template-columns: minmax(110px, 150px) 1fr 44px; align-items: center; gap: 14px; font-size: 13px; }
.hbar-track { height: 8px; }
.hbar-track i { display: block; height: 100%; background: var(--series); border-radius: 0 4px 4px 0; min-width: 4px; }
.hbar-v { text-align: right; color: var(--ink-2); }
.chip { font: 500 10.5px var(--sans); font-style: normal; letter-spacing: .02em; color: var(--ink-2); border: 1px solid var(--edge); border-radius: 999px; padding: 1px 7px; margin-left: 4px; vertical-align: 1px; }

.scroll { overflow-x: auto; border-top: 1px solid var(--hair); }
table.data { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.data th { text-align: left; font-weight: 400; font-size: 12px; color: var(--muted); padding: 10px 16px 8px 0; white-space: nowrap; }
table.data td { padding: 9px 16px 9px 0; border-top: 1px solid var(--hair); white-space: nowrap; vertical-align: top; }
table.data td.wrap { white-space: normal; min-width: 260px; max-width: 560px; }
table.data .num { text-align: right; }
/* A right-aligned number ends where the next column begins — give it real air, or "4" + "1.7.48" reads "41.7.48". */
table.data .num:not(:last-child) { padding-right: 32px; }
table.data th:last-child, table.data td:last-child { padding-right: 0; }
table.data .date { font-feature-settings: "tnum"; color: var(--muted); }
table.data td.mono { font-size: 12.5px; }

.hbars.wide .hbar { grid-template-columns: minmax(160px, 340px) 1fr 44px; }
.hbar-k { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
table.data a { text-decoration-color: var(--edge); text-underline-offset: 3px; }
table.data a:hover { text-decoration-color: currentColor; }
table.data a.plain { text-decoration: none; }
.small-text { font-size: 12px; }
table.data form { display: inline; }

.controls { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; padding: 16px 0 4px; border-top: 1px solid var(--hair); }
.controls label { display: grid; gap: 6px; font-size: 12.5px; color: var(--muted); }
.controls label.grow { flex: 1; min-width: 200px; }
.controls input { font: 400 14px var(--sans); color: var(--ink); background: var(--surface); border: 1px solid var(--edge); border-radius: 10px; padding: 9px 12px; width: 100%; }
.controls input[type="number"] { width: 92px; font-family: var(--mono); }
.controls input:focus { outline: none; border-color: var(--ink); }
.solid { font: 500 14px var(--sans); color: var(--bg); background: var(--ink); border: 0; border-radius: 999px; padding: 10px 18px; cursor: pointer; transition: opacity .15s, scale .15s; }
.solid:hover { opacity: .86; }
.solid:active { scale: .97; }
.copy-code { all: unset; cursor: copy; font: inherit; border-radius: 5px; padding: 1px 4px; margin: -1px -4px; }
.copy-code:hover { background: var(--hair); }
.copy-code.done { color: #1a8a3c; }
.link-danger { all: unset; cursor: pointer; font-size: 12.5px; color: var(--muted); border-radius: 5px; padding: 1px 4px; }
.link-danger:hover, .link-danger:focus-visible { color: #c0352b; }
.flash { margin: -10px 0 26px; padding: 11px 16px; border-radius: 10px; background: var(--surface); box-shadow: var(--shadow); font-size: 14px; border-left: 3px solid #34a853; }
.crumbs { margin: -12px 0 22px; font-size: 13.5px; }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }

.notes-list { display: grid; border-top: 1px solid var(--hair); }
.note { padding: 16px 0; border-bottom: 1px solid var(--hair); display: grid; gap: 8px; }
.note header { display: flex; gap: 6px 14px; flex-wrap: wrap; align-items: baseline; font-size: 12.5px; }
.note-kind { font-weight: 600; font-size: 13px; color: var(--ink); }
.note .date { color: var(--muted); font-feature-settings: "tnum"; }
.note p { white-space: pre-wrap; overflow-wrap: anywhere; max-width: 76ch; line-height: 1.55; }
.note summary { cursor: pointer; display: flex; gap: 14px; align-items: baseline; font-size: 14px; list-style: none; }
.note summary::before { content: "+"; font-family: var(--mono); color: var(--muted); width: 10px; }
.note[open] summary::before { content: "–"; }
.note summary::-webkit-details-marker { display: none; }
.notes-md, .report { margin: 0; font: 400 12.5px/1.6 var(--mono); white-space: pre-wrap; overflow-wrap: anywhere; color: var(--ink-2); }
.notes-md { padding: 4px 0 4px 24px; max-width: 90ch; font-family: var(--sans); font-size: 13.5px; }
.report { background: var(--surface); border: 1px solid var(--hair); border-radius: 12px; padding: 18px 20px; max-height: 72vh; overflow: auto; }

.notice { max-width: 560px; padding: 26px 28px; border: 1px dashed var(--edge); border-radius: 14px; display: grid; gap: 10px; color: var(--ink-2); }
.notice h2 { font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.notice .mono { font-size: 12.5px; }

.tip { position: fixed; z-index: 10; pointer-events: none; background: var(--ink); color: var(--bg); font: 500 12px var(--mono); padding: 6px 9px; border-radius: 7px; white-space: nowrap; transform: translate(-50%, calc(-100% - 10px)); }

@media (max-width: 820px) {
  .console { grid-template-columns: minmax(0, 1fr); }
  .rail { position: static; height: auto; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 10px 14px; padding: 14px 16px; border-right: 0; border-bottom: 1px solid var(--hair); }
  .rail-apps { display: flex; gap: 4px; flex-wrap: wrap; }
  .rail-state { display: none; }
  .rail-me { margin: 0 0 0 auto; }
  .rail-email { display: none; }
  .mark { left: 0; right: 0; text-align: center; }
  .notify { bottom: 58px; }
}
@media (prefers-reduced-motion: reduce) {
  .signin, .verdict { animation: none; transition: none; }
  .exit-text, .exit-text .l, .exit.leaving .l { animation: none; transition: none; }
  .notify, .notify::before, .notify:hover .notify-bell, .speck { animation: none !important; }
  .signin-face, .signin.busy .g { animation: none !important; }
  .signin-more, .signin-label, .signin .g { transition: none; }
  .signin:hover .g, .signin:focus-visible .g { transform: none; }
}
