/* ============================================================
   MPO188 — Landing Page (static)
   Palette: Cool Alpine Blue on dark. Typography: Outfit + Manrope
   ============================================================ */

:root {
    --bg: #080c16;
    --bg-2: #050810;
    --text: #ffffff;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --primary: #38bdf8;
    --primary-hover: #7dd3fc;
    --primary-ink: #0b1320;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}
html {
    background-color: var(--bg);
}
body {
    color: var(--text);
    font-family:
        "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
        sans-serif;
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
h1,
h2,
h3,
h4,
p {
    margin: 0;
}
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 6px;
}
::selection {
    background: rgba(56, 189, 248, 0.3);
    color: #fff;
}

/* Typography helpers */
.display {
    font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
    letter-spacing: -0.01em;
}
.text-alpine-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #bae6fd 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* ===== Alpine fixed background ===== */
.alpine-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: url("https://images.pexels.com/photos/35923089/pexels-photo-35923089.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.alpine-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse at 20% 10%,
            rgba(56, 189, 248, 0.12),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(8, 12, 22, 0.35) 0%,
            rgba(8, 12, 22, 0.55) 45%,
            rgba(8, 12, 22, 0.85) 100%
        );
}
.alpine-grain {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Glass surfaces */
.glass {
    background: rgba(11, 19, 32, 0.6);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}
.glass-strong {
    background: rgba(8, 12, 22, 0.85);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 10px;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.25s ease,
        color 0.2s ease;
    white-space: nowrap;
}
.btn-pill {
    border-radius: 999px;
}
.btn-lg {
    padding: 18px 30px;
    font-size: 15px;
}
.btn-sky {
    background: var(--primary);
    color: var(--primary-ink);
    font-weight: 800;
    box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.45);
}
.btn-sky:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px -10px rgba(56, 189, 248, 0.6);
}
.btn-sky:active {
    transform: translateY(0);
}
.btn-ghost {
    color: #cbd5e1;
    background: transparent;
}
.btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
}
.nav-inner-wrap {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}
@media (min-width: 1024px) {
    .nav {
        padding: 14px 40px;
    }
}
.logo {
    display: inline-flex;
    align-items: center;
}
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(56, 189, 248, 0.25));
    transition: transform 0.2s ease;
}
.logo:hover .logo-img {
    transform: translateY(-1px);
}
.nav-links {
    display: none;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
}
.nav-links a {
    padding: 6px 2px;
    transition: color 0.2s ease;
}
.nav-links a:hover {
    color: #fff;
}
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* ===== Hero ===== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 700;
    color: rgba(186, 230, 253, 0.9);
    margin-bottom: 22px;
}
.eyebrow.small {
    font-size: 10px;
    letter-spacing: 0.3em;
    margin-bottom: 12px;
}
.eyebrow-bar {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: rgba(186, 230, 253, 0.8);
}
.hero {
    padding-top: 80px;
    padding-bottom: 100px;
}
@media (min-width: 1024px) {
    .hero {
        padding-top: 128px;
        padding-bottom: 160px;
    }
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: end;
}
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 8fr 4fr;
        gap: 32px;
    }
}
.hero-title {
    font-weight: 900;
    font-size: clamp(44px, 7vw, 80px);
    line-height: 0.95;
    letter-spacing: -0.02em;
}
.hero-title span {
    display: block;
}
.hero-sub {
    margin-top: 28px;
    color: rgba(203, 213, 225, 0.9);
    font-size: 17px;
    line-height: 1.6;
    max-width: 640px;
}
.hero-cta {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-learn {
    font-size: 14px;
    color: #cbd5e1;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 8px;
    padding: 10px 8px;
    transition: all 0.2s ease;
}
.hero-learn:hover {
    color: #fff;
    text-decoration-color: var(--primary);
}
.icon-sm {
    width: 16px;
    height: 16px;
}
.icon-xs {
    width: 14px;
    height: 14px;
}
.icon-xs.sky {
    color: #7dd3fc;
    flex: none;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 640px;
    margin-top: 52px;
}
@media (min-width: 640px) {
    .stats {
        gap: 22px;
    }
}
.stat {
    padding: 14px 18px;
    border-radius: 12px;
}
.stat-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #7dd3fc;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}
.stat-head span {
    color: #94a3b8;
}
.stat-val {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

/* Hero bonus card */
.hero-bonus {
    padding: 28px;
    display: none;
}
@media (min-width: 1024px) {
    .hero-bonus {
        display: block;
    }
}
.bonus-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 14px;
}
.bonus-percent {
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    font-size: 54px;
    line-height: 1;
    letter-spacing: -0.02em;
}
.bonus-percent span {
    color: var(--primary);
}
.bonus-text {
    margin-top: 14px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.55;
}
.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #cbd5e1;
}
.bonus-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
    margin-top: 7px;
    flex: none;
}
.hairline {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    margin: 20px 0;
}

/* ===== Ticker ===== */
.ticker {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(8, 12, 22, 0.6);
}
.ticker-track {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 20px 0;
    white-space: nowrap;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
    will-change: transform;
}
.ticker-track span {
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.7);
}
.ticker-track .tdot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.8);
}
.ticker-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 96px;
    pointer-events: none;
}
.ticker-fade-l {
    left: 0;
    background: linear-gradient(to right, #080c16, transparent);
}
.ticker-fade-r {
    right: 0;
    background: linear-gradient(to left, #080c16, transparent);
}
@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===== Sections ===== */
.section {
    padding: 96px 24px;
}
@media (min-width: 1024px) {
    .section {
        padding: 128px 40px;
    }
}
.section-head {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 56px;
}
@media (min-width: 1024px) {
    .section-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
.section-title {
    font-weight: 900;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 760px;
}
.section-lede {
    color: rgba(203, 213, 225, 0.9);
    font-size: 17px;
    max-width: 360px;
}

/* ===== Article sandwich ===== */
.sandwich {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 1024px) {
    .sandwich {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 28px;
    }
}
.card {
    border-radius: 16px;
    overflow: hidden;
}
.card-article {
    padding: 32px;
    display: flex;
    flex-direction: column;
}
@media (min-width: 1024px) {
    .card-article {
        padding: 40px;
    }
}
.card-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.tag-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(125, 211, 252, 0.3);
    color: #7dd3fc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.tag-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: #94a3b8;
}
.card-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 18px;
}
.card-body {
    color: rgba(203, 213, 225, 0.9);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 16px;
}
.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #cbd5e1;
    font-size: 14px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Middle image card */
.card-image {
    position: relative;
    min-height: 420px;
    background: rgba(8, 12, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
}
@media (min-width: 1024px) {
    .card-image {
        min-height: 580px;
    }
}
.card-image > img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 12, 22, 0.9) 0%,
        rgba(8, 12, 22, 0.25) 55%,
        transparent 100%
    );
}
.card-image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px;
}
.card-image-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.card-image-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.15;
}
.float-slow {
    animation: floatY 8s ease-in-out infinite;
}
@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== Reviews ===== */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
}
.rating-stars {
    display: inline-flex;
    gap: 2px;
    color: #7dd3fc;
}
.rating-stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.rating-stars.sm svg {
    width: 16px;
    height: 16px;
}
.rating-score {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}
.rating-count {
    margin-top: 4px;
    font-size: 12px;
    color: #94a3b8;
}

.reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .reviews {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .reviews {
        grid-template-columns: repeat(3, 1fr);
    }
}
.review {
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease;
}
.review:hover {
    border-color: rgba(125, 211, 252, 0.3);
}
.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.quote {
    width: 20px;
    height: 20px;
    color: rgba(125, 211, 252, 0.6);
}
.review-body {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
}
.review-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(125, 211, 252, 0.3);
    color: #bae6fd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex: none;
}
.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}
.reviewer-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    border-top: 1px solid var(--border);
    background: rgba(5, 8, 16, 0.8);
    padding-top: 80px;
    padding-bottom: 40px;
}
.footer-cta {
    padding: 32px;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
@media (min-width: 1024px) {
    .footer-cta {
        padding: 48px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.footer-cta-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}
.footer-brand {
    max-width: 360px;
}
.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
}
.footer-brand-text {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.65;
}
.socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.social {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(11, 19, 32, 0.6);
    border: 1px solid var(--border);
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}
.social svg {
    width: 16px;
    height: 16px;
}
.social:hover {
    color: #7dd3fc;
    border-color: rgba(125, 211, 252, 0.4);
}
.footer-col-title {
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 20px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col a {
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: #7dd3fc;
}
.watermark {
    user-select: none;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    font-size: clamp(96px, 18vw, 300px);
    color: rgba(255, 255, 255, 0.04);
    margin-top: 80px;
    text-align: left;
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #64748b;
    font-size: 12px;
}
@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ===== Dialog ===== */
.dialog-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(2, 5, 12, 0.72);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.dialog-backdrop.is-open {
    display: flex;
    opacity: 1;
    animation: dlgFade 0.2s ease both;
}
@keyframes dlgFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.dialog {
    position: relative;
    width: 100%;
    max-width: 460px;
    padding: 32px;
    border-radius: 16px;
    color: #fff;
    animation: dlgRise 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes dlgRise {
    from {
        transform: translateY(12px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.dialog-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-size: 22px;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}
.dialog-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.dialog-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.dialog-tag .tag-badge {
    width: 32px;
    height: 32px;
}
.dialog-title {
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.dialog-sub {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #94a3b8;
}
.field input {
    height: 44px;
    padding: 0 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}
.field input::placeholder {
    color: #64748b;
}
.field input:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
    background: rgba(255, 255, 255, 0.08);
}
.form-error {
    color: #fca5a5;
    font-size: 13px;
    min-height: 1em;
}
.dialog-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 8px;
}

.dialog-success {
    text-align: center;
    padding: 24px 8px;
}
.dialog-success h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.dialog-success p {
    color: #94a3b8;
    font-size: 14px;
    max-width: 340px;
    margin: 0 auto 26px;
    line-height: 1.65;
}
.dialog-success .success-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(125, 211, 252, 0.4);
    color: #7dd3fc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.dialog-success .success-icon svg {
    width: 28px;
    height: 28px;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -16px);
    z-index: 100;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(8, 12, 22, 0.92);
    border: 1px solid var(--border);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}
.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}
.toast[data-type="success"] {
    border-color: rgba(125, 211, 252, 0.45);
    box-shadow: 0 10px 40px -10px rgba(56, 189, 248, 0.4);
}
.toast[data-type="error"] {
    border-color: rgba(248, 113, 113, 0.45);
    box-shadow: 0 10px 40px -10px rgba(248, 113, 113, 0.3);
}

/* ===== Rise entrance ===== */
@keyframes riseIn {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.rise {
    animation: riseIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.rise-1 {
    animation-delay: 0.1s;
}
.rise-2 {
    animation-delay: 0.25s;
}
.rise-3 {
    animation-delay: 0.4s;
}
.rise-4 {
    animation-delay: 0.55s;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
