:root {
  --bg: #f4f4f5;
  --surface: #ffffff;
  --text: #18181b;
  --muted: #52525b;
  --line: #e4e4e7;
  --accent: #18181b;
  --rx-accent: #6366f1;
  --rx-glow: rgba(99, 102, 241, 0.18);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.retired-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.retired-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}

.retired-glow--a {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  right: -6rem;
  background: var(--rx-glow);
}

.retired-glow--b {
  width: 22rem;
  height: 22rem;
  bottom: -6rem;
  left: -4rem;
  background: rgba(24, 24, 27, 0.06);
}

.retired-header {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem;
}

.retired-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.retired-brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
}

.retired-brand-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.retired-brand-name em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}

.retired-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem 3rem;
}

.retired-card {
  width: min(100%, 42rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow:
    0 1px 2px rgba(24, 24, 27, 0.06),
    0 24px 48px -24px rgba(24, 24, 27, 0.18);
}

.retired-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

.retired-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.retired-lead {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
}

.retired-copy {
  margin: 0 0 1.75rem;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--muted);
}

.retired-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.retired-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.retired-btn:hover {
  transform: translateY(-1px);
}

.retired-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(24, 24, 27, 0.45);
}

.retired-btn--primary:hover {
  background: #27272a;
}

.retired-foot {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: #71717a;
}
