:root {
  color-scheme: light;
  --review-bg: #f3effa;
  --app-bg: #f8f7ff;
  --surface: #ffffff;
  --surface-soft: #f5f5fc;
  --surface-deep: #ece9f6;
  --foreground: #121021;
  --muted: #e8e5f0;
  --muted-foreground: #6e6a8b;
  --primary: #06041f;
  --primary-hover: #0e073d;
  --primary-soft: #e9e5f9;
  --accent: #5935e9;
  --accent-soft: #efedfd;
  --border: #d8d0e4;
  --border-strong: #c9badb;
  --success: #0aa66d;
  --success-soft: #d9fdeb;
  --success-ink: #08764f;
  --warning: #f9c152;
  --warning-soft: #fff3d8;
  --warning-ink: #99500a;
  --danger: #d93921;
  --danger-soft: #fef0ed;
  --blue: #2f6ee5;
  --blue-soft: #e8f0ff;
  --shadow-app: 0 28px 70px rgba(18, 16, 33, 0.14);
  --shadow-float: 0 18px 42px rgba(18, 16, 33, 0.18);
  --radius-card: 24px;
  --radius-item: 16px;
  --radius-small: 10px;
  --radius-control: 999px;
  --ease: 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--review-bg);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.45;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(89, 53, 233, 0.35);
  outline-offset: 2px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

.money {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
}

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

.icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
}

.icon svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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