/* Tally Investor Update — H1 2026
   Tokens lifted from tally-dataroom/css/style.css (brand canon) but this
   sheet only carries what this one page needs: mobile-first, single column,
   no nav chrome beyond a slim header. */

:root {
  --violet-500: #6047ff;
  --violet-600: #4a35d9;
  --violet-100: #dcdcff;
  --violet-50: #f0f0ff;
  --orange-500: #ff8248;
  --green-500: #49d475;
  --green-100: #c8e8ce;
  --cyan-500: #5ed7ff;
  --ink: #212121;
  --cream: #fefcf8;
  --text-secondary: #6B7280;
  --border-light: #e8e8e8;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--violet-500); }
img, svg { display: block; max-width: 100%; height: auto; }

.container { max-width: 680px; margin: 0 auto; padding: 0 20px; }

header.top {
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--border-light);
}
header.top .container { display: flex; align-items: center; gap: 10px; }
header.top img { height: 30px; width: auto; }
header.top .suffix { font-size: 14px; color: var(--text-secondary); font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--violet-600);
  background: var(--violet-50);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

section[data-section] { padding: 40px 0; border-bottom: 1px solid var(--border-light); }
section[data-section]:last-of-type { border-bottom: none; }

h1 { font-size: 30px; line-height: 1.25; font-weight: 700; margin: 0 0 12px; letter-spacing: -0.01em; }
h2 { font-size: 21px; line-height: 1.3; font-weight: 700; margin: 0 0 14px; letter-spacing: -0.005em; }
p { margin: 0 0 14px; font-size: 16px; color: var(--ink); }
p.lede { font-size: 18px; color: #3a3a3a; }
.muted { color: var(--text-secondary); font-size: 14px; }

.placeholder {
  border: 1.5px dashed var(--violet-100);
  background: var(--violet-50);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--violet-600);
  margin: 0 0 14px;
}
.placeholder b { color: var(--violet-600); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 14px 16px;
}
.stat-card .n { font-size: 22px; font-weight: 700; color: var(--violet-600); display: block; line-height: 1.2; }
.stat-card .l { font-size: 12px; color: var(--text-secondary); }

.candor-box {
  background: #fff8f2;
  border: 1px solid #fcddd6;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0;
}
.candor-box .tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--orange-500); }

ul.asks { list-style: none; margin: 0; padding: 0; }
ul.asks li {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}
ul.asks li b { color: var(--violet-600); }

.dataroom-cta {
  display: block;
  text-align: center;
  background: var(--violet-500);
  color: #fff !important;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 10px;
  margin: 8px 0 4px;
}
.dataroom-cta:hover { opacity: .9; }

footer.foot {
  padding: 32px 0 60px;
  text-align: center;
}
footer.foot p { font-size: 13px; color: var(--text-secondary); }
footer.foot a { color: var(--text-secondary); text-decoration: underline; }

@media (min-width: 640px) {
  h1 { font-size: 36px; }
  .container { padding: 0 24px; }
}
