@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --mp-bg: #f8fafc;
  --mp-surface: #ffffff;
  --mp-text: #0f172a;
  --mp-text-muted: #475569;
  --mp-brand: #0d9488;
  --mp-brand-strong: #0f766e;
  --mp-border: #e2e8f0;
  --mp-focus: rgba(13, 148, 136, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.07), transparent 28%),
    radial-gradient(circle at left bottom, rgba(13, 148, 136, 0.08), transparent 32%),
    var(--mp-bg);
  color: var(--mp-text);
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(13, 148, 136, 0.18);
  color: #042f2e;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.32);
  outline-offset: 2px;
}
