@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap");

:root {
  --accent: #0070ff;
  --charcoal: #232328;
  --canvas: #fbfbf9;
  --ink: #0c0c0e;
  --muted: #6c6c74;
  --line: #e9e8e3;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

.top-hairline {
  height: 3px;
  width: 100%;
  background: var(--accent);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 64px) 96px;
}

.eyebrow {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

.headline {
  font-family: "Schibsted Grotesk", "Instrument Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: .98;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  max-width: 20ch;
}

.lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 56px 0;
}

.widget-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

#widget-container {
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}

.widget-fallback {
  font-size: 14px;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
