/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue:        #2563EB;
    --blue-mid:    #4F46E5;
    --purple:      #7C3AED;
    --green:       #16a34a;
    --orange:      #EA580C;

    --bg:          #F4F3FF;
    --bg-2:        #EEF2FF;
    --white:       #FFFFFF;
    --border:      rgba(0,0,0,0.07);
    --border-2:    rgba(0,0,0,0.11);

    --text-1:      #111827;
    --text-2:      #4B5563;
    --text-3:      #9CA3AF;

    --radius-sm:   10px;
    --radius:      16px;
    --radius-lg:   24px;
    --radius-xl:   32px;

    --font: 'Mona Sans', system-ui, -apple-system, sans-serif;

    --shadow-card: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg:   0 20px 60px rgba(79,70,229,0.12), 0 4px 20px rgba(0,0,0,0.08);
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-1);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ============================================================
   BACKGROUND
   ============================================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124,58,237,0.1) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(37,99,235,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(244,243,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 750;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-1);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    z-index: 1;
    padding: 64px 24px 0;
    text-align: center;
    overflow: hidden;
}

.hero__inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Large centered logo + name */
.hero__logo-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.hero__logo-mark svg { transform: scale(0.8); transform-origin: left;margin-right: -8px;}

.hero__logo-name {
    font-size: 1.15rem;
    font-weight: 750;
    letter-spacing: -0.025em;
    color: var(--text-1);
}

/* Badge pill */
.badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    border: 1.5px solid rgba(79,70,229,0.3);
    background: rgba(255,255,255,0.7);
    color: var(--blue-mid);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin: 10px 0 10px;
}

/* Headline */
.hero__headline {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.045em;
    color: var(--text-1);
}

.hero__headline > span{
    color: #3440eb;
}
.hero__headline > span > span {
    display: inline-block;
    vertical-align: -5px;
    margin-left: -5px;
    transform-origin: top center;
    transform: scale(0.8);
    animation: bell-wiggle 3s ease-in-out 1.2s infinite;
}

@keyframes bell-wiggle {
    0%,  55%, 100% { transform: scale(0.8) rotate(0deg); }
    60%             { transform: scale(0.8) rotate(18deg); }
    65%             { transform: scale(0.8) rotate(-16deg); }
    70%             { transform: scale(0.8) rotate(14deg); }
    75%             { transform: scale(0.8) rotate(-10deg); }
    80%             { transform: scale(0.8) rotate(6deg); }
    85%             { transform: scale(0.8) rotate(0deg); }
}
.hero__sub {
    font-size: 1.05rem;
    color: var(--text-1);
    max-width: 520px;
    line-height: 1.7;
}

/* ============================================================
   SIGNUP FORM
   ============================================================ */
.signup-wrap {
    width: 100%;
    max-width: 420px;
    margin-top: 8px;
    padding-bottom: 22px; /* room for absolutely-positioned field errors */
}

.signup-form {}

.signup-row {
    display: flex;
    gap: 10px;
    background: var(--white);
    border: 1.5px solid var(--border-2);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    align-items: center;
}

.signup-row-wrap {
    position: relative;
}

.form-hint {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    background: var(--white);
    border: 1.5px solid var(--border-2);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(-4px);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

.form-hint.is-visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

.form-hint::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    width: 7px;
    height: 7px;
    background: var(--white);
    border-right: 1.5px solid var(--border-2);
    border-top: 1.5px solid var(--border-2);
    transform: translateY(-50%) rotate(45deg);
    border-radius: 1px;
}

.field-error { display: none; }

.signup-field {
    flex: 1;
    min-width: 0;
    position: relative;
}

.signup-field input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text-1);
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
    display: block;
    text-align: left;
}

.signup-field input::placeholder { color: var(--text-3); }

.signup-field input:focus { background: var(--bg); }

.signup-field input.is-invalid { background: #FEF2F2; }

.field-error {
    position: absolute;
    top: calc(100% + 6px);
    left: 10px;
    font-size: 0.73rem;
    color: #EF4444;
    white-space: nowrap;
}

/* Submit button */
.btn-submit {
    flex-shrink: 0;
    padding: 10px 22px;
    border: none;
    border-radius: var(--radius-sm);
    background: #3440eb;
    color: #fff;
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 16px rgba(79,70,229,0.35);
    white-space: nowrap;
    align-self: center;
}

.btn-submit:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(79,70,229,0.45);
}

.btn-submit:active:not(:disabled) { transform: none; }
.btn-submit:disabled { cursor: not-allowed; opacity: 0.6; }

/* Spinner */
.btn-submit__spinner {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.btn-submit.is-loading .btn-submit__spinner { display: block; }
.btn-submit.is-loading .btn-submit__label   { opacity: 0.75; }

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

.form-privacy {
    font-size: 0.74rem;
    color: var(--text-3);
    margin-top: 10px;
}

.form-privacy a {
    text-decoration: underline;
}

/* SUCCESS STATE */
.success-state[hidden] { display: none !important; }

.success-state {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1.5px solid #BBF7D0;
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    text-align: left;
    animation: fadeUp 0.35s ease;
    box-shadow: var(--shadow-lg);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.success-icon { flex-shrink: 0; }

.success-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 2px;
}

.success-body {
    font-size: 0.85rem;
    color: var(--text-2);
}

/* reCAPTCHA notice */
.recaptcha-notice {
    font-size: 0.72rem;
    color: var(--text-3);
}

.recaptcha-notice a {
    color: var(--text-3);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================================
   PRODUCT MOCKUP
   ============================================================ */
.mockup-wrap {
    width: calc(100% + 300px);
    margin-left: -150px;
    margin-right: -150px;
    margin-top: 16px;
}

.mockup-card {
    background: var(--white);
    border: 1.5px solid var(--border-2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: -100px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.8) inset,
        var(--shadow-lg),
        0 60px 120px rgba(79,70,229,0.1);
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Browser frame */
.browser-frame__bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #F1F3F5;
    border-bottom: 1px solid var(--border-2);
}

.browser-frame__dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.browser-frame__dots span {
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.browser-frame__dots span:nth-child(1) { background: #FF5F57; }
.browser-frame__dots span:nth-child(2) { background: #FEBC2E; }
.browser-frame__dots span:nth-child(3) { background: #28C840; }

.browser-frame__url {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--white);
    border: 1px solid var(--border-2);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.74rem;
    color: var(--text-3);
    max-width: 260px;
    margin: 0 auto;
}

/* Placeholder shown until real screenshot is added */
.mockup-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #F8F7FF 0%, #EEF2FF 50%, #F0FDF4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    min-height: 280px;
}

.mockup-placeholder__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-3);
    padding: 32px;
    text-align: center;
}

.mockup-placeholder__inner svg { opacity: 0.45; }

.mockup-placeholder__inner p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-2);
}

.mockup-placeholder__inner span {
    font-size: 0.75rem;
    color: var(--text-3);
    font-family: 'Courier New', monospace;
    background: rgba(0,0,0,0.04);
    padding: 4px 10px;
    border-radius: 6px;
}

/* ============================================================
   WHAT SECTION
   ============================================================ */
.what-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 100px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.what-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-mid);
}

.section-heading {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--text-1);
}

.section-sub {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 560px;
}

/* ── Flow Diagram ─────────────────────────────────────────────── */
.flow-diagram {
    display: flex;
    align-items: center;
    margin-top: 36px;
    width: 100%;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.flow-sources {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.flow-source {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1.5px solid var(--border-2);
    background: var(--bg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
    height: 40px;
    box-sizing: border-box;
    white-space: nowrap;
}

.flow-source img {
    width: 16px;
    object-fit: contain;
}

.flow-canvas {
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: 380px;
    height: 190px;
    flex-shrink: 0;
    overflow: visible;
}

.flow-svg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: visible;
}

.flow-line {
    fill: none;
    stroke: #a1a1a133;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.flow-line--out {
    stroke-dasharray: 5 4;
}

.flow-node-ring {
    fill: rgb(255 255 255);
    animation: node-ring-pulse 3s ease-in-out infinite;
    stroke: #3440eb3d;
}

@keyframes node-ring-pulse {
    0%, 100% { r: 24; opacity: 0.8; }
    50%       { r: 32; opacity: 0.15; }
}

/* Moving dots (injected by JS) */
.flow-dot {
    position: absolute;
    z-index: 1;
    width: 7px;
    height: 7px;
    top: -3.5px;
    left: -3.5px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 7px rgba(34, 197, 94, 0.85);
    pointer-events: none;
    offset-anchor: 50% 50%;
    animation: flow-dot-travel 1.2s linear forwards;
}

.flow-dot--broken {
    background: #ef4444;
    box-shadow: 0 0 7px rgba(239, 68, 68, 0.85);
}

@keyframes flow-dot-travel {
    from { offset-distance: 0%; opacity: 1; }
    80%  { opacity: 1; }
    to   { offset-distance: 100%; opacity: 0; }
}

/* Alert badge */
.flow-alert {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.88);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 8px;
    border: 1.5px solid rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
    color: #ef4444;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.18s, transform 0.18s;
}

.flow-alert.is-active {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    background: rgb(255, 232, 232);
    border-color: rgba(239, 68, 68, 0.6);
    color: #ef4444;
}

/* Mobile: keep desktop layout, sources flush left */
@media (max-width: 560px) {
    .flow-sources { align-self: flex-start; }
}

/* Scroll-in animation for what-section */
.what-inner > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.what-section.is-visible .what-inner > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.what-section.is-visible .what-inner > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.what-section.is-visible .what-inner > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.what-section.is-visible .what-inner > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.32s; }
/* ============================================================
   FEATURES
   ============================================================ */
.features {
    position: relative;
    z-index: 1;
    padding: 80px 24px 50px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.features__inner {
    max-width: 960px;
    margin: 0 auto;
}

.features__header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(79,70,229,0.2);
}

.feature-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card__icon--blue   { background: #EFF6FF; color: #2563EB; }
.feature-card__icon--purple { background: #F5F3FF; color: #7C3AED; }
.feature-card__icon--green  { background: #F0FDF4; color: #16a34a; }
.feature-card__icon--orange { background: #FFF7ED; color: #EA580C; }

.feature-card h3 {
    font-size: 0.97rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: var(--text-1);
}

.feature-card p {
    font-size: 0.86rem;
    color: var(--text-2);
    line-height: 1.65;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    position: relative;
    z-index: 1;
    padding: 48px 24px;
    background: var(--bg);
}

.faq-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-inner .features__header {
    margin-bottom: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--border-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.faq-item {
    border-bottom: 1.5px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 650;
    color: var(--text-1);
    cursor: pointer;
    transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-2); }

.faq-icon {
    flex-shrink: 0;
    color: var(--text-3);
    transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}
.faq-answer > p {
    overflow: hidden;
    padding: 0 24px;
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.7;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}
.faq-item.is-open .faq-answer > p {
    padding-bottom: 20px;
}

/* Back to top */
.back-to-top-wrap {
    position: relative;
    z-index: 2;
    background: var(--bg);
    display: flex;
    justify-content: center;
    padding: 0 24px 48px;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-3);
    transition: color 0.15s;
}
.back-to-top:hover { color: var(--text-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 24px;
    background: var(--white);
}

.footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
    .form-privacy a {
        display: block;
    }
    .signup-row {
        flex-direction: column;
        background: none;
        border: none;
        box-shadow: none;
        border-radius: 0;
        gap: 10px;
    }

    .signup-field {
        width: 100%;
        background: var(--white);
        border: 1.5px solid var(--border-2);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-lg);
    }
    .signup-field input { padding: 14px 12px; }

    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .hero__headline { letter-spacing: -0.035em; }
    .hero { padding: 48px 20px 0; }
    .mockup-wrap { width: calc(100% + 40px); margin-left: -90px; }

    .feature-grid { grid-template-columns: 1fr; }

    .form-hint { display: none !important; }

    .mockup-card { border-radius: var(--radius); margin-bottom: -50px; }

    .browser-frame__bar { padding: 7px 10px; gap: 8px; }
    .browser-frame__dots { gap: 4px; }
    .browser-frame__dots span { width: 8px; height: 8px; }
    .browser-frame__url { padding: 3px 8px; font-size: 0.65rem; }
}

/* Hide reCAPTCHA badge (notice shown inline per policy) */
.grecaptcha-badge { visibility: hidden !important; }

/* ============================================================
   PRIVACY MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(2px);
}

.modal-overlay[hidden] { display: none; }

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: modal-in 0.18s ease;
    display: flex;
    flex-direction: column;
    padding: 48px 12px 12px;
}

.modal__scroll {
    overflow-y: auto;
    padding: 28px 28px 28px 28px;
    flex: 1;
    border-radius: calc(var(--radius-lg) - 12px);
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: var(--text-3);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}
.modal__close:hover { color: var(--text-1); background: var(--bg-2); }

.modal h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 20px;
    padding-right: 32px;
    line-height: 1.2;
}

.modal__body h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-2);
    margin: 20px 0 8px;
}

.modal__body p,
.modal__body li {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.65;
}

.modal__body ul {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal__body p + p { margin-top: 10px; }
