    .page-wrap {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 100px 2.5rem 80px;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .soon-label {
      font-size: 0.625rem;
      font-weight: 500;
      color: var(--purple);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }

    .soon-title {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 600;
      letter-spacing: -0.03em;
      color: var(--text);
      line-height: 1.05;
      margin-bottom: 1.25rem;
    }

    .soon-sub {
      font-size: 1rem;
      font-weight: 300;
      color: var(--text-2);
      max-width: 380px;
      line-height: 1.7;
      margin-bottom: 3rem;
    }

    /* Social icons */
    .social-row {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .social-link {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.6rem 1.125rem;
      font-size: 0.8125rem;
      font-weight: 400;
      color: var(--text-2);
      text-decoration: none;
      background: var(--surface);
      border: 1px solid var(--border-dim);
      border-radius: 8px;
      transition: border-color 0.22s, color 0.22s, background 0.22s;
    }
    .social-link:hover {
      border-color: var(--border);
      color: var(--text);
      background: var(--surface-hover);
    }
    .social-link svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      fill: currentColor;
    }

    .divider {
      width: 1px;
      height: 48px;
      background: var(--border-dim);
      margin: 3rem auto;
    }

    .back-link {
      font-size: 0.8125rem;
      color: var(--text-3);
      text-decoration: none;
      font-weight: 400;
      transition: color 0.2s;
    }
    .back-link:hover { color: var(--text-2); }
