/* Groove & Grow — base tokens and reset */

:root {
  --color-brand-gradient: linear-gradient(
    116.73deg,
    #155dfc 0.83%,
    #9810fa 48.49%,
    #e60076 95.24%
  );
  --color-brand-flat: #252791;
  --color-deep-navy: #171988;
  --color-text: #000000;
  --color-muted: rgba(0, 0, 0, 0.5);
  --color-muted-soft: rgba(0, 0, 0, 0.6);
  --color-border-soft: rgba(0, 0, 0, 0.2);
  --color-chip-bg: rgba(160, 113, 207, 0.15);
  --color-chip-text: #7a4fa1;
  --color-white-soft: rgba(255, 255, 255, 0.8);
  --color-panel: rgba(245, 245, 245, 0.3);
  --radius-pill: 68px;
  --radius-card: 8px;
  --radius-input: 8px;
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.15);
  --shadow-form: 0 4px 40px rgba(0, 0, 0, 0.1);
  --layout-max: 1240px;
  --gap-section: clamp(56px, 8vw, 96px);
  --font: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

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

:focus-visible {
  outline: 2px solid #155dfc;
  outline-offset: 2px;
}

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

.text-gradient {
  background: var(--color-brand-gradient), var(--color-brand-flat);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
