.notify-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - var(--nav-h));
    }

    /* Left: brand */
    .nl-left {
      background: var(--inv-bg);
      padding: 64px 56px;
      display: flex; flex-direction: column; justify-content: center;
      transition: background .25s;
    }

    .nl-title {
      font-family: var(--font-head);
      font-size: clamp(44px, 5.5vw, 76px);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--inv-text);
      margin-bottom: 16px;
      transition: color .25s;
    }
    .nl-title span { color: var(--red); }

    .nl-desc {
      font-size: 15px;
      color: var(--inv-text);
      line-height: 1.75;
      max-width: 380px;
      margin-bottom: 48px;
    }

    /* Feature bullets */
    .nl-features { display: flex; flex-direction: column; gap: 18px; }
    .nl-feat {
      display: flex; align-items: flex-start; gap: 14px;
    }
    .nl-feat-icon {
      width: 42px; height: 42px;
      border-radius: var(--r);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .fi-red    { background: rgba(232,57,29,.15); }
    .fi-blue   { background: rgba(26,107,255,.15); }
    .fi-green  { background: rgba(11,155,110,.15); }
    .fi-amber  { background: rgba(217,119,6,.15); }
    .fi-teal   { background: rgba(8,145,178,.15); }

    .nl-feat-strong {
      font-family: var(--font-head);
      font-size: 14px; font-weight: 700;
      color: var(--inv-text);
      display: block; margin-bottom: 2px;
    }
    .nl-feat-sub {
      font-size: 13px;
      color: var(--inv-text);
      line-height: 1.5;
    }

    /* Stats row */
    .nl-stats {
      display: flex; gap: 28px; flex-wrap: wrap;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,.07);
    }
    .nl-stat-num {
      font-family: var(--font-mono);
      font-size: 28px; font-weight: 500;
      color: var(--inv-text);
      line-height: 1;
      transition: color .25s;
    }
    .nl-stat-label {
      font-family: var(--font-head);
      font-size: 11px; font-weight: 500;
      color: rgba(240,239,233,.3);
      text-transform: uppercase; letter-spacing: .08em;
      margin-top: 4px;
    }

    /* Right: form */
    .nl-right {
      padding: 64px 56px;
      display: flex; flex-direction: column; justify-content: center;
      background: var(--bg);
      transition: background .25s;
      overflow-y: auto;
    }

    /* Step indicator */
    .steps {
      display: flex; align-items: center; gap: 0;
      margin-bottom: 36px;
    }
    .stp {
      display: flex; align-items: center; gap: 8px;
      font-family: var(--font-head);
      font-size: 12px; font-weight: 600;
      color: var(--text-3);
    }
    .stp.done, .stp.now { color: var(--text); }
    .stp-num {
      width: 26px; height: 26px;
      border-radius: 50%;
      border: 1.5px solid var(--border-2);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-mono);
      font-size: 11px;
      transition: all .2s;
    }
    .stp.now  .stp-num { background: var(--text); color: var(--bg); border-color: var(--text); }
    .stp.done .stp-num { background: var(--green); color: #fff; border-color: var(--green); }
    .stp-line { width: 36px; height: 1px; background: var(--border); margin: 0 8px; }

    /* Form elements */
    .wu-label {
      font-family: var(--font-head);
      font-size: 11px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--text-2);
      display: block; margin-bottom: 6px;
    }
    .wu-input {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid var(--border);
      border-radius: var(--r);
      font-family: var(--font-head);
      font-size: 14px;
      background: var(--bg-card);
      color: var(--text);
      outline: none;
      transition: border-color .15s, background .25s, color .25s;
      margin-bottom: 18px;
    }
    .wu-input:focus { border-color: var(--text); }
    .wu-input::placeholder { color: var(--text-3); }

    /* Channel selector */
    .channel-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
    .ch-btn {
      padding: 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--r);
      background: none;
      cursor: pointer;
      display: flex; align-items: center; gap: 12px;
      transition: all .15s;
      text-align: left;
      color: var(--text-2);
    }
    .ch-btn:hover { border-color: var(--border-2); color: var(--text); }
    .ch-btn.on { background: var(--text); color: var(--bg); border-color: var(--text); }
    .ch-icon { font-size: 20px; flex-shrink: 0; }
    .ch-name { font-family: var(--font-head); font-size: 13px; font-weight: 700; display: block; }
    .ch-sub  { font-size: 11px; opacity: .6; }

    /* Interest chips */
    .interests { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
    .int-chip {
      padding: 10px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--r);
      background: none;
      cursor: pointer;
      font-family: var(--font-head);
      font-size: 13px; font-weight: 600;
      color: var(--text-2);
      display: flex; align-items: center; gap: 8px;
      transition: all .15s;
      text-align: left;
    }
    .int-chip:hover { border-color: var(--border-2); color: var(--text); }
    .int-chip.on { background: var(--text); color: var(--bg); border-color: var(--text); }

    /* Submit */
    .wu-submit {
      width: 100%;
      padding: 15px;
      background: var(--red);
      color: #fff; border: none;
      border-radius: var(--r);
      font-family: var(--font-head);
      font-size: 13px; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      cursor: pointer;
      transition: background .15s, transform .15s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .wu-submit:hover { background: #c42e17; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232,57,29,.3); }

    .form-title { font-family: var(--font-head); font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 4px; }
    .form-sub   { font-size: 14px; color: var(--text-2); margin-bottom: 28px; }

    /* Success */
    .success-wrap { text-align: center; padding: 20px 0; display: none; }
    .success-icon {
      width: 72px; height: 72px;
      background: var(--green-10);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 30px;
      margin: 0 auto 20px;
    }
    .success-title { font-family: var(--font-head); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 8px; }
    .success-sub   { font-size: 14px; color: var(--text-2); margin-bottom: 28px; }

    @media(max-width:991px){
      .notify-layout { grid-template-columns: 1fr; }
      .nl-left  { padding: 40px 24px; }
      .nl-right { padding: 40px 24px; min-height: auto; }
      .nl-stats { gap: 20px; }
    }
    @media(max-width:575px){
      .channel-row { grid-template-columns: 1fr; }
      .interests   { grid-template-columns: 1fr; }
    }