:root {
    color-scheme: dark;
    --bg: #05070d;
    --bg-soft: #0b1020;
    --panel: rgba(16, 24, 42, 0.74);
    --panel-strong: rgba(23, 33, 55, 0.92);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --text: #f7f4ea;
    --muted: #c7cfdb;
    --soft: #94a3b8;
    --turquoise: #71e6f2;
    --violet: #b993ff;
    --gold: #e7c76f;
    --danger: #ff9f9f;
    --success: #9ff0c4;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --radius: 8px;
    --container: 1160px;
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(113, 230, 242, 0.1), transparent 30%),
        linear-gradient(315deg, rgba(231, 199, 111, 0.08), transparent 34%),
        linear-gradient(180deg, #05070d 0%, #090d18 52%, #05070d 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 76%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0%, rgba(185, 147, 255, 0.09) 48%, transparent 72%),
        linear-gradient(180deg, transparent 0%, rgba(113, 230, 242, 0.05) 52%, transparent 100%);
    opacity: 0.8;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(113, 230, 242, 0.7);
    outline-offset: 4px;
}

::selection {
    background: rgba(113, 230, 242, 0.32);
    color: var(--text);
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius);
    background: var(--turquoise);
    color: #031015;
    font-weight: 800;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 7, 13, 0.78);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    border: 1px solid rgba(113, 230, 242, 0.36);
    background:
        linear-gradient(135deg, rgba(113, 230, 242, 0.24), rgba(185, 147, 255, 0.18)),
        rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 900;
}

.brand-copy {
    display: grid;
    min-width: 0;
    line-height: 1.15;
}

.brand-copy span {
    font-weight: 850;
    white-space: nowrap;
}

.brand-copy small {
    color: var(--soft);
    font-size: 0.78rem;
    margin-top: 0.14rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.78rem;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.section-offset {
    padding-top: 4.5rem;
}

.hero-section {
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
    align-items: center;
    gap: 3.5rem;
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 800;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    text-wrap: balance;
}

h1 {
    max-width: 760px;
    margin-bottom: 1.35rem;
    font-size: 4.4rem;
    font-weight: 900;
}

h2 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 880;
}

h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 840;
}

p {
    color: var(--muted);
}

.hero-lead {
    max-width: 690px;
    color: #e7edf7;
    font-size: 1.28rem;
}

.hero-note {
    max-width: 640px;
    margin-bottom: 2rem;
    color: var(--soft);
    font-size: 1.05rem;
}

.hero-actions,
.section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.82rem 1.05rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 850;
    line-height: 1.15;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn::after {
    content: "›";
    font-size: 1.35rem;
    line-height: 0;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background:
        linear-gradient(135deg, rgba(113, 230, 242, 0.95), rgba(231, 199, 111, 0.9));
    color: #061018;
    box-shadow: 0 18px 45px rgba(113, 230, 242, 0.16);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: rgba(113, 230, 242, 0.48);
    background: rgba(113, 230, 242, 0.11);
}

.hero-visual-wrap {
    position: relative;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-visual::before {
    background:
        linear-gradient(90deg, transparent 0%, rgba(113, 230, 242, 0.12) 44%, transparent 76%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 28%);
    mix-blend-mode: screen;
}

.hero-visual::after {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    inset: 10px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.phrase-card {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 7, 13, 0.74);
    backdrop-filter: blur(16px);
}

.phrase-card span {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--turquoise);
    font-size: 0.9rem;
    font-weight: 800;
}

.phrase-card p {
    min-height: 2.8rem;
    margin: 0;
    color: var(--text);
    font-size: 1.65rem;
    font-weight: 860;
    line-height: 1.2;
    transition: opacity 180ms ease, transform 180ms ease;
}

.phrase-card p.is-changing {
    opacity: 0;
    transform: translateY(8px);
}

.metrics-band {
    padding: 1.5rem 0 3.25rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.metric-card {
    min-height: 132px;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.metric-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text);
    font-size: 2rem;
    line-height: 1.1;
}

.metric-card span {
    color: var(--muted);
}

.content-section {
    padding: 5.75rem 0;
}

.split-section,
.narrative-grid,
.join-grid,
.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.section-heading,
.legal-intro {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.section-body p,
.narrative-copy p,
.join-copy p,
.partner-panel p,
.centered-heading p,
.legal-intro p {
    font-size: 1.08rem;
}

.cards-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

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

.feature-card,
.video-card,
.campaign-card,
.glass-panel,
.simple-card,
.partner-panel,
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}

.feature-card,
.campaign-card {
    min-height: 240px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.campaign-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(113, 230, 242, 0.12), transparent 42%, rgba(231, 199, 111, 0.08));
    opacity: 0.8;
    pointer-events: none;
}

.feature-card > *,
.campaign-card > * {
    position: relative;
}

.card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 2rem;
    border: 1px solid rgba(113, 230, 242, 0.28);
    border-radius: var(--radius);
    color: var(--turquoise);
    font-weight: 900;
}

.feature-card p,
.campaign-card p {
    margin-bottom: 0;
}

.why-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.large-text {
    color: #e8edf7;
    font-size: 1.35rem;
    line-height: 1.7;
}

blockquote {
    margin: 2rem 0 0;
    padding: 1.25rem;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    background: rgba(231, 199, 111, 0.08);
}

blockquote p {
    margin: 0;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 780;
}

.centered-heading {
    max-width: 740px;
    text-align: center;
}

.centered-heading p {
    margin-bottom: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.4rem;
}

.video-card {
    overflow: hidden;
    background: rgba(12, 18, 31, 0.88);
}

.video-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0f1c;
}

.video-media img,
.video-media iframe,
.video-media blockquote {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.video-content {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    padding: 1.1rem;
}

.video-content p {
    flex: 1;
}

.text-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--turquoise);
    font-weight: 850;
}

.text-link::after {
    content: "›";
    margin-left: 0.35rem;
    font-size: 1.25rem;
}

.text-link.is-disabled {
    color: var(--soft);
    cursor: not-allowed;
}

.text-link.is-disabled::after {
    content: "";
    margin-left: 0;
}

.join-section {
    background:
        linear-gradient(180deg, rgba(113, 230, 242, 0.045), transparent 42%),
        rgba(255, 255, 255, 0.02);
}

.join-copy {
    max-width: 560px;
}

.supporting-line {
    margin-top: 1.5rem;
    color: var(--text);
    font-weight: 700;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.25rem;
}

.form-row,
.contact-form .full {
    min-width: 0;
}

.form-row.full,
.contact-form .full {
    grid-column: 1 / -1;
}

.form-row label,
.consent-row {
    display: block;
    color: var(--text);
    font-weight: 760;
}

.form-row label {
    margin-bottom: 0.45rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(4, 7, 13, 0.66);
    color: var(--text);
    min-height: 48px;
    padding: 0.8rem 0.85rem;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

textarea {
    resize: vertical;
    min-height: 128px;
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--turquoise) 50%), linear-gradient(135deg, var(--turquoise) 50%, transparent 50%);
    background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(113, 230, 242, 0.62);
    background: rgba(7, 13, 24, 0.88);
    box-shadow: 0 0 0 4px rgba(113, 230, 242, 0.1);
}

.consent-row {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.consent-row input {
    width: 20px;
    height: 20px;
    min-height: 20px;
    margin-top: 0.18rem;
    accent-color: var(--turquoise);
}

.field-error {
    display: block;
    min-height: 1.15rem;
    margin-top: 0.3rem;
    color: var(--danger);
    font-size: 0.88rem;
}

.field-error:empty {
    visibility: hidden;
}

.is-invalid {
    border-color: rgba(255, 159, 159, 0.78);
}

.form-alert {
    grid-column: 1 / -1;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 159, 159, 0.35);
    border-radius: var(--radius);
    background: rgba(255, 159, 159, 0.08);
    color: #ffd4d4;
    font-weight: 750;
}

.form-note {
    margin: -0.2rem 0 0;
    color: var(--soft);
    font-size: 0.9rem;
}

code {
    padding: 0.12rem 0.32rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.actions-section {
    position: relative;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.campaign-card {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.campaign-card .btn {
    margin-top: auto;
}

.partner-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: 1.4rem;
    background:
        linear-gradient(135deg, rgba(113, 230, 242, 0.12), rgba(185, 147, 255, 0.08)),
        var(--panel-strong);
}

.partner-panel p {
    max-width: 760px;
    margin-bottom: 0;
}

.faq-list {
    max-width: 880px;
    margin-top: 2rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item + .faq-item {
    margin-top: 0.8rem;
}

.faq-item summary {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    cursor: pointer;
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 840;
}

.faq-item summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(113, 230, 242, 0.12);
    color: var(--turquoise);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 1.15rem 1.15rem;
}

.simple-hero,
.legal-section {
    padding-bottom: 6rem;
}

.simple-card {
    max-width: 760px;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(113, 230, 242, 0.1), transparent 48%),
        var(--panel);
}

.simple-card h1,
.legal-intro h1,
.contact-hero h1 {
    font-size: 3.4rem;
}

.simple-card p {
    font-size: 1.16rem;
}

.contact-email a,
.legal-content a {
    color: var(--turquoise);
    font-weight: 800;
}

.legal-content {
    padding: 1.45rem;
}

.legal-content h2 {
    margin-top: 2rem;
    font-size: 1.35rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 0;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1.5rem;
    background: rgba(3, 5, 10, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.5fr) minmax(140px, 0.35fr);
    gap: 2rem;
    align-items: start;
}

.footer-brand p {
    max-width: 420px;
    margin: 1rem 0 0;
}

.footer-links {
    display: grid;
    gap: 0.65rem;
}

.footer-links a {
    color: var(--muted);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--soft);
    font-size: 0.92rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    h1 {
        font-size: 3.55rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-grid,
    .split-section,
    .narrative-grid,
    .join-grid,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .legal-intro {
        position: static;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-visual img {
        min-height: 500px;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 76px;
    }

    .brand-copy span {
        white-space: normal;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        gap: 0.2rem;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        border: 0;
        border-radius: var(--radius);
        background: rgba(8, 12, 22, 0.98);
        box-shadow: var(--shadow);
        visibility: hidden;
        pointer-events: none;
        transition: max-height 220ms ease, padding 220ms ease, border-color 220ms ease, visibility 220ms ease;
    }

    .site-nav.is-open {
        max-height: 460px;
        padding: 0.55rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-link {
        justify-content: flex-start;
        padding: 0.85rem 0.95rem;
    }

    .metrics-grid,
    .three-cols,
    .video-grid,
    .campaign-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .partner-panel {
        grid-template-columns: 1fr;
    }

    .partner-panel .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .section-offset {
        padding-top: 3.25rem;
    }

    .content-section {
        padding: 4.25rem 0;
    }

    h1 {
        font-size: 2.7rem;
    }

    h2 {
        font-size: 2.05rem;
    }

    .simple-card h1,
    .legal-intro h1,
    .contact-hero h1 {
        font-size: 2.45rem;
    }

    .hero-lead {
        font-size: 1.12rem;
    }

    .hero-actions,
    .section-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .section-cta .btn,
    .contact-form .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 440px;
    }

    .hero-visual img {
        min-height: 440px;
    }

    .phrase-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .phrase-card p {
        font-size: 1.35rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .metric-card strong {
        font-size: 1.7rem;
    }

    .video-content {
        min-height: auto;
    }
}

@media (max-width: 420px) {
    .brand-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 0.75rem;
    }

    .brand-copy span {
        font-size: 0.94rem;
    }

    .brand-copy small {
        font-size: 0.72rem;
    }

    h1 {
        font-size: 2.35rem;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-visual img {
        min-height: 390px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
