:root {
  color-scheme: light;
  --bg: #ece5dd;
  --bg-strong: #dfe6e3;
  --ink: #0b1f17;
  --muted: #4b6156;
  --accent: #25d366;
  --accent-dark: #128c7e;
  --accent-soft: #dcf8c6;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --stroke: rgba(7, 94, 84, 0.14);
  --shadow: none;
  --radius: 1.125rem;
  --font-head: "Sora", sans-serif;
  --font-body: "Sora", sans-serif;
}

body[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b1916;
  --bg-strong: #10231f;
  --ink: #e8f5ef;
  --muted: #a7b8b1;
  --panel: #0f241f;
  --panel-strong: #0f241f;
  --stroke: rgba(200, 255, 230, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #075e54 0%, #0f856f 22%, var(--bg-strong) 22%, var(--bg) 100%);
  height: 100vh;
  overflow: hidden;
}

body[data-theme="dark"] {
  background: linear-gradient(180deg, #031f1b 0%, #062a24 22%, var(--bg-strong) 22%, var(--bg) 100%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.625rem);
  opacity: 0.6;
  z-index: 0;
}

.orb-one {
  width: 26.25rem;
  height: 26.25rem;
  background: radial-gradient(circle at 30% 30%, rgba(37, 211, 102, 0.35), transparent 70%);
  top: -7.5rem;
  left: -7.5rem;
}

.orb-two {
  width: 22.5rem;
  height: 22.5rem;
  background: radial-gradient(circle at 60% 40%, rgba(18, 140, 126, 0.35), transparent 70%);
  bottom: -7.5rem;
  right: -6.25rem;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(26, 26, 26, 0.03) 0.0625rem, transparent 0.0625rem),
    linear-gradient(90deg, rgba(26, 26, 26, 0.03) 0.0625rem, transparent 0.0625rem);
  background-size: 7.5rem 7.5rem;
  z-index: 0;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(7, 94, 84, 0.35) rgba(236, 229, 221, 0.6);
}

body[data-theme="dark"] * {
  scrollbar-color: rgba(200, 255, 230, 0.25) rgba(15, 36, 31, 0.8);
}

*::-webkit-scrollbar {
  width: 0.625rem;
  height: 0.625rem;
}

*::-webkit-scrollbar-track {
  background: rgba(236, 229, 221, 0.6);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: rgba(7, 94, 84, 0.35);
  border-radius: 999px;
  border: 0.125rem solid rgba(236, 229, 221, 0.6);
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(7, 94, 84, 0.5);
}

body[data-theme="dark"] *::-webkit-scrollbar-track {
  background: rgba(15, 36, 31, 0.8);
}

body[data-theme="dark"] *::-webkit-scrollbar-thumb {
  background: rgba(200, 255, 230, 0.25);
  border-color: rgba(15, 36, 31, 0.8);
}

body[data-theme="dark"] *::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 255, 230, 0.4);
}
