html, body { height: 100%; }
    .wl-page {
      min-height: 100vh;
      background: var(--color-bg);
      display: flex;
      flex-direction: column;
    }
    .wl-hero {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 1.5rem;
      text-align: center;
      overflow: hidden;
    }
    .wl-canvas { position: absolute; inset: 0; z-index: 0; }
    .wl-bg-glow-1 {
      position: absolute;
      top: -200px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(31,91,153,0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .wl-bg-glow-2 {
      position: absolute;
      bottom: -100px; right: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(237,69,36,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .wl-content {
      position: relative;
      z-index: 1;
      max-width: 680px;
      margin: 0 auto;
    }
    .wl-logo { margin-bottom: 3rem; }
    .wl-logo img { height: 50px; }
    .wl-h1 {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 800;
      line-height: 1.1;
      color: var(--color-text);
      margin: 1.5rem 0 1rem;
    }
    .wl-subtitle {
      font-size: 1.1rem;
      color: var(--color-muted);
      line-height: 1.7;
      margin-bottom: 2.5rem;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }
    .wl-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 480px;
      margin: 0 auto 2rem;
    }
    .wl-input {
      width: 100%;
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: 0.95rem 1.25rem;
      font-size: 1rem;
      color: var(--color-text);
      font-family: inherit;
      outline: none;
      transition: border-color 0.25s;
      box-sizing: border-box;
    }
    .wl-input:focus { border-color: var(--color-primary); }
    .wl-input option { background: var(--color-surface); }
    .wl-success {
      display: none;
      background: rgba(31,91,153,0.12);
      border: 1px solid rgba(82,147,207,0.25);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      text-align: center;
      margin: 1rem 0;
    }
    .wl-success h3 { color: var(--color-accent); margin-bottom: 0.5rem; }
    .wl-success p { color: var(--color-muted); font-size: 0.95rem; }
    .social-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      font-size: 0.9rem;
      color: var(--color-muted);
      margin-bottom: 2.5rem;
    }
    .social-proof-avatars { display: flex; }
    .social-proof-avatar {
      width: 30px; height: 30px;
      border-radius: 50%;
      border: 2px solid var(--color-bg);
      margin-left: -8px;
      object-fit: cover;
      background: var(--color-surface);
    }
    .social-proof-avatars .social-proof-avatar:first-child { margin-left: 0; }
    .countdown-wrapper {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      margin: 2rem 0 2.5rem;
      flex-wrap: wrap;
    }
    .countdown-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 70px;
    }
    .countdown-num {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 800;
      color: var(--color-text);
      line-height: 1;
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 0.5rem 1rem;
      min-width: 80px;
      text-align: center;
    }
    .countdown-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-muted);
      margin-top: 0.4rem;
    }
    .countdown-sep {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--color-primary);
      align-self: flex-start;
      padding-top: 0.5rem;
    }
    .wl-social-links {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 1.5rem;
    }
    .wl-footer-bar {
      background: var(--color-surface);
      border-top: 1px solid var(--color-border);
      padding: 1.25rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.8rem;
      color: var(--color-muted);
    }
    .wl-footer-links { display: flex; gap: 1.5rem; }
    .wl-footer-links a { color: var(--color-muted); font-size: 0.8rem; }
    .wl-footer-links a:hover { color: var(--color-accent); }
    @media(max-width: 480px) {
      .countdown-num { font-size: 2rem; min-width: 60px; }
      .countdown-sep { font-size: 1.75rem; }
    }

    .wl-submit-btn {
      width: 100%;
      justify-content: center;
    }

    .wl-countdown-launched {
      color: var(--color-accent);
      font-size: 1.25rem;
      font-weight: 700;
    }
