:root {
  --ink: #08091a;
  --cream: #fffaf0;
  --muted: #aaaac0;
  --gold: #f4c65d;
  --gold-light: #ffe49a;
  --green: #25d366;
  --green-dark: #07190e;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--cream);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.page-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 32px 16px 28px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% -8%, rgba(244, 198, 93, 0.17), transparent 30%),
    linear-gradient(160deg, #08091a 0%, #0d0e23 52%, #080918 100%);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
  pointer-events: none;
}

.ambient-one {
  top: -190px;
  right: -120px;
  background: var(--gold);
}

.ambient-two {
  bottom: -230px;
  left: -130px;
  background: var(--green);
}

.profile-card {
  width: min(100%, 600px);
}

.profile-header {
  text-align: center;
}

.logo-frame {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 0 1px rgba(244, 198, 93, 0.34),
    0 0 0 7px rgba(244, 198, 93, 0.045),
    0 22px 60px rgba(0, 0, 0, 0.4);
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border-top: 1px solid var(--gold-light);
  pointer-events: none;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand-kicker {
  margin: 0 0 11px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

h1 {
  max-width: 540px;
  margin: 0 auto;
  font-size: clamp(2rem, 8.5vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.intro {
  max-width: 500px;
  margin: 17px auto 0;
  color: var(--gold-light);
  font-size: clamp(1rem, 3.6vw, 1.12rem);
  font-weight: 750;
  line-height: 1.4;
  text-wrap: balance;
}

.availability {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(244, 198, 93, 0.25);
  border-radius: 14px;
  background: rgba(244, 198, 93, 0.06);
  text-align: center;
}

.availability strong {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.availability > span {
  color: #9696aa;
  font-size: 0.74rem;
}

.benefits {
  margin-top: 14px;
  padding: 21px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(14px);
}

.benefits h2 {
  margin: 0 0 17px;
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.benefits ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 10px;
  color: #d7d7e1;
  font-size: 0.9rem;
  line-height: 1.4;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(37, 211, 102, 0.11);
  font-size: 0.8rem;
  font-weight: 900;
}

.group-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 19px;
  color: var(--green-dark);
  text-decoration: none;
  background: var(--green);
  box-shadow:
    0 16px 42px rgba(37, 211, 102, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  margin-top: 20px;
}

.group-cta:hover {
  transform: translateY(-3px);
  background: #35e576;
  box-shadow:
    0 20px 52px rgba(37, 211, 102, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.group-cta:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.group-cta strong {
  text-align: center;
  font-size: clamp(0.91rem, 3.7vw, 1.08rem);
  letter-spacing: 0.015em;
}

.cta-logo,
.cta-arrow {
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(5, 32, 15, 0.12);
}

.cta-logo {
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.44);
}

.cta-logo img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.cta-arrow {
  width: 34px;
  height: 34px;
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.group-cta:hover .cta-arrow {
  transform: translateX(3px);
}

.trust-note {
  margin: 13px 0 0;
  color: #9c9caf;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 650;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
  color: #656578;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.footer-monogram {
  width: 23px;
  height: 23px;
  border: 1px solid rgba(244, 198, 93, 0.28);
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (min-width: 600px) {
  .page-shell {
    padding: 48px 24px 38px;
  }

  .logo-frame {
    width: 118px;
    height: 118px;
  }

  .availability {
    padding: 14px 19px;
  }

  .benefits {
    padding: 24px;
  }

  .benefits li {
    font-size: 0.96rem;
  }

  .group-cta {
    min-height: 78px;
    padding-inline: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
