:root {
  color-scheme: light;
  --bg: #f7f7f8;
  --surface: #ffffff;
  --text: #1f2933;
  --muted: #6b7280;
  --line: #e5e7eb;
  --brand: #4b5563;
  --brand-dark: #111827;
  --shadow: 0 20px 60px rgba(17, 24, 39, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

.page-shell {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.profile {
  text-align: center;
}

.profile-photo {
  width: clamp(108px, 28vw, 128px);
  height: clamp(108px, 28vw, 128px);
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
  border: 5px solid var(--surface);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 16px 0 4px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: 0;
}

.subtitle {
  margin: 8px auto 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-button {
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.link-button:hover,
.link-button:focus-visible {
  transform: translateY(-2px);
  border-color: #cfd4dc;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.1);
}

.link-button:focus-visible {
  outline: 3px solid rgba(107, 114, 128, 0.22);
  outline-offset: 3px;
}

.icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-dark);
  background: #f3f4f6;
}

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

.whatsapp .icon {
  color: #374151;
  background: #f3f4f6;
}

.link-button strong,
.link-button small {
  display: block;
}

.link-button strong {
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.link-button small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

@media (max-width: 380px) {
  .page-shell {
    padding: 28px 14px 22px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .link-button {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 13px;
  }

  .icon {
    width: 42px;
    height: 42px;
  }

  .icon svg {
    width: 22px;
    height: 22px;
  }
}
