:root {
  --oh-nav-height: 40px;
  --oh-nav-logo-size: 1rem;
  --oh-nav-menu-size: 2rem;
  --oh-viewport-height: 100dvh;
  --oh-main-height: calc(var(--oh-viewport-height) - var(--oh-nav-height));
  --oh-bg: #05060d;
  --oh-panel: #0b1024;
  --oh-text: #f7f8ff;
  --oh-muted: #aab3d6;
  --oh-blue: #155bff;
  --oh-violet: #5b2cff;
  --oh-red: #ff3b2f;
  --oh-orange: #ff6a00;
  --oh-gold: #ffd166;
  --oh-border: rgb(255 255 255 / 0.14);
  --oh-shell: min(100% - 2rem, 72rem);
  --ohf-bg: var(--oh-bg);
  --ohf-surface: var(--oh-panel);
  --ohf-blue: var(--oh-blue);
  --ohf-violet: var(--oh-violet);
  --ohf-red: var(--oh-red);
  --ohf-orange: var(--oh-orange);
  --ohf-gold: var(--oh-gold);
  --ohf-text: var(--oh-text);
  --ohf-text-muted: var(--oh-muted);
  --ohf-cover-bg: #fefefe;
  --ohf-cover-text: #15151a;
  --ohf-ink-text: #06090e;
  --ohf-shadow-strong: rgb(0 0 0 / 0.46);
  --ohf-mask-solid: #000;
  --ohf-white: #ffffff;
  --oh-font-display: "Poppins", sans-serif;
  --oh-font-body: "Inter", sans-serif;
  --oh-font-condensed: "Oswald", sans-serif;
  --oh-type-eyebrow: 0.72rem;
  --oh-type-nav: 0.82rem;
  --oh-type-small: 0.58rem;
  --oh-type-body: clamp(0.9rem, 2.3vw, 1rem);
  --oh-type-section: clamp(2.25rem, 8vw, 3.35rem);
  --oh-type-card: clamp(0.72rem, 2.9vw, 0.82rem);
  --oh-icon-small: 0.72rem;
  --oh-radius-pill: 999px;
  --oh-radius-panel: 1rem;
  --oh-radius-card: 0.68rem;
  --oh-ease-standard: 0.22s ease;
  color-scheme: dark;
  font-family: var(--oh-font-body);
  background: var(--oh-bg);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: auto;
  background: var(--oh-bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--oh-bg);
  color: var(--oh-text);
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--oh-font-display);
  text-wrap: balance;
}

p,
blockquote {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--oh-blue);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
