:root {
  color-scheme: light;
  --page-bg: #dff1ec;
  --blue: #3960ef;
  --blue-2: #77c2ff;
  --blue-text: #3aa4ff;
  --ink: #243350;
  --muted: #737373;
  --line: #ededed;
  --card: #ffffff;
  --green: #62ca8b;
  --verify: #5b74ff;
  --shadow: 0 18px 42px rgba(36, 51, 80, 0.08);
  --soft-shadow: 0 8px 24px rgba(36, 51, 80, 0.06);
  --phone-max: 716px;
  --header-h: 108px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-bg);
  touch-action: manipulation;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--page-bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  touch-action: manipulation;
}

button,
input {
  font: inherit;
}

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

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
