:root {
  color-scheme: dark;
  --bg: #08080a;
  --surface: #111114;
  --surface-2: #17171b;
  --text: #f6f2ea;
  --text-muted: rgba(246, 242, 234, 0.66);
  --text-soft: rgba(246, 242, 234, 0.48);
  --border: rgba(246, 242, 234, 0.14);
  --border-strong: rgba(246, 242, 234, 0.24);
  --accent: #d7b56d;
  --accent-soft: rgba(215, 181, 109, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --font-sans: Geist, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(215, 181, 109, 0.12), transparent 34rem),
    linear-gradient(180deg, #0d0d10 0%, var(--bg) 42rem);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.session-logo {
  display: block;
  width: min(220px, calc(100vw - 48px));
  aspect-ratio: 2666 / 564;
  margin: 24px auto 10px;
  background: url("/assets/brand/session-tm-white.png") center / contain no-repeat;
}

.sv-wordmark {
  display: inline-block;
  width: min(220px, calc(100vw - 48px));
  height: auto;
}

.sv-wordmark--md {
  width: min(220px, calc(100vw - 48px));
}

.inline {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

.inline:hover {
  color: #f4d99a;
}
