:root {
  --primary: #7153a0;
  --secondary: #6b7280;
  --success: #10b981;
  --info: #3b82f6;
  --warning: #f59e0b;
  --danger: #ef4444;
  --light: #f8fafc;
  --dark: #1e293b;
  --accent: #8b5cf6;
  --muted: #94a3b8;
  --radius: 0.375rem;
  --radius-lg: 0.5rem;
  --font-sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark);
  background: linear-gradient(160deg, #f1f0f7 0%, var(--light) 45%, #eef2f8 100%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  z-index: 1000;
}

.page {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem) 3rem;
}

.brand {
  text-align: center;
  margin-bottom: 2rem;
}

.brand__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--primary);
}

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

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 2px rgba(30, 41, 59, 0.06),
    0 4px 24px rgba(113, 83, 160, 0.08);
  border: 1px solid rgba(113, 83, 160, 0.12);
  overflow: hidden;
}

.card__body {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.section:first-of-type {
  padding-top: 0;
}

.section + .section {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin-top: 0.5rem;
}

.section__heading {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.section p {
  margin: 0 0 1rem;
}

.section p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}

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

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
}
