:root {
  color-scheme: dark;
  --bg: #030b1c;
  --bg-alt: #07152d;
  --surface: #0b1d39;
  --surface-strong: #102746;
  --text: #f7fbff;
  --muted: #aebbd0;
  --line: rgba(147, 184, 227, 0.22);
  --cyan: #15c6f5;
  --blue: #239cff;
  --yellow: #ffbf2f;
  --red: #ef3340;
  --focus: #ffe47a;
  --shadow: 0 32px 80px rgba(0, 8, 28, 0.42);
  --container: 1240px;
  --header-height: 78px;
  --radius: 24px;
  --transition: 180ms ease;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #ffffff;
  --bg-alt: #eff8ff;
  --surface: #ffffff;
  --surface-strong: #e3f3ff;
  --text: #07152d;
  --muted: #4a5b72;
  --line: rgba(8, 50, 91, 0.17);
  --shadow: 0 28px 70px rgba(33, 114, 172, 0.18);
}

@media (prefers-color-scheme: light) {
  html:not([data-theme]),
  html[data-theme="system"] {
    color-scheme: light;
    --bg: #ffffff;
    --bg-alt: #eff8ff;
    --surface: #ffffff;
    --surface-strong: #e3f3ff;
    --text: #07152d;
    --muted: #4a5b72;
    --line: rgba(8, 50, 91, 0.17);
    --shadow: 0 28px 70px rgba(33, 114, 172, 0.18);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); background: var(--bg); }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.65; overflow-x: hidden; transition: background var(--transition), color var(--transition); }
img, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
button { color: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
::selection { background: var(--yellow); color: #07152d; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 800; line-height: 0.98; letter-spacing: -0.045em; text-wrap: balance; }
h1 { max-width: 800px; font-size: clamp(3.25rem, 6.5vw, 6.6rem); }
h2 { font-size: clamp(2.55rem, 5vw, 5.2rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.06; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(88px, 11vw, 160px) 0; }
.lede { max-width: 700px; color: var(--muted); font-size: clamp(1.1rem, 1.65vw, 1.42rem); line-height: 1.55; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; border-radius: 10px; background: var(--focus); color: #07152d; transform: translateY(-180%); transition: transform var(--transition); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 100; top: 0; height: var(--header-height); border-bottom: 1px solid transparent; background: color-mix(in srgb, var(--bg) 76%, transparent); backdrop-filter: blur(20px) saturate(140%); transition: border-color var(--transition), background var(--transition); }
.site-header.is-scrolled { border-color: var(--line); background: color-mix(in srgb, var(--bg) 92%, transparent); }
.header-inner { width: min(calc(100% - 48px), 1420px); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 152px; height: 58px; display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 148px; height: 52px; object-fit: contain; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.7vw, 28px); font-size: 0.92rem; font-weight: 650; }
.site-nav > a:not(.button) { color: var(--muted); transition: color var(--transition); }
.site-nav > a:not(.button):hover { color: var(--text); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 2px; background: currentColor; transition: transform var(--transition); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border: 1px solid transparent; border-radius: 14px; background: linear-gradient(135deg, #23b7ff, #2387ff); box-shadow: 0 12px 30px rgba(35, 156, 255, 0.24); color: #031127; font-weight: 800; line-height: 1.1; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), filter var(--transition); }
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(35, 156, 255, 0.32); filter: saturate(1.08); }
.button--small { min-height: 44px; padding: 11px 18px; border-radius: 12px; font-size: 0.88rem; }
.button--secondary { border-color: var(--line); background: transparent; box-shadow: none; color: var(--text); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-weight: 750; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.text-link svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.language-menu { position: relative; }
.language-menu summary, .theme-toggle { display: inline-flex; min-height: 42px; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 11px; background: color-mix(in srgb, var(--surface) 82%, transparent); color: var(--text); cursor: pointer; list-style: none; font-size: 0.86rem; font-weight: 680; }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.language-panel { position: absolute; z-index: 20; top: calc(100% + 10px); right: 0; width: 220px; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
.language-panel a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px; color: var(--muted); font-weight: 600; }
.language-panel a:hover, .language-panel a[aria-current="page"] { background: var(--surface-strong); color: var(--text); }
.theme-toggle { appearance: none; }
.theme-icon { color: var(--cyan); font-size: 1.1rem; line-height: 1; }

.hero { position: relative; min-height: min(920px, calc(100vh - var(--header-height))); display: grid; align-items: center; overflow: hidden; isolation: isolate; background: #031128; color: #f7fbff; }
.hero-background, .weather-background { position: absolute; z-index: -2; inset: 0; }
.hero-background picture, .weather-background picture, .hero-background img, .weather-background img { width: 100%; height: 100%; }
.hero-background img, .weather-background img { object-fit: cover; }
.hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(3, 11, 28, 0.88) 0%, rgba(3, 11, 28, 0.68) 38%, rgba(3, 11, 28, 0.06) 78%); pointer-events: none; }
.hero-grid { min-height: inherit; display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(450px, 1.12fr); align-items: center; gap: clamp(24px, 5vw, 80px); padding-top: 42px; }
.hero-copy { position: relative; z-index: 4; padding: 70px 0 100px; }
.hero h1 { margin-bottom: 28px; }
.hero-lede { max-width: 650px; margin-bottom: 30px; color: #d5e0ef; font-size: clamp(1.18rem, 1.8vw, 1.55rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-bottom: 26px; }
.hero-proof { color: #bcc9db; font-size: 0.92rem; }
.hero-visual { position: relative; align-self: end; min-height: 740px; }
.phone-frame { position: relative; width: min(100%, 365px); margin-inline: auto; padding: 11px; border: 2px solid rgba(228, 239, 255, 0.7); border-radius: 54px; background: #020611; box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46); overflow: hidden; }
.phone-frame::before { content: ""; position: absolute; z-index: 3; top: 18px; left: 50%; width: 34%; height: 26px; border-radius: 20px; background: #020206; transform: translateX(-50%); }
.phone-frame picture, .phone-frame img { width: 100%; }
.phone-frame img { border-radius: 43px; }
.phone-frame--hero { position: absolute; right: 4%; bottom: -90px; width: min(64%, 430px); transform: rotate(2deg); }
.hero-cutout { position: absolute; z-index: 5; width: clamp(150px, 25vw, 310px); filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.34)); }
.hero-cutout--one { top: 20%; left: 0; transform: rotate(72deg); }
.hero-cutout--two { right: -5%; top: 46%; transform: rotate(68deg); }

.atmosphere { overflow: hidden; background: var(--bg-alt); }
.atmosphere-grid { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 0.78fr) minmax(260px, 0.62fr); align-items: center; gap: clamp(36px, 5vw, 90px); }
.section-copy h2 { max-width: 620px; margin-bottom: 24px; }
.section-copy h2::first-line { color: var(--yellow); }
.altitude-route { position: relative; min-height: 650px; padding-left: 112px; }
.altitude-line { position: absolute; left: 72px; top: 12px; bottom: 12px; width: 3px; border-radius: 3px; background: linear-gradient(var(--cyan), var(--blue)); box-shadow: 0 0 30px rgba(21, 198, 245, 0.28); }
.altitude-line::before { content: ""; position: absolute; top: -6px; left: 50%; width: 16px; height: 16px; border-top: 3px solid var(--cyan); border-left: 3px solid var(--cyan); transform: translateX(-50%) rotate(45deg); }
.altitude-route ol { height: 100%; min-height: inherit; margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; justify-content: space-between; }
.altitude-route li { position: relative; display: grid; gap: 3px; }
.altitude-route li::before { content: ""; position: absolute; top: 12px; left: -48px; width: 16px; height: 16px; border: 3px solid var(--bg-alt); border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 1px var(--cyan); }
.altitude-route li span { color: var(--cyan); font-size: 0.88rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.altitude-route li strong { font-size: clamp(1.45rem, 2.1vw, 2.2rem); letter-spacing: -0.035em; }
.altitude-hero { position: absolute; z-index: 2; left: -4px; top: 40%; width: 116px; transform: rotate(50deg); filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.28)); }
.atmosphere-phone .phone-frame { width: min(100%, 320px); transform: rotate(2deg); }

.features { background: var(--bg); }
.features h2 { max-width: 680px; margin-bottom: 68px; color: var(--red); }
.features h2::first-line { color: var(--yellow); }
.feature-rail { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-rail article { min-width: 0; padding: 42px clamp(28px, 3vw, 48px) 48px; text-align: center; }
.feature-rail article + article { border-left: 1px solid var(--line); }
.feature-art { height: 190px; display: flex; align-items: center; justify-content: center; }
.feature-art img { max-width: 150px; max-height: 185px; object-fit: contain; transform: rotate(-16deg); filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.25)); }
.feature-rail article:nth-child(2) .feature-art img { transform: rotate(-20deg); }
.feature-rail article:nth-child(3) .feature-art img { transform: rotate(16deg) scaleX(-1); }
.feature-rail h3 { margin-bottom: 16px; color: var(--yellow); }
.feature-rail p { max-width: 330px; margin: 0 auto; color: var(--muted); }
.feature-end { margin: 46px 0 0; text-align: center; color: var(--cyan); font-size: clamp(1.4rem, 2.4vw, 2.2rem); font-weight: 850; }

.weather { min-height: 680px; display: grid; align-items: center; overflow: hidden; isolation: isolate; background: #06152f; color: #f7fbff; }
.weather::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(2, 9, 23, 0.9), rgba(2, 9, 23, 0.4) 47%, rgba(2, 9, 23, 0.02) 75%); }
.weather-grid { display: grid; grid-template-columns: minmax(320px, 0.78fr) minmax(430px, 1.22fr); align-items: center; gap: 40px; }
.weather-copy { position: relative; z-index: 2; }
.weather h2 { margin-bottom: 26px; color: var(--red); }
.weather h2::first-line { color: var(--yellow); }
.weather .lede { color: #dbe7f5; }
.privacy-note { display: flex; max-width: 560px; align-items: flex-start; gap: 14px; margin-top: 30px; color: var(--cyan); font-weight: 650; }
.privacy-note span { display: inline-grid; width: 25px; height: 25px; flex: 0 0 auto; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-family: Georgia, serif; }
.weather-heroes { width: min(100%, 720px); justify-self: end; filter: drop-shadow(0 32px 30px rgba(0, 0, 0, 0.3)); }

.screens { background: var(--bg-alt); }
.screens h2 { margin-bottom: 64px; text-align: center; color: var(--yellow); }
.screens h2::first-letter { color: var(--yellow); }
.screens-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: end; gap: clamp(24px, 4vw, 58px); }
.screen-shot { appearance: none; min-width: 0; padding: 0; border: 0; background: transparent; color: inherit; cursor: zoom-in; }
.screen-shot picture { display: block; padding: 8px; border: 1px solid var(--line); border-radius: 40px; background: #020611; box-shadow: var(--shadow); transition: transform 240ms ease, box-shadow 240ms ease; }
.screen-shot:nth-child(1) { transform: rotate(-3deg); }
.screen-shot:nth-child(3) { transform: rotate(3deg); }
.screen-shot:hover picture { transform: translateY(-10px); box-shadow: 0 44px 90px rgba(0, 8, 28, 0.46); }
.screen-shot img { width: 100%; border-radius: 31px; }
.screen-shot strong { display: block; margin-top: 24px; color: var(--cyan); font-size: 1.16rem; text-align: center; }

.final-cta { overflow: hidden; padding-bottom: 72px; background: #05142f; color: #f7fbff; }
.final-cta-inner { display: grid; grid-template-columns: minmax(120px, 0.65fr) minmax(360px, 1fr) minmax(120px, 0.65fr); align-items: end; gap: 20px; text-align: center; }
.final-cta-inner > img { width: min(100%, 300px); max-height: 360px; object-fit: contain; filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.3)); }
.final-cta-inner > img:first-child { transform: rotate(48deg) translateY(42px); }
.final-cta-inner > img:last-child { transform: rotate(-35deg) scaleX(-1) translateY(42px); }
.final-cta h2 { margin-bottom: 20px; color: var(--yellow); }
.final-cta p { color: #c6d4e7; font-size: 1.2rem; }
.app-store-badge { display: inline-block; margin-top: 10px; }
.app-store-badge img { width: 180px; height: auto; }

.site-footer { border-top: 1px solid rgba(147, 184, 227, 0.22); background: #030b1c; color: #f7fbff; }
.footer-inner { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; display: grid; grid-template-columns: 1.1fr 1.8fr auto; gap: 36px; align-items: start; padding: 52px 0 34px; }
.footer-brand img { width: 130px; height: 78px; object-fit: contain; }
.footer-brand p { max-width: 320px; color: #aebbd0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px 24px; padding-top: 18px; color: #b9c7d9; font-size: 0.9rem; }
.site-footer nav a:hover, .footer-link:hover { color: var(--cyan); }
.footer-link { appearance: none; padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.footer-tools { display: flex; gap: 10px; padding-top: 8px; }
.footer-tools .language-panel { bottom: calc(100% + 10px); top: auto; }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 26px; border-top: 1px solid rgba(147, 184, 227, 0.16); color: #8190a6; font-size: 0.86rem; }
.language-note { color: #7f8ea5; }

.page-hero { min-height: 520px; display: grid; align-items: center; padding: 110px 0 80px; background: radial-gradient(circle at 80% 20%, rgba(35, 156, 255, 0.22), transparent 42%), var(--bg-alt); }
.page-hero h1 { max-width: 860px; margin-bottom: 28px; }
.page-label { margin-bottom: 20px; color: var(--cyan); font-size: 0.8rem; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }
.page-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 32px; }
.legal-article { background: var(--bg); }
.legal-copy { width: min(calc(100% - 48px), 820px); }
.legal-copy section + section { margin-top: 64px; padding-top: 64px; border-top: 1px solid var(--line); }
.legal-copy h2 { margin-bottom: 22px; font-size: clamp(2rem, 3.4vw, 3.2rem); }
.legal-copy p { color: var(--muted); font-size: 1.08rem; }
.not-found { min-height: 100vh; display: grid; place-items: center; text-align: center; background: radial-gradient(circle at 50% 35%, rgba(35, 156, 255, 0.22), transparent 38%), #030b1c; color: #f7fbff; }
.not-found img { width: 260px; margin: 0 auto 40px; }
.not-found h1 { max-width: 800px; margin-inline: auto; }

.screenshot-dialog { width: min(92vw, 560px); max-height: 92vh; padding: 16px; border: 1px solid rgba(255,255,255,0.3); border-radius: 34px; background: #020611; box-shadow: 0 50px 120px rgba(0,0,0,0.72); }
.screenshot-dialog::backdrop { background: rgba(0, 5, 18, 0.78); backdrop-filter: blur(8px); }
.screenshot-dialog img { max-height: calc(92vh - 32px); margin: auto; border-radius: 24px; }
.screenshot-dialog button { position: absolute; z-index: 2; top: 20px; right: 20px; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,0.28); border-radius: 50%; background: rgba(2,6,17,0.82); color: white; font-size: 1.65rem; cursor: pointer; }

.analytics-consent { position: fixed; z-index: 500; right: 20px; bottom: 20px; left: 20px; width: min(calc(100% - 40px), 980px); margin-left: auto; padding: 0; border: 1px solid rgba(147, 184, 227, 0.34); border-radius: 22px; background: color-mix(in srgb, var(--surface) 96%, transparent); box-shadow: 0 28px 90px rgba(0, 5, 20, 0.46); backdrop-filter: blur(24px) saturate(140%); }
.analytics-consent[hidden] { display: none; }
.analytics-consent__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 32px; padding: 24px; }
.analytics-consent h2 { margin-bottom: 10px; font-size: 1.35rem; line-height: 1.1; letter-spacing: -0.025em; }
.analytics-consent p { max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.analytics-consent__status { margin-top: 8px !important; color: var(--cyan) !important; font-weight: 700; }
.analytics-consent__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 10px; }
.analytics-consent__actions .button { min-height: 42px; padding: 10px 14px; border-radius: 10px; font-size: 0.84rem; }
.analytics-consent__actions a { color: var(--cyan); font-size: 0.82rem; font-weight: 700; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 560ms ease, transform 560ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --header-height: 70px; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-nav { position: absolute; top: var(--header-height); left: 0; right: 0; max-height: calc(100vh - var(--header-height)); padding: 22px 24px 30px; border-bottom: 1px solid var(--line); background: var(--bg); box-shadow: var(--shadow); overflow: auto; flex-direction: column; align-items: stretch; gap: 8px; }
  .site-nav[hidden] { display: none; }
  .site-nav > a:not(.button) { padding: 12px 4px; }
  .site-nav .language-menu summary, .site-nav .theme-toggle { width: 100%; justify-content: space-between; }
  .site-nav .language-panel { position: static; width: 100%; margin-top: 8px; box-shadow: none; }
  .hero { min-height: 900px; }
  .hero-grid { grid-template-columns: 1fr 0.85fr; }
  .hero-visual { min-height: 650px; }
  .hero-cutout--one { left: -10%; }
  .atmosphere-grid { grid-template-columns: 0.8fr 1fr; }
  .atmosphere-phone { display: none; }
  .footer-inner { grid-template-columns: 1fr 1.5fr; }
  .footer-tools { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --radius: 18px; }
  .container, .header-inner, .footer-inner, .legal-copy { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 82px 0; }
  .language-current { display: inline; }
  .hero { min-height: auto; }
  .hero::after { background: linear-gradient(180deg, rgba(3,11,28,0.9) 0%, rgba(3,11,28,0.72) 58%, rgba(3,11,28,0.1) 100%); }
  .hero-grid { display: flex; flex-direction: column; padding-top: 0; }
  .hero-copy { padding: 72px 0 10px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .hero-lede { font-size: 1.1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { width: 100%; min-height: 600px; }
  .phone-frame--hero { right: 8%; bottom: -74px; width: 70%; }
  .hero-cutout { width: 42%; }
  .hero-cutout--one { top: 14%; left: -4%; }
  .hero-cutout--two { top: 45%; right: -6%; }
  .atmosphere-grid { display: block; }
  .altitude-route { min-height: 590px; margin-top: 56px; padding-left: 104px; }
  .altitude-line { left: 66px; }
  .features h2 { margin-bottom: 46px; }
  .feature-rail { grid-template-columns: 1fr; }
  .feature-rail article + article { border-top: 1px solid var(--line); border-left: 0; }
  .feature-art { height: 150px; }
  .weather { min-height: 760px; }
  .weather::after { background: linear-gradient(180deg, rgba(2,9,23,0.88), rgba(2,9,23,0.4) 64%, rgba(2,9,23,0.05)); }
  .weather-background img { object-position: 55% center; }
  .weather-grid { display: flex; flex-direction: column; align-items: flex-start; }
  .weather-heroes { width: 100%; margin-top: 20px; }
  .screens-grid { grid-template-columns: 1fr; gap: 56px; }
  .screen-shot { width: min(82%, 360px); margin-inline: auto; transform: none !important; }
  .final-cta-inner { display: block; }
  .final-cta-inner > img { position: absolute; width: 170px; opacity: 0.72; }
  .final-cta-inner > img:first-child { left: -44px; bottom: -10px; }
  .final-cta-inner > img:last-child { right: -44px; bottom: -10px; }
  .final-cta-inner > div { position: relative; z-index: 2; padding: 20px 0 100px; }
  .footer-inner { display: flex; flex-direction: column; }
  .site-footer nav { padding-top: 0; }
  .footer-tools { flex-wrap: wrap; }
  .copyright { width: 100%; }
  .page-hero { min-height: 500px; padding-top: 90px; }
  .analytics-consent { right: 12px; bottom: 12px; left: 12px; width: calc(100% - 24px); }
  .analytics-consent__inner { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .analytics-consent__actions { justify-content: flex-start; }
}

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