@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --bg: #080808;
    --surface: #111111;
    --surface-2: #171717;
    --line: rgba(255,255,255,.13);
    --line-strong: rgba(255,255,255,.24);
    --text: #f5f5f2;
    --muted: #a9a9a5;
    --faint: #6f6f6a;
    --red: #e31324;
    --red-dark: #a50d1a;
    --red-soft: rgba(227,19,36,.14);
    --container: 1180px;
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; color: var(--text); background: var(--bg); font-family: Manrope, Arial, sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
body::before { content: ''; position: fixed; inset: 0; pointer-events: none; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 8px 12px; border-radius: var(--radius-sm); background: var(--red); color: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 20; top: 0; left: 0; right: 0; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease; }
.site-header.is-scrolled { background: rgba(8,8,8,.86); border-color: var(--line); backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span { display: grid; gap: 0; line-height: 1; }
.brand strong { font: 700 17px/1 Space Grotesk, sans-serif; letter-spacing: .14em; }
.brand small { color: var(--muted); font: 600 8px/1.5 Space Grotesk, sans-serif; letter-spacing: .3em; }
.site-nav { display: flex; align-items: center; gap: 25px; font-size: 13px; color: var(--muted); }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: #fff; }
.site-nav .nav-cta { margin-left: 7px; padding: 11px 16px; border-radius: var(--radius-pill); background: var(--red); color: #fff; font-weight: 700; }
.site-nav .nav-cta:hover { background: #ff2638; }
.menu-toggle { display: none; border: 1px solid var(--line); border-radius: var(--radius-sm); color: #fff; background: transparent; padding: 9px 12px; cursor: pointer; }

.hero { position: relative; min-height: min(860px, 100vh); display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.85) contrast(1.05); }
.hero-shade { background: linear-gradient(90deg, rgba(7,7,7,.98) 0%, rgba(7,7,7,.82) 35%, rgba(7,7,7,.2) 75%, rgba(7,7,7,.65) 100%), linear-gradient(0deg, rgba(7,7,7,.94), transparent 45%, rgba(7,7,7,.4)); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 620px) minmax(180px, 1fr); gap: 80px; align-items: end; padding-top: 90px; }
.hero-copy { padding-block: 68px; }
.eyebrow { color: #d0d0ca; margin: 0 0 20px; font: 600 11px/1.2 Space Grotesk, sans-serif; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 30px; height: 2px; margin: 0 9px 3px 0; background: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Space Grotesk, Manrope, sans-serif; }
h1 { max-width: 640px; margin-bottom: 25px; font-size: clamp(44px, 7vw, 86px); font-weight: 600; line-height: .98; letter-spacing: -.055em; }
h1 em, h2 em { color: var(--red); font-style: normal; }
.hero-lead { max-width: 520px; margin-bottom: 32px; color: #d5d5cf; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 50px; padding: 13px 20px; border: 1px solid transparent; border-radius: var(--radius); font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, opacity .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: #ff2638; }
.button-outline { border-color: rgba(255,255,255,.38); color: #fff; background: rgba(0,0,0,.16); }
.button-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.button-full { width: 100%; margin-top: 9px; }
.button-disabled, .button:disabled { border-color: var(--line); background: #272727; color: var(--faint); cursor: not-allowed; opacity: .9; }
.button:disabled:hover { transform: none; }
.download-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 23px; color: #d9d9d3; font-size: 13px; font-weight: 600; }
.download-link:hover { color: #fff; }
.download-mark { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid var(--red); border-radius: 50%; color: var(--red); }
.hero-side { align-self: end; justify-self: end; max-width: 230px; padding: 0 0 50px; color: var(--muted); font-size: 13px; }
.hero-badge { display: flex; gap: 12px; align-items: center; margin-bottom: 22px; color: #fff; }
.hero-badge > span { color: var(--red); font: 700 25px/1 Space Grotesk, sans-serif; }
.hero-badge strong, .hero-badge small { display: block; }
.hero-badge strong { font-size: 13px; }
.hero-badge small { color: var(--muted); font-size: 11px; }
.hero-line { width: 80px; height: 1px; margin-bottom: 17px; background: var(--red); }
.scroll-cue { position: absolute; z-index: 1; bottom: 30px; left: max(24px, calc((100vw - var(--container)) / 2)); display: flex; align-items: center; gap: 10px; color: var(--muted); font: 600 10px/1 Space Grotesk, sans-serif; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue span { display: block; width: 28px; height: 1px; background: var(--red); }

.section { position: relative; padding: 130px 0; border-bottom: 1px solid var(--line); }
.section-heading h2 { max-width: 650px; margin-bottom: 20px; font-size: clamp(33px, 4vw, 57px); font-weight: 600; line-height: 1.02; letter-spacing: -.045em; }
.section-heading > p:not(.eyebrow), .intro-copy > p, .zbt-aside > p:not(.eyebrow) { color: var(--muted); }
.section-heading.centered { max-width: 690px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered h2 { margin-inline: auto; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.intro-section { background: #0b0b0b; }
.intro-copy { max-width: 520px; padding-top: 13px; font-size: 17px; }
.intro-copy p { margin-bottom: 22px; }
.text-link { display: inline-flex; align-items: center; gap: 13px; padding-bottom: 7px; border-bottom: 1px solid var(--red); color: #fff; font-size: 13px; font-weight: 700; }
.text-link:hover { color: var(--red); }

.features-section { background: #090909; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 65px; }
.feature-card { position: relative; min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.feature-card:nth-child(5), .feature-card:nth-child(6), .feature-card:nth-child(7) { grid-column: span 1; }
.feature-card:hover { z-index: 1; border-color: var(--line-strong); background: #1a1a1a; transform: translateY(-4px); }
.card-number { display: block; margin-bottom: 38px; color: var(--red); font: 700 12px/1 Space Grotesk, sans-serif; letter-spacing: .1em; }
.feature-card h3 { margin-bottom: 10px; font-size: 19px; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.card-arrow { position: absolute; right: 22px; bottom: 18px; color: var(--faint); font-size: 18px; }

.gallery-section { background: #0b0b0b; }
.split-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.split-heading > p { max-width: 350px; margin-bottom: 24px; }
.gallery-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; margin-top: 54px; }
.gallery-card { position: relative; min-width: 0; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; text-align: left; cursor: zoom-in; }
.gallery-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.gallery-card:hover img { transform: scale(1.04); filter: brightness(.72); }
.gallery-card span { position: absolute; right: 20px; bottom: 16px; left: 20px; display: flex; justify-content: space-between; color: #fff; font: 600 11px/1 Space Grotesk, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.gallery-card b { color: var(--red); font-size: 19px; }

.how-section { background: #111; }
.how-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.steps-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps-list li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.steps-list li > span { color: var(--red); font: 700 12px/1 Space Grotesk, sans-serif; }
.steps-list strong { font: 600 18px/1.2 Space Grotesk, sans-serif; }
.steps-list p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }

.forms-section { background: #0b0b0b; }
.form-grid-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.form-note { max-width: 300px; margin-top: 32px; padding: 14px 16px; border-left: 2px solid var(--red); border-radius: var(--radius); background: var(--red-soft); color: #cecec8; font-size: 12px; }
.form-card { position: relative; padding: 34px; border: 1px solid var(--line-strong); border-radius: var(--radius-xl); background: #141414; box-shadow: 0 14px 70px rgba(0,0,0,.22); }
.form-card-dark { background: #0c0c0c; }
.form-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.form-card-head > span { color: var(--red); font: 700 12px/1 Space Grotesk, sans-serif; }
.form-card-head h3 { margin: 0; font-size: 24px; }
.form-card label { display: block; margin-bottom: 18px; color: #ddd; font-size: 12px; font-weight: 600; }
.form-card label > input, .form-card label > textarea { display: block; width: 100%; margin-top: 7px; padding: 12px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #0c0c0c; color: #fff; font-size: 14px; transition: border-color .2s ease, background .2s ease; }
.form-card label > input { min-height: 47px; }
.form-card label > textarea { min-height: 105px; resize: vertical; }
.form-card label > input:hover, .form-card label > textarea:hover { border-color: var(--line-strong); }
.form-card label > input:focus, .form-card label > textarea:focus { border-color: var(--red); background: #111; outline: none; }
.form-card label small { display: block; margin-top: 6px; color: var(--faint); font-size: 11px; font-weight: 400; }
.form-card label small.optional { display: inline; margin-left: 5px; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card label.check-row {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    width: 100%;
    gap: 10px;
    font-size: 12px !important;
    font-weight: 400 !important;
    cursor: pointer;
}
.form-card label.check-row > input[type="checkbox"] {
    display: block;
    grid-column: 1;
    width: 18px;
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 2px 0 0;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: transparent;
    box-shadow: none;
    accent-color: var(--red);
    cursor: pointer;
}
.form-card label.check-row > span {
    display: block;
    grid-column: 2;
    width: auto;
    min-width: 0;
    color: var(--muted);
    line-height: 1.55;
    overflow-wrap: break-word;
}
.check-row a { color: #fff; text-decoration: underline; text-underline-offset: 3px; overflow-wrap: break-word; }
.check-row a:hover { color: var(--red); }
.field-error { display: block; margin-top: 6px; color: #ff7b85; font-size: 11px; font-weight: 400; }
.check-row .field-error { margin-top: 3px; }
.form-status { min-height: 20px; margin: 15px 0 0; color: var(--muted); font-size: 12px; }
.form-status.is-success { color: #8fe0b1; }
.form-status.is-error { color: #ff7b85; }
.form-card.is-loading .button { opacity: .58; pointer-events: none; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.zbt-section { background: var(--red); color: #fff; }
.zbt-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.zbt-aside .eyebrow { color: #fff; }
.zbt-aside .eyebrow span { background: #fff; }
.zbt-aside h2 { max-width: 470px; font-size: clamp(36px, 4vw, 58px); }
.zbt-aside > p:not(.eyebrow) { max-width: 420px; color: rgba(255,255,255,.8); }
.zbt-stamp { display: flex; align-items: center; gap: 15px; margin-top: 57px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.35); max-width: 240px; }
.zbt-stamp strong { font: 700 38px/1 Space Grotesk, sans-serif; }
.zbt-stamp span { color: rgba(255,255,255,.78); font-size: 11px; line-height: 1.3; text-transform: uppercase; }
.zbt-section .form-card { border-color: rgba(255,255,255,.35); background: #0d0d0d; }

.download-section { background: #111; }
.download-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 58px 65px; border: 1px solid var(--line-strong); border-radius: var(--radius-xl); background: linear-gradient(100deg, #141414, #0c0c0c); overflow: hidden; }
.download-copy h2 { margin-bottom: 18px; font-size: clamp(40px, 5vw, 68px); line-height: .96; }
.download-copy p:not(.eyebrow) { max-width: 370px; color: var(--muted); }
.download-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.download-meta > div { padding: 16px 0; border-top: 1px solid var(--line); }
.download-meta > div span, .download-meta > div strong { display: block; }
.download-meta > div span { margin-bottom: 4px; color: var(--faint); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.download-meta > div strong { font: 600 16px/1.2 Space Grotesk, sans-serif; }
.download-meta .button { grid-column: 1 / -1; margin-top: 10px; }

.community-section { background: #0b0b0b; }
.community-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.community-links { display: grid; gap: 12px; }
.community-link { display: grid; grid-template-columns: 42px 1fr 30px; gap: 18px; align-items: center; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.018); transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.community-link > span { color: var(--red); font: 700 11px/1 Space Grotesk, sans-serif; }
.community-link strong, .community-link small { display: block; }
.community-link strong { font: 600 18px/1.2 Space Grotesk, sans-serif; }
.community-link small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.community-link b { color: var(--red); font-size: 19px; text-align: right; transition: transform .2s ease; }
.community-link:hover { border-color: var(--line-strong); background: rgba(255,255,255,.045); transform: translateY(-2px); }
.community-link:hover b { transform: translate(3px, -3px); }

.faq-section { background: #111; }
.faq-list { display: grid; gap: 12px; max-width: 800px; margin: 55px auto 0; }
.faq-list details { padding: 0 22px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.018); overflow: hidden; transition: border-color .2s ease, background .2s ease; }
.faq-list details:hover, .faq-list details[open] { border-color: var(--line-strong); background: rgba(255,255,255,.035); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; list-style: none; font: 600 17px/1.3 Space Grotesk, sans-serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--red); font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { max-width: 670px; margin: -3px 0 22px; color: var(--muted); font-size: 13px; }

.site-footer { padding: 65px 0 26px; background: #070707; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.1fr 1.6fr; gap: 50px; align-items: start; }
.footer-grid > p { max-width: 240px; margin: 5px 0 0; color: var(--faint); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 22px; color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--faint); font-size: 11px; }

.modal[hidden] { display: none; }
.modal { position: fixed; z-index: 50; inset: 0; display: grid; place-items: center; padding: 26px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.modal-dialog { position: relative; z-index: 1; width: min(1050px, 100%); }
.modal-dialog img { width: 100%; max-height: 78vh; object-fit: contain; background: #050505; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); }
.modal-dialog p { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.modal-close { position: absolute; z-index: 1; top: 12px; right: 12px; padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--radius-pill); background: rgba(0,0,0,.66); color: #fff; cursor: pointer; font-size: 11px; }
.modal-close:hover { border-color: #fff; }
.toast { position: fixed; z-index: 60; right: 24px; bottom: 24px; max-width: min(380px, calc(100% - 48px)); padding: 14px 17px; border-left: 2px solid var(--red); border-radius: var(--radius); background: #171717; color: #fff; box-shadow: 0 14px 45px rgba(0,0,0,.4); font-size: 13px; opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 900px) {
    .container { width: min(var(--container), calc(100% - 36px)); }
    .site-nav { gap: 16px; }
    .hero-inner, .how-grid, .form-grid-layout, .zbt-layout, .community-grid { gap: 50px; }
    .hero-inner { grid-template-columns: 1fr 220px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card:nth-child(5), .feature-card:nth-child(6), .feature-card:nth-child(7) { grid-column: span 1; }
    .download-panel { padding: 42px; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-links { justify-content: flex-start; grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    body { font-size: 15px; }
    .container { width: min(var(--container), calc(100% - 28px)); }
    .header-inner { min-height: 68px; }
    .brand img { width: 37px; height: 37px; }
    .brand strong { font-size: 15px; }
    .menu-toggle { display: block; }
    .site-nav { position: absolute; top: calc(100% + 1px); right: 14px; left: 14px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(14,14,14,.98); box-shadow: 0 20px 55px rgba(0,0,0,.4); overflow: hidden; }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 12px 11px; }
    .site-nav .nav-cta { margin: 7px 0 0; text-align: center; }
    .hero { min-height: 760px; }
    .hero-media img { object-position: 58% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(7,7,7,.96), rgba(7,7,7,.55)), linear-gradient(0deg, rgba(7,7,7,.96), transparent 55%); }
    .hero-inner { display: block; padding-top: 80px; }
    .hero-copy { padding-block: 80px 20px; }
    h1 { font-size: clamp(42px, 15vw, 65px); }
    .hero-lead { font-size: 15px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-side { max-width: none; padding-bottom: 55px; }
    .hero-side p { display: none; }
    .hero-line { margin-bottom: 10px; }
    .scroll-cue { left: 14px; bottom: 19px; }
    .section { padding: 84px 0; }
    .intro-grid, .how-grid, .form-grid-layout, .zbt-layout, .community-grid, .download-panel { grid-template-columns: 1fr; gap: 42px; }
    .intro-copy { padding-top: 0; font-size: 15px; }
    .feature-grid { grid-template-columns: 1fr; margin-top: 40px; }
    .feature-card { min-height: 190px; }
    .split-heading { display: block; }
    .split-heading > p { margin: 0; }
    .gallery-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
    .gallery-card img { min-height: 200px; }
    .steps-list li { grid-template-columns: 40px 1fr; }
    .form-card { padding: 23px 18px; }
    .two-fields { grid-template-columns: 1fr; gap: 0; }
    .zbt-stamp { margin-top: 35px; }
    .download-panel { padding: 30px 20px; }
    .download-meta { gap: 14px; }
    .community-link { grid-template-columns: 32px 1fr 24px; gap: 10px; }
    .community-link strong { font-size: 15px; }
    .faq-list { margin-top: 35px; }
    .faq-list summary { font-size: 15px; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer-links { grid-column: auto; }
    .footer-bottom { display: block; margin-top: 40px; }
    .footer-bottom span { display: block; margin-top: 8px; }
    .modal { padding: 10px; }
    .modal-dialog img { max-height: 74vh; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
