:root {
  --bg-page: #ffffff;
  --bg-soft: #fdf2f8;
  --bg-card: #ffffff;
  --text-primary: #111827;
  --text-muted: #6b7280;
  --text-soft: #9ca3af;
  --border-subtle: rgba(17, 24, 39, 0.08);
  --border-light: #f3f4f6;
  --shadow-card: 0 4px 24px rgba(17, 24, 39, 0.06);
  --shadow-hero: 0 20px 50px rgba(17, 24, 39, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shell-max: 1180px;
  --character-accent: #ec4899;
  --character-accent-dark: #db2777;
  --character-accent-soft: #fce7f3;
  --character-accent-muted: rgba(236, 72, 153, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
}
