/* Meeting Recording & AI Summary — transparency notice
   Single document sheet · hairline dividers · compact legal-notice type.
   Palette: purple #7c3aed · text #09090b · muted #71717a · bg #f4f4f5 */

:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --text: #18181b;
  --muted: #71717a;
  --bg: #f4f4f5;
  --card: #ffffff;
  --border: #e4e4e7;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  line-height: 1.6;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  padding: 36px 16px;
}

/* The single sheet */
.wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(9, 9, 11, 0.06), 0 1px 2px rgba(9, 9, 11, 0.04);
  padding: 8px 36px 28px;
}

/* Language toggle */
.topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 0 4px;
}

.langtoggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  font-size: 13px;
  font-weight: 600;
}

.langtoggle a {
  text-decoration: none;
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 999px;
  line-height: 1.2;
}

.langtoggle a.active { background: var(--primary); color: #fff; }

/* Header */
header.hero { padding: 14px 0 20px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 8px;
}

h1 {
  font-size: 1.45rem;
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.lead {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Sections — divided blocks within the sheet (no individual cards) */
section.card {
  background: none;
  border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 18px 0;
}

section.card h2 {
  font-size: 1rem;
  font-weight: 650;
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 9px;
  letter-spacing: -0.01em;
}

section.card h2 .num {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--muted);
}

section.card h2 .num::after { content: "."; }

section.card p { margin: 0 0 8px; }
section.card p:last-child { margin-bottom: 0; }

ul { margin: 4px 0 0; padding-left: 1.15em; }
ul li { margin: 3px 0; }
ul li::marker { color: var(--primary); }

a { color: var(--primary-dark); }
a:hover { color: var(--primary); }

strong { font-weight: 640; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding-top: 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

footer .company { color: var(--text); font-weight: 600; }

@media (max-width: 480px) {
  body { padding: 16px 12px; }
  .wrap { padding: 6px 20px 22px; border-radius: 12px; }
  h1 { font-size: 1.3rem; }
}
