:root {
  --bg: #f4f1eb;
  --panel: #fffdf8;
  --panel-strong: #f7f1e7;
  --text: #141414;
  --muted: #64615d;
  --line: rgba(20, 20, 20, 0.08);
  --shadow: 0 18px 42px rgba(16, 16, 16, 0.12);
  --accent: #151515;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  height: 288px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.18) 46%, rgba(244, 241, 235, 0.96) 100%),
    linear-gradient(180deg, transparent 0%, rgba(244, 241, 235, 0.35) 100%);
}

.hero-top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: flex-start;
}

.logo {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.32);
  backdrop-filter: blur(8px);
}

.content {
  position: relative;
  margin-top: -64px;
  padding: 0 18px 28px;
}

.profile {
  padding: 0 6px;
  text-align: center;
}

.profile-badge {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1f1f1f 0%, #434343 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b756f;
}

h1 {
  margin: 10px 0 0;
  font-size: 2.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.handle {
  margin: 6px 0 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: #44413d;
}

.summary {
  margin: 14px auto 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.quick-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.chip {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.links {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.link-card {
  padding: 18px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)),
    var(--accent);
  color: #fff9f0;
}

.link-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.link-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.link-copy {
  display: block;
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: inherit;
  opacity: 0.9;
}

.info-card {
  background: var(--panel-strong);
}

@media (min-width: 720px) {
  .hero {
    height: 360px;
  }

  .content {
    max-width: 560px;
    margin: -76px auto 0;
    padding: 0 20px 40px;
  }

  h1 {
    font-size: 3rem;
  }
}
