body { background: var(--bg); color: var(--fg); font-family: var(--font); }

    .sub-wrap {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 60px 20px 80px;
    }

    .sub-logo {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #fff;
      text-decoration: none;
      margin-bottom: 48px;
    }

    .sub-hero {
      text-align: center;
      margin-bottom: 48px;
    }

    .sub-welcome {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .sub-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .sub-desc {
      font-size: 1rem;
      color: var(--text-soft, #888);
      max-width: 640px;
      line-height: 1.6;
    }

    /* Reuse pricing grid from style.css */
    .sub-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      width: 100%;
      max-width: 980px;
    }

    .sub-skip {
      margin-top: 32px;
      font-size: 0.875rem;
      color: var(--text-soft, #888);
    }

    .sub-skip a {
      color: rgba(255,255,255,0.45);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.15s;
    }

    .sub-skip a:hover { color: rgba(255,255,255,0.75); }

    .plan-required-banner {
      background: rgba(241,85,76,.12);
      border: 1px solid rgba(241,85,76,.3);
      border-radius: 10px;
      padding: 14px 18px;
      margin-bottom: 24px;
      font-size: 13px;
      color: #f1554c;
      text-align: center;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 780px) {
      .sub-grid { grid-template-columns: minmax(0, 440px); }
    }