:root {
  --bg: #f3f2ef;
  --card: #fbfaf8;
  --text: #303030;
  --muted: #051001;
  --border: rgba(48, 48, 48, 0.14);
  --soft: #ebe9e5;
  --shadow: 0 24px 70px rgba(48, 48, 48, 0.10);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.95), transparent 34%),
    radial-gradient(circle at 80% 100%, rgba(219,217,212,0.8), transparent 32%),
    var(--bg);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.profile-card {
  width: min(100%, 470px);
  padding: 38px 22px 26px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(251, 250, 248, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(82%, 330px);
  height: auto;
  margin: 0 auto 28px;
}

img {
  width: 90%;
  height: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro {
  max-width: 360px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.featured-link a,
.link-button {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.featured-link a {
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 23px;
  color: #f8f7f4;
  background: #303030;
  box-shadow: 0 16px 32px rgba(48, 48, 48, 0.16);
}

.featured-link span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}

.featured-link strong { font-size: 16px; }

.links {
  display: grid;
  gap: 11px;
}

.link-button {
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  text-align: left;
}

.link-button:hover,
.featured-link a:hover {
  transform: translateY(-2px);
  border-color: rgba(48, 48, 48, 0.28);
  box-shadow: 0 12px 26px rgba(48, 48, 48, 0.10);
}

.link-button:hover { background: #fff; }

.icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--soft);
  color: var(--text);
  font-weight: 800;
}

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

.link-button strong {
  font-size: 15px;
  margin-bottom: 2px;
}

.link-button small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 380px) {
  .profile-card {
    padding-inline: 16px;
    border-radius: 26px;
  }

  .brand-logo { width: 88%; }

  .link-button { padding: 13px; }
}
