/* ---------------------------------------------------------------------------
   UnioAI landing page.

   Hand-written CSS on purpose: the page must render straight out of
   `docker compose up`, with no vite/npm build step and no CDN. Fonts are
   served from /fonts (Inter for Latin, Noto Sans Georgian for the Georgian
   glyphs Inter does not have — the browser falls back per-glyph).

   The palette is the app's own (mobile/lib/core/theme/app_tokens.dart); it is
   also what the public signing page uses, so a signer who lands here and then
   signs never sees two different products.
--------------------------------------------------------------------------- */

/* --------------------------------------------------------------- typography */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans Georgian';
    src: url('/fonts/NotoSansGeorgian-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans Georgian';
    src: url('/fonts/NotoSansGeorgian-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans Georgian';
    src: url('/fonts/NotoSansGeorgian-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans Georgian';
    src: url('/fonts/NotoSansGeorgian-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ------------------------------------------------------------------- tokens */
:root {
    --brand: #4338ca;
    --brand-bright: #6366f1;
    --accent: #d4a24c;

    --success: #16a34a;
    --warning: #d97706;
    --danger: #dc2626;
    --critical: #7f1d1d;

    --bg: #f6f6f9;
    --surface: #ffffff;
    --surface-2: #f1f1f6;
    --text: #16161d;
    --muted: #6b6b7b;
    --line: #e6e6ef;

    --shadow-sm: 0 1px 2px rgba(22, 22, 29, 0.04), 0 8px 24px -12px rgba(22, 22, 29, 0.10);
    --shadow-lg: 0 24px 70px -30px rgba(67, 56, 202, 0.35), 0 8px 30px -20px rgba(22, 22, 29, 0.25);

    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    --maxw: 1120px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0b0b12;
        --surface: #14141c;
        --surface-2: #1b1b26;
        --text: #f3f3f7;
        --muted: #9a9aab;
        --line: #262633;

        --brand: #6366f1;
        --brand-bright: #818cf8;

        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 10px 30px -18px rgba(0, 0, 0, 0.7);
        --shadow-lg: 0 30px 80px -40px rgba(99, 102, 241, 0.5), 0 10px 40px -24px rgba(0, 0, 0, 0.8);
    }
}

/* -------------------------------------------------------------------- reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* The sticky header must not swallow the top of a jumped-to section. */
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    /* Inter has no Georgian glyphs; the browser falls back to Noto per glyph. */
    font-family: 'Inter', 'Noto Sans Georgian', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

p {
    margin: 0;
}

:focus-visible {
    outline: 2px solid var(--brand-bright);
    outline-offset: 3px;
    border-radius: 6px;
}

.skip {
    position: absolute;
    left: -9999px;
    top: 12px;
    padding: 10px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    z-index: 100;
}
.skip:focus {
    left: 12px;
}

/* ------------------------------------------------------------------ layout */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
}

.eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.03em;
    max-width: 20ch;
}

.section-lead {
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
    max-width: 58ch;
}

/* ------------------------------------------------------------------ header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(14px);
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.header.is-scrolled {
    border-bottom-color: var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 17px;
}

.mark {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: linear-gradient(135deg, var(--brand), var(--brand-bright));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 18px -8px rgba(67, 56, 202, 0.8);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.15s ease;
}
.nav a:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language switch: two segments, the active one filled. */
.lang {
    display: inline-flex;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
}
.lang a {
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    color: var(--muted);
    transition: background 0.15s ease, color 0.15s ease;
}
.lang a[aria-current='true'] {
    background: var(--brand);
    color: #fff;
}

.burger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    padding: 0;
    place-items: center;
}

/* ------------------------------------------------------------------ buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--r-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-bright));
    color: #fff;
    box-shadow: 0 12px 30px -14px rgba(67, 56, 202, 0.9);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px -16px rgba(67, 56, 202, 0.95);
}

.btn-ghost {
    background: var(--surface);
    border-color: var(--line);
    color: var(--text);
}
.btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.btn-sm {
    padding: 9px 16px;
    font-size: 14px;
}

.btn .soon {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

/* -------------------------------------------------------------------- hero */
.hero {
    position: relative;
    padding: 72px 0 96px;
    overflow: hidden;
}

/* A single soft brand glow behind the phone — no busy background art. */
.hero::before {
    content: '';
    position: absolute;
    top: -260px;
    right: -180px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.20), transparent 62%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(34px, 5.2vw, 56px);
    letter-spacing: -0.035em;
    margin-bottom: 20px;
}
.hero h1 .accent {
    display: block;
    background: linear-gradient(120deg, var(--brand), var(--brand-bright) 55%, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 52ch;
}
.hero-sub strong {
    color: var(--text);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
}
.badge svg {
    color: var(--brand);
    flex: none;
}

/* --------------------------------------------------------------- phone mock */
.phone {
    position: relative;
    width: 300px;
    margin: 0 auto;
    padding: 12px;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

/* A phone is a fixed-size object: its height must not follow the copy, or the
   hero re-balances itself every time the language changes (Georgian runs longer
   than English). The screen is a viewport — content is clipped inside it, just
   as it would be on the device. */
.phone-screen {
    display: flex;
    flex-direction: column;
    height: 640px;
    border-radius: 20px;
    background: var(--bg);
    overflow: hidden;
}

.phone-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-bright));
}

.phone-body {
    position: relative;
    flex: 1;
    min-height: 0;
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Everything except the findings list keeps its natural height; only the list
   gives way when a translation runs long (see .findings). */
.dial {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: none;
}

.dial svg {
    flex: none;
}

.dial-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.dial-level {
    font-size: 15px;
    font-weight: 700;
    color: var(--danger);
    letter-spacing: -0.01em;
}

/* The gold accent marks the one place the AI itself is speaking.
   Clamped, so a longer translation cannot push the findings off the screen. */
.ai-summary {
    margin-top: 16px;
    padding: 12px 13px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: var(--r-md);
    background: rgba(212, 162, 76, 0.12);
    border: 1px solid rgba(212, 162, 76, 0.28);
    flex: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    /* Backstop for the clamp. Georgian sets on a taller line box than Latin, so
       the cap is computed from that, not from the nominal 1.5 line-height —
       otherwise it slices the third line in half. */
    max-height: calc(3 * 1.62em + 28px);
}

/* The list absorbs whatever height is left over; the law note below stays put.
   Georgian runs ~30% longer than English, so the last card may not fit — the
   mask fades it out instead of guillotining it mid-word. */
.findings {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
}

.findings-title {
    margin: 16px 0 10px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.finding {
    display: flex;
    gap: 10px;
    padding: 11px 12px;
    margin-bottom: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    font-size: 12.5px;
    line-height: 1.45;
}

.finding .dot {
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 50%;
    flex: none;
}
.finding .tag {
    font-size: 11px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.finding .finding-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.sev-critical .dot { background: var(--critical); }
.sev-critical .tag { color: var(--critical); }
.sev-high .dot { background: var(--danger); }
.sev-high .tag { color: var(--danger); }
.sev-medium .dot { background: var(--warning); }
.sev-medium .tag { color: var(--warning); }
.sev-low .dot { background: var(--success); }
.sev-low .tag { color: var(--success); }

.phone-foot {
    display: flex;
    align-items: center;
    gap: 7px;
    /* Pinned to the bottom of the screen regardless of how long the copy runs. */
    margin-top: auto;
    padding-top: 12px;
    font-size: 11.5px;
    color: var(--muted);
}
.phone-foot svg {
    color: var(--brand);
    flex: none;
}

@media (prefers-color-scheme: dark) {
    .sev-critical .dot { background: #f87171; }
    .sev-critical .tag { color: #f87171; }
}

/* ----------------------------------------------------------------- problem */
.problem {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.compare {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.compare-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--bg);
}

.compare-row + .compare-row {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
}

.compare-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.compare-row.is-after .compare-label {
    color: var(--brand);
}
.compare-text {
    font-size: 14.5px;
    color: var(--muted);
}
.compare-row.is-after .compare-text {
    color: var(--text);
    font-weight: 500;
}

/* ---------------------------------------------------------------- features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.feature {
    position: relative;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
}

/* The two differentiators (language+jurisdiction, browser signing) are the
   whole pitch, so they take the full width of the first row. */
.feature.is-lead {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 6%, var(--surface)), var(--surface));
}

@media (min-width: 900px) {
    .feature.is-lead {
        grid-column: span 3;
    }
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .feature {
        grid-column: span 2;
    }
    .feature.is-lead {
        grid-column: span 3;
    }
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--r-md);
    margin-bottom: 18px;
    color: var(--brand);
    background: color-mix(in srgb, var(--brand) 10%, transparent);
}
.feature.is-lead .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-bright));
}

.kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.feature h3 {
    font-size: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.feature p {
    font-size: 14.5px;
    color: var(--muted);
}

/* --------------------------------------------------------------------- how */
.how {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 26px 22px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--bg);
}

.step-n {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--brand);
    margin-bottom: 12px;
}
.step h3 {
    font-size: 17px;
    margin-bottom: 8px;
}
.step p {
    font-size: 14.5px;
    color: var(--muted);
}

/* ---------------------------------------------------------------- security */
.security-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

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

.security-item {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--surface);
}
.security-item h3 {
    font-size: 15.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.security-item h3 svg {
    color: var(--brand);
    flex: none;
}
.security-item p {
    font-size: 13.5px;
    color: var(--muted);
}

/* --------------------------------------------------------------------- faq */
.faq-list {
    margin-top: 40px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--surface);
    overflow: hidden;
}

.faq-item + .faq-item {
    border-top: 1px solid var(--line);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 22px;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: start;
    color: var(--text);
    background: none;
    border: 0;
    cursor: pointer;
}

.faq-q .chev {
    flex: none;
    color: var(--muted);
    transition: transform 0.2s ease;
}
.faq-item.is-open .faq-q .chev {
    transform: rotate(180deg);
    color: var(--brand);
}

.faq-a {
    display: none;
    padding: 0 22px 22px;
    font-size: 15px;
    color: var(--muted);
    max-width: 72ch;
}
.faq-item.is-open .faq-a {
    display: block;
}

/* --------------------------------------------------------------- final cta */
.cta {
    text-align: center;
}

.cta-card {
    padding: 64px 32px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--brand), var(--brand-bright));
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.cta-card h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    letter-spacing: -0.03em;
    margin: 0 auto 14px;
    max-width: 22ch;
}
.cta-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}
.cta-card .btn {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.6);
}
.cta-card .btn .soon {
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    color: var(--brand);
}

/* ------------------------------------------------------------------ footer */
.footer {
    padding: 56px 0 40px;
    border-top: 1px solid var(--line);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-tagline {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted);
    max-width: 34ch;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--muted);
}
.footer-links a:hover {
    color: var(--text);
}

.footer-disclaimer {
    margin-top: 36px;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
}

.footer-bottom {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
}

/* ------------------------------------------------------------------ reveal */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ------------------------------------------------------------- breakpoints */
@media (max-width: 980px) {
    section {
        padding: 72px 0;
    }

    .hero-grid,
    .security-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero {
        padding-top: 48px;
    }

    .compare,
    .steps {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature,
    .feature.is-lead {
        grid-column: span 1;
    }
    .feature.is-lead {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 760px) {
    .nav {
        position: fixed;
        inset: 72px 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 20px;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        display: none;
    }
    .nav.is-open {
        display: flex;
    }
    .nav a {
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--line);
    }

    .burger {
        display: grid;
    }

    .header-actions .btn {
        display: none;
    }

    .security-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .wrap {
        padding: 0 16px;
    }
    .phone {
        width: 100%;
    }
}

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