:root {
  --bg: #ececef;
  --text: #111827;
  --muted: #5b6473;
  --pink: #ff0f62;
  --line: #dfe3ea;
}

*,
*::before,
*::after { box-sizing: border-box; }

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

.page {
  width: min(1240px, 100% - 1.2rem);
  margin: 0.5rem auto 0;
}

.hero {
  text-align: center;
  position: relative;
  padding: 1.2rem 0 0.9rem;
}

.hero-pill {
  margin: 0 0 0.75rem;
  width: max-content;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #f1cfe0;
  background: #f3eef2;
  color: #121722;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.floating-toast {
  position: fixed;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
  z-index: 60;
  width: min(560px, calc(100% - 1rem));
  background: #f7f7f8;
  border: 1px solid #dedee2;
  border-radius: 18px;
  padding: 0.72rem 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  animation: toast-flash 1.75s ease-in-out infinite;
}

.floating-toast.at-bottom {
  top: auto;
  bottom: 0.95rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #63b5ff, #e0d3cb);
  flex: 0 0 auto;
}

.floating-toast p { margin: 0; font-size: 1.05rem; }
.floating-toast small { color: #8891a0; font-weight: 600; }

.floating-toast button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #b2b8c3;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes toast-flash {
  0%, 100% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14); opacity: 1; }
  50% { box-shadow: 0 10px 30px rgba(255, 15, 98, 0.35); opacity: 0.92; }
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 8vw, 5.2rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero h1 span { color: var(--pink); }

.hero > p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.1rem);
}

.status-row {
  margin-top: 1rem;
  background: #000;
  color: #fff;
  padding: 1.1rem 1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.status-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.check {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: #2cc96b;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.status-left p {
  margin: 0.16rem 0 0;
  color: #b6bfca;
}

.status-right {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #a8aeb8;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.status-right em {
  font-style: normal;
  color: #fff;
  border: 1px solid #3d4249;
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
}

.steps {
  padding: 1.35rem 0 0.8rem;
}

.steps h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.6rem, 5vw, 2.55rem);
}

.steps-underline {
  display: block;
  width: 4.7rem;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--pink);
  margin: 0.55rem auto 0;
}

.step-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card {
  background: #f1f2f4;
  border: 1px solid #dbdee4;
  border-radius: 18px;
  padding: 0.85rem 0.72rem 0.9rem;
  text-align: center;
  position: relative;
  min-height: 184px;
}

.bubble {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.step-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0.25rem auto 0;
  border-radius: 16px;
  background: #050609;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.step-card h3 {
  margin: 0.6rem 0 0.35rem;
  font-size: 1.65rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.97rem;
}

.steps-hint {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
}

.steps-hint-text {
  margin: 0.2rem 0 0;
  text-align: center;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #222c3b;
  font-size: 0.95rem;
}

.cta {
  display: block;
  width: min(560px, 96%);
  margin: 1.2rem auto 0;
  text-align: center;
  text-decoration: none;
  background: #000;
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.2rem, 3.9vw, 2rem);
  padding: 1rem;
  border-radius: 999px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.18);
}

.secure {
  text-align: center;
  color: #8591a3;
  font-weight: 600;
  margin: 0.7rem 0 0;
}

.feature {
  margin: 1rem auto 0;
  width: min(760px, 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #d8dce2;
  position: relative;
}

.feature img { display: block; width: 100%; height: auto; }

.verified {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.value {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  background: var(--pink);
  color: #fff;
  border-radius: 14px;
  padding: 0.6rem 0.9rem;
  font-size: 1.45rem;
  font-weight: 800;
}

.members {
  padding: 1.8rem 0 2.2rem;
}

.members h2,
.members > p {
  text-align: center;
  margin: 0;
}

.members > p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.cta-below {
  margin-top: 1.3rem;
}

.review-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.review {
  background: #f5f6f8;
  border: 1px solid #dde1e8;
  border-radius: 22px;
  padding: 1.05rem;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.review-avatar.a1 { background: linear-gradient(135deg, #5e9bd5, #f3dcbf); }
.review-avatar.a2 { background: linear-gradient(135deg, #ae6b31, #ffd670); }
.review-avatar.a3 { background: linear-gradient(135deg, #4e8ecc, #f6dd9f); }
.review-avatar.a4 { background: linear-gradient(135deg, #ddd4bd, #806a43); }

.review-id h3 {
  margin: 0;
  font-size: 1.95rem;
}

.review-id small {
  color: #8f98a8;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.stars {
  margin-left: auto;
  color: #f1b800;
  letter-spacing: 0.2em;
  font-size: 1rem;
}

.review .quote {
  margin: 0.9rem 0 0;
  color: #505a6a;
  font-style: italic;
  line-height: 1.45;
  font-size: 1.03rem;
}

.review-foot {
  margin-top: 0.85rem;
  padding-top: 0.8rem;
  border-top: 1px solid #e5e8ed;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #24ba5f;
}

.review-foot strong {
  color: #24a755;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.received {
  margin-left: auto;
  color: #9ca3b1;
  font-weight: 700;
  font-size: 0.92rem;
}

.footer {
  background: #020306;
  color: #c4cad3;
  padding: 2.4rem 1rem;
  text-align: center;
}

.footer p {
  max-width: 900px;
  margin: 0.8rem auto;
  line-height: 1.52;
  color: #8d97a8;
  font-size: 1.08rem;
  font-weight: 500;
}

@media (min-width: 920px) {
  .step-grid,
  .review-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .floating-toast p { font-size: 0.96rem; }
  .floating-toast .avatar { width: 2.6rem; height: 2.6rem; }
  .page { margin-top: 0.35rem; }
  .hero { padding-top: 0.85rem; }
  .hero-pill {
    margin-bottom: 0.45rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
  .status-right { width: 100%; }
  .steps h2 { font-size: 2.2rem; line-height: 1.07; }
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.56rem;
  }
  .step-card {
    min-height: 206px;
    padding: 0.75rem 0.46rem 0.7rem;
  }
  .step-icon {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.2rem;
    border-radius: 12px;
  }
  .step-card h3 { font-size: 1.35rem; margin-top: 0.5rem; }
  .step-card p { font-size: 0.9rem; line-height: 1.34; }
  .bubble {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.82rem;
    top: 0.45rem;
    right: 0.45rem;
  }
  .review-id h3 { font-size: 1.45rem; }
  .review .quote { font-size: 0.95rem; }
  .steps-hint-text {
    font-size: 0.78rem;
    line-height: 1.3;
  }
  .cta-below { margin-top: 0.85rem; }
  .footer p {
    font-size: 0.95rem;
    color: #939dae;
  }
}
