﻿:root {
  --noon-bg: #ffffff;
  --noon-surface: #ffffff;
  --noon-border: #d7e1ef;
  --noon-text: #0f2445;
  --noon-muted: #5f7391;
  --noon-yellow: #ffd447;
  --noon-blue: #1f6feb;
  --noon-blue-strong: #1256c8;
  --noon-danger: #dc2626;
  --noon-success: #16a34a;
  --noon-heading: #13294b;
  --noon-radius: 16px;
  --noon-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  --noon-shell-width: 1200px;
  --noon-mobile-width: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 12% -8%, #f5f5f4 0, rgba(255, 255, 255, 0.986) 34%),
    radial-gradient(circle at 88% 2%, #fafcff 0, rgba(0, 0, 0, 0) 34%),
    var(--noon-bg);
  color: var(--noon-text);
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
}

.hidden {
  display: none !important;
}

.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;
}
