:root {
  --ink: #f7f1e8;
  --muted: #bfb7ae;
  --bg: #09090b;
  --wine: #7d1637;
  --rose: #ff4f8b;
  --teal: #00d1b2;
  --gold: #ffc857;
  --panel: rgba(20, 20, 24, 0.78);
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 79, 139, 0.26), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(0, 209, 178, 0.19), transparent 22rem),
    linear-gradient(145deg, #060608 0%, #141016 45%, #08090c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  min-height: 92vh;
  gap: 32px;
  padding: 48px 0 28px;
}

.hero-copy {
  z-index: 2;
}

.kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(4.8rem, 13vw, 10.5rem);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.lead {
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--rose), var(--wine));
  box-shadow: 0 18px 50px rgba(255, 79, 139, 0.28);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.portrait-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.portrait-stage::before {
  content: "";
  position: absolute;
  width: min(78%, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 200, 87, 0.14), transparent),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 90px rgba(255, 255, 255, 0.08);
}

.city-glow {
  position: absolute;
  width: min(94%, 590px);
  aspect-ratio: 1.1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 28%, rgba(255, 200, 87, 0.42), transparent 22%),
    radial-gradient(circle at 68% 52%, rgba(0, 209, 178, 0.32), transparent 24%),
    radial-gradient(circle at 34% 60%, rgba(255, 79, 139, 0.34), transparent 28%);
  filter: blur(16px);
  opacity: 0.82;
}

.portrait {
  position: relative;
  z-index: 1;
  width: min(78vw, 430px);
  max-height: 78vh;
  object-fit: contain;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.72));
}

.status-card {
  position: absolute;
  right: 4%;
  bottom: 9%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 310px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 16, 0.82);
  backdrop-filter: blur(16px);
  color: var(--muted);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.status-card strong {
  color: var(--ink);
}

.status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 22px var(--teal);
}

.profile-band,
.details {
  padding: 36px 0 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(14px);
}

.stat {
  min-height: 132px;
  padding: 20px;
}

.stat span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stat strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.panel {
  padding: clamp(22px, 4vw, 38px);
}

.panel.accent {
  background:
    linear-gradient(145deg, rgba(125, 22, 55, 0.72), rgba(14, 16, 20, 0.8)),
    var(--panel);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 200, 87, 0.5);
}

.offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .portrait-stage {
    order: -1;
    min-height: 460px;
  }

  .portrait {
    width: min(82vw, 330px);
  }

  .status-card {
    position: static;
    margin: -28px auto 0;
  }

  .section-heading,
  .details {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel + .panel {
    margin-top: 16px;
  }
}

@media (max-width: 540px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(3.5rem, 20vw, 4.8rem);
  }

  .actions,
  .button {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .portrait-stage {
    min-height: 390px;
  }
}
