:root {
  --bg: #080808;
  --card: #141311;
  --card-strong: #1d1b17;
  --text: #fbf7ea;
  --muted: #b6ad9c;
  --gold: #edc77e;
  --gold-strong: #f4b84f;
  --line: rgba(237, 199, 126, 0.24);
  --green: #50c878;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(237, 199, 126, 0.16), transparent 32%),
    linear-gradient(180deg, #080808, #0e0d0b 58%, #080808);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.page-shell {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 28px 16px 42px;
}

.hero,
.panel,
.featured-offer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 19, 17, 0.78);
  box-shadow: var(--shadow);
}

.hero {
  padding: 24px;
}

.profile {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
}

.profile-photo {
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(1.7rem, 8vw, 3rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.45rem, 6vw, 2.3rem);
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.intro {
  margin: 18px 0 0;
}

.quick-actions {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.link-card,
.state-card,
.button {
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.link-card {
  display: grid;
  gap: 5px;
  padding: 17px 18px;
}

.link-card:hover,
.state-card:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: var(--line);
}

.link-card.primary {
  background: linear-gradient(135deg, rgba(237, 199, 126, 0.16), rgba(244, 184, 79, 0.07));
  border-color: var(--line);
}

.link-card span {
  font-weight: 900;
}

.link-card small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.panel {
  margin-top: 18px;
  padding: 22px;
}

.panel[hidden] {
  display: none;
}

.panel-head p {
  margin-bottom: 0;
}

.state-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.state-card {
  display: grid;
  gap: 4px;
  padding: 17px 18px;
}

.state-card strong {
  font-size: 1.08rem;
}

.state-card span {
  color: var(--muted);
}

.state-card.muted {
  border-color: rgba(80, 200, 120, 0.24);
}

.featured-offer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
  padding: 22px;
  overflow: hidden;
}

.featured-offer p {
  margin-bottom: 0;
}

.featured-offer img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 26px 55px rgba(0, 0, 0, 0.5));
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: var(--bg);
  font-weight: 900;
  text-align: center;
}

.support {
  margin-top: 18px;
  text-align: center;
}

.support a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 720px) {
  .page-shell {
    padding-top: 42px;
  }

  .featured-offer {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
  }
}
