:root {
  --bg: #05030a;
  --panel: #0c0712;
  --panel-soft: rgba(255,255,255,.07);
  --text: #fff;
  --muted: rgba(255,255,255,.68);
  --muted-soft: rgba(255,255,255,.45);
  --blue: #169aff;
  --purple: #3016d6;
  --violet: #7d3dff;
  --pink: #ff4fb6;
  --ring: rgba(126, 70, 255, .55);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: #000; }
body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 50% -10%, rgba(65, 34, 171, .38), transparent 34%),
    radial-gradient(circle at 50% 55%, rgba(255, 67, 166, .1), transparent 28%),
    #000;
  display: flex;
  justify-content: center;
}

a { -webkit-tap-highlight-color: transparent; }
img { display: block; }

.page {
  width: min(100%, 560px);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 32%),
    var(--bg);
  box-shadow: 0 28px 90px rgba(0,0,0,.74);
}

.page::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto;
  height: 260px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(63, 42, 255, .36), transparent 64%);
  filter: blur(10px);
  opacity: .8;
}

.hero {
  height: 560px;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  background: #120d17;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.018);
  filter: saturate(1.05) contrast(1.03) brightness(.98);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.06) 0%, rgba(0,0,0,.01) 34%, rgba(0,0,0,.46) 70%, #05030a 100%),
    radial-gradient(circle at 50% 84%, rgba(0,0,0,.68), transparent 38%);
  pointer-events: none;
}

.hero__glass {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 150px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 22px 50px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: .74;
}

.profile {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 48px;
  display: grid;
  justify-items: center;
  text-align: center;
  z-index: 2;
}

.verified-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  filter: drop-shadow(0 3px 18px rgba(0,0,0,.82));
}

.verified-line h1 {
  margin: 0;
  font-size: clamp(44px, 11vw, 62px);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 920;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.55), transparent 24%),
    linear-gradient(135deg, #1c0f9e 0%, #1038e9 48%, #12a7ff 100%);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow:
    0 0 0 4px rgba(49, 27, 220, .17),
    0 12px 26px rgba(24, 118, 255, .38),
    inset 0 1px 1px rgba(255,255,255,.45);
}

.check svg { width: 17px; height: 17px; fill: #fff; }

.handle {
  margin: 10px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,.9);
}

.content {
  position: relative;
  z-index: 3;
  margin-top: -18px;
  padding: 0 18px 42px;
}

.main-card {
  position: relative;
  display: block;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: #fff;
  background: #111;
  box-shadow:
    0 26px 60px rgba(0,0,0,.48),
    0 0 0 1px rgba(255,255,255,.08),
    0 0 44px rgba(125,61,255,.18);
  transform: translateZ(0);
}

.main-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.14) 38%, transparent 62%);
  transform: translateX(-125%);
  animation: cardShine 4.6s ease-in-out infinite;
}

@keyframes cardShine {
  0%, 38% { transform: translateX(-125%); }
  62%, 100% { transform: translateX(125%); }
}

.main-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 38%;
  transition: transform .32s ease, filter .32s ease;
}

.main-card:hover img { transform: scale(1.035); filter: brightness(1.05) saturate(1.06); }
.main-card:active { transform: scale(.992); }

.main-card__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  pointer-events: none;
}

.main-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.03) 0%, rgba(0,0,0,.06) 46%, rgba(0,0,0,.76) 100%),
    radial-gradient(circle at 50% 96%, rgba(87, 34, 255, .42), transparent 50%);
}

.main-card__link {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}

.main-card__link svg { width: 25px; height: 25px; fill: #fff; }

.main-card__copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: grid;
  gap: 4px;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0,0,0,.92);
}

.eyebrow {
  justify-self: center;
  padding: 7px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.main-card__copy strong {
  font-size: clamp(31px, 7.5vw, 42px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 940;
}

.main-card__copy small {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-weight: 750;
}

.unlock {
  min-height: 70px;
  margin: 16px 0 24px;
  padding: 0 20px 0 22px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 920;
  letter-spacing: -.04em;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.24), transparent 22%),
    linear-gradient(135deg, #3716d3 0%, #8c39ff 42%, #ff4ea9 100%);
  box-shadow: 0 18px 46px rgba(90, 40, 220, .38), inset 0 1px 0 rgba(255,255,255,.25);
}

.unlock::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.16) 45%, transparent 76%);
  transform: translateX(-110%);
  animation: buttonShine 3.8s ease-in-out infinite;
}

@keyframes buttonShine {
  0%, 42% { transform: translateX(-110%); }
  70%, 100% { transform: translateX(110%); }
}

.unlock__text, .unlock svg { position: relative; z-index: 1; }
.unlock svg { width: 28px; height: 28px; flex: 0 0 auto; fill: #fff; }
.unlock__pulse {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(255,255,255,.14);
}

.section-title {
  margin: 0 2px 13px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-title span {
  font-size: 18px;
  font-weight: 930;
  letter-spacing: -.04em;
}

.section-title small {
  color: var(--muted-soft);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}

.photo-tile {
  position: relative;
  min-height: 252px;
  border-radius: 24px;
  overflow: hidden;
  background: #121018;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}

.photo-tile--large { min-height: 318px; }

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.02);
}

.photo-tile:nth-child(2) img { object-position: center 34%; }

.photo-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 54%, rgba(0,0,0,.62) 100%);
}

.photo-tile__tag {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.02em;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-note {
  margin: 18px auto 0;
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 820;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 0 0 5px rgba(38, 111, 255, .12);
}

@media (min-width: 620px) {
  body { padding: 20px; }
  .page { border-radius: 32px; min-height: calc(100vh - 40px); }
}

@media (max-width: 430px) {
  .hero { height: 540px; }
  .content { padding-left: 14px; padding-right: 14px; }
  .main-card, .main-card img { min-height: 354px; height: 354px; }
  .verified-line h1 { font-size: 48px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .photo-tile, .photo-tile--large { min-height: 238px; }
  .unlock { font-size: 18px; }
}

@media (max-width: 360px) {
  .hero { height: 500px; }
  .main-card, .main-card img { min-height: 322px; height: 322px; }
  .main-card__copy strong { font-size: 29px; }
  .section-title { display: grid; gap: 4px; }
}
