/* DASH pages — opencode.ai-inspired: dark, monospace, minimal borders. */
:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --line: #262626;
  --text: #e6e6e6;
  --muted: #8f8f8f;
  --accent: #f5a623;
  --ok: #4ade80;
  --warn: #f87171;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* header */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10,10,10,.85); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.logo { font-weight: 700; letter-spacing: .08em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 20px; font-size: 13px; color: var(--muted); align-items: center; }
.nav-links a:hover { color: var(--text); }
.nav-links .lang {
  border: 1px solid var(--line); border-radius: 5px; padding: 2px 10px;
  font-size: 12px;
}
.nav-links .lang:hover { border-color: var(--accent); color: var(--accent); }

/* hero */
.hero { padding: 96px 0 64px; text-align: center; }
.hero .eyebrow {
  display: inline-block; margin-bottom: 18px; padding: 3px 14px;
  border: 1px solid var(--line); border-radius: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--accent);
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700; line-height: 1.3; letter-spacing: -.01em;
}
.hero h1 .accent { color: var(--accent); }
.hero p.sub { margin: 20px auto 0; max-width: 560px; color: var(--muted); font-size: 15px; }
.caret::after {
  content: "▌"; color: var(--accent);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.cta { margin-top: 36px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-block; padding: 10px 22px; font-size: 13px;
  border: 1px solid var(--line); border-radius: 6px; color: var(--text);
  transition: border-color .2s, background .2s;
}
.btn:hover { border-color: var(--accent); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #111; font-weight: 700; }
.btn.primary:hover { background: #ffb84d; }

/* terminal mockup */
.terminal {
  margin: 72px auto 0; max-width: 720px; text-align: left;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.term-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.term-title { margin-left: 8px; font-size: 12px; color: var(--muted); }
.term-body { padding: 20px 22px 26px; font-size: 13px; }
.term-row { margin-bottom: 14px; opacity: 0; transform: translateY(6px); }
.term-row.show { animation: rise .5s ease forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.term-label { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; margin-bottom: 5px; }
.term-label b { color: var(--text); font-weight: 600; }
.bar { height: 8px; border-radius: 4px; background: #1d1d1d; overflow: hidden; }
.bar i {
  display: block; height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), #ffd27a);
  transition: width 1.2s cubic-bezier(.22,.9,.35,1);
}
.bar i.ok { background: linear-gradient(90deg, #22c55e, var(--ok)); }
.bar i.warn { background: linear-gradient(90deg, #ef4444, var(--warn)); }
.mail { display: flex; gap: 10px; align-items: baseline; padding: 7px 0; border-top: 1px dashed #1e1e1e; }
.mail:first-of-type { border-top: 0; }
.tag {
  flex: none; font-size: 10px; padding: 1px 7px; border-radius: 4px;
  border: 1px solid var(--accent); color: var(--accent);
}
.tag.dim { border-color: #333; color: #666; }
.mail .from { color: var(--text); flex: none; }
.mail .subj { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* about / google data */
.about { padding: 96px 0 0; border-top: 1px solid var(--line); }
.about h2 { font-size: 22px; margin-bottom: 40px; }
.about h2 span { color: var(--muted); font-weight: 400; }
.about .strip p b { color: var(--text); }
.about .strip ul { list-style: none; margin-top: 14px; }
.about .strip li { padding-left: 22px; position: relative; color: var(--muted); font-size: 13px; margin-top: 8px; }
.about .strip li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.data-table { width: 100%; border-collapse: collapse; margin: 16px 0 0; font-size: 13px; }
.data-table th, .data-table td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; color: #c9c9c9; }
.data-table th { background: var(--bg); font-weight: 600; color: var(--text); }
.about .fine { margin-top: 14px; font-size: 12px; color: var(--muted); }
.about a.inline { color: var(--accent); }
.about a.inline:hover { text-decoration: underline; }

/* demo video */
.demo { padding: 96px 0 0; border-top: 1px solid var(--line); }
.demo h2 { font-size: 22px; margin-bottom: 40px; }
.demo h2 span { color: var(--muted); font-weight: 400; }
.video-frame {
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  background: var(--bg-soft); box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.video-frame video { display: block; width: 100%; height: auto; }

/* features */
.features { padding: 96px 0; }
.features h2, .privacy-strip h2 { font-size: 22px; margin-bottom: 40px; }
.features h2 span, .privacy-strip h2 span { color: var(--muted); font-weight: 400; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card {
  border: 1px solid var(--line); border-radius: 10px; padding: 26px 24px;
  background: var(--bg-soft);
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease, border-color .25s;
}
.card.show { opacity: 1; transform: none; }
.card:hover { border-color: #3a3a3a; }
.card .icon { font-size: 20px; color: var(--accent); }
.card h3 { font-size: 15px; margin: 14px 0 8px; }
.card p { font-size: 13px; color: var(--muted); }

/* privacy strip */
.privacy-strip { padding: 0 0 96px; }
.strip {
  border: 1px solid var(--line); border-radius: 10px; padding: 30px 28px;
  background: linear-gradient(180deg, #121212, #0d0d0d);
}
.strip ul { list-style: none; margin-top: 14px; }
.strip li { padding-left: 22px; position: relative; color: var(--muted); font-size: 13px; margin-top: 8px; }
.strip li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); }

/* footer */
footer { border-top: 1px solid var(--line); padding: 36px 0 48px; font-size: 12px; color: var(--muted); }
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot a:hover { color: var(--text); }
.foot .links { display: flex; gap: 18px; }

/* legal docs */
.doc { padding: 72px 0 96px; max-width: 760px; }
.doc h1 { font-size: 26px; margin-bottom: 8px; }
.doc .meta { color: var(--muted); font-size: 13px; margin-bottom: 40px; }
.doc h2 { font-size: 17px; margin: 40px 0 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.doc p, .doc li { font-size: 14px; color: #c9c9c9; }
.doc ul { padding-left: 20px; margin: 10px 0; }
.doc li { margin-top: 6px; }
.doc table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 13px; }
.doc th, .doc td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; vertical-align: top; }
.doc th { background: var(--bg-soft); font-weight: 600; }
.doc .note {
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 6px; background: var(--bg-soft);
  padding: 14px 16px; margin: 16px 0; font-size: 13px; color: #c9c9c9;
}
.doc a.inline { color: var(--accent); }
.doc a.inline:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .hero { padding: 64px 0 48px; }
  .term-body { font-size: 12px; }
  .mail .subj { display: none; }
}
