* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 16px;
  font-family: "Poppins", system-ui, sans-serif;
  color: #111;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #fef5dc 0%, #f7e0c3 45%, #f1c6c2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.landing {
  width: min(420px, 100%);
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(58, 52, 35, 0.15);
  backdrop-filter: blur(10px);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.eyebrow {
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #d6823a;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #555;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.link:hover,
.link:focus-visible {
  transform: translateY(-2px);
  background: #d6823a;
  box-shadow: 0 12px 25px rgba(214, 130, 58, 0.35);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}

.label {
  flex: 1;
  text-align: left;
}

.cta-note {
  font-size: 0.95rem;
  color: #777;
}

footer {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(17, 17, 17, 0.65);
}
