:root {
  --color-primary: #0ea5e9;
  --color-secondary: #14b8a6;
  --color-accent: #ff6b6b;
  --color-text: #0f172a;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-surface: #ffffff;
  --color-surface-muted: #f4f6fb;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-body: "Space Grotesk", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Space Grotesk", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.12), transparent 45%),
    radial-gradient(circle at 88% 12%, rgba(20, 184, 166, 0.1), transparent 40%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  min-height: 100vh;
}

h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

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

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

a:hover {
  color: var(--color-primary);
}

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

.page-shell {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.page-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.page-subtitle {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 0.35rem 0 0;
}

.section-title {
  position: relative;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.soft-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.button-primary {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(14, 165, 233, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(14, 165, 233, 0.3);
}

.button-ghost {
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.2rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button-ghost:hover {
  background: rgba(14, 165, 233, 0.08);
  transform: translateY(-1px);
}

.text-muted {
  color: var(--color-muted) !important;
}
