/* fuckyouflow.app: the Mono look of the app itself. Black, monospace, one acid-green accent. */
:root {
  --bg: #0c0c0c; --bg2: #000; --fg: #f2f2f2; --muted: #a3a3a3; --line: #2a2a2a;
  --accent: #c8ff5a; --accent-fg: #0c0c0c; --rec: #ff4d4d; --card: #141414;
  color-scheme: dark;
}
:root[data-theme="light"] {
  --bg: #fafafa; --bg2: #fff; --fg: #111; --muted: #555; --line: #d9d9d9;
  --accent: #2f6b00; --accent-fg: #fff; --card: #fff;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: Consolas, "Cascadia Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 18px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: var(--accent-fg); padding: 8px 12px; }
.skip:focus { left: 8px; z-index: 10; }

header.top { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--bg); z-index: 5; }
header.top .wrap { display: flex; align-items: center; gap: 18px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; color: var(--fg); text-decoration: none; letter-spacing: -.02em; }
.brand img { width: 30px; height: 30px; }
.brand span { color: var(--accent); }
.tools { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.tools a, .tools button {
  font: inherit; font-size: 15px; background: transparent; color: var(--fg); border: 1px solid var(--line);
  padding: 6px 10px; cursor: pointer; text-decoration: none;
}
.tools a:hover, .tools button:hover { border-color: var(--accent); }

.hero { padding: 72px 0 48px; border-bottom: 1px solid var(--line); }
.badge { display: inline-block; border: 1px solid var(--accent); color: var(--accent); font-size: 14px; padding: 3px 10px; letter-spacing: .08em; text-transform: uppercase; }
h1 { font-size: clamp(34px, 5.2vw, 60px); line-height: 1.1; margin: 20px 0 22px; letter-spacing: -.02em; font-weight: 700; }
h1 span { color: var(--accent); }
.lead { font-size: clamp(19px, 2.2vw, 23px); max-width: 780px; color: var(--fg); margin: 0 0 30px; }
.cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn { display: inline-block; font: inherit; font-weight: 700; font-size: 18px; padding: 14px 24px; text-decoration: none; border: 1px solid var(--accent); }
.btn.primary { background: var(--accent); color: var(--accent-fg); }
.btn.primary:hover { filter: brightness(1.08); }
.btn.ghost { color: var(--fg); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--accent); }
.btn.small { font-size: 15px; padding: 7px 14px; }
.meta { color: var(--fg); font-size: 15px; margin: 18px 0 0; }
.lang { margin: 0 0 18px; font-size: 15px; }
.lang a { color: var(--muted); }
section.last { text-align: center; }
section.last .cta { justify-content: center; }
.fine { color: var(--muted); font-size: 15px; margin-top: 14px; }
.fine code { color: var(--fg); }

section { padding: 56px 0; border-bottom: 1px solid var(--line); }
h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 8px; letter-spacing: -.02em; }
h2::before { content: "> "; color: var(--accent); }
.sub { color: var(--muted); margin: 0 0 28px; font-size: 17px; }
h3 { font-size: 20px; margin: 0 0 8px; }

table { width: 100%; border-collapse: collapse; font-size: 17px; }
th, td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-weight: 400; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
td.us { color: var(--accent); font-weight: 700; }
td.them { color: var(--muted); }
.tablewrap { overflow-x: auto; }
.num { text-align: right; font-variant-numeric: tabular-nums; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.step { border: 1px solid var(--line); background: var(--card); padding: 22px; }
.step .n { color: var(--accent); font-size: 15px; letter-spacing: .1em; }
kbd { border: 1px solid var(--line); padding: 2px 8px; color: var(--accent); font: inherit; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.card { border: 1px solid var(--line); background: var(--card); padding: 22px; }
.card p { margin: 0; color: var(--muted); font-size: 17px; }
.card h3 { margin-bottom: 6px; }

.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.shots figure { margin: 0; border: 1px solid var(--line); background: var(--bg2); }
.shots img { display: block; width: 100%; height: auto; }
.shots figcaption { padding: 10px 14px; color: var(--muted); font-size: 15px; border-top: 1px solid var(--line); }

.quote { border-left: 3px solid var(--accent); padding: 6px 0 6px 20px; margin: 26px 0; font-size: 20px; }
.quote cite { display: block; color: var(--muted); font-size: 15px; font-style: normal; margin-top: 6px; }

details { border-top: 1px solid var(--line); }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; padding: 16px 0; font-size: 19px; font-weight: 700; list-style: none; }
summary::before { content: "+ "; color: var(--accent); }
details[open] summary::before { content: "- "; }
details p { margin: 0 0 18px; color: var(--muted); }

.feedback { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }

footer { padding: 40px 0 60px; color: var(--muted); font-size: 15px; }
footer .made { font-size: 17px; color: var(--fg); margin-bottom: 14px; }
footer p { margin: 6px 0; }

@media (max-width: 720px) {
  header.top .wrap { height: auto; padding: 10px 16px; flex-wrap: wrap; }
  .tools .btn.ghost.small { display: none; }
  .hero { padding: 48px 0 40px; }
  body { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
