:root {
  --bg-top: #082c41;
  --bg-bottom: #031d2b;
  --surface: #143043;
  --ring: #23485f;
  --text: #ffffff;
  --text-muted: #9fb3c4;
  --accent-top: #ffd27e;
  --accent-bottom: #f5901a;
  --accent-text: #4a2600;
}

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

body {
  margin: 0;
  min-height: 100svh;
  font-family: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 55%);
  background-attachment: fixed;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 100svh;
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 24px 40px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  height: 40px;
  width: auto;
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.locale-switch:hover {
  background: var(--ring);
}

.locale-switch__icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.avatar {
  width: min(70vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 6px solid var(--ring);
  object-fit: cover;
}

.title {
  margin: 8px 0 0;
  font-size: clamp(28px, 7vw, 36px);
  line-height: 1.2;
  font-weight: 800;
}

.subtitle {
  margin: 0;
  max-width: 22em;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  margin-top: 8px;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--accent-top) 0%, var(--accent-bottom) 100%);
  color: var(--accent-text);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(245, 144, 26, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(245, 144, 26, 0.32);
}

.cta:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(245, 144, 26, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }
}
