/* Dashboard New Tab site — warm minimal (mirror of the product tokens). */
:root {
  color-scheme: light dark;
  --bg: #f2f4f6; --surface: #ffffff; --surface-2: #e8ecef;
  --text: #17222b; --text-dim: #54626e; --border: #d5dce2;
  --accent: #2563a8; --accent-text: #fff;
  --shadow: 0 1px 2px rgba(23,34,43,.05), 0 2px 10px rgba(23,34,43,.05);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #10161b; --surface: #18212a; --surface-2: #212c36;
    --text: #e4ebf1; --text-dim: #8fa0ae; --border: #2c3a46;
    --accent: #5aa2e8; --accent-text: #0c1319;
    --shadow: 0 1px 3px rgba(0,0,0,.45);
  }
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }
img { max-width: 100%; height: auto; border-radius: 12px; }
.wrap { max-width: 880px; margin: 0 auto; padding: 0 20px; }
header.site {
  display: flex; align-items: center; gap: 10px; padding: 18px 0;
}
header.site img { width: 28px; height: 28px; border-radius: 7px; }
header.site .brand { font-weight: 700; }
header.site nav { margin-left: auto; display: flex; gap: 18px; font-size: 14px; }
header.site nav a { color: var(--text-dim); text-decoration: none; }
header.site nav a:hover { color: var(--accent); }
.hero { padding: 48px 0 24px; text-align: center; }
.hero h1 { font-size: clamp(30px, 5vw, 44px); line-height: 1.15; margin: 0 0 14px; letter-spacing: -0.015em; text-wrap: balance; }
.hero p.sub { color: var(--text-dim); font-size: 18px; max-width: 620px; margin: 0 auto 22px; }
.privacy-line { font-size: 14px; color: var(--text-dim); letter-spacing: .02em; }
.privacy-line b { color: var(--text); }
.cta {
  display: inline-block; background: var(--accent); color: var(--accent-text);
  padding: 12px 26px; border-radius: 999px; text-decoration: none; font-weight: 600;
  margin: 18px 0 8px;
}
.cta.soon { background: var(--surface-2); color: var(--text-dim); cursor: default; }
.shot { margin: 32px 0; box-shadow: var(--shadow); border: 1px solid var(--border); }
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 26px 0; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 20px; box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 16px; }
.card p { margin: 0; color: var(--text-dim); font-size: 14px; }
.platforms { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 18px 0; }
.platforms span {
  border: 1px solid var(--border); border-radius: 999px; padding: 5px 14px;
  font-size: 13px; background: var(--surface);
}
section { padding: 26px 0; }
h2 { font-size: 24px; letter-spacing: -0.01em; }
article h1 { font-size: 32px; letter-spacing: -0.015em; line-height: 1.2; text-wrap: balance; }
article { max-width: 680px; margin: 0 auto; padding: 20px 0 40px; }
article p, article li { color: var(--text); }
article .meta { color: var(--text-dim); font-size: 14px; }
blockquote { border-left: 3px solid var(--accent); margin: 0; padding: 4px 18px; color: var(--text-dim); }
table { border-collapse: collapse; width: 100%; font-size: 14px; margin: 18px 0; }
th, td { border: 1px solid var(--border); padding: 8px 12px; text-align: left; }
th { background: var(--surface-2); }
footer.site {
  border-top: 1px solid var(--border); margin-top: 40px; padding: 26px 0 40px;
  color: var(--text-dim); font-size: 14px;
}
footer.site a { color: var(--text-dim); }
.faq details { border-bottom: 1px solid var(--border); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--text-dim); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
