/* ============================================================
   StepZeno for iPhone — standalone landing page
   Self-contained, no dependency on apps.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:       #070810;
    --bg2:      #0b0d1c;
    --bg3:      #101226;
    --blue:     #4eb8ff;
    --blue-dim: rgba(78, 184, 255, 0.14);
    --violet:   #a78bfa;
    --t1:       #eef2ff;
    --t2:       #7f96be;
    --t3:       #3d5070;
    --border:   rgba(255, 255, 255, 0.07);
    --bblue:    rgba(78, 184, 255, 0.22);
}

html { scroll-behavior: smooth; }

body {
    font-family: "Sora", "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--t1);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────────────────── */
.sz-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    background: rgba(7, 8, 16, 0.78);
    border-bottom: 1px solid var(--border);
}

.sz-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sz-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--t1);
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.sz-nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(78, 184, 255, 0.3);
}

.sz-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--t2);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.sz-back-btn:hover {
    color: var(--t1);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
}

.sz-back-arrow {
    font-size: 15px;
    line-height: 1;
}

/* ── WRAPPER ──────────────────────────────────────────────── */
.sz-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.sz-hero {
    position: relative;
    min-height: calc(100dvh - 60px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Atmospheric background */
.sz-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 700px at 80%  -5%, rgba(78, 184, 255, 0.1),  transparent 60%),
        radial-gradient(600px 500px at -10% 85%, rgba(130, 100, 255, 0.07), transparent 60%);
    pointer-events: none;
}

/* Grid texture */
.sz-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.017) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.017) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.sz-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr min(420px, 44%);
    gap: 48px;
    align-items: center;
    padding: 72px 28px 80px;
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
}

/* Badge */
.sz-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 13px 5px 8px;
    border-radius: 999px;
    border: 1px solid rgba(78, 184, 255, 0.25);
    background: rgba(78, 184, 255, 0.08);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--blue);
    margin-bottom: 26px;
}

.sz-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 8px var(--blue);
    animation: sz-pulse 2.4s ease-in-out infinite;
}

@keyframes sz-pulse {
    0%, 100% { opacity: 1;   transform: scale(1);   }
    50%       { opacity: 0.3; transform: scale(0.6); }
}

/* H1 */
.sz-hero h1 {
    font-family: "Outfit", "Trebuchet MS", sans-serif;
    font-size: clamp(44px, 5.2vw, 74px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.035em;
    color: var(--t1);
    margin-bottom: 20px;
}

.sz-grad {
    background: linear-gradient(125deg, #4eb8ff 0%, #a78bfa 55%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sz-hero-sub {
    font-size: 17.5px;
    line-height: 1.74;
    color: var(--t2);
    max-width: 50ch;
    margin-bottom: 36px;
}

/* Buttons row */
.sz-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* App Store button */
.sz-store {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 12px 22px;
    background: var(--t1);
    color: #07080f;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.sz-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1);
    color: #07080f;
}

.sz-store-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.sz-store-text small {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0.58;
    font-family: "Sora", sans-serif;
}

.sz-store-text strong {
    font-size: 18px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    letter-spacing: -0.01em;
}

/* Ghost button */
.sz-ghost {
    display: inline-flex;
    align-items: center;
    padding: 11px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    color: var(--t2);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.sz-ghost:hover {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--t1);
    background: rgba(255, 255, 255, 0.04);
}

/* Hero phone */
.sz-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sz-hero-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 184, 255, 0.18) 0%, transparent 65%);
    pointer-events: none;
    animation: sz-float 5.5s ease-in-out infinite;
}

.sz-hero-phone {
    position: relative;
    z-index: 1;
    animation: sz-float 5.5s ease-in-out infinite;
}

@keyframes sz-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}

/* ── PHONE FRAME (reusable) ───────────────────────────────── */
.sz-phone {
    background: #07090f;
    border-radius: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.11);
    padding: 10px 7px 14px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(78, 184, 255, 0.06);
}

.sz-phone-island {
    width: 54px;
    height: 18px;
    background: #000;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 7px;
}

.sz-phone-screen {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

.sz-phone-screen img {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top;
}

.sz-hero-phone .sz-phone {
    width: min(240px, 46vw);
    transition: transform 0.25s, box-shadow 0.25s;
}

.sz-hero-phone .sz-phone:hover {
    box-shadow:
        0 0 0 1px rgba(78, 184, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(78, 184, 255, 0.12);
}

/* ── STATS STRIP ──────────────────────────────────────────── */
.sz-stats {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    padding: 20px 28px;
}

.sz-stats-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.sz-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 36px;
}

.sz-stat + .sz-stat {
    border-left: 1px solid var(--border);
}

.sz-stat-num {
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--t1);
    line-height: 1;
}

.sz-stat-num span {
    background: linear-gradient(130deg, var(--blue), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sz-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--t3);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* ── BENTO FEATURES ───────────────────────────────────────── */
.sz-features {
    padding: 100px 28px;
    max-width: 1120px;
    margin: 0 auto;
}

.sz-section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.sz-section-h {
    font-family: "Outfit", sans-serif;
    font-size: clamp(30px, 3.4vw, 50px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.028em;
    color: var(--t1);
    margin-bottom: 48px;
    max-width: 20ch;
}

.sz-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
        "a a b"
        "c d b"
        "e e f";
    gap: 14px;
}

/* Base bento card */
.sz-bc {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg2);
    padding: 28px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.25s, transform 0.22s;
}

.sz-bc:hover {
    border-color: var(--bblue);
    transform: translateY(-2px);
}

.sz-bc-a { grid-area: a; }
.sz-bc-b { grid-area: b; display: flex; flex-direction: column; }
.sz-bc-c { grid-area: c; }
.sz-bc-d { grid-area: d; }
.sz-bc-e { grid-area: e; display: flex; align-items: center; gap: 32px; }
.sz-bc-f { grid-area: f; }

/* Card icon */
.sz-bc-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.sz-ic-blue   { background: rgba(78,  184, 255, 0.12); }
.sz-ic-purple { background: rgba(167, 139, 250, 0.12); }
.sz-ic-teal   { background: rgba(45,  212, 191, 0.12); }
.sz-ic-orange { background: rgba(251, 146,  60, 0.12); }
.sz-ic-green  { background: rgba(74,  222, 128, 0.12); }
.sz-ic-pink   { background: rgba(244, 114, 182, 0.12); }

.sz-bc-title {
    font-family: "Outfit", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 8px;
    line-height: 1.25;
}

.sz-bc-desc {
    font-size: 14px;
    line-height: 1.66;
    color: var(--t2);
}

/* Mini bar chart (card A) */
.sz-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 56px;
    margin-top: 24px;
}

.sz-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(78, 184, 255, 0.22);
    transition: background 0.2s;
}

.sz-bar.active {
    background: var(--blue);
}

.sz-bar.zero { height: 4% !important; opacity: 0.2; }

/* Big number (card E - streaks) */
.sz-big-num {
    font-family: "Outfit", sans-serif;
    font-size: clamp(56px, 6vw, 80px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(130deg, var(--blue), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

/* Apple health card (card B) visual */
.sz-health-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 24px auto 0;
    position: relative;
    flex-shrink: 0;
}

.sz-health-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ff375f;
    border-right-color: #ff375f;
    animation: sz-ring-spin 3s linear infinite;
}

.sz-health-ring::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #30d158;
    animation: sz-ring-spin 4s linear infinite reverse;
}

@keyframes sz-ring-spin {
    to { transform: rotate(360deg); }
}

.sz-bc-b .sz-bc-desc {
    margin-top: auto;
    padding-top: 20px;
}

/* Glow accent on card corners */
.sz-bc-a::before,
.sz-bc-e::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 184, 255, 0.07), transparent 70%);
    pointer-events: none;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.sz-gallery {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
}

.sz-gallery-head {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
    margin-bottom: 44px;
}

.sz-gallery-grid {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

/* Gallery phone frame */
.sz-gphone {
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.sz-gphone:hover {
    transform: translateY(-6px) scale(1.02);
}

.sz-gphone:hover .sz-phone {
    box-shadow:
        0 0 0 1px rgba(78, 184, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 70px rgba(78, 184, 255, 0.12);
}

.sz-gphone-label {
    margin-top: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t3);
    text-align: center;
}

/* ── CTA ──────────────────────────────────────────────────── */
.sz-cta {
    padding: 120px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sz-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 600px at 50% 50%, rgba(78, 184, 255, 0.08), transparent 65%);
    pointer-events: none;
}

.sz-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.sz-cta h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.03em;
    color: var(--t1);
    margin-bottom: 16px;
}

.sz-cta p {
    font-size: 17px;
    line-height: 1.72;
    color: var(--t2);
    margin-bottom: 36px;
}

.sz-cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sz-cta-links {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sz-cta-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--t3);
    text-decoration: none;
    transition: color 0.2s;
}

.sz-cta-link:hover { color: var(--t2); }

/* ── FOOTER ───────────────────────────────────────────────── */
.sz-footer {
    border-top: 1px solid var(--border);
    padding: 24px 28px;
}

.sz-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sz-footer-copy {
    font-size: 12.5px;
    color: var(--t3);
}

.sz-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sz-footer-links a {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--t3);
    text-decoration: none;
    transition: color 0.2s;
}

.sz-footer-links a:hover { color: var(--t2); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .sz-hero-inner {
        grid-template-columns: 1fr;
        padding: 52px 24px 60px;
        gap: 40px;
    }

    .sz-hero-visual { order: -1; }

    .sz-hero-phone .sz-phone { width: min(190px, 52vw); }
    .sz-hero-glow { width: 260px; height: 260px; }

    .sz-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "a a"
            "b c"
            "d e"
            "e f";
    }

    .sz-bc-e { flex-direction: column; align-items: flex-start; gap: 16px; }

    .sz-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sz-stat { padding: 10px 22px; }
}

@media (max-width: 640px) {
    .sz-nav-inner { padding: 0 20px; }
    .sz-features  { padding: 64px 20px; }
    .sz-gallery   { padding: 56px 0; }
    .sz-gallery-grid { padding: 0 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .sz-gallery-head { padding: 0 20px; }
    .sz-cta       { padding: 72px 20px; }
    .sz-footer    { padding: 20px; }

    .sz-bento {
        grid-template-columns: 1fr;
        grid-template-areas: "a" "b" "c" "d" "e" "f";
    }

    .sz-bc-e { flex-direction: column; align-items: flex-start; }

    .sz-stats-inner { gap: 0; }
    .sz-stat { padding: 10px 16px; }
    .sz-stat + .sz-stat { border-left: none; border-top: 1px solid var(--border); width: 100%; }
    .sz-stats-inner { flex-direction: column; align-items: stretch; }
    .sz-stat { align-items: flex-start; }
}

/* ── WAITLIST SUBSCRIBE ───────────────────────────────────── */
.sz-subscribe {
    padding: 100px 28px;
    position: relative;
    overflow: hidden;
}

.sz-subscribe::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 500px at 50% 50%, rgba(78, 184, 255, 0.07), transparent 65%);
    pointer-events: none;
}

/* Subtle top + bottom border lines */
.sz-subscribe::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 184, 255, 0.3), transparent);
}

.sz-sub-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.sz-sub-h {
    font-family: "Outfit", sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.03em;
    color: var(--t1);
    margin: 0 0 16px;
}

.sz-sub-copy {
    font-size: 16px;
    line-height: 1.72;
    color: var(--t2);
    margin: 0 0 36px;
    max-width: 44ch;
    margin-left: auto;
    margin-right: auto;
}

/* Honeypot — visually hidden, ignored by real users */
.sz-sub-hp {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.sz-sub-row {
    display: flex;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto;
}

.sz-sub-input {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    padding: 14px 18px;
    color: var(--t1);
    font-size: 15px;
    font-family: "Sora", sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.sz-sub-input::placeholder { color: var(--t3); }

.sz-sub-input:focus {
    border-color: rgba(78, 184, 255, 0.5);
    background: rgba(78, 184, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(78, 184, 255, 0.1);
}

.sz-sub-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 14px 24px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, #4eb8ff, #2270f2);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(34, 112, 242, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.sz-sub-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(34, 112, 242, 0.45);
}

.sz-sub-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Loading shimmer on button */
.sz-sub-btn.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    animation: sz-shimmer 1.2s infinite;
}

@keyframes sz-shimmer {
    from { transform: translateX(-100%); }
    to   { transform: translateX(100%);  }
}

/* Feedback message */
.sz-sub-msg {
    margin: 14px auto 0;
    max-width: 460px;
    font-size: 13.5px;
    font-weight: 600;
    min-height: 20px;
    transition: opacity 0.2s;
}

.sz-sub-msg.err { color: #f87171; }
.sz-sub-msg.ok  { color: #4ade80; }

/* Success replacement */
.sz-sub-success {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #4ade80;
    line-height: 1.6;
    padding: 20px;
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 14px;
    background: rgba(74, 222, 128, 0.07);
}

.sz-sub-note {
    margin: 18px auto 0;
    font-size: 12px;
    color: var(--t3);
    max-width: 40ch;
}

@media (max-width: 640px) {
    .sz-subscribe { padding: 72px 20px; }

    .sz-sub-row { flex-direction: column; }

    .sz-sub-btn { width: 100%; height: 52px; }
}
