/* Edeal base styles: design tokens, reset, typography, containers */
:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-alt: #eef4ff;
  --text: #0f172a;
  --muted: #586883;
  --muted-2: #4f5d78;
  --line: #dbe5f5;
  --primary: #2458ff;
  --primary-dark: #173ec0;
  --primary-light: #4a79ff;
  --accent: #00a6a6;
  --success: #12a160;
  --shadow: 0 24px 64px rgba(31, 66, 154, 0.12);
  --shadow-lg: 0 20px 60px rgba(31, 66, 154, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.bg-gradient {
  background:
    radial-gradient(circle at top left, rgba(36, 88, 255, .14), transparent 26%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(calc(100% - 32px), 1120px); margin: 0 auto; }
.container-wide { width: min(calc(100% - 32px), 1180px); margin: 0 auto; }
.container-narrow { width: min(calc(100% - 32px), 980px); margin: 0 auto; }

h1 { margin: 18px 0 12px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -.04em; }
h2 { margin: 0 0 14px; font-size: 2rem; letter-spacing: -.05em; }
h3 { margin: 0 0 10px; font-size: 1.25rem; letter-spacing: -.03em; }

.eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .82rem;
}

.lead { margin: 0; max-width: 820px; color: var(--muted); font-size: 1.03rem; line-height: 1.76; }

.btn, .pill, .pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  font-weight: 800;
  white-space: nowrap;
  color: var(--text);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover, .pill:hover, .pill-link:hover { transform: translateY(-1px); }

.btn-primary, .pill.primary, .pill-link.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(36, 88, 255, .24);
}
.btn-secondary { background: #fff; color: var(--text); border: 1px solid var(--line); }

.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
