.notify-demo-v1 {
    --ndm-bg: #f4f7fc;
    --ndm-surface: #ffffff;
    --ndm-border: #dfe8f5;
    --ndm-text: #0f172a;
    --ndm-muted: #5d6b85;
    --ndm-blue: #2563eb;
    --ndm-teal: #0f766e;
    --ndm-amber: #d97706;
    --ndm-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    --ndm-shadow-sm: 0 16px 36px rgba(15, 23, 42, 0.08);
    color: var(--ndm-text);
    background: var(--ndm-bg);
}

.notify-demo-v1 * { box-sizing: border-box; }
.notify-demo-v1 .container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

.ndm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    color: #5d7596;
}

.ndm-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.24), transparent 18%),
        radial-gradient(circle at 65% 62%, rgba(15, 118, 110, 0.16), transparent 24%),
        linear-gradient(135deg, #050a13 0%, #0a1424 52%, #101d33 100%);
}

.ndm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
    pointer-events: none;
}

.ndm-hero .container,
.ndm-section .container { position: relative; z-index: 1; }

.ndm-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
    gap: 30px;
    align-items: center;
    padding: 42px 0 36px;
}

.ndm-hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(2.15rem, 3.5vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 820;
}

.ndm-lead {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.76);
}

.ndm-hero-actions,
.ndm-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.ndm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ndm-btn:hover { transform: translateY(-1px); }
.ndm-btn--primary { color: #fff; background: linear-gradient(135deg, #4f9bff 0%, #2b6fe7 100%); box-shadow: 0 14px 30px rgba(43,111,231,0.30); }
.ndm-btn--secondary { color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); }
.ndm-btn--secondary:hover { background: rgba(255,255,255,0.12); color: #fff; }
.ndm-btn--light { color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); }
.ndm-btn--light:hover { background: rgba(255,255,255,0.12); color: #fff; }

.ndm-login-card {
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.ndm-login-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.ndm-login-card__head strong { font-size: 1rem; }
.ndm-login-card__head span {
    color: rgba(255,255,255,0.64);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ndm-credential-list {
    display: grid;
    gap: 12px;
}

.ndm-credential-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(5, 10, 19, 0.42);
    border: 1px solid rgba(255,255,255,0.08);
}

.ndm-credential-item strong {
    display: block;
    margin-bottom: 7px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.60);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ndm-credential-item code {
    display: block;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.94rem;
    color: #fff;
    word-break: break-word;
}

.ndm-note {
    margin: 14px 0 0;
    color: rgba(255,255,255,0.70);
    line-height: 1.62;
    font-size: 0.9rem;
}

.ndm-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: #dbeafe;
    text-decoration: none;
    font-weight: 800;
}

.ndm-card-link:hover { color: #fff; }

.ndm-section { padding: 76px 0 0; }
.ndm-section--top { padding-top: 38px; }
.ndm-section--soft {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(248,251,255,0.9) 100%);
    padding-bottom: 10px;
}
.ndm-section--last { padding-bottom: 88px; }

.ndm-section-head {
    margin-bottom: 34px;
    text-align: center;
}
.ndm-section-head.compact { margin-bottom: 30px; }
.ndm-section-head h2,
.ndm-split-box h2,
.ndm-final-box h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.85rem);
    line-height: 1.04;
    color: #13213f;
    letter-spacing: -0.035em;
}
.ndm-section-head p,
.ndm-split-box p,
.ndm-final-box p {
    margin: 12px auto 0;
    max-width: 840px;
    color: var(--ndm-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.ndm-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ndm-info-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--ndm-border);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.95));
    box-shadow: var(--ndm-shadow-sm);
}

.ndm-info-card h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.14;
    color: #13213f;
}
.ndm-info-card p { margin: 12px 0 0; color: var(--ndm-muted); line-height: 1.68; }

.ndm-info-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.08rem;
    margin-bottom: 18px;
}
.ndm-info-card--blue .ndm-info-card__icon { color: var(--ndm-blue); background: rgba(37,99,235,0.10); }
.ndm-info-card--teal .ndm-info-card__icon { color: var(--ndm-teal); background: rgba(15,118,110,0.10); }
.ndm-info-card--amber .ndm-info-card__icon { color: var(--ndm-amber); background: rgba(217,119,6,0.11); }

.ndm-split-box,
.ndm-final-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.66fr);
    gap: 26px;
    align-items: center;
    padding: 32px;
    border-radius: 30px;
    border: 1px solid var(--ndm-border);
    background: #fff;
    box-shadow: var(--ndm-shadow-sm);
}

.ndm-check-list {
    display: grid;
    gap: 12px;
}

.ndm-check-list span {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 13px 14px;
    border-radius: 16px;
    color: #355278;
    background: #eef4ff;
    font-weight: 740;
}

.ndm-check-list i { color: var(--ndm-teal); }
.ndm-check-list .fa-triangle-exclamation { color: var(--ndm-amber); }

.ndm-final-box {
    color: #fff;
    background:
        radial-gradient(circle at right center, rgba(37,99,235,0.24), transparent 18%),
        linear-gradient(135deg, #09111f 0%, #10203a 100%);
    border: 0;
    box-shadow: 0 24px 60px rgba(8,16,29,0.20);
}
.ndm-final-box .ndm-eyebrow,
.ndm-final-box h2 { color: #fff; }
.ndm-final-box p { color: rgba(255,255,255,0.76); margin-left: 0; }
.ndm-final-actions { justify-content: flex-end; }

@media (max-width: 1180px) {
    .ndm-hero__inner,
    .ndm-card-grid,
    .ndm-split-box,
    .ndm-final-box {
        grid-template-columns: 1fr;
    }
    .ndm-final-actions { justify-content: flex-start; }
}

@media (max-width: 900px) {
    .notify-demo-v1 .container { width: min(1240px, calc(100% - 32px)); }
    .ndm-hero__inner { padding: 34px 0 28px; }
    .ndm-section { padding-top: 58px; }
}

@media (max-width: 640px) {
    .notify-demo-v1 .container { width: min(1240px, calc(100% - 28px)); }
    .ndm-login-card,
    .ndm-info-card,
    .ndm-split-box,
    .ndm-final-box { padding: 20px; border-radius: 24px; }
    .ndm-hero-actions,
    .ndm-final-actions { flex-direction: column; align-items: stretch; }
    .ndm-btn { width: 100%; }
}
