

.eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.h2 {
  text-align: center;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.pt-stage {
  padding: 132px 0 80px;
}

.pt-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  background: var(--bg-2);
  border: 1px solid var(--brd-2);
  color: var(--text-mut);
  letter-spacing: 0.02em;
}

.soon .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-mut);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
  animation: ptPulse 2s infinite;
}

@keyframes ptPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
  70% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.pt-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 22px 0 0;
}

.pt-hero .lead {
  color: var(--text-mut);
  font-size: clamp(17px, 2.2vw, 20px);
  margin: 20px auto 0;
  max-width: 560px;
  text-wrap: balance;
}

.figures {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 42px auto 0;
  flex-wrap: wrap;
}

.figure {
  flex: 1;
  min-width: 230px;
  max-width: 300px;
  padding: 30px 28px;
  border-radius: 22px;
  text-align: left;
  background: var(--bg-2);
  border: 1px solid var(--brd);
}

.figure.hl {
  border-color: var(--brd-2);
}

.figure .big {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.figure .cap {
  color: var(--text-mut);
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
}

.notify {
  max-width: 520px;
  margin: 40px auto 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 13.5px;
  margin-top: 14px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}

.adv {
  padding: 30px 26px;
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 20px;
  transition: 0.22s;
}

.adv:hover {
  transform: translateY(-4px);
  border-color: var(--brd-2);
}

.adv .ic {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--bg);
  border: 1px solid var(--brd);
}

.adv .ic svg {
  width: 26px;
  height: 26px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.8;
}

.adv h3 {
  font-size: 18px;
  font-weight: 700;
}

.adv p {
  color: var(--text-mut);
  font-size: 14.5px;
  margin-top: 7px;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 54px;
}

.how {
  padding: 32px 30px;
  background: var(--bg-2);
  border: 1px solid var(--brd);
  border-radius: 22px;
}

.how .step-n {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dim);
  line-height: 1;
}

.how h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 14px;
}

.how p {
  color: var(--text-mut);
  font-size: 15px;
  margin-top: 8px;
}

.how .chip {
  display: inline-block;
  margin-top: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px dashed var(--brd-2);
  color: var(--text-mut);
}

.rules {
  margin-top: 54px;
  padding: 30px 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--brd);
}

.rules h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.rules ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rules li {
  position: relative;
  padding-left: 28px;
  color: var(--text-mut);
  font-size: 15px;
  line-height: 1.6;
}

.rules li::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.rules strong {
  color: var(--text);
}

@media (max-width: 880px) {
  .adv-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }
}
