@font-face {
  font-family: "Neue Montreal";
  src: url("/assets/NeueMontreal-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("/assets/NeueMontreal-Medium.otf") format("opentype");
  font-weight: 500 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --paper: #08090a;
  --paper-raised: #101113;
  --canvas: #0c0d0f;
  --ink: #f7f8f8;
  --ink-soft: #d2d5d9;
  --muted: #8a8f98;
  --muted-strong: #aeb2b8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --blue: #ff5c57;
  --blue-deep: #ff746f;
  --blue-soft: #2a1717;
  --coral: #ff5c57;
  --coral-soft: #2a1717;
  --green: #79ce8a;
  --green-soft: #132017;
  --amber: #e7b35e;
  --amber-soft: #241d11;
  --danger: #ff746f;
  --danger-soft: #301718;
  --sidebar: #0c0d0f;
  --sidebar-muted: #8a8f98;
  --radius-sm: 6px;
  --radius: 9px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 0 rgba(255, 255, 255, 0.04);
  --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.34);
  --content-max: 1440px;
  --font-sans: "Neue Montreal", "Manrope Variable", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.marketingShell {
  min-width: 320px;
  overflow: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Neue Montreal", var(--font-sans);
}

.marketingShell > main {
  padding-top: 76px;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
[role="button"] {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

::selection {
  color: #fff;
  background: rgba(255, 92, 87, 0.36);
}

:focus-visible {
  outline: 2px solid #ff6b66;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
